/*
Theme Name: LuvyCare
Theme URI: https://luvycare.com
Author: rankwriter2020
Author URI: https://www.fiverr.com/rankwriter2020?public_mode=true
Description: A modern, premium WordPress theme for Women's Care, Health & Beauty with elegant slider and pastel aesthetics.
Version: 2.0.0
Text Domain: luvycare
*/

/* ===== CSS Variables ===== */
:root {
    /* Colors - Soft Pastel Palette */
    --blush-pink: #ffc9d4;
    --soft-peach: #ffd4b8;
    --lavender: #e6d5f5;
    --warm-white: #fdfbf7;
    --cream: #f9f5f0;
    --text-dark: #4a4a4a;
    --text-medium: #7a7a7a;
    --text-light: #a8a8a8;
    --white: #ffffff;
    --border-light: #f0e8e8;
    --accent-rose: #ff9eb5;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #ffc9d4 0%, #ffd4b8 100%);
    --gradient-soft: linear-gradient(135deg, #f9f5f0 0%, #fdfbf7 100%);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(255, 201, 212, 0.15);
    --shadow-md: 0 4px 16px rgba(255, 201, 212, 0.2);
    --shadow-lg: 0 8px 32px rgba(255, 201, 212, 0.25);

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;

    /* Spacing */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 32px;
    --spacing-xl: 48px;
    --spacing-xxl: 64px;

    /* Layout */
    --container-width: 1200px;
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-medium);
    background-color: var(--warm-white);
    overflow-x: hidden;
    animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: var(--spacing-sm);
}

h1 {
    font-size: 2.75rem;
}

h2 {
    font-size: 2.25rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.35rem;
}

p {
    margin-bottom: var(--spacing-sm);
}

a {
    color: var(--blush-pink);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent-rose);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===== Layout ===== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section {
    padding: var(--spacing-xxl) 0;
}

/* ===== Header ===== */
.site-header {
    background: transparent;
    z-index: 1000;
    position: relative;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo a {
    font-family: var(--font-heading);
    font-size: 1.9rem;
    font-weight: 700;
    font-style: italic;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    gap: var(--spacing-md);
    align-items: center;
    margin: 0;
    padding: 0;
    flex-wrap: nowrap;
}

.main-navigation a {
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: capitalize;
    transition: var(--transition);
    white-space: nowrap;
}

.main-navigation a:hover {
    color: var(--blush-pink);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Hide Contact Button on Mobile to save space (optional, but good for layout) */
@media (max-width: 576px) {
    .btn-contact span {
        display: none;
    }

    .btn-contact {
        padding: 10px;
        border-radius: 50%;
    }
}

/* ===== Dropdown Menu ===== */
.main-navigation .menu-item {
    position: relative;
    padding: 10px 0;
    /* Touch target size */
}

/* Dropdown Arrow - FontAwesome 6 */
.main-navigation .menu-item-has-children>a::after {
    content: '\f078';
    /* FA6 Chevron Down */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-left: 8px;
    font-size: 0.75rem;
    transition: transform 0.3s;
    display: inline-block;
}

.main-navigation .menu-item-has-children:hover>a::after {
    transform: rotate(180deg);
}

/* Desktop Submenu - Strict Column Layout */
.desktop-nav .sub-menu {
    display: block !important;
    /* Override any potential flex/grid */
    position: absolute;
    top: 100%;
    left: 0;
    width: 260px;
    background: #fff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 15px 0;
    visibility: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.desktop-nav .menu-item:hover .sub-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.desktop-nav .sub-menu li {
    display: block !important;
    /* Force block stacking */
    width: 100%;
    margin: 0;
    padding: 0;
}

.desktop-nav .sub-menu a {
    display: block;
    width: 100%;
    padding: 12px 25px;
    font-size: 0.95rem;
    color: var(--text-medium);
    transition: all 0.2s;
    border-left: 3px solid transparent;
    text-align: left;
    /* Align text left */
}

.desktop-nav .sub-menu a:hover {
    background: var(--cream);
    color: var(--blush-pink);
    padding-left: 30px;
    border-left-color: var(--blush-pink);
}

/* Mobile Submenu - List Style (Always Visible) */
.mobile-nav-menu .sub-menu {
    display: block !important;
    position: static;
    box-shadow: none;
    padding-left: 20px;
    margin-top: 5px;
    margin-bottom: 10px;
    border-left: 2px solid rgba(255, 201, 212, 0.3);
    background: #fafafa;
    border-radius: 0 0 10px 0;
    visibility: visible;
    opacity: 1;
    transform: none;
    width: 100%;
}

.mobile-nav-menu .sub-menu a {
    font-size: 1rem;
    padding: 10px 15px;
}

/* Responsive Tweaks */
@media (max-width: 991px) {
    .site-header {
        position: sticky;
        top: 0;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    }

    .desktop-nav {
        display: none !important;
        /* Hide standard menu on tablets/mobile */
    }

    .mobile-menu-toggle {
        display: block !important;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 10px;
        /* Larger hit area */
        position: relative;
        z-index: 9999;
        /* Max z-index */
        width: 40px;
        height: 40px;
    }

    .hamburger-line {
        display: block !important;
        width: 25px;
        height: 3px;
        background-color: #333 !important;
        /* Force black color */
        margin: 5px auto;
        transition: all 0.3s ease;
        border-radius: 3px;
    }

    /* Animate Hamburger to X when open */
    body.menu-open .hamburger-line:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    body.menu-open .hamburger-line:nth-child(2) {
        opacity: 0;
    }

    body.menu-open .hamburger-line:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
}

@media (min-width: 992px) {

    .mobile-menu-toggle,
    .mobile-navigation {
        display: none !important;
    }
}

/* ===== Mobile Navigation Drawer ===== */
.mobile-navigation {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    background: #fff;
    z-index: 2000;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.mobile-navigation.active {
    transform: translateX(0);
}

.mobile-nav-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
}

.mobile-nav-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
}

.mobile-nav-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-medium);
}

