:root {
    --primary: #0056b3;
    --primary-dark: #003d80;
    --accent: #00c2cb;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: center;
    /* Center logo and name */
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-dark);
}

.logo img {
    height: 40px;
    width: auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    line-height: 1.2;
}

.btn small {
    font-size: 0.75rem;
    font-weight: 400;
    opacity: 0.9;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 86, 179, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 86, 179, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-dark);
}

/* Hero Section */
.hero {
    position: relative;
    height: auto;
    /* Changed from 90vh to auto for content fit */
    min-height: 100vh;
    display: flex;
    align-items: center;
    /* Or flex-start based on preference */
    color: var(--white);
    overflow: hidden;
    margin-top: 60px;
    /* Reduced from 70px */
    padding-top: 40px;
    /* Reduced padding to pull text up */
    padding-bottom: 60px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-bg .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(10, 37, 64, 0.9) 0%, rgba(10, 37, 64, 0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    animation: fadeIn 1s ease-out;
}

.badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 20px;
    display: inline-block;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero .highlight {
    background: linear-gradient(to right, var(--accent), #4facfe);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero .subtitle {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0 30px;
    /* Reduced bottom padding */
    margin-top: -80px;
    /* Overlap hero */
    position: relative;
    z-index: 10;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.featured {
    border: 2px solid var(--accent);
    transform: scale(1.05);
    /* Make it stand out */
}

.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.bs-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--accent);
    color: var(--white);
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: 600;
}

.card .icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.card h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
    color: var(--text-dark);
}

