/* =========================================
   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;
}
/* =========================================
   3. HERO SECTION STYLES
   ========================================= */
.hero-section {
    height: calc(100vh - 100px); 
    min-height: 600px;
    width: 100%;
    background: linear-gradient(180deg, #FFFBFC 0%, #FBD9E5 49%, #FFFBFC 100%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 70px;
}

.hero-content-container {
    width: 50vw;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.hero-content-wrapper {
    gap: 19.31px;
    display: flex;
    flex-direction: column;
}

.welcome-text {
    color: #762043;
    font-size: 32px;
    font-family: 'Great Vibes', cursive;
    font-weight: 400;
    line-height: 20px;
}

.main-headline {
    color: #3B1022;
    font-size: 64px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 20px;
}

.description {
    width: 100%;
    max-width: 615px;
    color: #3B1022;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    line-height: 21.76px;
    margin-bottom: 20px;
}

.hire-button-wrapper {
    width: 231px;
    height: 38px;
    text-decoration: none;
    display: block;
}

.hire-button {
    width: 100%;
    height: 100%;
    padding: 6.54px 34.89px;
    background: #C43670;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFFBFC;
    font-size: 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    line-height: 30px;
    cursor: pointer;
    transition: background 0.3s;
}

.hire-button:hover { background: #e04a88; }

.hero-media {
    width: 50vw;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 0;
}

.single-hero-image {
    width: 100%;
    height: 515px;
    background-image: url('assets/hero_bg.png'); 
    background-size: contain;      
    background-repeat: no-repeat;  
    background-position: center;
    border-radius: 0;
    box-shadow: none;
}

/* Hero Media Query */
@media (max-width: 900px) {
    .hero-section {
        height: auto;
        flex-direction: column;
        padding: 0;
        background: #FFFBFC;
    }

    .hero-media {
        order: 1; /* Image on top */
        width: 100%;
        /* Adjusted padding: Removed top padding so image sits flush if desired, 
           or keep '20px' if you want a gap */
        padding: 10px 20px 10px 20px; 
       
        display: block;
        height: auto;
     
       
    }

    .single-hero-image {
        width: 100%;
        /* Reduced height to prevent huge empty spaces since we are using 'contain' */
        height: 350px; 
        background-position: center center;
        /* 'contain' ensures the whole image is visible without cutting off */
        background-size: contain; 
        background-repeat: no-repeat;
        border-radius: 0;
        box-shadow: none;
    }

    .hero-content-container {
        order: 2; /* Content below image */
        width: 100%;
        align-items: center;
        /* This 5% padding creates the space on the sides for the button/text */
        padding: 0 5%; 
        margin-bottom: 3rem;
    }

    .hero-content-wrapper {
        align-items: flex-start;
        gap: 10px;
        width: 100%; /* Ensure wrapper fills container */
    }

    .welcome-text {
        width: 100%;
        text-align: left;
        font-size: 24px;
        margin-bottom: 0.5rem;
        padding-left: 5px;
    }

    .main-headline {
        width: 100%;
        text-align: left;
        font-size: 28px;
     
        height: auto;
        margin-bottom: 1.5rem;
    }

    .description {
        width: 100%;
        text-align: left;
        font-size: 16px;
        line-height: 1.5;
        margin-bottom: 2rem;
    }

    .hire-button-wrapper {
        width: 100%;
        height: 55px;
        /* Removed max-width so it stretches fully */
        max-width: none; 
    }

    .hire-button {
        font-size: 20px;
        font-weight: 500;
        line-height: 25px;
        padding: 0; /* Centering handled by flexbox in main class */
        border-radius: 8px;
        width: 100%;
    }
}

/* =========================================
   4. CATEGORY SECTION STYLES
   ========================================= */
.category-section {
    padding: 80px 70px;
    text-align: center;
    background-color: #FFFBFC;
}

.category-header {
    margin-bottom: 40px;
    position: relative;
    display: flex;
    justify-content: center; 
    align-items: center;
    
    width: 100%;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 10px;
}

.category-header h2 {
    color: #C24072;
    font-size: 32px;
    font-weight: 500;
    white-space: nowrap;
}

.view-all-link {
    position: absolute;
    right: 10px; 
    
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #C24072;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s;
    white-space: nowrap;
}

.view-all-link:hover { color: #8f2a50; }

.view-all-link svg {
    margin-left: 5px;
    width: 14px;
    height: 14px;
    fill: #C24072;
    transition: fill 0.3s;
}

.view-all-link:hover svg { fill: #8f2a50; }

.category-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
    flex-wrap: wrap; 
}

.category-card {
    position: relative;
    width: 250px;
    min-width: 250px;
    height: 330px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block; 
    text-decoration: none;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.category-card:hover .card-image {
    transform: scale(1.05);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 60%, rgba(118, 32, 67, 0.60) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 15px;
}

.card-content-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 10px;
}

.card-title {
    color: #FFFBFC;
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 0; 
    text-align: left; 
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    flex: 1; 
}

.card-arrow {
    position: relative; 
    bottom: auto;
    right: auto;
    width: 25px; 
    height: 25px; 
    background-color: transparent; 
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
    margin-top: 0; 
    flex-shrink: 0; 
}

.card-arrow img {
    width: 100%; 
    height: 100%;
    object-fit: contain;
    display: block;
}

.mobile-shop-btn {
    display: none;
}

@media (max-width: 900px) {
    .category-section {
        padding: 40px 20px;
    }

    .category-header {
        margin-bottom: 25px;
        padding: 0;
        /* Center the title since the link is gone */
        justify-content: center; 
    }

    .category-header h2 {
        font-size: 24px; /* Adjusted for better visibility */
        text-align: center;
        width: 100%;
    }

    /* Hide the "View all" text link at the top */
    .view-all-link {
        display: none;
    }

    .category-grid {
        display: grid;
        grid-template-columns: 1fr 1fr; /* 2 columns */
        gap: 15px;
        overflow-x: visible;
        flex-wrap: wrap; 
        padding: 0;
    }

    /* Hide the 4th item (Balloon Arches) */
    .category-card:nth-child(4) {
        display: none;
    }

    .category-card {
        width: 100%; 
        min-width: auto;
        height: 220px; 
    }
    
    .card-title {
        font-size: 1rem;
    }

    .card-arrow {
        width: 20px;
        height: 20px;
    }

    /* STYLES FOR THE NEW MOBILE BUTTON */
    .mobile-shop-btn {
        display: flex; /* Show it on mobile */
        justify-content: center;
        align-items: center;
        
        width: 100%;
        height: 55px;
        margin-top: 30px; /* Space between grid and button */
        
        background: #C43670; /* Same pink as Hero button */
        color: #FFFBFC;
        border-radius: 5px;
        
        font-family: 'Poppins', sans-serif;
        font-size: 20px;
        font-weight: 500;
        text-decoration: none;
        transition: background 0.3s;
    }

    .mobile-shop-btn:hover {
        background: #e04a88;
    }
}

/* =========================================
   5. PLAN SECTION STYLES
   ========================================= */
.plan-section {
    position: relative;
    width: 100%;
    /* Updated padding to match new design (approx 66px top/bottom) */
    padding: 66px 20px; 
    /* Original image path kept */
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%), url('assets/catalogue/flowers_bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    /* Updated gap from new design */
    gap: 26.17px; 
}

.plan-text-wrapper {
    width: 100%;
    max-width: 768px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 13.08px;
}

.plan-headline {
    color: #FEF4ED;
    font-size: 34.89px;
    /* Updated font family to Oxygen as requested */
    font-family: 'Oxygen', sans-serif; 
    font-weight: 700;
    line-height: 52.34px;
    word-wrap: break-word;
}

.plan-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.plan-btn {
    /* Updated width to 320px */
    width: 320px;
    max-width: 100%; /* Ensures it fits on small mobile screens */
    height: 40px;
    border-radius: 6.11px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    
    /* Button styles */
    background: #C43670;
    color: #FFFBFC;
    border: none;
    
    /* Font styles */
    font-family: 'Poppins', sans-serif;
    font-size: 14.66px;
    font-weight: 500;
    line-height: 21.98px;
    
    transition: transform 0.2s ease, background 0.2s;
    cursor: pointer;
}

.plan-btn:hover {
    transform: scale(1.02);
    background: #a82b5e;
}

/* Plan Media Query */
@media (max-width: 900px) {
    .plan-headline {
        font-size: 28px;
        line-height: 1.3;
    }
    
    /* I removed the display:none from your original code 
       because usually you still want the button visible on mobile. 
       If you want to hide it, uncomment the line below: */
    /* .plan-buttons { display: none; } */
}

/* =========================================
   6. HIRING PROCESS SECTION STYLES
   ========================================= */
.process-section {
    padding: 80px 20px;
    background-color: #FFFBFC; 
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 20px;
}

.process-header-container {
    text-align: center;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.process-eyebrow {
    font-family: 'Great Vibes', cursive;
    font-size: 3.5rem; 
    color: #E1AB47;    
    line-height: 1;
    display: block;
}

.process-main-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 500;
    color: #C43670;    
    margin: 0;
    max-width: 800px;
    line-height: 1.3;
}

.process-cards-wrapper {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1200px;
}

.process-card {
    position: relative;
    width: 330px;
    height: 380px; 
    background-color: #ffffff;
    border-radius: 10px;
    padding: 34px 25px; 
    display: flex;
    flex-direction: column;
    justify-content: flex-end; 
    box-sizing: border-box;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(196, 54, 112, 0.1);
}

.process-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 1.5px solid #E1AB47;
    border-radius: inherit;
    pointer-events: none;
    z-index: 1;
    clip-path: polygon(
        95px 0%, 
        100% 0%, 
        100% 100%, 
        0% 100%, 
        0% 70px, 
        95px 70px
    );
}

.notch-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 95px;
    height: 70px;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    border-right: 1.5px solid #E1AB47;
    border-bottom: 1.5px solid #E1AB47;
    border-bottom-right-radius: 12px;
}

.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;
}

.process-card-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    margin-top: 60px; 
    z-index: 3;
}

