/* =========================================
   1. RESET & BASE STYLES
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #FFFBFC;
    overflow-x: hidden;
    padding-top: 100px; /* Compensate for fixed header */
}

body.menu-is-open {
    overflow: hidden;
}


/* Ensure images don't overflow */
img {
    max-width: 100%;
    display: block;
}

/* =========================================
   2. HEADER / NAVBAR STYLES (Desktop)
   ========================================= */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 64px;
    background-color: #FFFBFC;
    z-index: 1000;
    box-sizing: border-box;
}

.branding-row { 
    position: static; 
    width: 100%;
    display: flex;
    align-items: center;
}

.logo-container {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.logo-container img {
    height: 145px;
    width: auto;
    display: block;
}

.nav-container {
    display: flex;
    align-items: center;
    width: 100%;
    gap: clamp(300px, 25vw, 450px);
}

.nav-links {
    flex: 1;
    display: flex;
    align-items: center;
}

.nav-left { justify-content: space-evenly; }
.nav-right { justify-content: space-between; }

.nav-links a {
    text-decoration: none;
    color: #C24072;
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-icons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 0;
}

.icon-btn img { 
    height: 24px; 
    width: auto; 
}

.header-actions-mobile,
.mobile-menu-overlay,
.menu-backdrop { 
    display: none; 
}

/* =========================================
   3. CART POPUP / DRAWER STYLES
   ========================================= */
.cart-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.cart-backdrop.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 481px;
    
    /* FIX 1: Use dvh (dynamic height) to avoid address bar issues, fallback to vh */
    height: 100vh;
    height: 100dvh; 
    
    background: #FFFBFC;
    z-index: 1002;
    transition: right 0.4s ease;
    
    /* FIX 2: Add padding-bottom that respects the device safe area (the bottom bar) */
    padding: 44px 25px;
    padding-bottom: calc(44px + env(safe-area-inset-bottom)); 
    
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
}

.cart-drawer.is-open {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-shrink: 0;
}

.cart-title {
    color: #762043;
    font-size: 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin: 0;
}

.close-cart-btn {
    background: none;
    border: none;
    font-size: 32px;
    color: #762043;
    cursor: pointer;
    line-height: 1;
    padding: 0;
}

/* Cart Items Area */
.cart-items-container {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 20px;
    padding-right: 5px; 
}

.cart-empty-msg {
    text-align: center;
    color: #666;
    margin-top: 50px;
    font-size: 16px;
}

.cart-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.cart-item-img {
    width: 100px;
    height: 133px;
    border-radius: 5px;
    object-fit: cover;
    background-color: #eee;
    flex-shrink: 0;
}

.cart-item-details {
    flex: 1;
    display: flex;
    justify-content: space-between;
}

.cart-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 180px;
}

.cart-item-name {
    color: black;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
}

.cart-item-meta {
    color: black;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8;
}

.cart-color-circle {
    display: inline-block;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1px solid #ddd;
    margin-left: 6px;
    vertical-align: middle;
    position: relative;
    top: -1px;
}

.cart-price-actions {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    min-height: 133px;
}

.cart-item-price {
    color: #762043;
    font-size: 16px;
    font-weight: 500;
}

.cart-item-view {
    color: black;
    font-size: 16px;
    text-decoration: underline;
    cursor: pointer;
}

/* =========================================
   CART FOOTER & BUTTONS
   ========================================= */