.card .price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.card .desc {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Booking Section */
/* Booking Section */
.booking-section {
    padding: 20px 0 80px;
    /* Further reduced top padding */
    background: var(--bg-light);
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.section-desc {
    color: var(--text-light);
    margin-bottom: 40px;
}

.booking-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    background: var(--white);
    border: 1px solid #e2e8f0;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(0, 86, 179, 0.2);
}

.booking-content {
    display: none;
    animation: fadeUp 0.5s ease-out;
}

.booking-content.active {
    display: block;
}

.location-info {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.info-item {
    background: var(--white);
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 800px;
    text-align: left;
}

.info-item i {
    color: var(--accent);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.calendar-mockup {
    background: var(--white);
    max-width: 500px;
    margin: 0 auto;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    padding: 20px;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.month-selector {
    font-weight: 700;
    color: var(--primary-dark);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    margin-bottom: 20px;
}

.day-name {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
}

.date {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s;
}

.date:not(.empty):hover {
    background: #f0f7ff;
    color: var(--primary);
}

.date.active {
    background: var(--primary);
    color: var(--white);
}

.date.empty {
    cursor: default;
}

.time-slots {
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.time-slots h4 {
    text-align: left;
    font-size: 0.9rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.slots-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.slot {
    padding: 8px 15px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: white;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s;
}

.slot:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.timezone {
    margin-top: 20px;
    text-align: left;
    color: var(--text-light);
    font-size: 0.75rem;
}

/* About Section */
.about-section {
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.highlight-text {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 30px;
    line-height: 1.5;
}

.stats-list {
    list-style: none;
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
}

.stats-list li {
    display: flex;
    flex-direction: column;
}

.stats-list .number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
}

.stats-list .label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.video-wrapper {
    position: relative;
}

.video-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 16/9;
    cursor: pointer;
}

.video-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.video-container:hover .video-thumb {
    transform: scale(1.03);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    flex-direction: column;
}

.video-overlay .fa-play {
    font-size: 3rem;
    background: rgba(255, 255, 255, 0.2);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s;
}

.video-container:hover .fa-play {
    transform: scale(1.1);
    background: var(--accent);
    border-color: var(--accent);
}

.video-controls {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    font-weight: 600;
}

.caption {
    margin-top: 15px;
    text-align: center;
    font-style: italic;
    color: var(--text-light);
}

/* Footer */
footer {
    background: var(--primary-dark);
    color: white;
    padding: 60px 0 20px;
    text-align: center;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.footer-logo img {
    height: 50px;
    filter: brightness(0) invert(1);
}

.footer-contact p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.copyright {
    margin-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    font-size: 0.8rem;
    opacity: 0.6;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 900px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .featured {
        transform: scale(1);
    }
}

@media (max-width: 600px) {
    .nav-container .btn {
        display: none;
    }

    .hero-actions {
        justify-content: center;
    }

    .stats-list {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    /* Mobile Hero enhancements */
    .hero {
        height: auto;
        min-height: auto;
        padding-top: 40px;
        padding-bottom: 60px;
        margin-top: 60px;
        /* Smaller navbar offset */
    }

    .hero-bg img {
        object-position: center;
        /* Better focus on image center */
    }

    .hero h1 {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }

    .hero .subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

    .hero-actions {
        flex-direction: row;
        width: 100%;
        gap: 8px;
        justify-content: center;
    }

    .hero-actions .btn {
        width: auto;
        flex: 1;
        padding: 10px 4px;
        /* Tight padding */
        font-size: 0.8rem;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-actions .btn small {
        font-size: 0.65rem;
        white-space: normal;
        /* Allow wrapping */
        line-height: 1;
        margin-top: 2px;
    }

    .card {
        padding: 30px 20px;
    }

    /* Adjust navbar */
    .navbar {
        padding: 10px 0;
    }

    .logo {
        font-size: 1rem;
    }

    .logo img {
        height: 32px;
    }
}

.calendar-widget-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    padding: 20px;
    min-height: 500px;
    /* Ensure space for loading */
    display: flex;
    justify-content: center;
}

iframe {
    width: 100%;
}

.experience-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    /* Use the bright teal color */
    margin-bottom: 20px;
    margin-top: -10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: fadeIn 1.2s ease-out;
}

@media (max-width: 900px) {
    .experience-text {
        font-size: 1.2rem;
    }
}

/* Mobile Pricing Optimizations */
@media (max-width: 600px) {
    .pricing-section .grid-3 {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
    }

    .pricing-section .card {
        padding: 15px 4px;
        border-radius: 8px;
        min-height: 160px;
        /* Uniform height */
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    .pricing-section .icon {
        font-size: 1.2rem;
        margin-bottom: 5px;
    }

    .pricing-section h3 {
        font-size: 0.75rem;
        margin-bottom: 5px;
        /* Ensure 2 lines height */
        min-height: 2.4em;
        display: flex;
        align-items: center;
        justify-content: center;
        line-height: 1.1;
    }

    .pricing-section .price {
        font-size: 0.9rem;
        margin-bottom: 5px;
        font-weight: 800;
    }

    .pricing-section .desc {
        font-size: 0.6rem;
        line-height: 1.1;
        display: block;
        /* Keep visible */
    }

    .bs-badge {
        font-size: 0.45rem;
        padding: 2px 15px;
        top: 8px;
        right: -18px;
        width: auto;
    }
}

/* Mobile Booking Section Optimizations */
@media (max-width: 600px) {
    .booking-section {
        padding: 40px 0;
        /* Reduce vertical padding */
    }

    .booking-tabs {
        flex-wrap: nowrap;
        /* Force single row */
        gap: 8px;
        /* Smaller gap */
        margin-bottom: 20px;
    }

    .tab-btn {
        padding: 10px 5px;
        /* Compact padding */
        font-size: 0.8rem;
        /* Smaller text */
        flex: 1;
        /* Distribute space equally */
        justify-content: center;
        text-align: center;
        white-space: nowrap;
        /* Prevent text wrap if possible */
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .tab-btn i {
        display: none;
        /* Hide icons on mobile to save space if needed, or keep small */
    }

    .location-info .info-item {
        padding: 15px;
        font-size: 0.85rem;
    }

    .section-desc {
        margin-bottom: 20px;
        font-size: 0.9rem;
    }

    .calendar-widget-wrapper {
        min-height: 550px;
        /* Slight adjustment if needed */
        padding: 0;
        /* Remove padding around iframe for max space */
    }
}

/* Hero Adjustments for embedded booking */
.hero {
    height: auto;
    min-height: 100vh;
    padding: 100px 0 60px;
    /* More padding top and bottom */
    align-items: flex-start;
    /* Align closer to top */
}

.hero-content {
    max-width: 900px;
    /* Slightly wider for calendar */
    margin: 0 auto;
    text-align: center;
    /* Center everything */
}

/* Adjust booking block text/colors for dark background */
.booking-block-hero .location-info .info-item {
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-dark);
}

.booking-block-hero .location-info .info-item i {
    color: var(--primary-dark);
    /* Ensure visibility */
}

/* Ensure tabs look good on dark bg */
.booking-block-hero .tab-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    color: var(--primary-dark);
}

.booking-block-hero .tab-btn.active {
    background: var(--accent);
    color: var(--white);
}

/* Mobile adjustments */
@media (max-width: 600px) {
    .hero {
        padding-top: 80px;
    }
}/* Mobile About Section Optimizations */
@media (max-width: 600px) {
    .about-text h2 {
        font-size: 1.8rem;
        /* Smaller title specifically for mobile */
        text-align: center;
    }

    .about-text .highlight-text {
        font-size: 1rem;
        text-align: center;
    }

    .about-text p {
        text-align: center;
        font-size: 0.9rem;
    }
}
