* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background: linear-gradient(rgba(30, 60, 114, 0.75), rgba(42, 82, 152, 0.75)), url('images/underwater-scene.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #333;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.header {
    text-align: center;
    margin-bottom: 40px;
    color: white;
}

.header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.header p {
    font-size: 1.2em;
    opacity: 0.9;
}

.main-content {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Intro Section Styles */
.intro-section {
    margin-bottom: 40px;
}

.intro-section h2 {
    color: #2a5298;
    font-size: 2em;
    margin-bottom: 20px;
    text-align: center;
}

.intro-section > p {
    text-align: center;
    font-size: 1.1em;
    color: #666;
    margin-bottom: 30px;
}

.buddy-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.benefit-card {
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: #2a5298;
}

.benefit-icon {
    font-size: 2.5em;
    display: block;
    margin-bottom: 15px;
}

.benefit-card h3 {
    color: #2a5298;
    margin-bottom: 10px;
    font-size: 1.2em;
}

.benefit-card p {
    color: #666;
    font-size: 0.9em;
}

.highlight-box {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    border: 2px solid #f7931e;
    border-radius: 15px;
    padding: 25px;
    margin: 30px 0;
}

.highlight-box h3 {
    color: #d68910;
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.4em;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.pricing-card {
    background: white;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.pricing-card h4 {
    color: #2a5298;
    margin-bottom: 10px;
    font-size: 1.1em;
}

.pricing-card p {
    color: #666;
    font-weight: 500;
}

.pricing-card .discount {
    color: #28a745;
    font-weight: bold;
}

/* Booking Section Styles */
.booking-section {
    margin-bottom: 40px;
}

.step-header {
    text-align: center;
    margin-bottom: 40px;
}

.step-number {
    background: linear-gradient(45deg, #2a5298, #1e3c72);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step-title {
    color: #2a5298;
    font-size: 2em;
    margin-bottom: 15px;
}

.step-description {
    color: #666;
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto;
}

/* What's Included Section */
.whats-included {
    margin-bottom: 40px;
}

.whats-included h3 {
    color: #2a5298;
    font-size: 1.5em;
    margin-bottom: 25px;
    text-align: center;
}

.included-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.included-item {
    background: #f1f8ff;
    border: 1px solid #e0e7ff;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
}

.item-icon {
    font-size: 2em;
    display: block;
    margin-bottom: 10px;
}

.included-item h4 {
    color: #2a5298;
    margin-bottom: 8px;
    font-size: 1.1em;
}

.included-item p {
    color: #666;
    font-size: 0.9em;
}

/* What to Bring Section */
.what-to-bring {
    margin-bottom: 40px;
}

.what-to-bring h3 {
    color: #2a5298;
    font-size: 1.5em;
    margin-bottom: 15px;
    text-align: center;
}

.bring-description {
    text-align: center;
    color: #666;
    margin-bottom: 25px;
    font-size: 1.1em;
}

.bring-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.bring-item {
    background: #e8f4f8;
    border: 1px solid #b3d9e6;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.bring-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.bring-icon {
    font-size: 1.8em;
    display: block;
    margin-bottom: 8px;
}

.bring-item h4 {
    color: #2a5298;
    font-size: 0.9em;
    margin: 0;
}

.bring-note {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
}

.bring-note p {
    margin: 0;
    color: #155724;
}

/* Optional Items Section */
.optional-items {
    margin-bottom: 40px;
}

.optional-items h3 {
    color: #2a5298;
    font-size: 1.5em;
    margin-bottom: 15px;
    text-align: center;
}

.optional-description {
    text-align: center;
    color: #666;
    margin-bottom: 25px;
    font-size: 1.1em;
}

.optional-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.optional-item {
    background: #fff8e1;
    border: 1px solid #ffecb3;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
}

.optional-icon {
    font-size: 2em;
    display: block;
    margin-bottom: 10px;
}

.optional-item h4 {
    color: #f57f17;
    margin-bottom: 8px;
    font-size: 1.1em;
}

.optional-item p {
    color: #795548;
    font-size: 0.9em;
    margin: 0;
}

.optional-note {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
}

.optional-note p {
    margin: 0;
    color: #856404;
}

/* Calendly Section */
.calendly-container {
    margin-bottom: 40px;
}

.calendly-title {
    text-align: center;
    margin-bottom: 30px;
}

.calendly-title h3 {
    color: #2a5298;
    font-size: 1.8em;
    margin-bottom: 10px;
}

.calendly-title p {
    color: #666;
    font-size: 1.1em;
}

.calendly-inline-widget {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* CTA Section */
.cta-section {
    text-align: center;
    background: linear-gradient(135deg, #2a5298, #1e3c72);
    color: white;
    padding: 40px;
    border-radius: 15px;
    margin-top: 40px;
}

.cta-section h3 {
    margin-bottom: 15px;
    font-size: 1.8em;
}

.cta-section p {
    margin-bottom: 25px;
    opacity: 0.9;
    font-size: 1.1em;
}

/* Celebration Section - for completion pages */
.celebration {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    border: 2px solid #28a745;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 40px;
    text-align: center;
}

.celebration h2 {
    color: #155724;
    font-size: 2.2em;
    margin-bottom: 20px;
}

.celebration > p {
    color: #155724;
    font-size: 1.1em;
    margin-bottom: 30px;
    line-height: 1.7;
}

.booked-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.booked-item {
    background: white;
    border: 2px solid #28a745;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.booked-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(40, 167, 69, 0.2);
}

.booked-item span {
    font-size: 2.5em;
    display: block;
    margin-bottom: 10px;
}

.booked-item h4 {
    color: #155724;
    margin-bottom: 8px;
    font-size: 1.1em;
}

.booked-item p {
    color: #28a745;
    font-weight: bold;
    margin: 0;
}

/* Contact Info Section */
.contact-info {
    background: #e3f2fd;
    border-left: 4px solid #2196f3;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 40px;
}

.contact-info h3 {
    color: #1565c0;
    margin-bottom: 15px;
    font-size: 1.4em;
}

.contact-info p {
    color: #0d47a1;
    margin: 0;
    font-size: 1.1em;
}

/* Proactive Section */
.proactive-section {
    margin-bottom: 40px;
}

.proactive-title {
    color: #2a5298;
    font-size: 2em;
    text-align: center;
    margin-bottom: 30px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.step-card {
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: #2a5298;
}

.step-card .step-number {
    background: linear-gradient(45deg, #2a5298, #1e3c72);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3em;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step-card h3 {
    color: #2a5298;
    margin-bottom: 15px;
    font-size: 1.3em;
}

.step-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.step-link {
    display: inline-block;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.step-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
    text-decoration: none;
    color: white;
}

/* Special Note Section */
.special-note {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    border: 2px solid #f7931e;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    margin-top: 40px;
}

.special-note h3 {
    color: #d68910;
    margin-bottom: 15px;
    font-size: 1.6em;
}

.special-note p {
    color: #856404;
    margin: 0;
    font-size: 1.1em;
    line-height: 1.6;
}

/* Generic reusable classes */
.section {
    margin-bottom: 40px;
}

.section-title {
    color: #2a5298;
    font-size: 1.8em;
    text-align: center;
    margin-bottom: 25px;
}

.section-subtitle {
    color: #666;
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 20px;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.info-card {
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-color: #2a5298;
}

.info-card .icon {
    font-size: 2em;
    display: block;
    text-align: center;
    margin-bottom: 15px;
}

.info-card h4 {
    color: #2a5298;
    text-align: center;
    margin-bottom: 10px;
    font-size: 1.1em;
}

.info-card p {
    color: #666;
    text-align: center;
    margin: 0;
    font-size: 0.9em;
}

.alert-box {
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
}

.alert-success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.alert-info {
    background: #e3f2fd;
    border: 1px solid #bbdefb;
    color: #0d47a1;
}

.alert-warning {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    color: #856404;
}

/* Existing styles from original CSS */
.content {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.program-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.card {
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 25px;
    background: #f8f9fa;
    transition: all 0.3s ease;
    position: relative;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: #2a5298;
}

.card h3 {
    color: #2a5298;
    font-size: 1.4em;
    margin-bottom: 15px;
    border-bottom: 2px solid #2a5298;
    padding-bottom: 8px;
}

.card p {
    margin-bottom: 15px;
    color: #666;
}

.card ul {
    list-style: none;
    margin-bottom: 20px;
}

.card ul li {
    padding: 5px 0;
    padding-left: 25px;
    position: relative;
}

.card ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.depth-badge {
    background: linear-gradient(45deg, #28a745, #20c997);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 15px;
}

.price-badge {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-size: 1.3em;
    font-weight: bold;
    margin-top: 15px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    display: block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.price-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    text-decoration: none;
    color: white;
}

.price-badge:visited {
    color: white;
}

.price-value {
    font-size: 1.8em;
    display: block;
    margin-bottom: 5px;
}

.price-note {
    font-size: 0.8em;
    opacity: 0.9;
    font-weight: normal;
}

.requirements {
    background: #e8f4f8;
    border-left: 4px solid #2a5298;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.requirements h3 {
    color: #2a5298;
    margin-bottom: 15px;
    font-size: 1.3em;
}

.requirements ul {
    list-style: none;
}

.requirements ul li {
    padding: 4px 0;
    padding-left: 30px;
    position: relative;
}

.requirements ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.steps-section {
    margin-bottom: 40px;
}

.steps-section h2 {
    text-align: center;
    color: #2a5298;
    margin-bottom: 30px;
    font-size: 2em;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.step {
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    background: #f1f8ff;
    border: 1px solid #e0e7ff;
}

.step h4 {
    color: #2a5298;
    margin-bottom: 10px;
}

.step p {
    color: #666;
    font-size: 0.9em;
}

.cta {
    text-align: center;
    background: linear-gradient(135deg, #2a5298, #1e3c72);
    color: white;
    padding: 40px;
    border-radius: 15px;
    margin-top: 40px;
}

.cta h3 {
    margin-bottom: 15px;
    font-size: 1.8em;
}

.cta p {
    margin-bottom: 25px;
    opacity: 0.9;
}

.cta-button {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.1em;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.4);
}

.pricing-highlight {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    border: 2px solid #f7931e;
    border-radius: 10px;
    padding: 20px;
    margin: 30px 0;
    text-align: center;
}

.pricing-highlight h3 {
    color: #d68910;
    margin-bottom: 10px;
}

.pricing-highlight p {
    color: #856404;
    margin: 0;
}

/* Mask Fit Guide Modal */
.mask-fit-steps {
    margin-bottom: 30px;
}

.fit-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #2a5298;
}

.fit-step .step-number {
    background: linear-gradient(45deg, #2a5298, #1e3c72);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 20px;
    flex-shrink: 0;
}

.fit-step .step-content {
    flex: 1;
}

.fit-step h4 {
    color: #2a5298;
    margin-bottom: 8px;
    font-size: 1.1em;
}

.fit-step p {
    color: #555;
    margin: 0;
    line-height: 1.6;
}

.mask-fit-tips {
    background: #f1f8ff;
    border-radius: 10px;
    padding: 25px;
    border: 2px solid #2a5298;
}

.mask-fit-tips h4 {
    color: #2a5298;
    margin-bottom: 15px;
    font-size: 1.1em;
}

.mask-fit-tips h4:not(:first-child) {
    margin-top: 20px;
}

.mask-fit-tips ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mask-fit-tips ul li {
    padding: 6px 0;
    color: #555;
    position: relative;
    padding-left: 25px;
}

.mask-fit-tips ul li::before {
    position: absolute;
    left: 0;
    font-weight: bold;
}

.mask-fit-tips h4:first-of-type + ul li::before {
    content: "❌";
    color: #dc3545;
}

.mask-fit-tips h4:last-of-type + ul li::before {
    content: "✅";
    color: #28a745;
}

@media (max-width: 768px) {
    .fit-step {
        flex-direction: column;
        text-align: center;
    }
    
    .fit-step .step-number {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

/* Mask Fit Guide Modal */
.mask-fit-steps {
    margin-bottom: 30px;
}

.fit-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #2a5298;
}

.fit-step .step-number {
    background: linear-gradient(45deg, #2a5298, #1e3c72);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 20px;
    flex-shrink: 0;
}

.fit-step .step-content {
    flex: 1;
}

.fit-step h4 {
    color: #2a5298;
    margin-bottom: 8px;
    font-size: 1.1em;
}

.fit-step p {
    color: #555;
    margin: 0;
    line-height: 1.6;
}

.mask-fit-tips {
    background: #f1f8ff;
    border-radius: 10px;
    padding: 25px;
    border: 2px solid #2a5298;
}

.mask-fit-tips h4 {
    color: #2a5298;
    margin-bottom: 15px;
    font-size: 1.1em;
}

.mask-fit-tips h4:not(:first-child) {
    margin-top: 20px;
}

.mask-fit-tips ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mask-fit-tips ul li {
    padding: 6px 0;
    color: #555;
    position: relative;
    padding-left: 25px;
}

.mask-fit-tips ul li::before {
    position: absolute;
    left: 0;
    font-weight: bold;
}

@media (max-width: 768px) {
    .fit-step {
        flex-direction: column;
        text-align: center;
    }
    
    .fit-step .step-number {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

/* Water Temperature Guide Modal */
.temp-guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

.temp-guide-item {
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.temp-guide-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-color: #2a5298;
}

.wetsuit-visual {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.wetsuit-svg {
    width: 60px;
    height: 80px;
    transition: transform 0.3s ease;
}

.temp-guide-item:hover .wetsuit-svg {
    transform: scale(1.1);
}

.wetsuit-icon {
    font-size: 2.5em;
    display: block;
    margin-bottom: 15px;
}

.temp-guide-item h4 {
    color: #2a5298;
    margin-bottom: 12px;
    font-size: 1.2em;
}

.temp-range {
    margin-bottom: 12px;
}

.temp-celsius {
    display: block;
    font-weight: bold;
    color: #155724;
    font-size: 1.1em;
}

.temp-fahrenheit {
    display: block;
    color: #28a745;
    font-size: 1em;
    margin-top: 2px;
}

.temp-guide-item p {
    color: #666;
    font-size: 0.9em;
    margin: 0;
    line-height: 1.4;
}

.temp-note {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    border: 2px solid #f7931e;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
}

.temp-note p {
    margin: 0;
    color: #856404;
    font-size: 0.95em;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .temp-guide-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }
    
    .temp-guide-item {
        padding: 15px;
    }
    
    .wetsuit-icon {
        font-size: 2em;
    }
}

/* =========================== */
/* CALENDAR PAGE STYLES */
/* =========================== */

/* Calendar Hero Section */
.calendar-hero {
    background: linear-gradient(rgba(30, 58, 138, 0.8), rgba(14, 165, 233, 0.8)), url('images/underwater-scene.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    text-align: center;
    padding: 100px 0 60px 0;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.calendar-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
    font-weight: bold;
}

.calendar-hero p {
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
    line-height: 1.4;
}

/* Calendar Container */
.calendar-container {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    margin: -30px auto 30px auto;
    max-width: 1100px;
    position: relative;
    overflow: hidden;
}

.calendar-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #1e3a8a, #0ea5e9, #1e3a8a);
}

.calendar-header {
    text-align: center;
    margin-bottom: 30px;
}

.calendar-header h2 {
    color: #1e3a8a;
    font-size: 2rem;
    margin-bottom: 10px;
}

.calendar-header p {
    color: #64748b;
    font-size: 1.1rem;
}

/* Calendar Usage Section */
.calendar-usage-section {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    text-align: center;
}

.calendar-usage-section h3 {
    color: #1e3a8a;
    font-size: 1.5rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.calendar-usage-section > p {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.booking-links {
    margin-top: 20px;
}

.booking-links > p {
    color: #1e3a8a;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
}

.booking-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #1e3a8a, #0ea5e9);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.95rem;
    justify-content: center;
}

.booking-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30, 58, 138, 0.3);
    background: linear-gradient(135deg, #0ea5e9, #1e3a8a);
    color: white;
    text-decoration: none;
}

/* Calendar Frame */
.calendar-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border: 2px solid #e2e8f0;
}

.calendar-frame {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 10px;
}

/* Important Notes Section */
.calendar-important-section {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 30px;
    margin-top: 30px;
    text-align: center;
}

.calendar-important-section h3 {
    color: #1e3a8a;
    font-size: 1.5rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.important-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    text-align: left;
}

.important-item {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px;
    transition: all 0.3s ease;
}

.important-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-color: #1e3a8a;
}

.important-item h4 {
    color: #1e3a8a;
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.important-item p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* Calendar CTA Section */
.calendar-cta {
    background: linear-gradient(135deg, #1e3a8a, #0ea5e9);
    color: white;
    padding: 40px;
    border-radius: 15px;
    margin-top: 40px;
    text-align: center;
}

.calendar-cta h3 {
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.calendar-cta p {
    margin-bottom: 25px;
    opacity: 0.9;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    background: rgba(255, 255, 255, 0.3);
    color: white;
    text-decoration: none;
    border-color: rgba(255, 255, 255, 0.5);
}

.cta-btn.primary {
    background: linear-gradient(45deg, #10b981, #059669);
    border-color: #059669;
}

.cta-btn.primary:hover {
    background: linear-gradient(45deg, #059669, #10b981);
    border-color: #10b981;
}

/* Calendar Page Mobile Styles */
@media (max-width: 768px) {
    .calendar-hero h1 {
        font-size: 2rem;
    }
    
    .calendar-hero p {
        font-size: 1.1rem;
    }
    
    .calendar-container {
        padding: 25px;
        margin: -20px 20px 20px 20px;
    }
    
    .calendar-usage-section {
        padding: 20px;
        margin-bottom: 25px;
    }
    
    .calendar-usage-section h3 {
        font-size: 1.3rem;
        flex-direction: column;
        gap: 5px;
    }
    
    .links-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .booking-link {
        padding: 15px 20px;
        font-size: 1rem;
    }
    
    .calendar-important-section {
        padding: 20px;
        margin-top: 25px;
    }
    
    .calendar-important-section h3 {
        font-size: 1.3rem;
        flex-direction: column;
        gap: 5px;
    }
    
    .important-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .important-item {
        padding: 15px;
    }
    
    .calendar-wrapper {
        height: 500px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .calendar-hero {
        padding: 60px 0 40px 0;
    }
    
    .calendar-container {
        margin: -15px 15px 15px 15px;
        padding: 20px;
    }
    
    .calendar-wrapper {
        height: 400px;
    }
}

/* Buddy Discount Section */
.buddy-discount-section {
    margin-bottom: 40px;
    background: linear-gradient(135deg, #e8f5e8, #d4edda);
    border: 2px solid #28a745;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
}

.buddy-discount-section h3 {
    color: #155724;
    font-size: 1.8em;
    margin-bottom: 25px;
}

.discount-highlight {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 20px;
    text-align: left;
}

.discount-main {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.1);
}

.discount-main h4 {
    color: #28a745;
    font-size: 1.4em;
    margin-bottom: 15px;
}

.discount-amount {
    font-size: 1.3em;
    font-weight: bold;
    color: #155724;
    margin-bottom: 10px;
}

.discount-details {
    color: #28a745;
    font-size: 1.1em;
    margin: 0;
}

.discount-benefits {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    padding: 25px;
}

.discount-benefits ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.discount-benefits ul li {
    padding: 8px 0;
    color: #155724;
    font-size: 1.1em;
    font-weight: 500;
}

.discount-note {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    padding: 15px;
    color: #155724;
    font-size: 1em;
    margin: 0;
}

@media (max-width: 768px) {
    .discount-highlight {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    background: linear-gradient(135deg, #2a5298, #1e3c72);
    color: white;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.5em;
}

.close {
    color: white;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close:hover,
.close:focus {
    background-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.modal-body {
    padding: 30px;
}

.requirement-section {
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #2a5298;
}

.requirement-section h4 {
    color: #2a5298;
    margin-bottom: 15px;
    font-size: 1.2em;
}

.requirement-section ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.requirement-section ul li {
    padding: 8px 0;
    color: #555;
    line-height: 1.6;
}

.requirement-section ul li strong {
    color: #2a5298;
}

.note {
    background: linear-gradient(135deg, #e8f5e8, #d4edda);
    border: 2px solid #28a745;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
}

.note p {
    margin: 0;
    color: #155724;
    font-size: 1em;
}

/* Responsive modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .modal-header {
        padding: 20px 25px;
    }
    
    .modal-header h3 {
        font-size: 1.3em;
    }
    
    .modal-body {
        padding: 25px;
    }
    
    .requirement-section {
        padding: 15px;
    }
}

/* Responsive Design */


/* Navigation Dropdown Styles */
.nav-links .dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: linear-gradient(135deg, #1e3a8a, #0ea5e9);
    min-width: 180px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 10px 0;
    z-index: 1000;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.dropdown-menu li {
    list-style: none;
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: white;
    text-decoration: none;
    transition: all 0.2s ease;
    font-weight: 500;
}

.dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding-left: 25px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.dropdown:hover .dropdown-menu {
    display: block;
    animation: dropdownSlide 0.3s ease-out;
}

@keyframes dropdownSlide {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile dropdown adjustments */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        display: none;
        background: linear-gradient(135deg, #1e3a8a, #0ea5e9);
        box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.2);
        margin-top: 10px;
        border-radius: 6px;
    }
    
    .dropdown:hover .dropdown-menu {
        display: block;
    }
    
    .dropdown-menu a {
        padding: 10px 40px;
        font-size: 0.9rem;
        color: white;
    }
    
    .dropdown-menu a:hover {
        padding-left: 45px;
        background: rgba(255, 255, 255, 0.2);
        color: white;
    }
}

/* =========================== */
/* STYLES FROM INDEX.HTML */
/* =========================== */

/* Hero Section with Video */
.hero {
    background: linear-gradient(rgba(30, 58, 138, 0.6), rgba(14, 165, 233, 0.6)), url('images/underwater-scene.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    text-align: center;
    padding: 100px 0;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Hero Media Container (for video/gif) */
.hero-media-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Hero Video Container - keep for backward compatibility */
.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Hero Video */
.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 1; /* Make it fully visible immediately */
}

/* Hero Video Overlay - reduced opacity to see video better */
.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(30, 58, 138, 0.2), rgba(14, 165, 233, 0.2));
    z-index: 2;
}

/* Hero Content - ensure it appears above video */
.hero-content {
    position: relative;
    z-index: 3;
}

/* Mobile Responsiveness for Hero Video */
@media (max-width: 768px) {
    .hero {
        min-height: 400px;
        padding: 60px 0;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    /* Ensure video covers properly on mobile */
    .hero-video {
        object-fit: cover;
        object-position: center;
    }
}

/* Fallback for when video fails to load */
.hero-video:not([src]) {
    display: none;
}

/* Ensure video is visible and positioned correctly */
.hero-video {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    opacity: 1 !important;
    z-index: 1;
}

/* Note: Some basic reset styles may be duplicated but kept for completeness */

/* Reset and Body styles for index.html */
body.index-page {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

/* Override container for index page */
.index-page .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles for index.html */
header {
    background: linear-gradient(135deg, #1e3a8a, #0ea5e9);
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #94a3b8;
}

/* Hero Section - updated to work with video */

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
    font-weight: bold;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
    line-height: 1.4;
}

/* Path Cards Section */
.paths-section {
    padding: 60px 0;
    background: white;
}

/* Override section-title for index page */
.index-page .section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1e3a8a;
}

.paths-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
    max-width: 1400px;
    margin: 0 auto 2rem auto;
    padding: 0 2rem;
}

.path-card {
    background: white;
    border-radius: 15px;
    padding: 1.25rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 380px;
    width: 100%;
}

.path-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.path-card.refresh {
    border-color: #06b6d4;
    background: linear-gradient(135deg, #ecfeff, #e0f7fa);
}

.path-card.start-here {
    border-color: #10b981;
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
}

.path-card.continue-here {
    border-color: #f59e0b;
    background: linear-gradient(135deg, #fffbeb, #fef3c7);
}

.path-card.experience {
    border-color: #8b5cf6;
    background: linear-gradient(135deg, #faf5ff, #f3e8ff);
}

.path-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.path-card.refresh .path-icon {
    color: #06b6d4;
}

.path-card.start-here .path-icon {
    color: #10b981;
}

.path-card.continue-here .path-icon {
    color: #f59e0b;
}

.path-card.experience .path-icon {
    color: #8b5cf6;
}

.path-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1e3a8a;
}

.path-card p {
    margin-bottom: 1.5rem;
    color: #64748b;
    line-height: 1.6;
    flex-grow: 1;
}

.btn {
    display: inline-block;
    background: #1e3a8a;
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    margin-top: auto;
}

.btn:hover {
    background: #1e40af;
    transform: scale(1.05);
}

.btn.btn-success {
    background: #10b981;
}

.btn.btn-success:hover {
    background: #059669;
}

.btn.btn-warning {
    background: #f59e0b;
}

.btn.btn-warning:hover {
    background: #d97706;
}

.btn.btn-info {
    background: #06b6d4;
}

.btn.btn-info:hover {
    background: #0891b2;
}

.btn.btn-purple {
    background: #8b5cf6;
}

.btn.btn-purple:hover {
    background: #7c3aed;
}

.badge {
    display: inline-block;
    background: #10b981;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.badge.refresh {
    background: #06b6d4;
}

.badge.continue {
    background: #f59e0b;
}

.badge.experience {
    background: #8b5cf6;
}

/* About Section */
.about-section {
    padding: 60px 0;
    background: #f8fafc;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1e3a8a;
}

.about-text p {
    margin-bottom: 1rem;
    color: #64748b;
    font-size: 1.1rem;
}

.about-features {
    list-style: none;
    margin-top: 2rem;
}

.about-features li {
    margin-bottom: 0.5rem;
    color: #10b981;
    font-weight: bold;
}

.about-features li::before {
    content: "✓ ";
    margin-right: 0.5rem;
}

/* Footer */
footer {
    background: #1e3a8a;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
}

.footer-section p, .footer-section a {
    color: #94a3b8;
    text-decoration: none;
}

.footer-section a:hover {
    color: white;
}

/* Responsive Design for Index Page */
@media (min-width: 1025px) {
    .paths-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .paths-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        max-width: 800px;
        padding: 0 1rem;
    }
    
    .path-card {
        min-height: 380px;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .paths-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
        max-width: 400px;
    }
    
    .path-card {
        min-height: 350px;
        padding: 1.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }
}

/* =========================== */
/* EXISTING RESPONSIVE STYLES */
/* =========================== */

/* =========================== */
/* GUIDE SERVICES PAGE STYLES */
/* =========================== */

.guide-services {
    padding: 80px 0;
    background: white;
}

.service-overview {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: start;
}

.service-main {
    display: flex;
    justify-content: center;
}

.service-card {
    background: linear-gradient(135deg, #f0fdf4, #ffffff);
    border: 3px solid #10b981;
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.2);
    max-width: 400px;
    width: 100%;
}

.service-card.featured {
    transform: scale(1.05);
}

.service-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: #1e3a8a;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.rate-display {
    margin-bottom: 1rem;
}

.rate {
    font-size: 3rem;
    font-weight: bold;
    color: #059669;
    display: block;
}

.rate-unit {
    font-size: 1.2rem;
    color: #64748b;
    font-weight: normal;
}

.minimum {
    background: #fef3c7;
    border: 2px solid #f59e0b;
    border-radius: 10px;
    padding: 1rem;
    margin: 1.5rem 0;
    color: #92400e;
}

.service-card p {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

.pricing-breakdown {
    background: #f8fafc;
    border-radius: 15px;
    padding: 2rem;
    border: 2px solid #e2e8f0;
}

.pricing-breakdown h3 {
    color: #1e3a8a;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.price-examples {
    space-y: 1rem;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    border: 1px solid #e2e8f0;
}

.duration {
    font-weight: 500;
    color: #475569;
}

.price {
    font-size: 1.3rem;
    font-weight: bold;
    color: #059669;
}

.guide-benefits {
    margin-bottom: 4rem;
}

.guide-benefits h3 {
    color: #1e3a8a;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit {
    background: #f8fafc;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.benefit:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: #1e3a8a;
}

.benefit-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.benefit h4 {
    color: #1e3a8a;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.benefit p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.service-details {
    margin-bottom: 4rem;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.detail-card {
    background: #f8fafc;
    border-radius: 15px;
    padding: 2rem;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.detail-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-color: #1e3a8a;
}

.detail-card h3 {
    color: #1e3a8a;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.detail-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.detail-card ul li {
    padding: 8px 0;
    color: #475569;
    position: relative;
    padding-left: 25px;
    line-height: 1.5;
}

.detail-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.popular-sites {
    margin-bottom: 4rem;
}

.popular-sites h3 {
    color: #1e3a8a;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.sites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.site-card {
    background: linear-gradient(135deg, #e0f2fe, #ffffff);
    border: 2px solid #0ea5e9;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 180px;
}

.site-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(14, 165, 233, 0.2);
}

.site-card h4 {
    color: #1e3a8a;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.site-card p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
    flex-grow: 1;
    margin-bottom: 1rem;
}

.depth {
    background: #0ea5e9;
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-top: auto;
    align-self: center;
}

.booking-info {
    margin-bottom: 4rem;
}

.booking-card {
    background: linear-gradient(135deg, #fef3c7, #ffffff);
    border: 2px solid #f59e0b;
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
}

.booking-card h3 {
    color: #92400e;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.booking-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: left;
}

.booking-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.step-number {
    background: #f59e0b;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.step-content h4 {
    color: #92400e;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.step-content p {
    color: #78350f;
    margin: 0;
    line-height: 1.5;
}

/* Course Signup Form Styles */
.signup-form-container {
    padding: 20px;
}

.signup-disclaimer {
    background: #fff3cd;
    border: 2px solid #ffc107;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 25px;
    color: #856404;
    text-align: center;
    font-size: 0.95rem;
    line-height: 1.5;
}

.course-signup-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #1e3a8a;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1e3a8a;
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.btn-success {
    background: linear-gradient(45deg, #10b981, #059669);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-size: 1rem;
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
    color: white;
    text-decoration: none;
}

.btn-outline {
    background: transparent;
    color: #64748b;
    border: 2px solid #e2e8f0;
    padding: 10px 28px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-size: 1rem;
}

.btn-outline:hover {
    border-color: #64748b;
    background: #f8fafc;
    color: #64748b;
    text-decoration: none;
}

.form-success {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    border: 2px solid #28a745;
    border-radius: 15px;
    color: #155724;
}

.form-success h4 {
    color: #155724;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.form-success p {
    margin: 0;
    line-height: 1.6;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .form-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-success,
    .btn-outline {
        width: 100%;
        text-align: center;
    }
    
    .signup-form-container {
        padding: 15px;
    }
}

/* Calendly Modal Styles */
.calendly-modal-content {
    max-width: 900px;
    width: 95%;
    max-height: 90vh;
    margin: 2% auto;
}

.calendly-modal-body {
    padding: 0;
    overflow: hidden;
}

.calendly-inline-widget {
    border-radius: 0 0 15px 15px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .calendly-modal-content {
        width: 98%;
        margin: 1% auto;
        max-height: 95vh;
    }
    
    .calendly-inline-widget {
        height: 500px !important;
        min-width: 280px !important;
    }
}

/* Responsive Design for Guide Services */
@media (max-width: 768px) {
    .service-overview {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-card.featured {
        transform: none;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
    }
    
    .sites-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .booking-steps {
        grid-template-columns: 1fr;
    }
    
    .booking-step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin: 0 auto 1rem;
    }
}

/* =========================== */
/* EXPERIENCES PAGE STYLES */
/* =========================== */

/* Experiences Hero */
.experiences-hero {
    background: linear-gradient(rgba(30, 58, 138, 0.8), rgba(14, 165, 233, 0.8)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23065f46" width="1200" height="600"/><path fill="%23047857" d="M0 400c300-80 600-120 900-60s300 120 300 60v200H0z"/><circle fill="%2306b6d4" cx="300" cy="200" r="40" opacity="0.6"/><circle fill="%2306b6d4" cx="900" cy="150" r="30" opacity="0.4"/><circle fill="%23fbbf24" cx="150" cy="300" r="25" opacity="0.7"/><circle fill="%23f472b6" cx="1050" cy="250" r="35" opacity="0.5"/></svg>');
    background-size: cover;
    background-position: center;
    min-height: 400px;
}

/* Experiences Intro */
.experiences-intro {
    padding: 60px 0;
    background: white;
    text-align: center;
}

.intro-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    color: #64748b;
    line-height: 1.7;
}

/* Experiences Grid */
.experiences-grid {
    padding: 80px 0;
    background: #f8fafc;
}

.experience-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    margin-bottom: 2rem;
    border: 2px solid transparent;
}

.experience-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.experience-card.featured {
    border-color: #10b981;
    background: linear-gradient(135deg, #f0fdf4, #ffffff);
}

.experience-card.beginner-friendly {
    border-color: #0ea5e9;
    background: linear-gradient(135deg, #f0f9ff, #ffffff);
}

.experience-image {
    height: 200px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    font-weight: bold;
    position: relative;
}

.image-placeholder.coral-reef {
    background: linear-gradient(135deg, #0ea5e9, #06b6d4);
    color: white;
}

.image-placeholder.shipwreck {
    background: linear-gradient(135deg, #64748b, #475569);
    color: white;
}

.image-placeholder.deep-water {
    background: linear-gradient(135deg, #1e3a8a, #1e40af);
    color: white;
}

.image-placeholder.night-dive {
    background: linear-gradient(135deg, #581c87, #7c3aed);
    color: white;
}

.image-placeholder.photography {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
}

.image-placeholder.beginner {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.experience-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #dc2626;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.experience-content {
    padding: 2rem;
}

.experience-content h3 {
    font-size: 1.8rem;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.experience-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.experience-meta span {
    background: #f1f5f9;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #475569;
    font-weight: 500;
}

.experience-content > p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.highlights {
    background: #f8fafc;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.highlights h4 {
    color: #1e3a8a;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.highlights ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.highlights ul li {
    padding: 5px 0;
    color: #475569;
    position: relative;
    padding-left: 25px;
}

.highlights ul li::before {
    content: "🌟";
    position: absolute;
    left: 0;
}

.experience-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #e2e8f0;
    padding-top: 1.5rem;
}

.price {
    font-size: 1.3rem;
    font-weight: bold;
    color: #059669;
}

/* Experience Info Section */
.experience-info {
    padding: 80px 0;
    background: white;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.info-card {
    background: #f8fafc;
    border-radius: 15px;
    padding: 2rem;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: #1e3a8a;
}

.info-card h3 {
    color: #1e3a8a;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.info-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.info-card ul li {
    padding: 8px 0;
    color: #475569;
    position: relative;
    padding-left: 25px;
    line-height: 1.5;
}

.info-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

/* Booking CTA Section */
.booking-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e3a8a, #0ea5e9);
    color: white;
    text-align: center;
}

.booking-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.booking-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline:hover {
    background: white;
    color: #1e3a8a;
}

/* Responsive Design for Experiences */
@media (max-width: 768px) {
    .experience-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .experience-meta span {
        text-align: center;
    }
    
    .experience-footer {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .booking-cta h2 {
        font-size: 2rem;
    }
    
    .intro-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .program-cards {
        grid-template-columns: 1fr;
    }
    
    .buddy-benefits {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .included-items {
        grid-template-columns: 1fr;
    }
    
    .bring-items {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
    
    .optional-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .booked-items {
        grid-template-columns: 1fr;
    }
    
    .card-grid {
        grid-template-columns: 1fr;
    }
    
    .header h1 {
        font-size: 2em;
    }
    
    .main-content {
        padding: 20px;
    }
    
    .step-title {
        font-size: 1.5em;
    }
    
    .proactive-title {
        font-size: 1.6em;
    }
    
    .celebration h2 {
        font-size: 1.8em;
    }
    
    .calendly-inline-widget {
        height: 600px;
    }
}

/* Phone Call-to-Action Button Styles */
.phone-cta-btn {
    display: inline-block;
    color: #ffffff;
    background: linear-gradient(45deg, #28a745, #20c997);
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-size: 1em;
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
}

.phone-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
    text-decoration: none;
    color: #ffffff;
    background: linear-gradient(45deg, #20c997, #28a745);
}

.phone-cta-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
}

/* Footer phone button specific styling */
footer .phone-cta-btn {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

footer .phone-cta-btn:hover {
    background: linear-gradient(45deg, #f7931e, #ff6b35);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

/* Make phone numbers more prominent in text */
a.phone-cta-btn strong {
    font-weight: 700;
}

@media (max-width: 768px) {
    .phone-cta-btn {
        padding: 10px 18px;
        font-size: 1.1em;
        border-radius: 25px;
    }
}

/* Enhanced Footer Styles with Image */
footer {
    position: relative;
    min-height: 400px;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

footer .container {
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 20px;
    backdrop-filter: blur(2px);
}

footer .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 3rem 0 2rem;
}

.footer-image-section {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-image-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
    max-width: 300px;
    width: 100%;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.footer-image-container:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.footer-featured-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: white;
    padding: 25px 15px 15px;
    text-align: center;
}

.image-overlay h4 {
    margin: 0 0 8px 0;
    font-size: 1.2em;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.image-overlay p {
    margin: 0;
    font-size: 0.95em;
    opacity: 0.95;
    line-height: 1.4;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.footer-bottom {
    border-top: 2px solid rgba(255, 255, 255, 0.3);
    padding: 2rem 0;
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    margin-top: 1rem;
}

.footer-bottom p {
    margin: 0.5rem 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.footer-tagline {
    font-style: italic;
    opacity: 0.9;
    font-size: 1.1em;
    margin-top: 0.5rem;
    color: #ffd700;
    font-weight: 500;
}

/* Footer section headings */
footer .footer-section h3 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.3em;
    border-bottom: 2px solid rgba(255, 255, 255, 0.4);
    padding-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    font-weight: bold;
}

/* Footer links */
footer .footer-section p, footer .footer-section a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    margin-bottom: 0.8rem;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    font-weight: 500;
}

footer .footer-section a:hover {
    color: #fff;
    text-decoration: underline;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    transform: translateX(3px);
}

/* Footer phone button override */
footer .phone-cta-btn {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.6);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    text-shadow: none;
    font-weight: bold;
    padding: 10px 20px;
}

footer .phone-cta-btn:hover {
    background: linear-gradient(45deg, #f7931e, #ff6b35);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.8);
    color: white;
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Mobile responsiveness for enhanced footer */
@media (max-width: 768px) {
    footer .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 2rem 0 1rem;
    }
    
    .footer-image-container {
        max-width: 250px;
        margin: 0 auto;
    }
    
    .footer-featured-image {
        height: 150px;
    }
    
    .image-overlay {
        padding: 15px 10px 10px;
    }
    
    .image-overlay h4 {
        font-size: 1em;
    }
    
    .image-overlay p {
        font-size: 0.8em;
    }
    
    footer {
        min-height: auto;
    }
}