.mobile-nav-content {
    padding: 20px;
    flex: 1;
    overflow-y: auto;
}

.mobile-nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav-menu li {
    margin-bottom: 15px;
    border-bottom: 1px solid #f5f5f5;
    padding-bottom: 15px;
}

.mobile-nav-menu li:last-child {
    border-bottom: none;
}

.mobile-nav-menu a {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 500;
    display: block;
}

.mobile-nav-menu .sub-menu {
    display: none;
    /* Hide submenu in mobile by default */
    padding-left: 20px;
    margin-top: 10px;
    border-left: 2px solid var(--blush-pink);
}

/* Hover reveal for mobile (or click if we added JS for it) -> simplified to hover for now */
.mobile-nav-menu .menu-item-has-children:hover .sub-menu {
    display: block;
}

.mobile-nav-footer {
    margin-top: 30px;
}

.mobile-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    justify-content: center;
}

.mobile-social a {
    width: 40px;
    height: 40px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blush-pink);
}

/* Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    backdrop-filter: blur(2px);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

body.menu-open {
    overflow: hidden;
}

/* ===== Hero Slider ===== */
.hero-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
    background: var(--gradient-soft);
}

.slider-container {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    width: 100%;
}

.slide-text {
    padding-right: var(--spacing-lg);
    animation: slideInLeft 0.8s ease-out;
}

.slide.active .slide-text {
    animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-text h1 {
    font-size: 3.2rem;
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
    color: var(--text-dark);
}

.slide-text p {
    font-size: 1.15rem;
    margin-bottom: var(--spacing-lg);
    color: var(--text-medium);
}

.slide-image {
    animation: slideInRight 0.8s ease-out;
}

.slide.active .slide-image {
    animation: slideInRight 0.8s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: 500px;
    object-fit: cover;
}

/* Slider Controls */
.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 201, 212, 0.4);
    border: 2px solid var(--blush-pink);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background: var(--blush-pink);
    transform: scale(1.2);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--blush-pink);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    z-index: 10;
}

.slider-arrow:hover {
    background: var(--blush-pink);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}


/* ===== Hero Slider Premium Redesign ===== */
.hero-slider-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    min-height: 700px;
    /* Tall, immersive */
    /* Softest Blush Gradient */
    background: linear-gradient(135deg, #fffcfc 0%, #fff0f3 100%);
    display: flex;
    align-items: center;
}

.slider-container {
    width: 100%;
    max-width: 1400px;
    /* Wide for impact */
    margin: 0 auto;
    position: relative;
    height: 600px;
    padding: 0 20px;
}

/* Slide Layout */
.slide {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    /* Spacious */
    width: 100%;
    align-items: center;
    padding: 0 40px;
}

