:root {
    /* CUSTOM COLORS */
    --dark-crimson: #461e29;  /* Dark Crimson */
    --gray-orange: #c0a175;   /* Gray Orange */
    --text-dark: #333333;
    --text-light: #ffffff;
    --font-family: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    background-color: #fcf6ee;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- HEADER --- */
header.sticky-header {
    background: #fff;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    width: 100%;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- LOGO --- */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 100px;
    height: 40px;
    object-fit: contain;
}

.logo-text h3 {
    font-size: 18px;
    color: var(--dark-crimson);
    line-height: 1;
    font-weight: 700;
}

.logo-text span {
    font-size: 10px;
    letter-spacing: 1px;
    display: block;
    color: #666;
}

/* --- NAV (Desktop) --- */
nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 14px;
    transition: 0.3s;
    position: relative;
}

nav ul li a:hover {
    color: var(--dark-crimson);
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--dark-crimson);
    transition: 0.3s;
}

nav ul li a:hover::after {
    width: 100%;
}

/* --- BUTTONS --- */
.btn-primary {
    background-color: var(--dark-crimson);
    color: #fff;
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}
.btn-primary:hover {
    background-color: #5e2a37;
}

.btn-white {
    background-color: #fff;
    color: var(--text-dark);
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
}

/* --- HEADER RIGHT (Desktop) --- */
.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-info {
    font-weight: 500;
    font-size: 14px;
    color: #333;
}

.contact-info i {
    margin-right: 5px;
    color: var(--dark-crimson);
}

/* --- Mobile Only Elements (Hidden on Desktop) --- */
.mobile-header-right {
    display: none;
}

/* --- HAMBURGER BUTTON (Hidden on Desktop) --- */
/* --- HAMBURGER BUTTON --- */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 5px;
    z-index: 1001;
    position: relative;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--dark-crimson);
    border-radius: 3px;
    transition: 0.3s;
}

/* When active (menu open) - Cross icon */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}


/* --- NAV (Mobile) --- */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        position: fixed;
        top: 20px;
        right: 20px;
        z-index: 1002;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: #fff;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 1000;
        box-shadow: -5px 0 30px rgba(0,0,0,0.1);
    }
    
    nav.active {
        right: 0;
    }
    
    /* Navigation Links */
    nav ul {
        flex-direction: column;
        gap: 30px;
        text-align: center;
        margin-bottom: 40px;
    }
    
    nav ul li a {
        font-size: 24px;
        font-weight: 600;
        color: var(--dark-crimson);
        display: block;
        padding: 5px 0;
        text-decoration: none;
    }
    
    /* Mobile Header Right */
    .mobile-header-right {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        padding-top: 20px;
        border-top: 1px solid #f0f0f0;
        width: 100%;
        max-width: 280px;
    }
    
    .mobile-contact {
        font-size: 16px;
        font-weight: 500;
        color: #333;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .mobile-contact i {
        color: var(--dark-crimson);
        font-size: 18px;
    }
    
    .mobile-btn {
        width: 100%;
        padding: 14px;
        font-size: 16px;
        text-align: center;
        border-radius: 50px;
        background: var(--dark-crimson);
        color: #fff;
        text-decoration: none;
        font-weight: 500;
    }
    
    /* Hide Desktop Header Right */
    .header-right {
        display: none;
    }
    
    /* Overlay */
    .nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.4);
        z-index: 999;
        backdrop-filter: blur(5px);
    }
    
    .nav-overlay.active {
        display: block;
    }
    
    body.no-scroll {
        overflow: hidden;
    }
}


/* --- BOOKING CONSULTATION SECTION --- */
.booking-section {
    padding: 40px 20px 60px;
    background-color: #fcf6ee;
}

.booking-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.booking-heading {
    text-align: center;
    margin-bottom: 40px;
}

.booking-heading h2 {
    font-size: 2.5rem;
    color: #461e29;
    font-weight: 400;
}

/* --- LAYOUT --- */
.booking-layout {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 40px;
    align-items: start;
}

/* --- LEFT SIDE: Form Sections --- */
.booking-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-section {
    background: #fff;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.section-header {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.section-header .icon-box {
    width: 40px;
    height: 40px;
    background: #f5f0eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.section-header .icon-box ion-icon {
    font-size: 20px;
    color: #461e29;
}