.cart-footer {
    border-top: 1px solid #eee;
    padding-top: 20px;
    flex-shrink: 0;
    /* Ensure the footer sits above the bottom padding of the drawer */
    margin-bottom: env(safe-area-inset-bottom);
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.total-label, .total-amount {
    color: black;
    font-size: 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.cart-actions {
    display: flex;
    justify-content: space-between;
    gap: 15px; 
    width: 100%;
}

.btn-cart {
    flex: 1; 
    height: 46px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    font-size: 16px; 
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    cursor: pointer;
    box-sizing: border-box;
    white-space: nowrap; 
    padding: 0 10px; 
}

.btn-outline {
    outline: 2px solid #C43670;
    outline-offset: -2px;
    color: #C43670;
    background: transparent;
    border: none;
    font-weight: 600;
}

.btn-solid {
    background: #C43670;
    color: #FFFBFC;
    border: none;
    font-weight: 500;
}

/* =========================================
   MOBILE ADJUSTMENT
   ========================================= */
@media (max-width: 900px) {
    .cart-actions {
        flex-direction: column; 
        gap: 15px;
    }

    .btn-cart {
        width: 100%;
        flex: none; 
    }
}

/* =========================================
   4. MOBILE RESPONSIVENESS (900px and below)
   ========================================= */
@media (max-width: 900px) {
    .site-header {
        height: 60px;
        padding: 0 20px; 
        display: flex;
        align-items: center;
    }

    body { padding-top: 80px; } 

    .nav-container { display: none; }

    .branding-row {
        justify-content: space-between;
        align-items: center;
        width: 100%;
        height: 100%;
    }

    .logo-container {
        position: absolute; 
        top: 0;
        left: 20px;
        transform: none;
    }

    .logo-container img { 
        height: 80px; 
        margin-left: -15px;
        display: block;
    }

    .header-actions-mobile {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-left: auto;
    }

    .hamburger-menu {
        background: none;
        border: none;
        padding: 0;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hamburger-menu img { 
        height: 24px; 
        width: auto;
    }

    .mobile-menu-overlay {
        display: flex;
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        z-index: 999;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-in-out;
        background-color: #FBD9E5;
        padding: 0 16px;
        flex-direction: column;
        box-sizing: border-box;
    }

    .menu-backdrop {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 998;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.4s;
    }

    .mobile-menu-overlay.is-open {
        max-height: 100vh;
        padding-top: 27px;
        padding-bottom: 27px;
    }

    .menu-backdrop.is-visible {
        opacity: 1;
        pointer-events: auto;
    }

    .mobile-nav-links .menu-link {
        text-decoration: none;
        color: #3B1022;
        font-size: 1.4rem;
        font-weight: 600;
        padding: 15px 0;
        display: block;
    }

    /* FIX 3: MORE PADDING FOR MOBILE CART */
    .cart-drawer {
        width: 100%;
        right: -100%;
        /* Add significant bottom padding for mobile browsers */
        padding-top: 20px;
        padding-left: 20px;
        padding-right: 20px;
        /* Base 40px padding + Safe Area Inset */
        padding-bottom: calc(40px + env(safe-area-inset-bottom));
    }
}

/* =========================================
   CART BADGE STYLES (New)
   ========================================= */
/* Ensure the button can hold the absolute positioned badge */
.icon-btn {
    position: relative; 
}

.cart-count-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #C43670; /* Brand Pink */
    color: white;
    font-size: 11px;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #FFFBFC; /* White border to separate from icon */
    pointer-events: none; /* Let clicks pass through to the button */
    padding: 0 4px; /* Handling double digits */
    box-sizing: border-box;
}












/* =========================================
   HERO SECTION STYLES
   ========================================= */
.hero-section {
    position: relative;
    width: 100%;
    /* Height: Adjust this to match your image aspect ratio. 
       600px is usually a good standard for desktop hero banners.
    */
    height: 600px; 
    min-height: 60vh; 
    
    /* The Background Image */
    background-image: url('flower_assets/hero.png');
    background-size: cover; /* Ensures the image covers the full area */
    background-position: center center; /* Centers the image */
    background-repeat: no-repeat;
    
    /* Layout for the text */
    display: flex;
    align-items: center; /* Vertically centers the text */
    justify-content: flex-start; /* Aligns content to the left */
    
    /* Spacing to push text away from the left edge */
    padding-left: 10%; 
    padding-right: 5%;
}

.hero-content {
margin-top: 100px;
    z-index: 1;
}

.hero-content h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 42px; /* Large and bold per your design */
    font-weight: 700;
    line-height: 1.1;
    color: #3B1022; /* Dark text color from your palette */
    margin-bottom: 25px;
}

.hero-btn {
    display: inline-block;
    background-color: #C43670; /* Brand Pink */
    color: #fff;
    padding: 12px 50px; /* Larger button padding */
    border-radius: 8px; /* Rounded corners */
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.hero-btn:hover {
    background-color: #a02c5b; /* Darker pink on hover */
}

/* Mobile Responsiveness for Hero */
@media (max-width: 900px) {
    .hero-section {
        height: 400px; /* Smaller height for mobile */
        padding-left: 20px;
        padding-right: 20px;
        background-position: center left; /* Shifts image to keep text readable if needed */
    }

    .hero-content h1 {
        font-size: 2.2rem;
        max-width: 100%;
    }

    .hero-btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
}




/* =========================================
   PACKAGES / PROCESS SECTION STYLES
   ========================================= */
.process-section {
    padding: 80px 20px;
    background-color: #FFFBFC; 
    display: flex;
    flex-direction: column;
    align-items: center;
}

.process-header-container {
    text-align: center;
    margin-bottom: 60px;
}

.process-main-title.text-pink {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 500;
    color: #C43670; 
    margin: 0;
}

.process-cards-wrapper {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1200px;
}

/* --- Card Base --- */
.process-card {
    position: relative;
    width: 350px;
    background-color: #ffffff;
    border-radius: 10px;
    padding: 0; /* Content handles padding */
    overflow: hidden; 
    display: flex;
    flex-direction: column;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* --- Hover Effects --- */
.process-card:hover {
    /* Scale the whole card up */
    transform: scale(1.05); 
    
   
   
}

/* Gold Notch Border (Overlay) */
.process-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 1.5px solid #E1AB47;
    border-radius: inherit;
    pointer-events: none;
    z-index: 1; /* Above image, below notch */
    clip-path: polygon(95px 0%, 100% 0%, 100% 100%, 0% 100%, 0% 70px, 95px 70px);
}

/* Notch Container */
.notch-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 95px;
    height: 70px;
    z-index: 2; /* Topmost */
    display: flex;
    border-right: 1.5px solid #E1AB47;
    border-bottom: 1.5px solid #E1AB47;
    border-bottom-right-radius: 12px;
    background-color: #fff; 
    
}

.notch-number {
    background-color: #C43670;
    color: #FFFBFC;
    width: 83px; 
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    border-radius: 5px; 
    margin: 0; 
}

/* --- Image Container --- */
.pkg-image-container {
    width: 100%;
    height: 220px; 
    position: relative;
    z-index: 0; 
}

.pkg-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* --- Content Body --- */
.pkg-content-body {
    padding: 22px 25px 25px 25px; /* Matches gap from Figma approx */
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

/* Option Label */
.pkg-option {
    font-size: 12px; /* Figma: 12px */
    color: black;
    font-weight: 400;
    line-height: 18px;
    margin-bottom: 1px;
    display: block;
}

/* Header Row (Title & Price) */
.pkg-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 18px; /* Figma gap: 18px */
}

.pkg-title {
    font-size: 20px; /* Figma: 20px */
    font-weight: 600;
    color: black;
    line-height: 22px;
    margin: 0;
    max-width: 60%;
}

.pkg-price {
    font-size: 1.1rem;
    color: #C43670;
    font-weight: 700;
    text-align: right;
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.pkg-price .unit {
    font-size: 0.75rem;
    color: #333;
    font-weight: 400;
}

/* Feature Box */
.pkg-feature-box {
    background-color: #FBD9E5; /* Figma: #FBD9E5 */
    padding: 10px 9px; /* Figma: padding-left/right 9px, top/bottom 10px */
    border-radius: 5px;
    margin-bottom: 18px; /* Figma gap: 18px */
}

.pkg-feature-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px; /* Gap between items inside box */
}

.pkg-feature-box li {
    font-size: 12px; /* Figma: 12px */
    color: black;
    font-weight: 400;
    line-height: 20px;
    padding-left: 20px; /* Space for bullet/check */
    position: relative;
}

/* Custom Checkbox mimicking Figma box */
.pkg-feature-box li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    width: 14px;
    height: 14px;
    font-size: 10px;
    font-weight: bold;
    display: flex;
    align-items: center;
    color: #1C1B1F;
}

