/* =========================================
   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/about_page/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%;
    }
}





/* =========================================
   7. ABOUT SECTION STYLES
   ========================================= */
.about-section {
    padding: 84px 0;
    display: flex;
    flex-direction: column;
    /* Essential: Hides the horizontal overflow from negative margins */
    overflow-x: hidden; 
    position: relative;
}

.about-row {
    display: flex;
    align-items: flex-end; 
    width: 100%;
    position: relative;
    padding: 0; 
}

/* --- Content Pill (Mission) --- */
.mission-pill {
    background-color: #FFFFFF;
    border: 1px solid #E1AB47;
    border-left: none; /* Open on the left side */
    
    /* Desktop Radius */
    border-top-right-radius: 200px;
    border-bottom-right-radius: 200px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
   
    /* Desktop Layout: Hangs far off-screen to the left */
    margin-right: 15%; 
    margin-left: -600px;
    width: 100%;
    
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;

    /* Desktop Height */
    min-height: 350px; 
    
    /* Desktop Padding: Large left padding compensates for negative margin */
    padding: 80px 200px 80px 650px; 
    
    position: relative;
    z-index: 1;
}

.about-description {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.8;
    color: #3B1022;
    max-width: 700px; 
    margin: 0;
}

/* --- Curve Text Image Positioning --- */
.mission-curve-img {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    /* Positioned relative to the curved edge */
    right: -80px; 
    height: 300px; 
    width: auto;
    pointer-events: none;
    z-index: 2; 
}

/* --- Mobile Responsiveness --- */
@media (max-width: 1100px) {
    .about-section {
        padding: 50px 0;
    }

    .mission-pill {
       /* Let flex control width */
        
        /* SCALED DOWN "OFF-SCREEN" LOOK */
        /* 1. Pull off-screen slightly */
        margin-left: -40px; 
        
        /* 2. Gap on the right */
        margin-right: 20px; 
        
        /* 3. Scaled Radius (Proportionate to mobile screen) */
        border-top-right-radius: 100px;
        border-bottom-right-radius: 100px;
        
        /* 4. Scaled Padding */
        /* Left: 70px (40px to cover margin + 30px visible space) */
        /* Right: 100px (Space for the curve image) */
        /* Top/Bottom: 40px (Compact height) */
        padding: 10px 50px 10px 50px;
        
        /* Remove fixed min-height so it shrinks to fit text */
        min-height: auto;
    }

    .about-description {
        font-size: 12px;
        line-height: 1.6;
    }

    /* Keep the curve visible but smaller */
    .mission-curve-img {
        height: 160px; /* Scaled down from 300px */
        right: -40px;  /* Adjust positioning for 100px radius */
    }
}




/* =========================================
   8. MEET OWNER SECTION
   ========================================= */
.meet-owner-section {
    padding: 70px 70px;
    background: linear-gradient(180deg, #FFFBFC 0%, #FBD9E5 49%, #FFFBFC 100%);
    display: flex;
    justify-content: center;
}

.owner-container {
    max-width: 1200px; 
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-left: 100px;
}

/* --- Header Styles (Inside text column) --- */
.section-header {
    text-align: left; 
    margin-bottom: 20px; 
    position: relative;
    z-index: 2;
    margin-top: 70px;
}

.cursive-subtitle {
    display: block;
    font-family: 'Great Vibes', cursive;
    font-size: 48px; 
    color: #E1AB47; 
    margin-bottom: 5px;
    line-height: 1.2;
    
    /* PREVENTS BREAKING: Forces subtitle to one line */
    white-space: nowrap; 
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 500;
    color: #C43670; 
    margin: 0;
    
    /* PREVENTS BREAKING: Forces title to one line */
    white-space: nowrap; 
}

/* --- Content Layout --- */
.owner-content-row {
    display: flex;
    align-items: flex-start; 
    justify-content: center;
    gap: 30px; 
    width: 100%;
    
    /* RESTORED: Your specific offset margin */
   
}

/* Text Column */
.owner-text-col {
    /* RESTORED: Your specific width */
    flex: 0 1 550px; 
    font-family: 'Poppins', sans-serif;
    color: #3B1022; 
    text-align: left; 
}

.owner-text-col p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    margin-top: 0; 
}

.signature {
    font-weight: 500;
    margin-top: 20px;
    color: #3B1022;
}

/* Image Column */
.owner-image-col {
    flex: 1;
    display: flex;
    justify-content: flex-start; 
}