.process-text-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.process-step-title {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    color: #762043; 
    margin: 0;
}

.process-step-description {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    line-height: 1.5;
    color: #762043;
    font-weight: 400;
    margin: 0;
}

.process-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #C43670;
    color: #FFFBFC;
    height: 45px;
    width: 100%; 
    border-radius: 6px;
    font-weight: 500;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

.process-action-btn:hover {
    background-color: #a02c5b;
}

/* Hiring Process Media Query */
@media (max-width: 900px) {
    .process-section {
        padding: 50px 20px; /* Reduced padding for mobile */
    }

    .process-header-container {
        margin-bottom: 40px;
    }

    .process-eyebrow {
        font-size: 2.8rem;
    }

    .process-main-title {
        font-size: 1.6rem;
        line-height: 1.3;
        padding: 0 10px; /* Prevents text hitting the edges */
    }

    .process-cards-wrapper {
        display: flex;
        flex-direction: column; /* Stacks cards vertically */
        align-items: center;    /* Centers cards horizontally */
        gap: 25px;              /* Nice spacing between stacked cards */
        width: 100%;
    }

    .process-card {
        width: 100%;
        max-width: 330px; /* Keeps the card looking like a card */
        height: 380px;    /* Maintains consistency */
        margin: 0;        /* Resets any external margins */
    }

    .process-card-content {
        margin-top: 50px; /* Adjust spacing inside card */
        justify-content: space-between;
    }
}