/* Button */
.pkg-btn {
    width: 100%;
    height: 46px; /* Figma: 46px */
    background-color: #C43670;
    color: #FFFBFC;
    border: none;
    border-radius: 7px; /* Figma: 6.64px -> rounded to 7 */
    font-family: 'Poppins', sans-serif; /* Fallback for Oxygen */
    font-size: 16px; /* Figma: 15.95px */
    font-weight: 700;
    cursor: pointer;
    margin-bottom: 18px;
    transition: background 0.2s;
}

.pkg-btn:hover {
    background-color: #a02c5b;
}

/* Separator Line */
.pkg-separator {
    width: 100%;
    height: 1px;
    background-color: #000; /* Black line */
    opacity: 0.1; /* Subtle effect */
    margin-bottom: 18px;
}

/* Info List */
.pkg-info-list {
    list-style: none;
    padding: 0;
    margin-bottom: 18px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.pkg-info-list li {
    font-size: 12px; /* Figma: 12px */
    color: black;
    font-weight: 400;
    line-height: 1.4;
    position: relative;
    padding-left: 10px;
}

.pkg-info-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: black;
}

/* Note Box */
.pkg-note {
    /* Layout based on Figma "Inline Flex" structure */
    display: flex;
    align-items: center;
    
    /* Background & Border */
    background-color: rgba(251, 217, 229, 0.24);
    border-radius: 5px;
    
    /* The left dark pink strip is handled via border-left */
    border-left: 4px solid #762043;
    
    padding: 9px 10px; /* Padding inside the box */
    font-size: 10px; /* Figma: 10px */
    font-weight: 400;
    color: black;
    line-height: 15px;
}