.section-header h3 {
    font-size: 1.1rem;
    color: #461e29;
    font-weight: 700;
    margin: 0;
}

.section-header p {
    font-size: 0.85rem;
    color: #999;
    margin: 2px 0 0 0;
}

/* Form Fields */
.section-body .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.section-body .form-group {
    margin-bottom: 15px;
}

.section-body .form-group:last-child {
    margin-bottom: 0;
}

.section-body .form-group label {
    display: block;
    font-size: 0.85rem;
    color: #555;
    font-weight: 600;
    margin-bottom: 5px;
}

.section-body .form-group input,
.section-body .form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    background: #fff;
    color: #555;
    transition: 0.3s;
}

.section-body .form-group input:focus,
.section-body .form-group textarea:focus {
    outline: none;
    border-color: #c0a175;
}

.section-body .form-group textarea {
    resize: vertical;
    min-height: 80px;
}

/* Specialist Selection */
.specialist-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.specialist-card {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: 0.3s;
}

.specialist-card.active {
    border-color: #461e29;
    background: #fcf6ee;
}

.specialist-card .spec-icon {
    width: 40px;
    height: 40px;
    background: #461e29;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.specialist-card .spec-icon ion-icon {
    font-size: 20px;
}

.specialist-card .spec-info h4 {
    font-size: 0.9rem;
    color: #461e29;
    font-weight: 700;
    margin: 0;
}

.specialist-card .spec-info p {
    font-size: 0.75rem;
    color: #777;
    margin: 2px 0 0 0;
}

/* Session Options */
.session-options {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
}

.session-card {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
}

.session-card.active {
    border-color: #461e29;
    background: #fcf6ee;
}

.session-card ion-icon {
    font-size: 24px;
    color: #461e29;
    margin-bottom: 5px;
}

.session-card h5 {
    font-size: 0.85rem;
    color: #461e29;
    font-weight: 600;
    margin: 0;
}

.session-card p {
    font-size: 0.65rem;
    color: #999;
    margin: 2px 0 0 0;
}

/* Upload Area */
.upload-area {
    border: 1px dashed #ccc;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    cursor: pointer;
    background: #fafafa;
}

.upload-area .upload-content ion-icon {
    font-size: 32px;
    color: #461e29;
}

.upload-area .upload-content p {
    font-size: 0.9rem;
    color: #461e29;
    font-weight: 600;
    margin: 5px 0 2px 0;
}

.upload-area .upload-content span {
    font-size: 0.75rem;
    color: #999;
}

/* Timezone Info */
.timezone-info {
    background: #f5f0eb;
    padding: 10px 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
}

.timezone-info ion-icon {
    font-size: 16px;
    color: #461e29;
}

.timezone-info span {
    font-size: 0.85rem;
    color: #555;
}

/* Checkbox Items */
.checkbox-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}