/* =========================================
   7. ABOUT SECTION STYLES
   ========================================= */
.about-section {
    padding: 0px 0px 100px 0;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    gap: 0px; 
}

.about-row {
    display: flex;
    align-items: flex-end; 
    width: 100%;
    position: relative;
    padding: 0; 
}

/* --- Top Row --- */
.top-row {
    justify-content: flex-end; 
    margin-bottom: 0px;
}

/* Pink Pill Settings */
.pink-pill {
    background-color: #FBD9E5;
    position: relative; 
    
    border-top-left-radius: 200px;
    border-bottom-left-radius: 200px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    
    margin-left: 30%; 
    margin-right: -600px; 
    padding: 85px 650px 85px 100px; 
    
    z-index: 1; 
    flex: 1; 
    width: 100%;
}

/* Curved Text Styles */
.curved-text-wrapper {
    position: absolute;
    left: -60px; 
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 200px;
    pointer-events: none; 
}

.curved-letter {
    position: absolute;
    transform-origin: top left;
    color: #E1AB47; /* Gold Color */
    font-size: 56.55px;
    font-family: 'Great Vibes', cursive;
    font-weight: 400;
    word-wrap: break-word;
    line-height: 1;
}

/* --- Bottom Row --- */
.bottom-row {
    justify-content: flex-start; 
}