/* === Graphic Side (Right) === */
.slide-image-wrapper {
    position: relative;
    height: 550px;
    /* Organic Shape Mask */
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    overflow: hidden;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.08);
    /* Soft depth */
    background: #fff;
    transform: translateX(50px) scale(0.95);
    opacity: 0;
    transition: all 1s ease 0.2s;
}

.slide.active .slide-image-wrapper {
    transform: translateX(0) scale(1);
    opacity: 1;
    /* Morph slightly on hover? No, keep steady */
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Light zoom effect */
    transform: scale(1.1);
    transition: transform 8s ease;
}

.slide.active .slide-image {
    transform: scale(1);
    /* Slow zoom out */
}

/* === Text Side (Left) === */
.slide-content-wrapper {
    z-index: 5;
    padding-left: 20px;
}

.slide-content {
    max-width: 650px;
    transform: translateY(40px);
    opacity: 0;
    transition: all 0.8s ease 0.3s;
}

.slide.active .slide-content {
    transform: translateY(0);
    opacity: 1;
}

.slide-title {
    font-size: 4.2rem;
    /* Massive Headline */
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
    /* Gradient Text */
    background: linear-gradient(45deg, #5D3A46 30%, #D4889B 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 25px;
}

.slide-desc {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 40px;
    max-width: 90%;
    line-height: 1.7;
}

/* Premium Button */
.btn.btn-primary {
    padding: 16px 45px;
    font-size: 1.05rem;
    border-radius: 50px;
    /* Pill */
    box-shadow: 0 10px 25px rgba(212, 136, 155, 0.35);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    background: linear-gradient(135deg, var(--blush-pink) 0%, #db7093 100%);
    border: none;
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(212, 136, 155, 0.5);
}

/* === Controls === */
.slider-arrow {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: none;
    font-size: 1.2rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 20;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.slider-arrow:hover {
    background: var(--blush-pink);
    color: #fff;
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev {
    left: 40px;
}

.slider-arrow.next {
    right: 40px;
}

.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.slider-dot.active {
    width: 30px;
    /* Long pill */
    border-radius: 10px;
    background: var(--blush-pink);
}

/* === Responsive === */
@media (max-width: 1200px) {
    .slide-title {
        font-size: 3.5rem;
    }

    .slide-image-wrapper {
        height: 450px;
    }
}

@media (max-width: 900px) {
    .hero-slider-section {
        padding: 40px 0;
        /* Less padding mobile */
        min-height: auto;
        height: auto;
        display: block;
        /* Stack */
    }

    .slider-container {
        height: auto;
    }

    .slide {
        position: relative;
        /* Stacked naturally */
        display: none;
        /* Hide non-active */
        flex-direction: column-reverse;
        /* Image Top */
        opacity: 1;
        visibility: visible;
        padding-bottom: 60px;
        /* Space for dots */
    }

    .slide.active {
        display: flex;
    }

    .slide-grid {
        display: flex;
        flex-direction: column-reverse;
        /* Image Top */
        padding: 0;
        gap: 30px;
    }

    /* Image Top (Order 1 via Grid or Flex) */
    .slide-image-wrapper {
        width: 100%;
        max-width: 400px;
        height: 350px;
        /* Less blobby on mobile, more grounded */
        border-radius: 40px 40px 200px 40px;
        transform: none !important;
        opacity: 1 !important;
        margin: 0 auto;
    }

    .slide-content-wrapper {
        padding: 0;
        text-align: center;
        width: 100%;
    }

    .slide-content {
        transform: none !important;
        opacity: 1 !important;
    }

    .slide-title {
        font-size: 2.6rem;
        margin-bottom: 15px;
    }

    .slide-desc {
        font-size: 1.1rem;
        margin: 0 auto 25px;
    }

    .btn.btn-primary {
        width: auto;
        display: inline-flex;
        padding: 12px 30px;
        justify-content: center;
        margin: 0 auto;
    }

    /* Arrows Hidden on Mobile (Swipe/Dots only) */
    .slider-arrow {
        display: none;
    }

    .slider-dots {
        bottom: 0;
    }
}

/* Landscape Mode (Mobile Tilted) */
@media (max-width: 900px) and (orientation: landscape) {
    .hero-slider-section {
        height: auto;
        min-height: 100vh;
        /* Fill screen but allow scrolling */
        padding: 60px 0;
        /* Less padding for short height */
    }

    .slide-image-wrapper {
        max-height: 200px;
        /* Smaller image in landscape */
        margin-bottom: 10px;
    }

    .slide-title {
        font-size: 2rem;
    }
}

/* Small Mobile (iPhone SE / Mini) */
@media (max-width: 480px) {
    .hero-slider-section {
        padding-top: 100px;
        /* Slightly less top padding */
    }

    .slide-title {
        font-size: 1.8rem;
    }

    .slide-desc {
        font-size: 1rem;
        padding: 0 10px;
    }

    .slide-image-wrapper {
        max-height: 240px;
        margin-bottom: 15px;
    }
}

/* ===== About Section ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    padding-right: 20px;
    padding-bottom: 20px;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.experience-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    text-align: center;
    border: 1px solid var(--border-light);
    z-index: 2;
}

.about-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 500;
}

.about-features i {
    color: #5D3A46;
    /* Deep Rose */
    background: #FFF0F5;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1rem;
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image-wrapper {
        margin: 0 auto;
        max-width: 500px;
        padding-right: 0;
        padding-bottom: 0;
    }

    .experience-badge {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: -30px;
        width: 200px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: capitalize;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--blush-pink);
    color: var(--blush-pink);
}

.btn-outline:hover {
    background: var(--blush-pink);
    color: var(--white);
    transform: translateY(-3px);
}



/* ===== Features Section ===== */
.features-section {
    background: var(--white);
    padding: var(--spacing-xl) 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.feature-card {
    text-align: center;
    padding: var(--spacing-lg);
    background: var(--cream);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-md);
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-sm);
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ===== Content Grid ===== */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--spacing-lg);
}

.content-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--border-light);
}