/* Mobile Responsiveness */
@media (max-width: 900px) {
    .process-section {
        padding: 50px 20px;
    }
    .process-main-title.text-pink {
        font-size: 2rem;
    }
    .process-cards-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }
    .process-card {
        width: 100%;
        max-width: 350px;
        min-height: auto;
    }
}


/* =========================================
   MEDIA QUERIES (PASTE AT BOTTOM OF CSS)
   ========================================= */

@media (max-width: 900px) {

    /* --- Hero Section Mobile --- */
    .hero-section {
        height: 450px; /* Reduced height for mobile */
        padding: 0 20px; /* Reduce side padding */
        background-position: 70% center; /* Shift background slightly so text is readable */
        justify-content: center; /* Center content horizontally */
        text-align: center; /* Center text alignment */
    }

    .hero-content {
        margin-top: 0; /* Remove desktop margin to allow proper centering */
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 2.2rem; /* Smaller heading */
        margin-bottom: 20px;
    }

    .hero-btn {
        padding: 12px 30px;
        font-size: 15px;
    }

    /* --- Packages / Process Section Mobile --- */
    .process-section {
        padding: 50px 20px;
    }

    .process-main-title.text-pink {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .process-cards-wrapper {
        flex-direction: column; /* Stack cards vertically */
        align-items: center;
        gap: 40px; /* Add space between stacked cards */
    }

    .process-card {
        width: 100%;
        max-width: 350px; /* Ensures cards don't stretch too wide on tablets */
        margin: 0;
    }
}

/* --- Extra Small Screens (Small Phones) --- */
@media (max-width: 400px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .process-card {
        max-width: 100%; /* Allow card to take full width of small screen */
    }

    .pkg-content-body {
        padding: 20px 15px; /* Slightly tighter padding for small screens */
    }
}

/* --- Hover Effects --- */
.process-card:hover {
    /* Scale the whole card up */
    transform: scale(1.1); 
    
   
   
}








/* =========================================
   MODAL / POPUP STYLES
   ========================================= */

.modal-backdrop {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.5); z-index: 2000;
    display: flex; justify-content: center; align-items: center; 
    opacity: 0; visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 20px; 
}
.modal-backdrop.is-visible { opacity: 1; visibility: visible; }