.owner-image-col img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 10px; 
    display: block;
    object-fit: cover;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 900px) {
    .meet-owner-section {
        padding: 60px 20px;
    }

    .section-header {
        text-align: center;
        margin-bottom: 30px; 
        margin-top: 0px;
    }

    .owner-container {
    max-width: 1200px; 
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-left: 0px;
}

    .cursive-subtitle {
        font-size: 36px;
        /* Allow wrap on mobile if screen is too small */
        white-space: normal; 
    }

    .section-title {
        font-size: 26px;
        line-height: 1.3;
        padding: 0 10px;
        /* Allow wrap on mobile if screen is too small */
        white-space: normal; 
    }

    .owner-content-row {
        flex-direction: column; 
        gap: 0px;
        margin-left: 0; 
    }

    .owner-text-col {
        order: 0; 
        text-align: left;
        max-width: 100%;
    }

    .owner-image-col {
        order: 1; 
        justify-content: center; 
        width: 100%;
    }

    .owner-image-col img {
        max-width: 100%; 
        margin-top: -70px;
    }
}




/* =========================================
   9. WHAT WE OFFER SECTION STYLES
   ========================================= */
.process-section {
    padding: 70px 20px;
    background-color: #FFFBFC; 
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 20px;
}

.process-header-container {
    text-align: center;
    margin-bottom: 60px;
}

/* Updated Title Style to match image */
.process-main-title.text-pink {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem; /* Larger to match the prominent header */
    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;
}

.process-card {
    position: relative;
    width: 330px;
    /* Height adjusts to content naturally now that buttons are gone, 
       but min-height keeps them uniform */
    min-height: 320px; 
    background-color: #ffffff;
    border-radius: 10px;
    padding: 34px 25px; 
    display: flex;
    flex-direction: column;
    /* Removed 'justify-content: flex-end' so content starts from top */
    justify-content: flex-start; 
    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);
}

/* The Gold Notch Border Effect */
.process-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 1.5px solid #E1AB47; /* Gold Border */
    border-radius: inherit;
    pointer-events: none;
    z-index: 1;
    /* This clip-path cuts out the top-left corner for the number tag */
    clip-path: polygon(
        95px 0%, 
        100% 0%, 
        100% 100%, 
        0% 100%, 
        0% 70px, 
        95px 70px
    );
}

/* The Number Container (Top Left) */
.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;
    /* Borders complete the cut-out look */
    border-right: 1.5px solid #E1AB47;
    border-bottom: 1.5px solid #E1AB47;
    border-bottom-right-radius: 12px;
}

.notch-number {
    background-color: #C43670; /* Brand Pink Background */
    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; /* Flush top-left */
}

.process-card-content {
    display: flex;
    flex-direction: column;
    /* Pushes content down to clear the notch */
    margin-top: 80px; 
    z-index: 3;
}

.process-text-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.process-step-title {
    font-family: 'Poppins', sans-serif;
    font-size: 20px; /* Slightly larger heading */
    font-weight: 600;
    line-height: 1.3;
    color: #3B1022; /* Dark Text */
    margin: 0;
}

.process-step-description {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #762043; /* Dark Pink Text */
    font-weight: 400;
    margin: 0;
}

/* Media Query */
@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: 330px;
        min-height: auto; /* Allow auto height on mobile */
    }
}







/* =========================================
   10. GALLERY SECTION STYLES
   ========================================= */
.gallery-section {
    padding: 20px 70px; /* Standard side padding */
    background-color: #FFFBFC;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gallery-header {
    margin-bottom: 50px;
    text-align: center;
}

.gallery-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 500;
    color: #C43670; /* Brand Pink */
    margin: 0;
}

.gallery-wrapper {
    width: 100%;
    max-width: 1400px; /* Allows gallery to stretch nicely on large screens */
    display: flex;
    flex-direction: column;
    gap: 20px; /* Gap between the top row and bottom row */
}

.gallery-row {
    display: flex;
    justify-content: space-between;
    gap: 20px; /* Gap between images horizontally */
    width: 100%;
}

.gallery-item {
    flex: 1; /* Makes all items in a row equal width */
    position: relative;
    border-radius: 10px;
    overflow: hidden; /* Ensures image respects border radius */
    aspect-ratio: 3 / 2; /* Maintains a nice rectangular shape for placeholders */
}