.content-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--blush-pink);
}

.card-image {
    height: 240px;
    overflow: hidden;
    background: var(--cream);
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.content-card:hover .card-image img {
    transform: scale(1.08);
}

.card-body {
    padding: var(--spacing-md);
}

.card-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--accent-rose);
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-xs);
}

.card-title {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-sm);
}

.card-title a {
    color: var(--text-dark);
}

.card-title a:hover {
    color: var(--blush-pink);
}

.card-excerpt {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-sm);
    line-height: 1.6;
}

.read-more {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--blush-pink);
    text-transform: capitalize;
    display: inline-block;
    transition: var(--transition);
}

.content-card:hover .read-more {
    color: var(--accent-rose);
    transform: translateX(5px);
}

/* ===== Section Headers ===== */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: var(--spacing-sm);
}

.section-header p {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== Footer ===== */
.site-footer {
    background: linear-gradient(135deg, #4a4a4a 0%, #2d2d2d 100%);
    color: rgba(255, 255, 255, 0.8);
    padding: var(--spacing-xxl) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-widget h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: var(--spacing-md);
}

.footer-widget ul {
    list-style: none;
}

.footer-widget li {
    margin-bottom: var(--spacing-sm);
}

.footer-widget a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-widget a:hover {
    color: var(--blush-pink);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* [Legacy Responsive Block Removed] */

/* ===== ENHANCED ANIMATIONS & INTERACTIONS ===== */

/* Floating Animation for Decorative Elements */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Bounce Animation */
@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-15px);
    }

    60% {
        transform: translateY(-7px);
    }
}

/* Shimmer Effect */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }

    100% {
        background-position: 1000px 0;
    }
}

/* Pulse Glow Animation */
@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(255, 201, 212, 0.3);
    }

    50% {
        box-shadow: 0 0 40px rgba(255, 201, 212, 0.6);
    }
}

/* Slide In From Left */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Slide In From Right */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Slide In From Bottom */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scale In Animation */
@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Rotate In Animation */
@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-10deg) scale(0.9);
    }

    to {
        opacity: 1;
        transform: rotate(0) scale(1);
    }
}

/* Enhanced Header Animation */
.site-header {
    animation: slideInUp 0.5s ease-out;
}

/* Logo Hover Effect */
.site-logo a {
    display: inline-block;
    transition: var(--transition);
}

.site-logo a:hover {
    transform: scale(1.05);
    animation: bounce 0.6s ease;
}

/* Navigation Link Underline Effect */
.main-navigation a {
    position: relative;
    overflow: hidden;
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.main-navigation a:hover::after {
    width: 100%;
}

/* Feature Cards Staggered Animation */
.feature-card {
    animation: slideInUp 0.6s ease-out backwards;
}

.feature-card:nth-child(1) {
    animation-delay: 0.1s;
}

.feature-card:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.3s;
}

