/* ==========================================================================
   1. GLOBAL VARIABLES & RESET
   ========================================================================== */
:root {
    --bg-cream: #FFF8F0;
    --accent-gold: #D4A373;
    --primary-red: #D34836;
    --text-dark: #333;
    --burgundy: #560319;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body { 
    background-color: var(--bg-cream); 
    font-family: 'Lato', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden; 
    overflow-y: auto !important; 
    -webkit-overflow-scrolling: touch; 
    height: auto !important;
    min-height: 100vh;
}

h1, h2, h3, h4 { 
    color: var(--primary-red); 
    font-family: 'Playfair Display', serif; 
    font-weight: 700; 
}

/* ==========================================================================
   2. HERO SECTION
   ========================================================================== */
.page-hero {
    position: relative; height: 400px; display: flex;
    align-items: center; justify-content: center;
    background-size: cover; background-position: center;
    background-repeat: no-repeat; margin-top: 0;
}

.hero-overlay {
    position: absolute; top: 0; left: 0; 
    width: 100%; height: 100%; background: rgba(0, 0, 0, 0.4); z-index: 1;
}

.hero-title-container { position: relative; z-index: 2; text-align: center; }

.page-title {
    color: white !important; font-size: 3.5rem;
    font-family: 'Playfair Display', serif; letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.script-font {
    font-family: 'Great Vibes', cursive; color: #D34836;
    font-weight: 400; margin-left: 10px;
}

/* ==========================================================================
   3. LAYOUT & SIDEBAR (DESKTOP DEFAULT)
   ========================================================================== */
.service-detail-container {
    display: flex; max-width: 1300px; margin: 60px auto;
    padding: 0 5%; gap: 60px; align-items: flex-start;
}

.service-sidebar {
    flex: 0 0 280px; position: sticky; top: 120px;
    border: 1px solid #f0f0f0; padding: 25px 0;
    background: white; border-radius: 15px; z-index: 10;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.sidebar-title {
    text-align: center; font-family: 'Great Vibes', cursive;
    font-size: 2.5rem; color: #D34836; margin-bottom: 25px;
}

.service-list { list-style: none; padding: 0 15px; }
.service-list li { margin-bottom: 5px; }

.service-list li a {
    display: flex; align-items: center; gap: 15px; padding: 12px 20px;
    text-decoration: none; color: #555; font-family: 'Lato', sans-serif;
    font-weight: 600; font-size: 0.95rem; border-radius: 10px;
    transition: all 0.3s ease; border-bottom: none;
}

.nav-icon {
    width: 30px; text-align: center; font-size: 1.4rem; color: #D4A373;
    transition: all 0.3s ease; display: flex; align-items: center; justify-content: center;
}

.service-list li a:hover { background-color: #FFF8F0; color: #D34836; transform: translateX(5px); }
.service-list li a:hover .nav-icon { color: #D34836; transform: scale(1.1); }
.service-list li a.active { background-color: #FFC0CB; color: #560319; font-weight: 700; box-shadow: 0 4px 10px rgba(255, 192, 203, 0.4); }
.service-list li a.active .nav-icon { color: #560319; }

/* ==========================================================================
   4. CONTENT & CAROUSEL
   ========================================================================== */
.service-content-stage { flex: 1; min-width: 0; width: 0; overflow: hidden; }

.service-intro h2 {
    font-family: 'Playfair Display', 
    serif; font-size: 3rem;
    color: #D34836; 
    margin-bottom: 10px;
}

.service-intro p {
    font-size: 1.1rem; 
    line-height: 1.8; 
    color: #444; 
    margin-bottom: 40px;
    background: #FFF8F0; 
    padding: 20px; 
    border-left: 4px solid #D34836;
}

.water-carousel {
    position: relative; height: 350px; width: 100%;
    margin: 0 auto 50px auto; overflow: hidden; border-radius: 12px;
}
.carousel-track-container { height: 100%; position: relative; width: 100%; overflow: hidden; }
.carousel-track { padding: 0; margin: 0; list-style: none; position: relative; height: 100%; width: 100%; transition: transform 0.5s ease-in-out; }
.carousel-slide { position: absolute; top: 0; bottom: 0; width: 100%; height: 100%; }
.carousel-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }

.carousel-button {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.7); color: #D34836; border: none;
    width: 45px; height: 45px; border-radius: 50%; cursor: pointer; z-index: 10;
    font-size: 1.2rem; display: flex; align-items: center; justify-content: center;
    transition: all 0.3s ease; box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.carousel-button:hover { background: #D34836; color: white; }
.btn-left { left: 20px; }
.btn-right { right: 20px; }

/* ==========================================================================
   5. NAVBAR DROPDOWN (DESKTOP)
   ========================================================================== */
.services-grid {
    position: absolute !important;
    top: 100%; left: 50%; transform: translateX(-50%); z-index: 9999;
    min-width: 600px;
    background: linear-gradient(to bottom, #D34836 4px, white 4px) !important;
    background-color: white;
    border-radius: 4px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-top: none !important;
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 10px 40px; padding: 30px; margin-top: 10px;
}
.dropdown:hover .services-grid { display: grid; }
.services-grid a {
    display: block; padding: 12px 15px; color: #333;
    font-weight: 700 !important; text-decoration: none; border-radius: 5px;
}
.services-grid a.active, .services-grid a.active-link {
    background-color: #FFF8F0 !important; color: #D34836 !important;
}
.services-grid a:hover { background-color: #f9f9f9; color: #D34836; }

/* ==========================================================================
   6. PAGE FAQ ACCORDION
   ========================================================================== */
.service-dropdowns {
    margin-bottom: 50px; display: flex; flex-direction: column; gap: 15px;
}
.dropdown-item {
    background: white; border: 1px solid #f0f0f0; border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02); transition: all 0.3s ease; overflow: hidden;
}
.dropdown-item:hover {
    transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    border-color: rgba(212, 163, 115, 0.3);
}
.dropdown-btn {
    width: 100%; padding: 20px 25px; background: white; border: none;
    text-align: left; font-family: 'Playfair Display', serif;
    font-size: 1.15rem; font-weight: 700; color: #333;
    cursor: pointer; display: flex; justify-content: space-between; align-items: center;
}
.dropdown-item .dropdown-content {
    position: static !important; transform: none !important; min-width: 0 !important;
    background: transparent !important; box-shadow: none !important;
    display: none; padding: 0 25px 25px 25px; border-top: 1px solid #f9f9f9;
}
.dropdown-content-inner { display: flex; gap: 20px; align-items: flex-start; padding-top: 15px; }
.content-icon {
    font-size: 2rem; color: #D34836; background: #FFF8F0;
    width: 50px; height: 50px; line-height: 50px; text-align: center;
    border-radius: 50%; flex-shrink: 0;
}
.dropdown-item p {
    font-size: 1rem; color: #666; line-height: 1.6; margin: 0; padding-top: 5px;
}
.dropdown-item.active .dropdown-content { display: block; }
.dropdown-item.active { border-color: #D34836; }
.dropdown-item.active .dropdown-btn { color: #D34836; }
.dropdown-item.active .dropdown-btn i { transform: rotate(180deg); color: #D34836; }
.dropdown-btn i {
    width: 32px; height: 32px; background: #FFF8F0; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem; color: #D34836; transition: all 0.3s ease;
}

/* ==========================================================================
   7. RESULTS SECTION
   ========================================================================== */
.results-wrapper {
    background: #fff; border-radius: 20px; padding: 50px; margin-bottom: 80px;
    box-shadow: 0 20px 40px rgba(212, 163, 115, 0.1);
    border: 1px solid #FFF8F0; text-align: center;
}
.results-header h3 { font-size: 3rem; font-family: 'Playfair Display', serif; color: #333; margin-bottom: 15px; }
.results-header h3 span { font-family: 'Great Vibes', cursive; color: #D34836; font-size: 3.5rem; font-weight: 400; margin-left: 10px; }
.results-header p { max-width: 700px; margin: 0 auto 40px auto; color: #666; font-size: 1.1rem; line-height: 1.7; }

.before-after-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-bottom: 40px; }
.result-card { 
    position: relative; 
    border-radius: 15px; 
    overflow: hidden; 
    box-shadow: 0 10px 20px rgba(0,0,0,0.05); 
    height: 350px; 
}
    
.result-card img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: transform 0.5s ease; 
}

.result-card:hover img { transform: scale(1.05); }

.label-badge {
    position: absolute; top: 20px; left: 20px; padding: 8px 20px;
    border-radius: 30px; font-size: 0.85rem; font-weight: 700;
    letter-spacing: 1px; z-index: 2; text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.label-badge.before { background-color: rgba(255, 255, 255, 0.9); color: #666; }
.label-badge.after { background-color: #D34836; color: white; }

.results-note {
    background: #FFF8F0; padding: 20px; border-radius: 12px;
    display: inline-flex; align-items: center; gap: 15px;
    text-align: left; max-width: 800px; border-left: 4px solid #D34836;
}
.results-note i { font-size: 1.5rem; color: #D34836; }

/* ==========================================================================
   8. CTA BUTTON STYLES (MAIN BOOKING BUTTON)
   ========================================================================== */
.cta-container { 
    text-align: center; 
    margin-top: -55px; 
    padding-bottom: 20px; 
}

/* FIXED RED BUTTON (VISIBLE) */
.btn-book-now {
    /* RED GRADIENT BACKGROUND */
    background: linear-gradient(135deg, #25D366 0%, #04a226 100%);
    color: white !important;
    box-shadow: 0 10px 30px rgba(211, 72, 54, 0.3);
    border: 3px solid #fff;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s ease;

    /* LAYOUT FOR 2 LINES */
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 35px;
    text-align: left;
    padding: 12px 40px; 
    margin-bottom: 5px;
}

.btn-book-now:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px #04a226;
    background: linear-gradient(135deg, #128c43 0%, #25D366 100%);
}

.btn-book-now i {
    font-size: 2rem; 
}

/* 2-LINE TEXT GROUPS */
.btn-text-group {
    display: flex;
    flex-direction: column; 
    line-height: 1.1; 
}

.btn-text-group small {
    font-size: 1.1rem; 
    font-weight: 400;
    text-transform: none; 
    opacity: 0.9;
    color: white;
}

.btn-text-group strong {
    font-size: 1.5rem; 
    font-weight: 900; 
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 2;
    display: block;
    color: white;
}

/* ==========================================================================
   9. 1-TO-1 CONSULTATION SECTION (NEW)
   ========================================================================== */
.consultation-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    margin: 60px 0;
    padding: 40px;
    background-color: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

/* Text Side */
.consult-content-side { flex: 1.2; }

.consult-heading {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 20px;
}

.consult-text {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* The Privacy Box (Gold Accent) */
.privacy-box {
    background-color: #FFF8F0; /* Cream Background */
    border-left: 4px solid #D4A373; /* Gold Line */
    padding: 20px;
    border-radius: 0 10px 10px 0;
    margin-bottom: 25px;
}

.privacy-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--primary-red);
    margin-bottom: 10px;
}

.privacy-highlight {
    margin-top: 10px;
    font-style: italic;
    color: #444;
}

.red-bold {
    color: var(--primary-red);
    font-weight: 800;
}

/* Link Style */
.link-arrow {
    text-decoration: none;
    color: var(--primary-red);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.link-arrow:hover {
    border-bottom: 1px solid var(--primary-red);
    letter-spacing: 2px;
}

/* Image Side */
.consult-image-side { flex: 1; }

.consult-image-side img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border: 5px solid #fff; 
}

/* ==========================================================================
   10. FEMININE CARE REVIEWS SLIDER
   ========================================================================== */
.review-slider-wrapper {
    max-width: 800px; 
    margin: 30px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 70px; 
}

.review-track-container {
    width: 100%;
    height: 500px; 
    overflow: hidden;
    position: relative;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    background: #fff;
    border: 1px solid #f0f0f0;
}

.review-track {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    height: 100%;
}

.review-slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

.review-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Ensures the whole screenshot is visible */
    display: block;
}

.review-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    color: #D34836;
    border: 1px solid rgba(0,0,0,0.1);
    width: 50px; height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    z-index: 20;
}

#fem-prev { left: 10px; } 
#fem-next { right: 10px; }

.review-btn:hover {
    background: #D34836;
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 10px 20px rgba(211, 72, 54, 0.3);
}

/* PRIVACY */
.privacy-notice-container {
    max-width: 700px;
    margin: 0 auto 40px auto;
    background-color: #FFF8F0;
    border: 1px solid #D4A373;
    border-radius: 12px;
    padding: 25px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.privacy-icon-box {
    background-color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #D34836;
    flex-shrink: 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.privacy-text-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #560319;
    margin-bottom: 8px;
    margin-top: 0;
}

.privacy-text-content p {
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
    margin: 0;
}

/* ==========================================================================
   11. PREMIUM BENEFITS BANNER
   ========================================================================== */
.benefits-banner {
    background-color: var(--burgundy); 
    padding: 35px 5%;
    border-top: 1px solid rgba(212, 163, 115, 0.2); 
    border-bottom: 1px solid rgba(212, 163, 115, 0.2);
}

.benefits-container {
    display: flex;
    justify-content: space-between; 
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap; 
    gap: 20px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
}

.benefit-icon {
    font-size: 1.2rem;
    color: var(--accent-gold); 
}

.benefit-text {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--bg-cream); 
    text-transform: uppercase;
    letter-spacing: 1px;
}

.benefit-divider {
    width: 1px;
    height: 25px;
    background-color: var(--accent-gold);
    opacity: 0.5;
}

/* ==========================================================================
   12. MASTER CLASS: LONG PHOTOS
   ========================================================================== */
.long-results {
    gap: 20px;
    align-items: start;
}

.long-results .result-card {
    height: 550px; 
    aspect-ratio: auto; 
}

.long-results .result-card img {
    object-fit: contain; 
    background-color: #f9f9f9; 
}

/* ==========================================================================
   13. MOBILE RESPONSIVE & FIXES
   ========================================================================== */

/* 1024PX - Tablet Landscape */
@media (max-width: 1024px) {
    .service-intro h2 { 
        margin-top: 70px !important; /* Pushes text down below the menu */
        padding-top: 0 !important; 
        position: relative;
        z-index: 1;
    }

    /* --- SIDEBAR & LAYOUT FIX --- */
    .service-detail-container {
        display: block !important;
        padding: 0 20px !important;
        margin-top: 30px !important; 
    }
    .service-content-stage { 
        width: 100% !important; 
        margin-top: -30px !important; 
        position: relative; 
        z-index: 5;
    }
    .service-sidebar {
        width: 100% !important;
        position: sticky !important; top: 70px; z-index: 99;
        background: #fff !important;         
        border: 2px solid #FFF0F0 !important; 
        border-radius: 20px !important;      
        padding: 15px 0 10px 0 !important; 
        box-shadow: 0 10px 30px rgba(0,0,0,0.05) !important; 
        margin-bottom: 0 !important;
    }
    .sidebar-title {
        display: block !important;
        font-family: 'Great Vibes', cursive !important;
        font-size: 2.2rem !important; 
        text-align: center !important;
        margin-bottom: 10px !important; 
    }
    .service-list {
        display: flex !important;
        flex-direction: row !important;
        overflow-x: auto !important;
        padding: 5px 15px 10px 15px !important; 
        gap: 10px !important;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; 
    }
    .service-list::-webkit-scrollbar { display: none; }
    .service-list li { flex-shrink: 0 !important; margin: 0 !important; }
    .service-list li a {
        display: flex !important; align-items: center; gap: 8px;
        padding: 10px 18px !important;
        background: #fff !important;
        border: 1px solid #eee !important;
        border-radius: 50px !important; 
        white-space: nowrap !important;
        font-size: 0.9rem !important;
    }
    .service-list li a.active {
        background-color: #FFF0F0 !important;
        color: #D34836 !important;
        border: 1px solid #ffdede !important;
    }
    
    /* Benefits Banner Mobile */
    .benefit-divider { display: none; }
    .benefits-container { justify-content: center; gap: 30px; }
    .benefit-item { width: 45%; }
}

/* 900PX - Medium Screens */
@media (max-width: 900px) {
    /* Consultation Section Mobile */
    .consultation-wrapper {
        flex-direction: column-reverse;
        padding: 25px;
        text-align: center;
        gap: 30px;
    }
    .privacy-box { text-align: left; }
}

/* 768PX - Tablets / Large Phones */
/* 768PX - Tablets / Large Phones */
@media (max-width: 768px) {
    /* Privacy Notice Fix */
    .privacy-notice-container {
        flex-direction: column;
        text-align: center;
        align-items: center;
        width: 90%;
    }

    /* --- MENU FIX --- */
    .nav-menu {
        position: fixed; left: -100%; top: 70px;
        flex-direction: column; background-color: white;
        width: 100%; height: calc(100vh - 70px);
        overflow-y: auto; text-align: center; transition: 0.3s;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1); padding: 0; 
        z-index: 10000;
    }
    .nav-menu.active { left: 0; }
    .dropdown.show-menu .services-grid { display: grid !important; }
    
    .services-grid {
        position: static !important; transform: none !important;
        display: none; grid-template-columns: 1fr !important;
        width: 100% !important; background-color: #FFF8F0 !important;
        box-shadow: none !important; border: none !important; margin: 0 !important;
    }
    .services-grid a { text-align: center !important; padding: 15px !important; border-bottom: 1px solid rgba(0,0,0,0.05) !important; }

    /* --- SLIDER & RESULTS FIX --- */
    .review-slider-wrapper { padding: 0 50px; width: 100%; }
    #fem-prev { left: 0; }
    #fem-next { right: 0; }
    .review-track-container { height: 350px; }
    
    .before-after-grid { display: flex !important; flex-direction: column !important; gap: 20px !important; }
    
    /* FIX: Show Full Image on Mobile */
    .result-card { width: 100% !important; height: 350px !important; }
    .result-card img { object-fit: contain !important; background-color: #f8f8f8; } /* <--- THIS WAS MISSING */
    
    .long-results .result-card { height: 500px; }
}

/* =========================================
   FIX FOR THE "NOTE" SECTION ON MOBILE
   ========================================= */
@media (max-width: 600px) {
    
    /* 1. Reduce the huge padding on the white box */
    /* Before it was 50px, which squashed everything. Now it's 20px. */
    .results-wrapper {
        padding: 30px 20px !important; 
    }

    /* 2. Fix the Note Box Layout */
    .results-note {
        display: flex !important;       /* Makes it fill the width */
        align-items: flex-start !important; /* Aligns icon to the TOP (not middle) */
        width: 100% !important;
        padding: 15px !important;      /* Comfortable padding */
        gap: 15px !important;          /* Space between icon and text */
    }

    /* 3. Fix the Icon so it doesn't get squashed */
    .results-note i {
        min-width: 24px !important;    /* Keeps icon shape perfect */
        margin-top: 4px !important;    /* Aligns perfectly with the first line of text */
    }
}

/* 500PX - Small Phones (SLEEK BUTTON FIX) */
@media (max-width: 500px) {
    .btn-book-now {
        width: 80% !important;       /* Full width of the screen */
        padding: 12px 15px !important; /* Less padding so it fits */
        gap: 12px !important;         /* Closer together */
        border-radius: 22px !important; /* Slightly less round to save space */
        margin-top: 10px !important;
        align-items: center !important;
    }

    /* Make the Icon Smaller */
    .btn-book-now i {
        font-size: 1.8rem !important; 
    }

    /* Make the Big Text Smaller so it fits on 1 line (or 2 clean lines) */
    .btn-text-group strong {
        font-size: 1rem !important;   /* Reduced from 1.4rem */
        line-height: 1.1 !important;
    }

    /* Make the Small Text Smaller */
    .btn-text-group small {
        font-size: 0.75rem !important;
        margin-bottom: 2px !important;
    }
}

/* 768PX - Tablets / Large Phones */
@media (max-width: 768px) {
    /* Privacy Notice Fix */
    .privacy-notice-container {
        flex-direction: column;
        text-align: center;
        align-items: center;
        width: 90%;
    }

    /* --- MENU FIX --- */
    .nav-menu {
        position: fixed; left: -100%; top: 70px;
        flex-direction: column; background-color: white;
        width: 100%; height: calc(100vh - 70px);
        overflow-y: auto; text-align: center; transition: 0.3s;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1); padding: 0; 
        z-index: 10000;
    }
    .nav-menu.active { left: 0; }
    .dropdown.show-menu .services-grid { display: grid !important; }
    
    .services-grid {
        position: static !important; transform: none !important;
        display: none; grid-template-columns: 1fr !important;
        width: 100% !important; background-color: #FFF8F0 !important;
        box-shadow: none !important; border: none !important; margin: 0 !important;
    }
    .services-grid a { text-align: center !important; padding: 15px !important; border-bottom: 1px solid rgba(0,0,0,0.05) !important; }

    /* --- FEMININE SLIDER FIX (MAKE IT TALLER!) --- */
    .review-slider-wrapper { 
        padding: 0 40px !important; /* Slightly less padding to give image width */
        width: 100%; 
    }
    
    #fem-prev { left: 0; } 
    #fem-next { right: 0; }
    
    .review-track-container { 
        height: 550px !important; /* <--- CHANGED FROM 350px TO 550px */
        /* This gives the tall screenshot room to expand */
    }
    
    /* --- RESULTS PICTURE FIX (SHOW FULL IMAGE) --- */
    .before-after-grid { display: flex !important; flex-direction: column !important; gap: 20px !important; }
    
    .result-card { 
        width: 100% !important; 
        height: 400px !important; /* Taller box for results too */
    }
    
    .result-card img { 
        object-fit: contain !important; /* <--- SHOWS FULL IMAGE NO CROP */
        background-color: #f8f8f8; /* Nice background for empty space */
    }
    
    .long-results .result-card { height: 550px; }
}