/* Specific aspect ratio for the bottom row if you want them more square-ish */
.four-col .gallery-item {
    aspect-ratio: 1 / 1; 
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures images fill the box without stretching */
    display: block;
    background-color: #E0E0E0; /* Fallback placeholder color */
    border-radius: 10px;
}

/* Gallery Media Query */
@media (max-width: 900px) {
    .gallery-section {
        padding: 50px 20px; /* Reduced padding */
    }

    .gallery-title {
        font-size: 2rem;
        padding: 0 10px;
    }

    /* --- Top Row: Stack in 1 Column --- */
    .gallery-row.three-col {
        flex-direction: column; /* Stacks items vertically */
        gap: 20px;
    }

    /* --- Bottom Row: 2x2 Grid --- */
    .gallery-row.four-col {
        display: grid; /* Switch to grid for easy 2x2 layout */
        grid-template-columns: 1fr 1fr; /* Two equal columns */
        gap: 15px; /* Slightly tighter gap for mobile grid */
    }

    /* Adjust Aspect Ratios for Mobile */
    .gallery-item {
        width: 100%;
        /* You can adjust this if you want the stacked images 
           to be shorter or taller on mobile */
        aspect-ratio: 3/2; 
    }

    /* Keep the bottom grid items square */
    .four-col .gallery-item {
        aspect-ratio: 1/1; 
    }
}




/* =========================================
   11. GET IN TOUCH SECTION
   ========================================= */
.get-in-touch-section {
    padding: 80px 70px;
    background-color: #FFFBFC;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.git-header {
    text-align: center;
    margin-bottom: 40px;
}

.git-subtitle {
    font-family: 'Great Vibes', cursive;
    font-size: 3rem;
    color: #E1AB47; /* Gold */
    display: block;
    margin-bottom: 5px;
    line-height: 1;
}

.git-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 500;
    color: #C43670; /* Brand Pink */
    margin: 0;
}

/* --- The Banner Container --- */
.git-banner {
    display: flex;
    width: 100%;
    max-width: 1400px;
    height: 250px; /* Fixed height for that banner look */
    background-color: #FFFFFF;
    border: 1px solid #FBD9E5; /* Light Pink Border */
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(196, 54, 112, 0.05);
    overflow: hidden; /* Clips images to the border radius */
}

/* --- Side Images --- */
.git-image-wrapper {
    width: 250px; /* Fixed width for the side images */
    height: 100%;
    flex-shrink: 0; /* Prevents images from shrinking */
}

.git-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* --- Center Content --- */
.git-content {
    flex: 1; /* Takes up all remaining space between images */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 60px;
    text-align: center;
}

.git-headline {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: #762043; /* Darker Maroon/Pink */
    margin-bottom: 20px;
}

.git-description {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #762043;
    max-width: 600px;
    margin-bottom: 30px;
}

/* --- Contact Button --- */
.git-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #C43670;
    color: #FFFBFC;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    padding: 12px 40px;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.git-btn:hover {
    background-color: #a02c5b;
}

/* Get In Touch Mobile Media Query */
@media (max-width: 900px) {
    .get-in-touch-section {
        padding: 60px 20px;
    }

    .git-subtitle {
        font-size: 2.5rem;
    }

    .git-title {
        font-size: 2rem;
    }

    /* --- Reshape the Banner for Mobile --- */
    .git-banner {
        flex-direction: column; /* Stack content vertically */
        height: auto; /* Remove fixed height so it grows with text */
        max-width: 400px; /* Limit width for a nice card look */
        border-radius: 20px; /* Keep rounded corners */
        /* Ensure the border and shadow match the mobile image */
        border: 1px solid #FBD9E5; 
        box-shadow: 0 4px 20px rgba(196, 54, 112, 0.1);
        padding: 40px 20px; /* Add internal padding to the card */
    }

    /* --- Hide the Decorative Images --- */
    .git-image-wrapper {
        display: none; 
    }

    /* --- Adjust Content Spacing --- */
    .git-content {
        padding: 0; /* Remove side padding since images are gone */
    }

    .git-headline {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .git-description {
        font-size: 15px;
        line-height: 1.5;
        margin-bottom: 25px;
    }

    .git-btn {
        width: 100%; /* Make button full width for better mobile touch target */
        max-width: 250px; /* But keep it from getting too crazy wide */
        padding: 14px 0;
    }
}






/* -----------------------
   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;
    }
}