/* Gold Pill Settings */
.gold-pill {
    background-color: #E1AB47;
    border-top-right-radius: 200px;
    border-bottom-right-radius: 200px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    
    margin-right: 30%; 
    margin-left: -600px;
    padding: 85px 100px 85px 650px; 
    
    z-index: 1;
    flex: 1;
    width: 100%;
    
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.content-pill {
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: none;
}

.about-headline {
    font-family: 'Oxygen', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.about-description {
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    max-width: 600px;
}

.text-pink { color: #C43670; }
.text-dark { color: #3B1022; }
.text-white { color: #FFFBFC; }

.about-image-wrapper {
    flex-shrink: 0;
    z-index: 2; 
    line-height: 0;
}

.owner-img {
    height: 450px; 
    width: auto;
    display: block;
    object-fit: cover;
    border-radius: 0;
    box-shadow: none;
}

.flip-x {
    transform: scaleX(-1);
}

/* About Media Query */
@media (max-width: 1100px) {
    .about-section {
        padding: 60px 0; /* No side padding so pills can touch edges */
        gap: 50px;       /* Space between the two pills */
        padding-top: 0px;
    }

    .about-row {
        flex-direction: column;
        width: 100%;
        padding: 0;
        margin: 0;
    }

    .about-image-wrapper {
        display: none; /* Hide images as requested */
    }

    /* --- Pink Pill (Top) --- */
    .top-row {
        margin: 0;
        width: 100%;
        display: flex;
        justify-content: flex-end; /* Aligns pill to the right */
    }

    .pink-pill {
        /* Shape Logic */
        width: 85%; /* Leave 15% space on left for the "About me" text */
        margin: 0;  /* Reset desktop negative margins */
        margin-left: auto; /* Push to right side */
        
        border-top-left-radius: 100px;    /* The Curve */
        border-bottom-left-radius: 100px; /* The Curve */
        border-top-right-radius: 0;       /* Flat edge */
        border-bottom-right-radius: 0;    /* Flat edge */

        padding: 20px 40px 20px 60px; /* Extra padding on left to clear curve */
        
        text-align: left;
        align-items: flex-start;
        min-height: auto;
    }

    /* Restore and position the "About me" text */
    .curved-text-wrapper {
        display: block; 
        left: -45px; /* Position it to the left of the pink background */
        top: 50%;
        width: 40px; /* Constrain width */
        transform: translateY(-50%) scale(0.8); /* Scale down slightly for mobile */
    }

    /* --- Gold Pill (Bottom) --- */
    .bottom-row {
        width: 100%;
        display: flex;
        justify-content: flex-start; /* Aligns pill to the left */
    }

    .gold-pill {
        /* Shape Logic */
        width: 90%; /* Can be wider since no text on the outside */
        margin: 0;
        margin-right: auto; /* Push to left side */

        border-top-right-radius: 100px;    /* The Curve */
        border-bottom-right-radius: 100px; /* The Curve */
        border-top-left-radius: 0;         /* Flat edge */
        border-bottom-left-radius: 0;      /* Flat edge */

        padding: 20px 60px 20px 40px; /* Extra padding on right to clear curve */
        
        text-align: right; /* Match the reference image text alignment */
        align-items: flex-end;
        min-height: auto;
    }

    /* Typography Adjustments */
    .about-headline {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .about-description {
        font-size: 12px;
        line-height: 1.5;
        max-width: 100%;
    }
}










/* -----------------------
   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;
    }
}