.checkbox-item input[type="checkbox"] {
    margin-top: 3px;
    accent-color: #461e29;
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.checkbox-item label {
    font-size: 0.85rem;
    color: #555;
    line-height: 1.4;
    cursor: pointer;
}

/* --- RIGHT SIDE: Booking Summary --- */
.booking-summary {
    position: sticky;
    top: 20px;
}

.summary-card {
    background: #461e29;
    border-radius: 16px;
    padding: 25px;
    color: #fff;
    margin-bottom: 20px;
}

.summary-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.summary-header ion-icon {
    font-size: 22px;
}

.summary-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.summary-row .price {
    font-weight: 500;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    font-size: 1.1rem;
    font-weight: 700;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 20px;
}

.summary-total .total-price {
    color: #fff;
}

/* Payment Section */
.payment-section {
    margin-bottom: 20px;
}

.payment-label {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.payment-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.payment-option {
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 10px;
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
}

.payment-option.active {
    background: #fff;
    color: #461e29;
}

.payment-option ion-icon {
    font-size: 18px;
    display: block;
    margin: 0 auto 3px;
}

.payment-option span {
    font-size: 0.7rem;
    font-weight: 500;
}

/* Card Details in Summary */
.card-details .form-group {
    margin-bottom: 12px;
}

.card-details .form-group label {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 4px;
}

.card-details .form-group input {
    width: 100%;
    padding: 8px 10px;
    border-radius: 6px;
    border: none;
    background: rgba(255,255,255,0.15);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
}

.card-details .form-group input::placeholder {
    color: rgba(255,255,255,0.4);
}

.card-details .form-group input:focus {
    outline: none;
    background: rgba(255,255,255,0.25);
}

.card-details .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

/* Complete Button */
.complete-btn {
    width: 100%;
    padding: 12px;
    background: rgba(255,255,255,0.15);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: 0.3s;
    margin-top: 15px;
}

.complete-btn:hover {
    background: rgba(255,255,255,0.25);
}

.complete-btn ion-icon {
    font-size: 16px;
}

/* Secure Payment Note */
.secure-note {
    background: #fff;
    border-radius: 12px;
    padding: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.secure-note .secure-icon {
    width: 32px;
    height: 32px;
    background: #f5f0eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.secure-note .secure-icon ion-icon {
    font-size: 16px;
    color: #461e29;
}

.secure-note .secure-text h5 {
    font-size: 0.85rem;
    color: #461e29;
    font-weight: 600;
    margin: 0 0 2px 0;
}

.secure-note .secure-text p {
    font-size: 0.75rem;
    color: #777;
    margin: 0;
    line-height: 1.4;
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .booking-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .booking-summary {
        position: static;
    }
    
    .booking-heading h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .booking-heading h2 {
        font-size: 1.6rem;
    }
    
    .form-section {
        padding: 18px;
    }
    
    .section-body .form-row,
    .specialist-options,
    .session-options,
    .payment-options {
        grid-template-columns: 1fr;
    }
    
    .summary-card {
        padding: 18px;
    }
}



/* --- FOOTER SECTION --- */
.footer {
    background-color: #461e29; /* Dark Crimson */
    padding: 60px 20px 30px;
    border-radius: 30px 30px 0 0;
    margin: 0 20px;
    color: #fff;
    overflow: hidden;
    position: relative;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- FOOTER TOP --- */
.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1.5fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

/* Column 1: Logo & About */
.footer-col.about-col {
    max-width: 280px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo i {
    font-size: 32px;
    color: #fff;
}

.footer-logo .logo-text h3 {
    font-size: 20px;
    color: #fff;
    line-height: 1;
    font-weight: 700;
}

.footer-logo .logo-text span {
    font-size: 10px;
    letter-spacing: 1px;
    display: block;
    color: #ccc;
}

.footer-col.about-col p {
    font-size: 0.9rem;
    color: #ddd;
    line-height: 1.6;
    margin: 0;
}

/* Column Headings */
.footer-col h4 {
    color: #c0a175; /* Gray Orange */
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Contact Column */
.footer-col.contact-col .contact-item {
    margin-bottom: 15px;
}

.footer-col.contact-col .contact-item p {
    font-size: 0.9rem;
    color: #ddd;
    line-height: 1.5;
    margin: 0;
}

.footer-col.contact-col .contact-item .highlight {
    color: #c0a175; /* Gray Orange */
    font-size: 0.9rem;
    display: block;
    margin-top: 3px;
    font-weight: 500;
}

/* Links & Follow Columns */
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #ddd;
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #c0a175;
}

/* --- FOOTER BOTTOM - BIG TEXT --- */
.footer-bottom {
    position: relative;
    margin-top: 20px;
    padding-bottom: 0;
}

.big-text {
    font-size: 17rem;
    font-weight: 700;
    color: #c0a175; /* Very transparent Gray Orange */
    line-height: 0.8;
    letter-spacing: -5px;
    text-align: left;
    transform: translateY(20px);
    user-select: none;
    font-family: 'Poppins', sans-serif;
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .footer {
        border-radius: 20px 20px 0 0;
        margin: 0 10px;
    }
    
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .footer-col.about-col {
        grid-column: 1 / -1;
        max-width: 100%;
    }
    
    .big-text {
        font-size: 10rem;
    }
}

@media (max-width: 576px) {
    .footer {
        border-radius: 15px 15px 0 0;
        margin: 0 5px;
        padding: 40px 15px 0;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-col.about-col {
        max-width: 100%;
    }
    
    .big-text {
        font-size: 6rem;
        letter-spacing: -2px;
        transform: translateY(10px);
    }
}