.feature-card:nth-child(4) {
    animation-delay: 0.4s;
}

/* Feature Icon Pulse on Hover */
.feature-icon {
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    animation: pulseGlow 1.5s infinite;
}

/* Content Cards Staggered Animation */
.content-card {
    animation: scaleIn 0.5s ease-out backwards;
}

.content-card:nth-child(1) {
    animation-delay: 0.1s;
}

.content-card:nth-child(2) {
    animation-delay: 0.2s;
}

.content-card:nth-child(3) {
    animation-delay: 0.3s;
}

.content-card:nth-child(4) {
    animation-delay: 0.4s;
}

.content-card:nth-child(5) {
    animation-delay: 0.5s;
}

.content-card:nth-child(6) {
    animation-delay: 0.6s;
}

/* Card Image Zoom with Rotation */
.content-card:hover .card-image img {
    transform: scale(1.1) rotate(2deg);
}

/* Button Ripple Effect */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

/* Shimmer Effect on Buttons */
.btn-primary {
    background-size: 200% 100%;
    background-image: linear-gradient(135deg,
            #ffc9d4 0%,
            #ffd4b8 25%,
            #ffc9d4 50%,
            #ffd4b8 75%,
            #ffc9d4 100%);
    animation: shimmer 3s linear infinite;
}

/* Section Headers Fade In */
.section-header {
    animation: slideInUp 0.7s ease-out;
}

.section-header h2 {
    animation: slideInLeft 0.8s ease-out;
}

.section-header p {
    animation: slideInRight 0.8s ease-out;
}

/* Slider Dots Bounce */
.slider-dot {
    transition: var(--transition);
}

.slider-dot:hover {
    animation: bounce 0.5s ease;
}

/* Slider Arrows Pulse */
.slider-arrow {
    animation: pulseGlow 2s infinite;
}

.slider-arrow:hover {
    animation: bounce 0.6s ease;
}

/* Footer Fade In */
.site-footer {
    animation: slideInUp 0.6s ease-out;
}

/* Footer Links Slide Effect */
.footer-widget a {
    position: relative;
    display: inline-block;
    transition: var(--transition);
}

.footer-widget a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: var(--transition);
}

.footer-widget a:hover::before {
    left: -15px;
    opacity: 1;
}

.footer-widget a:hover {
    transform: translateX(5px);
}

/* Scroll Reveal Animation Class */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Floating Hearts Background Effect */
.hero-slider::after {
    content: '♥';
    position: absolute;
    top: 20%;
    left: 10%;
    font-size: 3rem;
    color: rgba(255, 201, 212, 0.1);
    animation: float 6s ease-in-out infinite;
    animation-delay: 1s;
}

/* Loading Spinner */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--cream);
    border-top-color: var(--blush-pink);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Text Gradient Animation */
@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.gradient-text {
    background: linear-gradient(90deg,
            var(--blush-pink),
            var(--soft-peach),
            var(--lavender),
            var(--blush-pink));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
}

/* Heartbeat Animation */
@keyframes heartbeat {

    0%,
    100% {
        transform: scale(1);
    }

    10%,
    30% {
        transform: scale(1.1);
    }

    20%,
    40% {
        transform: scale(1);
    }
}

.heartbeat {
    animation: heartbeat 1.5s ease-in-out infinite;
}

/* Wiggle Animation */
@keyframes wiggle {

    0%,
    100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(-5deg);
    }

    75% {
        transform: rotate(5deg);
    }
}

.wiggle:hover {
    animation: wiggle 0.5s ease;
}

/* Smooth Scroll Behavior */
html {
    scroll-behavior: smooth;
}

/* Selection Color */
::selection {
    background: var(--blush-pink);
    color: var(--white);
}

::-moz-selection {
    background: var(--blush-pink);
    color: var(--white);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--cream);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-rose);
}

/* ===== GLASSMORPHISM EFFECTS ===== */
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(255, 201, 212, 0.2);
}

/* Enhanced Feature Cards with Glassmorphism */
.feature-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 201, 212, 0.2);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 201, 212, 0.3), transparent);
    transition: left 0.7s;
}

.feature-card:hover::before {
    left: 100%;
}

/* Enhanced Content Cards */
.content-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.content-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 201, 212, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
}

.content-card:hover::after {
    opacity: 1;
}

