:root {
    --primary: #2D4B73;
    --primary-light: #4A6D9C;
    --secondary: #D9AE8B;
    --text: #1A2634;
    --text-muted: #57687C;
    --bg: #FFFFFF;
    --bg-alt: #F8FAFC;
    --accent: #E6F0FF;
    --white: #FFFFFF;
    --radius: 12px;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background-color: var(--bg);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

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

section {
    position: relative;
}

.section-padding {
    padding: 100px 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 24px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--secondary);
    margin-top: 12px;
}

.center {
    text-align: center;
}

.center .section-title::after {
    margin: 12px auto 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: inherit;
    position: relative;
}

.btn-primary {
    background: linear-gradient(90deg, #2D4B73 0%, #4A6D9C 100%);
    color: #FFFFFF !important;
    box-shadow: 0 4px 15px rgba(45, 75, 115, 0.35);
}

.btn-primary i {
    color: #FFFFFF !important;
}

.btn-primary:hover {
    background: linear-gradient(90deg, #4A6D9C 0%, #2D4B73 100%);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 20px rgba(45, 75, 115, 0.45);
    color: #FFFFFF !important;
}

.btn-secondary {
    background-color: var(--accent);
    color: var(--primary);
}

.btn-secondary:hover {
    background-color: #DDEBFF;
    transform: translateY(-2px);
}

.full-width {
    width: 100%;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 15px 0;
}

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

.logo-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.logo-text span {
    color: var(--secondary);
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary);
}

.instagram-link {
    display: flex;
    align-items: center;
    color: var(--text-muted);
    transition: var(--transition);
}

.instagram-link:hover {
    color: #E1306C !important;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--primary);
    cursor: pointer;
}

/* Hero */
.hero {
    padding-top: 160px;
    padding-bottom: 100px;
    background: linear-gradient(rgba(45, 75, 115, 0.45), rgba(74, 109, 156, 0.4)), url('images/hero-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(100px);
}

.hero-container {
    position: relative;
    z-index: 1;
}

.hero-content-center {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--white);
}

.hero-content h1 span {
    color: var(--secondary);
    text-shadow: 0 2px 10px rgba(217, 174, 139, 0.3);
}

.hero-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.hero-image {
    position: relative;
}

.image-wrapper {
    width: 100%;
    height: 500px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.1);
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Sections */
.alternate-bg {
    background-color: var(--bg-alt);
}

.section-grid {
    display: grid;
    grid-template-columns: 1fr 0.4fr;
    gap: 80px;
    align-items: center;
}

.alternate-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.text-content p {
    margin-bottom: 20px;
    color: var(--text-muted);
}

.stat-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    margin-bottom: 20px;
}

.stat-card h3 {
    font-size: 2.5rem;
    color: var(--primary);
}

.stat-card.gold {
    background: var(--secondary);
    color: var(--white);
}

.stat-card.gold i {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
}

.rounded-img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.nurture-badge {
    display: inline-block;
    padding: 4px 12px;
    border: 1px solid var(--secondary);
    color: var(--secondary);
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.quote {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--primary);
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.4;
}

.features {
    list-style: none;
    margin-top: 30px;
}

.features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-weight: 500;
}

.features li i {
    color: #10B981;
}

/* Calendar */
.booking-container {
    background: var(--white);
    border-radius: 24px;
    box-shadow: var(--shadow);
    padding: 40px;
    margin-top: 50px;
    position: relative;
}

.calendar-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.calendar-widget {
    background: var(--bg-alt);
    padding: 24px;
    border-radius: var(--radius);
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.calendar-header h3 {
    font-size: 1.2rem;
}

.calendar-header button {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--primary);
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-weight: 600;
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.calendar-dates {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}

.date-cell {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: var(--transition);
}

.date-cell:hover:not(.disabled) {
    background: var(--accent);
    color: var(--primary);
}

.date-cell.active {
    background: var(--primary);
    color: var(--white);
}

.date-cell.disabled {
    color: #cbd5e1;
    cursor: not-allowed;
}

.date-cell.today {
    border: 1px solid var(--primary);
    font-weight: 700;
}

.time-slots h4 {
    margin-bottom: 20px;
}

.slots-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.slot {
    padding: 12px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.slot:hover {
    border-color: var(--primary);
    background: var(--accent);
}

.slot.selected {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.slot.busy {
    background: #f1f5f9;
    color: #94a3b8;
    border-color: #e2e8f0;
    cursor: not-allowed !important;
    text-decoration: line-through;
}

.slot.busy:hover {
    background: #f1f5f9;
    border-color: #e2e8f0;
}

.helper-text {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Booking Form Overlay */
.booking-form-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(45, 75, 115, 0.9);
    backdrop-filter: blur(5px);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    z-index: 10;
}

.booking-form-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.booking-form-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    width: 100%;
    max-width: 450px;
    position: relative;
    transform: translateY(20px);
    transition: var(--transition);
}

.booking-form-overlay.active .booking-form-card {
    transform: translateY(0);
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-muted);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-family: inherit;
    outline: none;
    transition: var(--transition);
}

.form-group input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(45, 75, 115, 0.1);
}

/* Footer */
.footer {
    background: #1A2634;
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .logo-text {
    color: var(--white);
    display: block;
    margin-bottom: 20px;
}

.footer-brand p {
    color: #94a3b8;
    max-width: 300px;
    margin-bottom: 20px;
}

.social-links a {
    color: #94a3b8;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: #E1306C;
}

.footer h4 {
    margin-bottom: 24px;
    font-size: 1.1rem;
}

.footer p {
    color: #94a3b8;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 12px;
}

.footer ul a {
    color: #94a3b8;
    text-decoration: none;
    transition: var(--transition);
}

.footer ul a:hover {
    color: var(--secondary);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #64748b;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {

    .hero-container,
    .section-grid,
    .alternate-grid,
    .calendar-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-image {
        order: -1;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .hero-btns {
        flex-direction: column;
    }

    .booking-container {
        padding: 20px;
    }

    .slots-grid {
        grid-template-columns: 1fr;
    }
}

/* Hero Grid Layout */
.hero-content-center {
    /* Removed or reset if needed, but we are using .hero-grid now */
    text-align: left;
    margin: 0;
    max-width: 100%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.sub-hero-title {
    font-size: 1.1rem;
    color: var(--secondary);
    font-weight: 500;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--white);
    text-align: left;
}

.hero-content p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    max-width: 90%;
    margin-left: 0;
    margin-right: 0;
    text-align: left;
}

.hero-btns {
    justify-content: flex-start;
}

.hero-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 380px;
    aspect-ratio: 3/4;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.2);
    border: 8px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.hero-image-wrapper:hover .hero-img {
    transform: scale(1.05);
}

.image-caption {
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    font-weight: 500;
    text-align: center;
    letter-spacing: 1px;
    font-family: 'Outfit', sans-serif;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments for Hero */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-content {
        order: 2;
    }

    .hero-image-container {
        order: 1;
        margin-bottom: 20px;
    }

    .hero-content h1,
    .hero-content p,
    .sub-hero-title {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-btns {
        justify-content: center;
    }
}