.modal-container {
    background-color: #fff; width: 95%; max-width: 950px;
    border-radius: 12px; position: relative; max-height: 90vh;
    display: flex; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Left Column */
.modal-image-col { width: 40%; background-color: #f4f4f4; position: relative; }
.modal-image-col img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Right Column */
.modal-content-col {
    width: 60%; padding: 40px; overflow-y: auto; position: relative;
    scrollbar-width: thin; scrollbar-color: #C43670 #FFF0F5;
}

/* Header & Close */
.modal-close-btn {
    position: absolute; top: 20px; right: 20px; background: none; border: none;
    font-size: 28px; cursor: pointer; color: #333; z-index: 10;
}
.modal-subtitle { display: block; font-size: 14px; color: #000; margin-bottom: 5px; }
.modal-title { font-size: 26px; font-weight: 700; color: #000; margin: 0; line-height: 1.2; }
.modal-divider { width: 100%; height: 1px; background-color: #ddd; margin: 20px 0; }

/* Form Elements */
.form-section { margin-bottom: 25px; }
.form-label-heading { color: #762043; font-size: 16px; font-weight: 600; margin-bottom: 12px; }

/* Quantity */
.quantity-grid { display: flex; gap: 10px; flex-wrap: wrap; }
.qty-btn {
    flex: 1; min-width: 80px; height: 40px;
    display: flex; justify-content: center; align-items: center;
    background: #FFFBFC; box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.10);
    border-radius: 5px; border: 1px solid #E1AB47; 
    color: #000; font-size: 14px; font-weight: 500; font-family: 'Poppins', sans-serif;
    cursor: pointer; transition: all 0.2s;
}
.qty-btn:hover { background-color: #FFF8E1; }
.qty-btn.selected { background-color: #E1AB47; color: #fff; box-shadow: inset 0 2px 4px rgba(0,0,0,0.1); }

/* --- DATE SELECTOR (YOUR CUSTOM STYLES) --- */
.date-selector {
    margin-bottom: 15px;
    width: 100%;
}

.date-title {
    color: #3B1022;
    font-size: 12px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    line-height: 18px;
    margin-bottom: 6px;
}

.date-box {
    width: 100%;
    height: 54px; /* Matches height of other inputs */
    padding: 0 15px;
    background: #FBD9E5;
    border-radius: 8px;
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
}

.date-placeholder {
    color: #C43670; /* Pink as requested */
    font-size: 20px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    line-height: 30px;
    word-wrap: break-word;
    /* Opacity adjustment handled by JS if needed, or static here */
}

/* Style when date is picked (optional distinction) */
.date-placeholder.has-value {
    color: #C43670;
}

.calendar-icon {
    width: 24px;
    height: 24px;
    position: absolute; 
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

/* Hidden input class (keeps it invisible but available for flatpickr) */
.hidden {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    opacity: 0; cursor: pointer;
    z-index: 5;
}

/* --- OTHER INPUTS --- */
.input-group { margin-bottom: 15px; }
.field-label { display: block; font-size: 13px; color: #000; margin-bottom: 6px; font-weight: 500; }
.modal-input.pink-bg {
    width: 100%; padding: 12px 15px; background-color: #FBD9E5; 
    border: none; border-radius: 8px; font-family: 'Poppins', sans-serif; 
    font-size: 14px; color: #333; outline: none;
}
.textarea-field { min-height: 80px; resize: vertical; }

/* Time Input */
input[type="time"].modal-input.pink-bg {
    height: 54px; font-family: 'Nunito', sans-serif; font-size: 18px; 
    font-weight: 700; color: #C43670;
}

/* Custom Select */
.custom-select-wrapper { position: relative; width: 100%; }
.custom-select { appearance: none; -webkit-appearance: none; cursor: pointer; }
.select-chevron { position: absolute; right: 15px; top: 50%; transform: translateY(-50%); pointer-events: none; }

/* Submit Button */
.modal-submit-btn {
    width: 100%; padding: 15px; background-color: #C43670; color: white;
    border: none; border-radius: 8px; font-size: 16px; font-weight: 600;
    cursor: pointer; transition: background 0.3s; margin-top: 10px;
}
.modal-submit-btn:hover { background-color: #a02c5b; }


@media (max-width: 800px) {
    .modal-container { flex-direction: column; max-width: 500px; }
    .modal-image-col { width: 100%; height: 200px; order: -1; }
    .modal-content-col { width: 100%; padding: 25px; }
}


/* --- Placeholder Styling --- */
.modal-input.pink-bg::placeholder {
    color: rgba(196, 54, 112, 0.40); /* 40% opacity pink */
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 21px;
    opacity: 1; /* Firefox override */
}

/* Ensure textareas pick up the same style */
.textarea-field::placeholder {
    color: rgba(196, 54, 112, 0.40);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 21px;
}

/* --- Custom Select Dropdown Styling --- */

/* 1. Base Select Style (inherits from .pink-bg, adding cursor) */
.custom-select {
    cursor: pointer;
    color: #333; /* Color when an option is selected */
    font-weight: 400;
}

/* 2. Placeholder State 
   (Works because the default option has value="" and select is required) */
.custom-select:invalid {
    color: rgba(196, 54, 112, 0.40);
    font-weight: 300;
}

/* 3. The Dropdown Options */
.custom-select option {
    color: #333;
    background-color: #fff; /* White background for the list */
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    padding: 10px; /* Note: padding support varies by browser */

}

/* 4. Style the disabled "Select event type" inside the list */
.custom-select option[disabled] {
    color: #999;
    font-style: italic;
}
/* ... Your existing CSS ... */

/* Add this to handle the locked return date box */
.date-box.read-only-box {
    cursor: default; /* No pointer cursor */
    background: #fcebf2; /* Slightly lighter pink to indicate read-only */
    opacity: 1;
}

.date-box.read-only-box .date-placeholder {
    color: #C43670;
    opacity: 0.7; /* Text slightly dimmed */
}

/* Ensure no pointer events trigger on the read only box */
.date-box.read-only-box input {
    pointer-events: none;
}
/* 1. Target the Time Input specific class */
input[type="time"].modal-input.pink-bg {
    /* Existing styles you already have */
    height: 54px; 
    font-family: 'Nunito', sans-serif; 
    font-size: 18px; 
    font-weight: 700; 
    color: #C43670;
    
    /* NEW: Add pointer cursor to the whole bar so it feels clickable */
    cursor: pointer;
}

/* 2. Target the internal clock icon (Webkit browsers like Chrome/Safari/Edge) */
input[type="time"].modal-input.pink-bg::-webkit-calendar-picker-indicator {
    /* This hides the ugly default black icon */
    background: transparent;
    color: transparent;
    
    /* This adds your custom PINK clock icon */
    /* I created a clean SVG for you encoded here so you don't need to upload a file */
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23C43670' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'%3E%3C/circle%3E%3Cpolyline points='12 6 12 12 16 14'%3E%3C/polyline%3E%3C/svg%3E");
    
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    
    /* Sizing and positioning */
    width: 18px;
    height: 18px;
    cursor: pointer;
    
    /* Push it slightly from the right edge if needed */
    margin-right: 5px; 
}




/* -----------------------
   Footer Styles
   ----------------------- */
.site-footer {
    background-color: #FBD9E5; /* Light Pink Background */
    padding: 25px 0px 30px 0px;
    color: #762043; /* Dark Pink Text */
    font-family: 'Poppins', sans-serif;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 60px;
    margin-bottom: 60px;
    margin-left: 70px;
    margin-right: 70px;
}

/* --- Left Column (Newsletter) --- */
.footer-left {
    flex: 1;
    max-width: 550px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo img {
    height: 80px; /* Adjust based on your actual logo file */
    width: auto;
    margin-bottom: 10px;
    /* If logo is SVG/black and needs to be pink, use filter or edit SVG directly. 
       Assuming SVG is colored correctly based on image. */
}

.newsletter-text {
    font-size: 16px;
    line-height: 1.5;
    max-width: 450px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.newsletter-input {
    flex: 1;
    height: 46px;
    min-width: 250px;
    background: rgba(236, 131, 158, 0.29); /* Semi-transparent pink */
    border: none;
    border-radius: 8px;
    padding: 0 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: #762043;
    outline: none;
}

.newsletter-input::placeholder {
    color: rgba(58, 16, 33, 0.5);
    font-weight: 500;
}

.subscribe-btn {
    height: 46px;
    padding: 0 35px;
    background-color: #C43670; /* Brand Pink */
    color: #FFFBFC;
    border: none;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.subscribe-btn:hover {
    background-color: #a02c5b;
}

.privacy-text {
    font-size: 14px;
    line-height: 1.4;
    opacity: 0.8;
    max-width: 500px;
    margin-top: 10px;
}

/* --- Right Column (Links) --- */
.footer-right {
    display: flex;
    gap: 80px;
    margin-top: 40px;
}

.footer-column h4 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 25px;
    color: #1C1B1F; /* Black/Dark Grey headings as per image */
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-column a {
    text-decoration: none;
    color: #1C1B1F;
    font-size: 16px;
    font-weight: 400;
    transition: color 0.2s;
}

.footer-column a:hover {
    color: #C43670;
}

/* --- Bottom Bar --- */
.footer-bottom {
    border-top: 1px solid #C43670;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-left: 40px;
    margin-right: 40px;
}

.copyright, .footer-legal a {
    font-size: 14px;
    color: #C43670;
    
}

.footer-legal {
    display: flex;
    gap: 25px;
}

.footer-legal a:hover {
    text-decoration: underline;
}

/* Footer Media Query */
@media (max-width: 900px) {
    .site-footer {
        padding: 25px 20px 40px 20px;
    }

    .footer-content {
        margin: 0;
        flex-direction: column;
        gap: 40px;
    }

    /* --- Left Side (Newsletter) --- */
    .footer-left {
        max-width: 100%;
        gap: 10px;
    }

    .footer-logo img {
        height: 60px;
        margin-bottom: 10px;
    }

    .newsletter-text {
        font-size: 16px;
        line-height: 1.5;
        max-width: 100%;
        margin-bottom: 15px;
        color: #762043;
    }

    /* --- Form Styling --- */
    .newsletter-form {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .newsletter-input {
        width: 100%;
        height: 55px; /* Matches button height */
        
        /* Soft semi-transparent background to match image */
        background-color: rgba(236, 131, 158, 0.25); 
        border: 1px solid transparent; /* Invisible border unless focused */
        border-radius: 8px;
        
        padding: 10px 20px;
        font-family: 'Poppins', sans-serif;
        font-size: 16px; /* Prevents auto-zoom on iPhone */
        color: #762043;
        outline: none;
        transition: border 0.3s ease, background 0.3s ease;
    }

    .newsletter-input::placeholder {
        color: #9E5A75; /* Softer version of the text color */
        opacity: 0.8;
    }

    .newsletter-input:focus {
        background-color: rgba(255, 255, 255, 0.4);
        border: 1px solid #C43670;
    }

    .subscribe-btn {
        width: 100%;
        height: 45px;
        border-radius: 8px;
        font-size: 18px;
        font-weight: 500;
        margin-top: 5px; /* Slight optical spacing */
    }

    .privacy-text {
        font-size: 13px;
        color: #762043;
        margin-top: 5px;
        opacity: 0.9;
    }

    /* --- Right Side (Links) --- */
    .footer-right {
        margin-top: 20px;
        display: flex;
        justify-content: space-between; /* Keeps columns side-by-side */
        gap: 20px;
        width: 100%;
    }

    .footer-column h4 {
        font-size: 20px;
        color: #762043; /* Matches Brand Color */
        margin-bottom: 20px;
    }

    .footer-column a {
        color: #762043;
        font-size: 16px;
    }

    /* --- Bottom Bar --- */
    .footer-bottom {
        margin: 40px 0 0 0;
        padding-top: 20px;
        border-top: 1px solid rgba(196, 54, 112, 0.2); /* Softer line */
        
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .copyright {
        font-size: 13px;
        color: #C43670;
    }

    .footer-legal {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }

    .footer-legal a {
        font-size: 13px;
        text-decoration: underline;
        color: #C43670;
    }
}