   /* =================================================================
   FULL BOOKING WIZARD STYLES (Video Layout Replica)
   ================================================================= */

/* Container & Header */
#booking-section {
    min-height: 800px; /* Ensure space for height changes */
}
.step-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(196, 73, 83, 0.2);
    padding-bottom: 15px;
}
.btn-back {
    background: transparent;
    border: none;
    color: #c44953;
    font-weight: 700;
    cursor: pointer;
    font-size: 14px;
}

/* --- STEP 1: SERVICE LIST (Reusing previous styles) --- */
.service-list-item {
    display: flex;
    align-items: center;
    background: #ffffff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(196, 73, 83, 0.08);
    border: 1px solid rgba(196, 73, 83, 0.15);
}
.service-list-item .service-thumb {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    margin-right: 20px;
    border-radius: 5px;
    overflow: hidden;
}
.service-details { flex-grow: 1; padding-right: 20px; }
.service-meta { display: flex; list-style: none; margin: 0 0 10px 0; padding: 0; }
.service-meta li { margin-right: 15px; font-weight: 600; color: #c44953; font-size: 14px; }
.btn-select {
    background: #0c0c0c;
    color: #fff !important;
    padding: 10px 25px;
    border: none;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
    cursor: pointer;
    transition: 0.3s;
}
.btn-select:hover { background: #c44953; }
.btn-wide { width: 100%; max-width: 300px; padding: 15px; font-size: 14px; }

/* --- STEP 2: ADD-ONS GRID --- */
.addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}
.addon-card {
    position: relative;
    background: #ffffff;
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}
.addon-card:hover { border-color: #c44953; }
.addon-card input { display: none !important; } /* Hide default checkbox */
.addon-card .checkmark {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
}
.addon-card input:checked ~ .checkmark {
    background: #c44953;
    border-color: #c44953;
}
.addon-card input:checked ~ .addon-title { color: #c44953; }
.addon-card input:checked {
    /* Style wrapper if possible, otherwise rely on sibling selectors above */
}
/* Highlight card when checked */
.addon-card:has(input:checked) {
    border-color: #c44953;
    background: #fff5f6;
}

.addon-title { font-weight: 700; font-size: 14px; color: #0c0c0c; margin-bottom: 5px; padding-right: 25px; }
.addon-price { font-size: 13px; color: #666; display: block; }
.addon-time { font-size: 12px; color: #999; }

/* --- STEP 3: CALENDAR UI --- */
.calendar-layout {
    display: flex;
    gap: 30px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}
.calendar-wrapper { flex: 1.5; padding: 20px; border-right: 1px solid #eee; }
.cal-header { display: flex; justify-content: space-between; font-weight: 700; color: #0c0c0c; margin-bottom: 20px; }
.cal-nav i { cursor: pointer; padding: 0 10px; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); text-align: center; gap: 5px; }
.day-name { font-size: 12px; font-weight: 700; color: #999; margin-bottom: 10px; }
.day {
    padding: 10px;
    font-size: 14px;
    border-radius: 50%;
    cursor: pointer;
    color: #0c0c0c;
}
.day:hover:not(.disabled) { background: #fdf2f5; color: #c44953; }
.day.active { background: #c44953; color: #fff; }
.day.disabled { color: #eee; pointer-events: none; }

.time-wrapper { flex: 1; padding: 20px; }
.time-grid { display: flex; flex-direction: column; gap: 10px; margin-top: 15px; }
.time-btn {
    background: #fff;
    border: 1px solid #c44953;
    color: #c44953;
    padding: 10px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
}
.time-btn:hover { background: #c44953; color: #fff; }

/* --- STEP 4: FORM --- */
.booking-form input {
    width: 100%;
    height: 50px;
    padding: 0 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
}
.terms-label { font-size: 14px; color: #666; cursor: pointer; display: flex; align-items: center; }
.terms-label input { width: auto; height: auto; margin: 0 10px 0 0; }

/* Mobile */
@media(max-width: 768px) {
    .service-list-item { flex-direction: column; text-align: center; }
    .service-list-item .service-thumb { margin: 0 0 15px 0; }
    .calendar-layout { flex-direction: column; }
    .calendar-wrapper { border-right: none; border-bottom: 1px solid #eee; }
}



/* =================================================================
   FIX: "NEED HELP" BACKGROUND VISIBILITY
   ================================================================= */

/* 1. Force the overlay to be a solid, light color (Soft Pink) */
[data-overlay-dark]:before {
    background-color: #fdf2f5 !important; /* Soft Pink background */
    opacity: 0.95 !important; /* High opacity (95%) to hide the dark photo underneath */
}

/* 2. Ensure the text on top is definitely Black */
[data-overlay-dark] h5, 
[data-overlay-dark] h1, 
[data-overlay-dark] h2, 
[data-overlay-dark] p {
    color: #0c0c0c !important; /* Black text */
}

/* 3. Ensure the "Questions?" subheading is Pink */
[data-overlay-dark] h6 {
    color: #c44953 !important;
}








/* =================================================================
   MOBILE MENU FIX (Pink/White Theme)
   ================================================================= */

/* 1. Force the Navbar background to White on Mobile */
@media screen and (max-width: 991px) {
    .navbar {
        background-color: #ffffff !important; /* White Background */
        border-bottom: 1px solid rgba(196, 73, 83, 0.1); /* Subtle Pink Border */
        padding: 15px 0;
    }

    /* 2. Menu Dropdown Container (The part that slides down) */
    .navbar-collapse {
        background-color: #ffffff !important; /* White Background */
        max-height: 400px;
        overflow-y: auto;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05); /* Soft Shadow */
    }

    /* 3. Force Menu Links to be Black */
    .navbar .navbar-nav .nav-link {
        color: #0c0c0c !important; /* Black Text */
        font-weight: 700;
        border-bottom: 1px solid rgba(0,0,0,0.05); /* Separator line */
        padding: 12px 0;
    }

    /* 4. Active Link Color (Pink) */
    .navbar .navbar-nav .active {
        color: #c44953 !important;
    }

    /* 5. Mobile Toggle Button (Hamburger Icon) */
    .navbar-toggler {
        border: none !important;
        outline: none !important;
    }
    .navbar-toggler-icon, 
    .navbar .icon-bar {
        color: #c44953 !important; /* Pink Hamburger Icon */
        font-size: 28px;
    }
    
    /* 6. Fix Logo Sizing on Mobile */
    .logo-img {
        width: 120px !important; /* Adjust size properly */
        margin-bottom: 0;
    }
}



/* =================================================================
   FIX: SLIM MOBILE HEADER (Remove Excess White Space)
   ================================================================= */

@media screen and (max-width: 991px) {
    /* 1. Kill the 100px minimum height forcing the bar open */
    .navbar {
        min-height: 60px !important; /* Standard mobile header height */
        padding-top: 5px !important;
        padding-bottom: 5px !important;
        height: auto !important;
    }

    /* 2. Remove the heavy padding around the logo container */
    .logo-wrapper {
        padding: 5px 0px !important; /* Reduced from 21px */
        margin: 0 !important;
        line-height: 1;
    }

    /* 3. Ensure the logo image fits the new slim header */
    .logo-ismg, .logo-img {
        max-width: 100px !important;
        max-height: 50px !important; /* Constraints height to fit bar */
        width: auto !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    /* 4. Align the Hamburger Menu vertically */
    .navbar-toggler {
        margin-top: 0px !important;
        padding: 5px !important;
    }
}





/* =================================================================
   FIX: DROPDOWN MENU VISIBILITY
   ================================================================= */

/* 1. Make the Dropdown Box White */
.navbar .dropdown-menu {
    background-color: #ffffff !important;
    border: 1px solid rgba(196, 73, 83, 0.1) !important; /* Subtle Pink Border */
    box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important; /* Soft Shadow */
}

/* 2. Make the Dropdown Links Black */
.navbar .dropdown-menu .dropdown-item,
.navbar .dropdown-menu .dropdown-item span {
    color: #0c0c0c !important; 
    font-weight: 500;
}

/* 3. Add Pink Color on Hover */
.navbar .dropdown-menu .dropdown-item:hover,
.navbar .dropdown-menu .dropdown-item:hover span {
    color: #c44953 !important;
    background-color: #fdf2f5 !important; /* Very light pink background on hover */
}





/* =================================================================
   FIX: TRANSPARENT/PINK MOBILE HEADER
   ================================================================= */

@media screen and (max-width: 991px) {
    /* 1. Change Background to Soft Pink to match the body */
    .navbar {
        background-color: #fdf2f5 !important; 
        border-bottom: none !important; /* Remove the line so it blends */
        box-shadow: none !important;    /* Remove shadow so it's flat */
    }

    /* 2. Keep the dropdown menu White so it pops out when opened */
    .navbar-collapse {
        background-color: #ffffff !important;
        margin-top: 10px; /* Small gap between header and menu */
        border-radius: 8px;
        box-shadow: 0 10px 30px rgba(196, 73, 83, 0.1);
    }
}



/* =================================================================
   FIX: KEEP MOBILE HEADER PINK ON SCROLL
   ================================================================= */

@media screen and (max-width: 991px) {
    /* Force the sticky header (on scroll) to match the background */
    .nav-scroll {
        background-color: #fdf2f5 !important; /* Soft Pink */
        box-shadow: none !important;          /* Remove shadow for a flat look */
        border-bottom: none !important;       /* No border */
        padding-top: 5px !important;          /* Keep it slim */
        padding-bottom: 5px !important;
    }
}







/* =================================================================
   FIX: LOGO SHRINK ON SCROLL ONLY (DESKTOP)
   ================================================================= */

@media screen and (min-width: 992px) {

    /* 1. INITIAL STATE (Top of Page - Big Logo/Header) */
    .navbar {
        min-height: 100px;       /* Taller bar at the top */
        padding-top: 15px;
        padding-bottom: 15px;
        transition: all 0.4s ease-in-out; /* Enables the smooth shrinking animation */
    }

    .logo-wrapper {
        padding: 10px 15px;
        transition: all 0.4s ease-in-out;
    }

    /* Large Logo at the top */
    .logo-ismg, .logo-img {
        max-width: 180px;        /* Larger Width */
        max-height: 85px;        /* Larger Height */
        width: auto;
        height: auto;
        transition: all 0.4s ease-in-out; /* Smoothly scales down */
    }

    /* 2. SCROLLED STATE (White Bar - Slim Header) */
    /* These rules apply ONLY when the class .nav-scroll is active */
    
    .nav-scroll {
        min-height: 60px !important;  /* Force slim height */
        padding-top: 0px !important;
        padding-bottom: 0px !important;
    }

    .nav-scroll .logo-wrapper {
        padding: 5px 15px !important; /* Remove excess padding */
    }

    /* Small Logo when scrolled */
    .nav-scroll .logo-ismg,
    .nav-scroll .logo-img {
        max-width: 110px !important;  /* Shrink Width */
        max-height: 50px !important;  /* Shrink Height */
    }
}



/* =================================================================
   IMPROVED SERVICE CARD DESIGN (Premium Look)
   ================================================================= */

.service-list-item {
    display: flex;
    align-items: flex-start; /* Aligns content to top */
    background: #ffffff;
    padding: 30px; /* More breathing room */
    margin-bottom: 25px;
    border-radius: 12px; /* Softer corners */
    box-shadow: 0 10px 40px rgba(196, 73, 83, 0.08); /* Premium shadow */
    border: 1px solid rgba(196, 73, 83, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-list-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(196, 73, 83, 0.15);
    border-color: rgba(196, 73, 83, 0.3);
}

/* Image Styling */
.service-list-item .service-thumb {
    width: 180px; /* Larger, more prominent image */
    height: 180px;
    flex-shrink: 0;
    margin-right: 30px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #fdf2f5;
}

.service-list-item .service-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-list-item:hover .service-thumb img {
    transform: scale(1.05); /* Subtle zoom on hover */
}

/* Content Styling */
.service-details {
    flex-grow: 1;
    padding-right: 20px;
}

.service-details h5 {
    font-family: 'Syne', sans-serif;
    font-size: 20px; /* Larger title */
    font-weight: 700;
    color: #0c0c0c !important;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.service-meta-row {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 14px;
    font-weight: 600;
    color: #c44953 !important; /* Pink accent text */
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-meta-row i {
    margin-right: 5px;
}

.service-description p {
    font-size: 14px;
    line-height: 1.6;
    color: #555 !important;
    margin-bottom: 8px;
}

.service-description strong {
    color: #0c0c0c !important;
    font-weight: 700;
}

.service-description .highlight {
    color: #c44953 !important;
    font-weight: 700;
    margin-top: 12px;
    display: block;
    font-size: 13px;
    text-transform: uppercase;
}

/* Button Styling */
.service-action {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding-left: 15px;
    border-left: 1px solid rgba(0,0,0,0.05); /* Separator line */
}

.btn-select {
    background: #0c0c0c;
    color: #fff !important;
    padding: 12px 35px;
    border: none;
    border-radius: 50px; /* Pill shape */
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.btn-select:hover {
    background: #c44953; /* Pink hover */
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(196, 73, 83, 0.3);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .service-list-item {
        flex-direction: column;
        padding: 20px;
        text-align: center;
    }
    
    .service-list-item .service-thumb {
        width: 100%;
        height: 220px;
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .service-action {
        border-left: none;
        width: 100%;
        margin-top: 20px;
        padding-left: 0;
    }
    
    .btn-select {
        width: 100%;
    }
    
    .service-meta-row {
        justify-content: center;
    }
}















/* =================================================================
   BOOKING WIZARD & CALENDAR FIXED
   ================================================================= */

/* --- BOOKING SUMMARY BAR (New) --- */
.booking-summary {
    background: #ffffff;
    border: 1px solid rgba(196, 73, 83, 0.2);
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.summary-left { display: flex; align-items: center; }
.summary-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 2px solid #fdf2f5;
}
.summary-details h6 {
    color: #c44953 !important;
    font-size: 14px;
    margin-bottom: 0;
    font-weight: 700;
}
.summary-details span { font-size: 12px; color: #666; }
.summary-right { text-align: right; }
.summary-price {
    font-size: 16px;
    font-weight: 800;
    color: #0c0c0c;
    display: block;
}
.deposit-badge {
    font-size: 10px;
    background: #c44953;
    color: #fff;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
}

/* --- ADD-ON CARDS (Fixed Checkboxes) --- */
.addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 15px;
}
.addon-card {
    position: relative;
    background: #ffffff;
    border: 1px solid #e0e0e0; /* Grey border by default */
    padding: 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.2s;
    display: flex;
    flex-direction: column;
}

/* Hover Effect */
.addon-card:hover { border-color: #c44953; }

/* CHECKED STATE (This fixes the "looks checked" issue) */
.addon-card:has(input:checked) {
    border-color: #c44953;
    background-color: #fff5f6; /* Very light pink bg when checked */
}

/* The Box */
.addon-card .checkmark {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 22px;
    height: 22px;
    border: 2px solid #ccc; /* Grey border when empty */
    border-radius: 4px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}

/* The Icon inside the box */
.addon-card .checkmark i {
    display: none; /* HIDDEN BY DEFAULT */
    color: #fff;
    font-size: 12px;
}

/* When Input is Checked */
.addon-card input:checked ~ .checkmark {
    background: #c44953;
    border-color: #c44953;
}
.addon-card input:checked ~ .checkmark i {
    display: block; /* SHOW ICON ONLY WHEN CHECKED */
}

.addon-card input { display: none; } /* Hide real checkbox */
.addon-title { font-weight: 700; font-size: 14px; color: #0c0c0c; margin-bottom: 5px; padding-right: 30px; }
.addon-price { font-size: 13px; color: #666; }

/* --- CALENDAR STYLES (Fixed Grid) --- */
.calendar-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 20px;
}
.calendar-wrapper { flex: 1.5; min-width: 300px; }
.cal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    color: #c44953 !important;
    font-weight: 700;
}
.cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    text-align: center;
}
.day-name { font-size: 12px; color: #999; font-weight: 600; margin-bottom: 10px; }
.day {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    border-radius: 50%;
    cursor: pointer;
    color: #0c0c0c;
    transition: 0.2s;
}
.day:hover:not(.disabled) { background: #fdf2f5; color: #c44953; font-weight: 700; }
.day.active { background: #c44953; color: #fff; }

/* UNAVAILABLE DATES (Crossed out) */
.day.disabled {
    color: #ccc;
    text-decoration: line-through;
    pointer-events: none;
    background: #f9f9f9;
}

/* TIME SLOTS */
.time-wrapper { flex: 1; padding-left: 20px; border-left: 1px solid #eee; }
.time-grid { display: flex; flex-direction: column; gap: 10px; }
.time-btn {
    padding: 10px;
    border: 1px solid #c44953;
    background: #fff;
    color: #c44953;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
}
.time-btn:hover { background: #c44953; color: #fff; }

/* --- STEP 4 BUTTON/PAYPAL --- */
#paypal-button-container {
    margin-top: 20px;
    min-height: 150px; /* Force space so it's not invisible */
}

@media(max-width: 768px) {
    .calendar-layout { flex-direction: column; }
    .time-wrapper { border-left: none; border-top: 1px solid #eee; padding-left: 0; padding-top: 20px; }
    .booking-summary { flex-direction: column; text-align: center; }
    .summary-left { flex-direction: column; margin-bottom: 10px; }
    .summary-img { margin-right: 0; margin-bottom: 10px; }
    .summary-right { width: 100%; border-top: 1px solid #eee; padding-top: 10px; }
}






/* =================================================================
   PROFESSIONAL BOOKING UPGRADES
   ================================================================= */

/* --- 1. POLICY MODAL (The Popup) --- */
.policy-modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    display: none; /* Hidden by default */
    align-items: center;
    justify-content: center;
}
.policy-modal {
    background: #fff;
    width: 90%;
    max-width: 600px;
    border-radius: 12px;
    padding: 30px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    border-top: 5px solid #c44953;
}
.policy-modal h4 { color: #c44953 !important; font-weight: 800; margin-bottom: 20px; text-align: center; }
.policy-section { margin-bottom: 20px; }
.policy-section h6 { color: #0c0c0c !important; font-weight: 700; margin-bottom: 5px; font-size: 16px; }
.policy-section p { font-size: 14px; color: #555; line-height: 1.5; margin-bottom: 0; }
.policy-actions { display: flex; gap: 10px; margin-top: 30px; }
.btn-accept { background: #c44953; color: #fff !important; flex: 1; border: none; padding: 15px; font-weight: 700; border-radius: 5px; cursor: pointer; }
.btn-decline { background: #eee; color: #333 !important; flex: 1; border: none; padding: 15px; font-weight: 700; border-radius: 5px; cursor: pointer; }

/* --- 2. LIVE ORDER SUMMARY (Always Visible on Top) --- */
.live-summary {
    background: #fff5f6; /* Very light pink */
    border: 1px solid #c44953;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
    display: none; /* Hidden on Step 1 */
}
.summary-header { display: flex; align-items: center; border-bottom: 1px solid rgba(196, 73, 83, 0.2); padding-bottom: 15px; margin-bottom: 15px; }
.sum-thumb { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; margin-right: 15px; border: 2px solid #fff; box-shadow: 0 2px 5px rgba(0,0,0,0.1); }
.sum-title h5 { font-size: 16px; color: #c44953 !important; margin: 0; font-weight: 700; }
.sum-title span { font-size: 12px; color: #666; }
.sum-addons { font-size: 13px; color: #0c0c0c; margin-bottom: 15px; }
.sum-addons ul { padding-left: 20px; margin: 0; }
.sum-totals { display: flex; justify-content: space-between; align-items: center; background: #fff; padding: 10px; border-radius: 5px; }
.total-label { font-weight: 700; color: #0c0c0c; }
.deposit-label { color: #c44953; font-weight: 700; font-size: 14px; }

/* --- 3. DYNAMIC TIME SLOTS --- */
.time-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
    margin-top: 15px;
}
.time-btn {
    background: #fff; border: 1px solid #ddd; padding: 10px; border-radius: 5px; font-size: 13px; cursor: pointer; transition: 0.2s;
}
.time-btn:hover { border-color: #c44953; color: #c44953; }
.time-btn.selected { background: #c44953; color: #fff; border-color: #c44953; }

/* --- 4. WHATSAPP BUTTON --- */
.btn-whatsapp {
    background: #25D366; /* WhatsApp Green */
    color: #fff !important;
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: 0.3s;
}
.btn-whatsapp:hover { background: #128C7E; transform: translateY(-2px); }
.or-divider { text-align: center; margin: 15px 0; color: #999; font-size: 12px; text-transform: uppercase; letter-spacing: 1px; }



/* Update Calendar Grid to handle dynamic days */
.cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr); /* 7 Columns for S M T W T F S */
    gap: 5px;
    text-align: center;
}

/* Ensure the days container acts as part of the grid or replace the grid items directly */
/* Since we are injecting divs directly into .cal-grid in the JS below, 
   we actually don't need a wrapper .days-container div in the HTML 
   if we append directly to .cal-grid. 
   
   However, to keep headers separate, let's target the generated days: 
*/

.cal-grid .day {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    border-radius: 50%;
    cursor: pointer;
    color: #0c0c0c;
    transition: 0.2s;
}

/* Booked/Disabled State - Visually Greyed Out */
.day.disabled {
    color: #ccc !important;
    background-color: #f9f9f9;
    text-decoration: line-through; /* Visual cue that it's taken */
    pointer-events: none; /* Make it unclickable */
    cursor: not-allowed;
}

/* Today's Date Highlight (Optional) */
.day.today {
    border: 1px solid #c44953;
    font-weight: 700;
}