/* ===== ENHANCED HERO SLIDER ===== */
.hero-slider {
    background: linear-gradient(135deg, #fdfbf7 0%, #f9f5f0 50%, #ffc9d4 100%);
    position: relative;
    overflow: hidden;
}

.hero-slider::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 212, 184, 0.3) 0%, transparent 50%);
    animation: rotate 30s linear infinite;
    z-index: 0;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.slider-container {
    position: relative;
    z-index: 1;
}

/* Enhanced Slide Images with Glow */
.slide-image img {
    border-radius: var(--border-radius);
    box-shadow: 0 20px 60px rgba(255, 201, 212, 0.4),
        0 0 40px rgba(255, 212, 184, 0.3);
    transition: all 0.5s ease;
}

.slide.active .slide-image img {
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {

    0%,
    100% {
        box-shadow: 0 20px 60px rgba(255, 201, 212, 0.4),
            0 0 40px rgba(255, 212, 184, 0.3);
    }

    50% {
        box-shadow: 0 20px 80px rgba(255, 201, 212, 0.6),
            0 0 60px rgba(255, 212, 184, 0.5);
    }
}

/* ===== ENHANCED BUTTONS ===== */
.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.btn {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: linear-gradient(135deg, #ffc9d4 0%, #ffd4b8 50%, #e6d5f5 100%);
    background-size: 200% 200%;
    animation: gradientMove 4s ease infinite;
    box-shadow: 0 8px 25px rgba(255, 201, 212, 0.4);
}

@keyframes gradientMove {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.btn-primary:hover {
    box-shadow: 0 12px 35px rgba(255, 201, 212, 0.6);
    transform: translateY(-5px) scale(1.05);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid var(--blush-pink);
    box-shadow: 0 4px 15px rgba(255, 201, 212, 0.2);
}

.btn-outline:hover {
    background: var(--blush-pink);
    box-shadow: 0 8px 25px rgba(255, 201, 212, 0.4);
}

/* ===== ENHANCED TESTIMONIALS ===== */
.testimonial-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 201, 212, 0.2);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 120px;
    font-family: Georgia, serif;
    color: rgba(255, 201, 212, 0.1);
    line-height: 1;
}

/* ===== STATISTICS COUNTER ENHANCEMENTS ===== */
.stat-item {
    position: relative;
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 15px 40px rgba(255, 201, 212, 0.3);
}

.stat-item div[data-count] {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== NEWSLETTER SECTION ENHANCEMENT ===== */
.newsletter-section {
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

/* ===== CARD IMAGE OVERLAY EFFECTS ===== */
.card-image {
    position: relative;
    overflow: hidden;
}

.card-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 201, 212, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.content-card:hover .card-image::before {
    opacity: 1;
}

/* ===== FLOATING PARTICLES EFFECT ===== */
@keyframes floatParticle {

    0%,
    100% {
        transform: translateY(0) translateX(0);
        opacity: 0.3;
    }

    25% {
        transform: translateY(-20px) translateX(10px);
        opacity: 0.6;
    }

    50% {
        transform: translateY(-40px) translateX(-10px);
        opacity: 0.8;
    }

    75% {
        transform: translateY(-20px) translateX(10px);
        opacity: 0.6;
    }
}

/* ===== SECTION DIVIDERS ===== */
.section {
    position: relative;
}

.section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
    opacity: 0.5;
}

/* ===== ENHANCED MOBILE RESPONSIVENESS ===== */
@media (max-width: 768px) {

    .glass-card,
    .feature-card,
    .content-card {
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .stat-item {
        margin-bottom: var(--spacing-md);
    }
}

/* ===== FAQ SECTION ===== */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    /* Ensure rounded corners */
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #fff;
    border: none;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-color);
    background: #fff5f8;
    /* Soft pink hover */
}

.faq-question i {
    font-size: 0.9rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question {
    color: var(--primary-color);
    background: #fff5f8;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fff;
}

.faq-answer p {
    padding: 0 20px 20px;
    /* Padding inside content */
    line-height: 1.7;
    color: var(--text-medium);
    margin: 0;
    font-size: 1rem;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .faq-question {
        font-size: 1.1rem;
        padding: 15px;
        transition: all 0.3s ease;
    }

    .t-dot.active {
        background: var(--blush-pink);
        width: 25px;
        /* Long active dot */
        border-radius: 5px;
    }

    /* Mobile Responsive Testimonial */
    @media (max-width: 768px) {
        .testimonial-card {
            min-width: 300px;
            flex: 0 0 300px;
            padding: 20px;
        }

        .testimonial-track {
            gap: 15px;
        }
    }

    @media (max-width: 480px) {
        .testimonial-card {
            min-width: 85vw;
            /* Almost full screen width slide */
            flex: 0 0 85vw;
        }
    }
}

/* ===== CARE AREAS GRID ===== */
.care-areas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Tablet (2 cols) */
@media (max-width: 1024px) {
    .care-areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile (1 col) */
@media (max-width: 600px) {
    .care-areas-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== Wide Testimonial Slider Row (Premium) ===== */
.testimonial-slider-container {
    width: 100%;
    /* Default to container */
    overflow: hidden;
    /* Hide scrollbar for JS or use clean CSS */
    padding: 20px 0 60px;
    /* Space for shadow */
    position: relative;
}

/* Use a Grid/Flex approach that breaks out */
.testimonial-track {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 10px 5% 40px 5%;
    /* Side padding for peek effect */
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Hide scrollbar Firefox */
}

.testimonial-track::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    min-width: 350px;
    max-width: 350px;
    scroll-snap-align: center;
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(93, 58, 70, 0.08);
    /* Premium soft shadow */
    display: flex;
    flex-direction: column;
    border-bottom: 4px solid var(--blush-pink);
    /* Clean bottom accent */
    border-left: none;
    /* Remove side border */
    flex-shrink: 0;
    transition: transform 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Quote Graphic Background */
.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    right: 20px;
    font-size: 120px;
    line-height: 1;
    color: rgba(255, 182, 193, 0.1);
    /* Very faint pink */
    font-family: serif;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(93, 58, 70, 0.12);
}

/* Review Text Polish */
.testimonial-card p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

/* Mobile Responsive Polish */
@media(max-width: 768px) {
    .testimonial-track {
        gap: 20px;
        padding: 10px 30px 40px 30px;
        /* Center snap focus */
    }

    .testimonial-card {
        min-width: 280px;
        /* Smaller but readable */
        max-width: 280px;
        scroll-snap-align: center;
        padding: 30px 25px;
    }
}

/* ===== Testimonial Controls ===== */
.testimonial-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    font-size: 1.2rem;
    color: var(--blush-pink);
    transition: all 0.3s;
    border: none;
}

.testimonial-arrow:hover {
    background: var(--blush-pink);
    color: #fff;
    transform: translateY(-50%) scale(1.1);
}

.testimonial-arrow.prev {
    left: 20px;
}

.testimonial-arrow.next {
    right: 20px;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    background: #e5e5e5;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.testimonial-dot.active {
    width: 30px;
    border-radius: 10px;
    background: var(--blush-pink);
}

/* Arrows visible on mobile now */
@media(max-width: 768px) {
    .testimonial-arrow {
        display: flex !important;
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
        background: rgba(255, 255, 255, 0.9);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }
}


/* ===== Testimonials Section (Responsive Slider) ===== */
.testimonial-slider-container {
    width: 100%;
    position: relative;
    overflow: hidden;
    margin-top: 20px;
}

.testimonial-track {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    /* Smooth scroll on iOS */
    scrollbar-width: none;
    /* Firefox */
}

.testimonial-track::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.testimonial-card {
    flex: 0 0 350px;
    /* Desktop width */
    min-width: 350px;
    background: #ffffff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .testimonial-track {
        gap: 15px;
        padding: 10px 20px 30px;
        /* More bottom padding */
        scroll-snap-type: x mandatory;
    }

    .testimonial-card {
        flex: 0 0 85vw;
        /* Show 85% of screen width */
        min-width: 85vw;
        padding: 25px;
        scroll-snap-align: center;
        /* Snap to center */
    }
}
/* ===== FIX: ABOUT IMAGE VISIBILITY ===== */
@media (max-width: 991px) {
    .about-us-grid { display: grid !important; grid-template-columns: 1fr !important; gap: 30px !important; }
    .about-image-wrapper { display: block !important; width: 100% !important; height: auto !important; min-height: 300px; order: -1; margin-bottom: 20px; }
    .about-image { display: block !important; width: 100% !important; }
    .about-image img { display: block !important; width: 100% !important; height: auto !important; object-fit: cover; }
    .experience-badge { display: flex !important; z-index: 10; }
}
