/* 
========================================================================
   SAFEGUARD PREMIUM HEALTHCARE SUBSCRIPTION SYSTEM - GLOBAL STYLESHEET
   Brand: Safeguard Adult Diapers | Company: ICL Brands Pvt Ltd
   Design: Modern Premium Luxury Healthcare (Apple-style / FMCG Trust)
========================================================================
*/

/* 1. IMPORTS & FONTS */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* 2. DESIGN SYSTEM & CUSTOM PROPERTIES */
:root {
    /* Color Palette */
    --color-primary: #20305f;
    --color-primary-rgb: 32, 48, 95;
    --color-primary-light: #2c427f;
    --color-secondary: #ffffff;
    --color-accent-blue: #0ea5e9;
    --color-accent-blue-rgb: 14, 165, 233;
    --color-bg-light: #f8fafc;
    --color-bg-soft-blue: #eef5ff;
    --color-text-dark: #1e293b;
    --color-text-muted: #64748b;
    --color-gold: #f59e0b;
    --color-gold-light: #fef3c7;

    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Layout Tokens */
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --border-radius-xl: 36px;
    --border-radius-pill: 50px;

    /* Transitions & Shadows */
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-quick: all 0.2s ease;

    --shadow-subtle: 0 4px 20px rgba(32, 48, 95, 0.03);
    --shadow-medium: 0 10px 30px rgba(32, 48, 95, 0.06);
    --shadow-premium: 0 20px 40px rgba(32, 48, 95, 0.08);
    --shadow-featured: 0 25px 60px rgba(14, 165, 233, 0.18);

    /* Glassmorphism Defaults */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.4);
    --glass-blur: blur(12px);
}

/* 3. RESET & BASE LAYOUT */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--color-bg-light);
    color: var(--color-text-dark);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
}

body {
    overflow-x: hidden;
    line-height: 1.6;
}

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

::-webkit-scrollbar-track {
    background: var(--color-bg-light);
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 5px;
    border: 2px solid var(--color-bg-light);
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* 4. UTILITIES & TYPOGRAPHY */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    font-weight: 600;
    line-height: 1.25;
}

.text-gradient {
    background: linear-gradient(135deg, var(--color-primary) 30%, var(--color-accent-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-alt {
    background: linear-gradient(135deg, var(--color-secondary) 40%, var(--color-accent-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-padding {
    padding: 100px 0;
    position: relative;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Premium Rounded Pill Button */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: var(--border-radius-pill);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-secondary);
    box-shadow: 0 4px 14px rgba(32, 48, 95, 0.2);
}

.btn-primary:hover {
    background-color: var(--color-primary-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(32, 48, 95, 0.3);
}

.btn-secondary {
    background-color: transparent;
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.btn-secondary:hover {
    background-color: var(--color-primary);
    color: var(--color-secondary);
    transform: translateY(-3px);
}

.btn-white {
    background-color: var(--color-secondary);
    color: var(--color-primary);
    box-shadow: 0 4px 14px rgba(255, 255, 255, 0.15);
}

.btn-white:hover {
    background-color: var(--color-bg-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.3);
}

.btn-accent {
    background-color: var(--color-accent-blue);
    color: var(--color-secondary);
    box-shadow: 0 4px 14px rgba(14, 165, 233, 0.25);
}

.btn-accent:hover {
    background-color: #0284c7;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(14, 165, 233, 0.4);
}

/* SECTION HEADER */
.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 60px auto;
}

.section-header .tag {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-accent-blue);
    display: inline-block;
    margin-bottom: 12px;
    background-color: var(--color-bg-soft-blue);
    padding: 6px 16px;
    border-radius: var(--border-radius-pill);
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    font-weight: 700;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--color-text-muted);
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }
}

/* 5. DYNAMIC FLOATING BACKGROUND BLOBS */
.bg-blob-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.bg-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    animation: floating-blob 25s infinite alternate ease-in-out;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background-color: var(--color-bg-soft-blue);
    top: -10%;
    right: -5%;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background-color: rgba(14, 165, 233, 0.15);
    bottom: 20%;
    left: -10%;
    animation-delay: -5s;
}

.blob-3 {
    width: 350px;
    height: 350px;
    background-color: rgba(32, 48, 95, 0.05);
    top: 40%;
    right: 20%;
    animation-delay: -10s;
}

@keyframes floating-blob {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }

    33% {
        transform: translate(50px, -50px) scale(1.1) rotate(60deg);
    }

    66% {
        transform: translate(-30px, 30px) scale(0.95) rotate(-120deg);
    }

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

/* 6. TRANSPARENT / STICKY HEADER & NAVBAR */
.header-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 24px 0;
    z-index: 1000;
    transition: var(--transition-smooth);
}

.header-nav.sticky {
    padding: 14px 0;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.header-nav .container {
    max-width: 100% !important;
    padding: 0 4% !important;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: var(--transition-smooth);
}

.header-nav.sticky .logo-img {
    height: 40px;
}

.footer-logo {
    height: 45px;
    margin-bottom: 20px;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--border-radius-md);
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent-blue) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(32, 48, 95, 0.2);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

/* Nav Menu Links in pill-shape layout */
.nav-menu {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 6px;
    border-radius: var(--border-radius-pill);
    list-style: none;
    box-shadow: var(--shadow-subtle);
    transition: var(--transition-smooth);
}

.header-nav.sticky .nav-menu {
    background-color: rgba(255, 255, 255, 0.2);
}

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 10px 22px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-dark);
    text-decoration: none;
    border-radius: var(--border-radius-pill);
    transition: var(--transition-quick);
}

.nav-link:hover,
.nav-item.active .nav-link {
    color: var(--color-primary);
    background-color: var(--color-secondary);
    box-shadow: var(--shadow-subtle);
}

/* Hamburger mobile menu button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 32px;
    height: 32px;
    position: relative;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-primary);
    margin-bottom: 6px;
    border-radius: 2px;
    transition: var(--transition-quick);
}

.mobile-menu-btn span:last-child {
    margin-bottom: 0;
}

/* Responsive header styling */
@media (max-width: 992px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: -400px;
        left: 5%;
        right: 5%;
        width: 90%;
        flex-direction: column;
        background-color: var(--color-secondary) !important;
        border-radius: var(--border-radius-lg);
        box-shadow: var(--shadow-premium);
        padding: 20px;
        gap: 10px;
        opacity: 0;
        pointer-events: none;
        transition: var(--transition-smooth);
    }

    .nav-menu.active {
        top: 90px;
        opacity: 1;
        pointer-events: all;
    }

    .nav-link {
        text-align: center;
        width: 100%;
        padding: 12px;
    }

    .nav-cta {
        display: none;
    }
}

/* 7. HERO SECTION WITH PREMIUM SLIDER */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    background-color: var(--color-bg-soft-blue);
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
    pointer-events: all;
}

/* Split Columns */
.hero-split-image {
    flex: 0 0 50%;
    height: 100%;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    transform: scale(1.05);
    transition: transform 1.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-slide.active .hero-split-image {
    transform: scale(1);
}

.hero-split-content {
    flex: 0 0 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #eef5ff;
    padding: 60px 80px;
    z-index: 5;
}

.hero-split-content-inner {
    width: 100%;
    max-width: 520px;
    opacity: 0;
    transform: translateY(30px);
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s, opacity 1s ease 0.2s;
}

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

/* Curved Divider between Image and White Content */
.split-divider {
    position: absolute;
    top: 0;
    right: -1px;
    height: 100%;
    width: 180px;
    z-index: 10;
    pointer-events: none;
}

.split-divider svg {
    width: 100%;
    height: 100%;
    fill: #eef5ff;
    display: block;
}

.split-divider .divider-desktop {
    display: block;
}

.split-divider .divider-mobile {
    display: none;
}

/* Image on the Right: Mirror the divider to sit on the left */
.hero-split-image.image-right .split-divider {
    left: -1px;
    right: auto;
    transform: scaleX(-1);
}

/* Typography styles inside slide */
.hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero p.subheadline {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 32px;
    font-weight: 400;
    line-height: 1.55;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 60px;
    left: 24px;
    right: 24px;
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 100;
}

.pagination-dots {
    display: flex;
    gap: 12px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(32, 48, 95, 0.15);
    cursor: pointer;
    transition: var(--transition-quick);
}

.dot.active {
    background-color: var(--color-primary);
    transform: scale(1.4);
    width: 20px;
    border-radius: 5px;
}

.slider-arrows {
    display: flex;
    gap: 12px;
}

.slider-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--color-secondary);
    border: 1px solid rgba(32, 48, 95, 0.05);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-subtle);
    transition: var(--transition-quick);
}

.slider-arrow:hover {
    background-color: var(--color-primary);
    color: var(--color-secondary);
    transform: translateY(-2px);
}



/* Animations */
@keyframes floating-gentle {
    0% {
        transform: translateY(0) rotate(-3deg);
    }

    100% {
        transform: translateY(-15px) rotate(-1deg);
    }
}

@keyframes floating-anti-gravity {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-25px) translateX(5px);
    }
}

@media (max-width: 992px) {
    .hero {
        height: 100vh;
        min-height: 640px;
        padding-top: 0;
    }

    .hero-slide {
        flex-direction: column !important;
    }

    /* Slide 2 & 4: stack image on top, content below */
    .hero-slide:nth-child(even) {
        flex-direction: column-reverse !important;
    }

    .hero-split-image {
        flex: 0 0 45vh !important;
        width: 100% !important;
        height: 45vh !important;
    }

    .hero-split-content {
        flex: 1 !important;
        width: 100% !important;
        height: auto !important;
        padding: 40px 24px 100px 24px !important;
        align-items: flex-start !important;
        justify-content: center !important;
        background-color: #eef5ff !important;
    }

    .hero-split-content-inner {
        max-width: 100% !important;
        text-align: center !important;
    }

    .hero-buttons {
        justify-content: center !important;
    }

    .hero h1 {
        font-size: 2rem !important;
        margin-bottom: 12px !important;
    }

    .hero p.subheadline {
        font-size: 0.95rem !important;
        margin-bottom: 24px !important;
    }

    /* Convert curved divider to horizontal bottom wave on mobile */
    .split-divider {
        width: 100% !important;
        height: 40px !important;
        top: auto !important;
        bottom: -1px !important;
        right: 0 !important;
        left: 0 !important;
        transform: none !important;
    }

    .split-divider svg {
        width: 100% !important;
        height: 100% !important;
    }

    .hero-split-image.image-right .split-divider {
        left: 0 !important;
        right: 0 !important;
        transform: none !important;
    }

    .split-divider .divider-desktop {
        display: none !important;
    }

    .split-divider .divider-mobile {
        display: block !important;
    }

    .slider-controls {
        bottom: 30px !important;
        left: 16px !important;
        right: 16px !important;
        justify-content: center !important;
        gap: 20px !important;
    }
}

/* 8. ADVANTAGES CARD GRID (STILL CARDS - NOT MOVING) */
.advantages {
    background-color: var(--color-bg-light);
    overflow: hidden;
}

.advantages-carousel-wrapper {
    position: relative;
    width: 100%;
    margin-top: 20px;
}

.advantages-carousel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 30px 10px;
}

.advantage-card {
    background: var(--color-secondary);
    padding: 40px 32px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-subtle);
    border: 1px solid rgba(32, 48, 95, 0.02);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

/* Glassmorphism accent for cards */
.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
    z-index: 1;
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-premium);
    border-color: rgba(14, 165, 233, 0.15);
}

.advantage-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius-md);
    background-color: var(--color-bg-soft-blue);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 28px;
    transition: var(--transition-quick);
    position: relative;
    z-index: 2;
}

.advantage-card:hover .advantage-icon {
    background-color: var(--color-accent-blue);
    color: var(--color-secondary);
    box-shadow: 0 10px 20px rgba(14, 165, 233, 0.25);
    transform: scale(1.1) rotate(5deg);
}

.advantage-card h3 {
    font-size: 1.3rem;
    margin-bottom: 16px;
    font-weight: 600;
}

.advantage-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .advantages-carousel {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .advantages-carousel {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .advantage-card {
        padding: 30px 24px;
    }
}

/* 9. HOW SUBSCRIPTION WORKS SECTION */
.how-works {
    background-color: var(--color-bg-soft-blue);
    position: relative;
}



.how-works-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 5;
}

/* Curved animated timeline connector line */
.how-works-timeline-line {
    position: absolute;
    top: 130px;
    left: 10%;
    right: 10%;
    height: 4px;
    background: linear-gradient(90deg, rgba(32, 48, 95, 0.05) 0%, var(--color-accent-blue) 50%, rgba(32, 48, 95, 0.05) 100%);
    background-size: 200% 100%;
    animation: flow-line 4s infinite linear;
    z-index: 1;
}

@keyframes flow-line {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.how-works-card {
    background-color: var(--color-secondary);
    border-radius: var(--border-radius-lg);
    padding: 40px 24px 32px 24px;
    text-align: center;
    box-shadow: var(--shadow-subtle);
    border: 1px solid rgba(255, 255, 255, 0.4);
    position: relative;
    z-index: 2;
    transition: var(--transition-smooth);
}

.how-works-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-premium);
}

.how-works-step {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--color-primary);
    color: var(--color-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(32, 48, 95, 0.2);
    border: 4px solid var(--color-bg-soft-blue);
    transition: var(--transition-quick);
}

.how-works-card:hover .how-works-step {
    background-color: var(--color-accent-blue);
    transform: translateX(-50%) scale(1.1);
}

.how-works-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--color-bg-soft-blue);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin: 10px auto 24px auto;
    transition: var(--transition-quick);
}

.how-works-card:hover .how-works-icon-wrapper {
    background-color: var(--color-primary);
    color: var(--color-secondary);
}

.how-works-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.how-works-card p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Timeline plan indicators inside steps */
.how-works-plans-clean {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--color-accent-blue);
    letter-spacing: 0.05em;
    margin-top: 12px;
    text-transform: uppercase;
    opacity: 0.85;
}

@media (max-width: 992px) {
    .how-works-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px;
    }

    .how-works-timeline-line {
        display: none;
    }
}

@media (max-width: 576px) {
    .how-works-grid {
        grid-template-columns: 1fr;
    }
}

/* 10. PREMIUM PROMOTION SECTION */
.promotion {
    background-color: var(--color-bg-light);
}

.promo-container {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    border-radius: var(--border-radius-xl);
    padding: 80px;
    color: var(--color-secondary);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 60px;
}

.promo-blobs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.promo-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.promo-blob-1 {
    width: 300px;
    height: 300px;
    background-color: rgba(14, 165, 233, 0.25);
    bottom: -100px;
    left: -50px;
}

.promo-blob-2 {
    width: 350px;
    height: 350px;
    background-color: rgba(255, 255, 255, 0.05);
    top: -150px;
    right: -50px;
}

.promo-content {
    position: relative;
    z-index: 2;
}

.promo-badge {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--color-accent-blue);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 6px 18px;
    border-radius: var(--border-radius-pill);
    display: inline-block;
    margin-bottom: 24px;
}

.promo-content h2 {
    color: var(--color-secondary);
    font-size: 2.75rem;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}

.promo-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Floating product mockups with overlapping layout */
.promo-visual {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 380px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.promo-mockup-wrapper {
    position: relative;
    width: 280px;
    height: 320px;
}

.promo-mockup-main {
    width: 100%;
    height: 100%;
    background-color: var(--color-secondary);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border: 4px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px;
}

.promo-mockup-brand {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    gap: 6px;
}

.promo-mockup-logo-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--color-accent-blue);
}

.promo-mockup-image {
    width: 100%;
    height: 130px;
    margin: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Diaper abstract premium outline */
.diaper-svg-drawing {
    width: 110px;
    height: 90px;
    fill: none;
    stroke: var(--color-primary);
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: 0.85;
}

.promo-mockup-meta {
    border-top: 1px solid #f1f5f9;
    padding-top: 12px;
}

.promo-mockup-meta h4 {
    font-size: 0.95rem;
    font-weight: 700;
}

.promo-mockup-meta p {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    margin-bottom: 0;
}

/* Floating discount tag */
.promo-discount-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--color-gold) 0%, #d97706 100%);
    color: var(--color-secondary);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(217, 119, 6, 0.4);
    z-index: 3;
    font-family: var(--font-heading);
    transform: rotate(12deg);
    animation: floating-gentle 4s infinite alternate ease-in-out;
}

.promo-discount-badge span.save {
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

.promo-discount-badge span.num {
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1;
}

/* Glassmorphism subscription card overlapping */
.promo-glass-badge {
    position: absolute;
    bottom: -15px;
    left: -40px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-md);
    padding: 16px 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 12px;
}

.promo-glass-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--color-accent-blue);
    color: var(--color-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.promo-glass-txt h5 {
    color: var(--color-secondary);
    font-size: 0.85rem;
    font-weight: 600;
}

.promo-glass-txt p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.7rem;
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .promo-container {
        grid-template-columns: 1fr;
        padding: 50px 30px;
        gap: 50px;
        text-align: center;
    }

    .promo-content h2 {
        font-size: 2.25rem;
    }

    .promo-visual {
        height: auto;
    }

    .promo-mockup-wrapper {
        margin: 0 auto;
    }
}

/* 11. TRUST SECTION WITH CURVED CARDS */
.trust {
    background-color: var(--color-bg-light);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.trust-card {
    background-color: var(--color-secondary);
    border-radius: var(--border-radius-lg);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow-subtle);
    border: 1px solid rgba(32, 48, 95, 0.01);
    transition: var(--transition-smooth);
}

.trust-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-medium);
}

.trust-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--color-bg-soft-blue);
    color: var(--color-accent-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin: 0 auto 20px auto;
    transition: var(--transition-quick);
}

.trust-card:hover .trust-card-icon {
    background-color: var(--color-accent-blue);
    color: var(--color-secondary);
    transform: scale(1.1);
}

.trust-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.trust-card p {
    color: var(--color-text-muted);
    font-size: 0.85rem;
    line-height: 1.5;
}

@media (max-width: 992px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .trust-grid {
        grid-template-columns: 1fr;
    }
}

/* 12. PREMIUM DARK FOOTER */
.footer {
    background-color: var(--color-primary);
    color: var(--color-secondary);
    padding: 80px 0 30px 0;
    position: relative;
    overflow: hidden;
}

/* Soft gradient border top for footer */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--color-accent-blue) 0%, var(--color-primary-light) 50%, var(--color-gold) 100%);
}

.footer-blobs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.footer-blob {
    position: absolute;
    width: 300px;
    height: 300px;
    background-color: rgba(14, 165, 233, 0.05);
    border-radius: 50%;
    filter: blur(100px);
}

.footer-blob-1 {
    bottom: -150px;
    right: -50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 50px;
    position: relative;
    z-index: 2;
    margin-bottom: 60px;
}

.footer-brand h2 {
    color: var(--color-secondary);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 24px;
    max-width: 320px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--color-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition-quick);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
    background-color: var(--color-accent-blue);
    transform: translateY(-3px);
    border-color: transparent;
}

.footer-col h3 {
    color: var(--color-secondary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--color-accent-blue);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-quick);
}

.footer-links a:hover {
    color: var(--color-accent-blue);
    padding-left: 5px;
}

.contact-info-list {
    list-style: none;
}

.contact-info-list li {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.contact-info-list i {
    color: var(--color-accent-blue);
    margin-top: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition-quick);
}

.footer-bottom-links a:hover {
    color: var(--color-accent-blue);
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* 13. DYNAMIC SCROLL ANIMATIONS (INTERSECTION OBSERVER) */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.appear {
    opacity: 1;
    transform: translateY(0);
}

/* Delay modifiers */
.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

.delay-400 {
    transition-delay: 0.4s;
}

/* 14. PRODUCT / PRICING SUBSCRIPTION ELEMENTS */
.page-hero {
    background-color: var(--color-bg-soft-blue);
    padding: 160px 0 100px 0;
    position: relative;
    overflow: hidden;
}

.page-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 1.15rem;
    color: var(--color-text-muted);
}

.product-showcase-card {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-showcase-bg-circle {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(32, 48, 95, 0.05) 0%, rgba(14, 165, 233, 0.15) 100%);
    z-index: 1;
    animation: floating-gentle 8s infinite alternate ease-in-out;
}

/* High-end showcase image */
.product-showcase-main-box {
    width: 250px;
    height: 310px;
    background-color: var(--color-secondary);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-premium);
    z-index: 2;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(255, 255, 255, 0.5);
    animation: floating-gentle 6s infinite alternate ease-in-out -2s;
}

.product-showcase-box-logo {
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--color-primary);
    font-size: 1.25rem;
    border-bottom: 2px solid var(--color-accent-blue);
    padding-bottom: 8px;
}

.product-showcase-box-sub {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-showcase-main-graphics {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Beautiful floating diaper layer illustration */
.floating-hotspot {
    position: absolute;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--color-accent-blue);
    border: 4px solid var(--color-secondary);
    box-shadow: 0 4px 10px rgba(14, 165, 233, 0.4);
    cursor: pointer;
    z-index: 3;
    animation: pulse-hotspot 2s infinite;
}

@keyframes pulse-hotspot {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(14, 165, 233, 0.5);
    }

    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 10px rgba(14, 165, 233, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(14, 165, 233, 0);
    }
}

.hotspot-1 {
    top: 20%;
    left: 10%;
}

.hotspot-2 {
    bottom: 30%;
    right: 10%;
}

.hotspot-tooltip {
    position: absolute;
    background-color: var(--color-primary);
    color: var(--color-secondary);
    padding: 8px 12px;
    border-radius: var(--border-radius-sm);
    font-size: 0.75rem;
    white-space: nowrap;
    box-shadow: var(--shadow-medium);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-quick);
    z-index: 4;
}

.floating-hotspot:hover .hotspot-tooltip {
    opacity: 1;
    transform: translateY(-35px);
}

.product-showcase-footer {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    font-weight: 500;
}

.product-showcase-badge {
    position: absolute;
    padding: 12px 18px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-medium);
    z-index: 3;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-showcase-badge-1 {
    top: 20px;
    right: 10px;
    transform: rotate(5deg);
}

.product-showcase-badge-2 {
    bottom: 20px;
    left: 10px;
    transform: rotate(-5deg);
}

@media (max-width: 992px) {
    .page-hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .product-showcase-card {
        height: 350px;
    }
}

/* PRODUCT MAIN DETAILED OPTIONS & PRICING PLAN CARDS */
.product-options {
    background-color: var(--color-bg-light);
}

/* Premium size selectors */
.options-selector-wrapper {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.option-group {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.option-title {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-muted);
    margin-bottom: 12px;
}

.pill-selectors {
    display: flex;
    background-color: var(--color-bg-soft-blue);
    padding: 6px;
    border-radius: var(--border-radius-pill);
    gap: 4px;
}

.pill-selector {
    border: none;
    background: none;
    padding: 10px 24px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: var(--border-radius-pill);
    cursor: pointer;
    transition: var(--transition-quick);
}

.pill-selector.active {
    background-color: var(--color-secondary);
    color: var(--color-primary);
    box-shadow: var(--shadow-subtle);
}

/* Elegant Switch Toggle */
.pricing-toggle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.pricing-toggle-label {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-muted);
    transition: var(--transition-quick);
}

.pricing-toggle-label.active {
    color: var(--color-primary);
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #cbd5e1;
    transition: .4s;
    border-radius: 34px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

input:checked+.toggle-slider {
    background-color: var(--color-accent-blue);
}

input:checked+.toggle-slider:before {
    transform: translateX(26px);
}

.discount-ribbon {
    background-color: var(--color-gold-light);
    color: #b45309;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 4px 12px;
    border-radius: var(--border-radius-pill);
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(217, 119, 6, 0.15);
    animation: pulse-hotspot 2s infinite;
}

/* Pricing plan cards grid */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.plan-card {
    background-color: var(--color-secondary);
    border-radius: var(--border-radius-lg);
    padding: 40px 24px;
    box-shadow: var(--shadow-subtle);
    border: 1px solid rgba(32, 48, 95, 0.02);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-premium);
}

.plan-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background-color: var(--color-bg-soft-blue);
    color: var(--color-primary);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--border-radius-pill);
}

.plan-card.featured {
    background-color: var(--color-primary);
    color: var(--color-secondary);
    box-shadow: var(--shadow-featured);
    border-color: transparent;
    transform: scale(1.03) translateY(-5px);
}

.plan-card.featured:hover {
    transform: scale(1.03) translateY(-12px);
    box-shadow: 0 30px 60px rgba(32, 48, 95, 0.25);
}

.plan-card.featured .plan-badge {
    background-color: var(--color-gold);
    color: var(--color-secondary);
}

.plan-header h3 {
    font-size: 1.35rem;
    margin-bottom: 6px;
}

.plan-card.featured .plan-header h3 {
    color: var(--color-secondary);
}

.plan-description {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 24px;
}

.plan-card.featured .plan-description {
    color: rgba(255, 255, 255, 0.7);
}

.plan-pricing {
    margin-bottom: 30px;
}

.plan-price-row {
    display: flex;
    align-items: baseline;
}

.plan-currency {
    font-size: 1.25rem;
    font-weight: 700;
}

.plan-price-num {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1;
    font-family: var(--font-heading);
    transition: var(--transition-quick);
}

.plan-period {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-left: 6px;
}

.plan-card.featured .plan-period {
    color: rgba(255, 255, 255, 0.7);
}

.plan-original-price {
    font-size: 0.9rem;
    text-decoration: line-through;
    color: var(--color-text-muted);
    margin-top: 4px;
    height: 20px;
    /* Keep layout stable when hidden */
}

.plan-card.featured .plan-original-price {
    color: rgba(255, 255, 255, 0.5);
}

.plan-features-list {
    list-style: none;
    margin-bottom: 36px;
    border-top: 1px solid #f1f5f9;
    padding-top: 24px;
}

.plan-card.featured .plan-features-list {
    border-top-color: rgba(255, 255, 255, 0.1);
}

.plan-features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.9rem;
}

.plan-features-list li:last-child {
    margin-bottom: 0;
}

.plan-features-list i {
    color: var(--color-accent-blue);
    font-size: 1rem;
}

.plan-card.featured .plan-features-list i {
    color: var(--color-accent-blue);
}

.plan-btn {
    width: 100%;
}

.plan-card.featured .plan-btn {
    background-color: var(--color-accent-blue);
    color: var(--color-secondary);
    box-shadow: 0 4px 14px rgba(14, 165, 233, 0.3);
}

.plan-card.featured .plan-btn:hover {
    background-color: var(--color-secondary);
    color: var(--color-primary);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

@media (max-width: 1200px) {
    .plans-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .plan-card.featured {
        transform: none;
    }

    .plan-card.featured:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 600px) {
    .plans-grid {
        grid-template-columns: 1fr;
    }
}

/* 15. DEDICATED HOW IT WORKS TIMELINE (VERTICAL TIMELINE JOURNEY) */
.timeline-section {
    background-color: var(--color-bg-light);
}

.vertical-timeline {
    position: relative;
    max-width: 800px;
    margin: 40px auto 0 auto;
}

/* Animated timeline connector */
.vertical-timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background: linear-gradient(180deg, var(--color-bg-soft-blue) 0%, var(--color-accent-blue) 30%, var(--color-primary) 70%, var(--color-bg-soft-blue) 100%);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
    z-index: 1;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
    z-index: 2;
}

/* Alternating side alignments */
.timeline-item.left {
    left: 0;
}

.timeline-item.right {
    left: 50%;
}

/* Interactive connection node */
.timeline-node {
    position: absolute;
    width: 28px;
    height: 28px;
    right: -14px;
    background-color: var(--color-secondary);
    border: 4px solid var(--color-accent-blue);
    top: 40px;
    border-radius: 50%;
    z-index: 10;
    box-shadow: var(--shadow-subtle);
    transition: var(--transition-quick);
}

.timeline-item.right .timeline-node {
    left: -14px;
}

.timeline-item:hover .timeline-node {
    background-color: var(--color-primary);
    transform: scale(1.2);
    box-shadow: 0 0 10px var(--color-accent-blue);
}

.timeline-card {
    padding: 32px;
    background-color: var(--color-secondary);
    position: relative;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-subtle);
    border: 1px solid rgba(32, 48, 95, 0.01);
    transition: var(--transition-smooth);
}

.timeline-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(14, 165, 233, 0.1);
}

.timeline-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.timeline-card-step-num {
    font-size: 0.85rem;
    font-weight: 700;
    background-color: var(--color-bg-soft-blue);
    color: var(--color-primary);
    padding: 4px 12px;
    border-radius: var(--border-radius-pill);
}

.timeline-card-icon {
    font-size: 1.5rem;
    color: var(--color-accent-blue);
}

.timeline-card h3 {
    font-size: 1.3rem;
}

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

@media (max-width: 768px) {
    .vertical-timeline::after {
        left: 31px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .timeline-item.right {
        left: 0;
    }

    .timeline-node {
        left: 17px !important;
        right: auto;
    }
}

/* 16. ABOUT STORYTELLING LAYOUTS */
.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-story-image {
    position: relative;
    width: 100%;
    height: 480px;
}

.about-img-box {
    width: 85%;
    height: 85%;
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    border: 8px solid var(--color-secondary);
}

.about-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-overlap-card {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 250px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-premium);
    animation: floating-gentle 6s infinite alternate ease-in-out;
}

.about-img-overlap-card h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.about-img-overlap-card p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.about-story-content h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.about-story-content p {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    margin-bottom: 20px;
}

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

    .about-story-image {
        height: 400px;
        order: 2;
    }

    .about-img-box {
        width: 100%;
        height: 100%;
    }
}

/* 17. CONTACT PAGE LAYOUTS & FORMS */
.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-detail-card {
    background-color: var(--color-secondary);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-subtle);
    border: 1px solid rgba(32, 48, 95, 0.01);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: var(--transition-smooth);
}

.contact-detail-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.contact-detail-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--border-radius-md);
    background-color: var(--color-bg-soft-blue);
    color: var(--color-accent-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.contact-detail-info h4 {
    font-size: 1.05rem;
    margin-bottom: 6px;
}

.contact-detail-info p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.contact-form-container {
    background-color: var(--color-secondary);
    border-radius: var(--border-radius-xl);
    padding: 50px;
    box-shadow: var(--shadow-premium);
    border: 1px solid rgba(32, 48, 95, 0.01);
}

.contact-form h3 {
    font-size: 1.75rem;
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.form-group.full-width {
    margin-bottom: 30px;
}

.form-label {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-primary);
}

.form-input {
    width: 100%;
    padding: 14px 20px;
    border-radius: var(--border-radius-md);
    border: 1.5px solid #cbd5e1;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-quick);
    color: var(--color-text-dark);
}

.form-input:focus {
    outline: none;
    border-color: var(--color-accent-blue);
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.1);
}

textarea.form-input {
    resize: none;
    height: 120px;
}

.map-placeholder-box {
    margin-top: 60px;
    height: 400px;
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-medium);
}

.map-mock {
    width: 100%;
    height: 100%;
    background-color: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
}

.map-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle, #cbd5e1 1.5px, transparent 1.5px),
        radial-gradient(circle, #cbd5e1 1.5px, transparent 1.5px);
    background-size: 30px 30px;
    background-position: 0 0, 15px 15px;
    opacity: 0.6;
}

.map-glass-card {
    position: relative;
    z-index: 5;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    padding: 24px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-premium);
    max-width: 300px;
    text-align: center;
}

.map-glass-card h4 {
    margin-bottom: 8px;
}

.map-glass-card p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.map-pin {
    width: 40px;
    height: 40px;
    background-color: var(--color-primary);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    margin: 0 auto 16px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(32, 48, 95, 0.3);
}

.map-pin::after {
    content: '';
    width: 16px;
    height: 16px;
    background-color: var(--color-secondary);
    border-radius: 50%;
}

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

    .contact-form-container {
        padding: 30px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* ========================================================================
   18. NEW SPECIAL OFFERS SHOWCASE SECTION WITH DYNAMIC SLIDER & STATIC IMAGE
   ======================================================================== */
.showcase-offer {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(32, 48, 95, 0.05);
}

/* Floating background blobs for modern campaign aesthetic */
.showcase-blobs {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.showcase-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.blob-blue-1 {
    width: 350px;
    height: 350px;
    background: rgba(14, 165, 233, 0.12);
    top: -50px;
    right: 10%;
}

.blob-blue-2 {
    width: 400px;
    height: 400px;
    background: rgba(32, 48, 95, 0.05);
    bottom: -100px;
    left: 5%;
}

/* Global Section Header */
.showcase-section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 55px auto;
    position: relative;
    z-index: 5;
}

.showcase-tag {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--color-accent-blue);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: inline-block;
    margin-bottom: 10px;
}

.showcase-section-title {
    font-size: 2.35rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.showcase-section-subtitle {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.showcase-sample-link {
    color: var(--color-accent-blue);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid rgba(14, 165, 233, 0.2);
    padding-bottom: 1px;
    transition: all 0.3s ease;
}

.showcase-sample-link:hover {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
}

/* Asymmetrical split grid */
.showcase-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.95fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 5;
}

/* Left side: Premium multi-item slider */
.showcase-left {
    position: relative;
    width: 100%;
}

.showcase-slider-wrapper {
    position: relative;
    width: 100%;
}

.showcase-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateY(25px);
    z-index: 1;
}

.showcase-slide.active {
    position: relative;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    z-index: 5;
}

.showcase-card-inner {
    background: #eef5ff;
    /* Premium approved background color code */
    border-radius: 30px;
    /* User requested: need little bit more corve */
    padding: 50px 230px 50px 50px;
    position: relative;
    border: 1px solid rgba(32, 48, 95, 0.05);
    box-shadow: 0 20px 40px rgba(32, 48, 95, 0.04);
    transition: all 0.4s ease;
}

.showcase-card-inner:hover {
    box-shadow: 0 30px 60px rgba(32, 48, 95, 0.08);
    border-color: rgba(14, 165, 233, 0.15);
}

.offer-category {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-accent-blue);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: inline-block;
    margin-bottom: 12px;
}

.offer-title {
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 16px;
    line-height: 1.25;
}

.offer-text {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
}

/* Pricing Row */
.offer-pricing {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 30px;
}

.price-current {
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--color-primary);
    font-family: var(--font-heading);
}

.price-original {
    font-size: 1.15rem;
    text-decoration: line-through;
    color: var(--color-text-muted);
    opacity: 0.65;
}

.price-period {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

/* Pill CTA Button */
.btn-pill-premium {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-primary);
    color: var(--color-secondary) !important;
    padding: 14px 34px;
    border-radius: var(--border-radius-pill);
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 8px 20px rgba(32, 48, 95, 0.15);
    z-index: 1;
}

.btn-pill-premium:hover {
    background-color: var(--color-accent-blue);
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(14, 165, 233, 0.25);
}

.btn-glow-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
}

.btn-pill-premium:hover .btn-glow-effect {
    left: 150%;
}

/* Anti-gravity floating mockups inside active slides */
.product-floating-wrapper {
    position: absolute;
    right: 45px;
    top: 50%;
    transform: translateY(-50%);
    width: 155px;
    height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.product-glow-circle {
    position: absolute;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.25) 0%, rgba(14, 165, 233, 0) 70%);
    border-radius: 50%;
    z-index: 1;
    animation: glow-pulse 3s ease-in-out infinite;
}

.product-float-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    z-index: 2;
    animation: float-gentle 4s ease-in-out infinite;
    filter: drop-shadow(0 15px 25px rgba(32, 48, 95, 0.15));
}

.product-float-img.overnight-hue {
    filter: drop-shadow(0 15px 25px rgba(32, 48, 95, 0.15)) hue-rotate(240deg) brightness(0.9);
}

.product-float-shadow {
    position: absolute;
    bottom: 12px;
    width: 100px;
    height: 12px;
    background: radial-gradient(ellipse at center, rgba(32, 48, 95, 0.2) 0%, rgba(32, 48, 95, 0) 70%);
    border-radius: 50%;
    z-index: 1;
    animation: shadow-float 4s ease-in-out infinite;
}

/* Slider arrows and pagination controls */
.showcase-controls {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    margin-top: 32px;
    padding-left: 20px;
}

.showcase-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid rgba(32, 48, 95, 0.1);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(32, 48, 95, 0.04);
    transition: all 0.3s ease;
}

.showcase-arrow:hover {
    background: var(--color-primary);
    color: #ffffff;
    transform: scale(1.08);
    box-shadow: 0 8px 15px rgba(32, 48, 95, 0.15);
}

.showcase-dots {
    display: flex;
    align-items: center;
    gap: 8px;
}

.showcase-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(32, 48, 95, 0.25);
    cursor: pointer;
    transition: all 0.3s ease;
}

.showcase-dot.active {
    background: var(--color-primary);
    transform: scale(1.25);
    width: 24px;
    border-radius: 5px;
}

/* Right Side: Caregiver composition remains STILL and STATIONARY */
.showcase-right {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-left: 15px;
}

.lifestyle-composition-wrapper {
    position: relative;
    width: 100%;
    max-width: 450px;
    height: 470px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Abstract backgrounds behind stationary image */
.shape-blue-glow {
    position: absolute;
    width: 320px;
    height: 320px;
    background: rgba(14, 165, 233, 0.15);
    filter: blur(40px);
    border-radius: 50%;
    top: 15%;
    left: 15%;
    z-index: 1;
    pointer-events: none;
}

.shape-organic-1 {
    position: absolute;
    width: 106%;
    height: 106%;
    border: 2px dashed rgba(14, 165, 233, 0.22);
    border-radius: 40% 60% 70% 30% / 45% 40% 60% 55%;
    z-index: 2;
    animation: rotate-slow 20s linear infinite;
    pointer-events: none;
}

.shape-organic-2 {
    position: absolute;
    width: 110%;
    height: 110%;
    border: 1px solid rgba(32, 48, 95, 0.08);
    border-radius: 50% 50% 30% 70% / 50% 60% 40% 50%;
    z-index: 2;
    animation: rotate-reverse 26s linear infinite;
    pointer-events: none;
}

/* Asymmetrical organic curves & morphing mask */
.organic-image-mask {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 3;
    box-shadow: 0 25px 50px -12px rgba(32, 48, 95, 0.2);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    /* Curved premium half-circle morphing shape */
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.lifestyle-composition-wrapper:hover .organic-image-mask {
    border-radius: 50%;
    /* Smoothly transitions to perfect circle */
}

.lifestyle-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.lifestyle-composition-wrapper:hover .lifestyle-main-img {
    transform: scale(1.04);
}

/* Glassmorphic overlay trust badges */
.glass-mini-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 20px;
    padding: 14px 20px;
    box-shadow: 0 15px 35px rgba(32, 48, 95, 0.1);
    z-index: 5;
    transition: all 0.4s ease;
}

.glass-mini-card:hover {
    transform: translateY(-4px) scale(1.03);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 20px 40px rgba(32, 48, 95, 0.14);
}

.sap-badge {
    top: 15%;
    left: -40px;
}

.comfort-badge {
    bottom: 15%;
    right: -40px;
}

.glass-card-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(14, 165, 233, 0.12);
    color: var(--color-accent-blue);
    display: flex;
    align-items: center;
    justify-content: center;
}

.glass-card-info h5 {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 2px;
}

.glass-card-info p {
    font-size: 0.76rem;
    color: var(--color-text-muted);
}

/* Anti-gravity Floating Keyframes */
@keyframes float-gentle {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-12px) rotate(2deg);
    }

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

@keyframes shadow-float {
    0% {
        transform: scale(1);
        opacity: 0.95;
    }

    50% {
        transform: scale(0.85);
        opacity: 0.55;
    }

    100% {
        transform: scale(1);
        opacity: 0.95;
    }
}

@keyframes glow-pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.85;
    }

    100% {
        transform: scale(1);
        opacity: 0.5;
    }
}

/* Layer Rotation Keyframes */
@keyframes rotate-slow {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes rotate-reverse {
    0% {
        transform: rotate(360deg);
    }

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

/* Badge floating animations */
.animate-float-slow {
    animation: float-badge-1 6s ease-in-out infinite;
}

.animate-float-delayed {
    animation: float-badge-2 6s ease-in-out infinite;
    animation-delay: 1.5s;
}

@keyframes float-badge-1 {
    0% {
        transform: translateY(0);
    }

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

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

@keyframes float-badge-2 {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(8px);
    }

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

/* ========================================================================
   RESPONSIVENESS AND COLLAPSIBLE ADAPTATIONS
   ======================================================================== */
@media (max-width: 1200px) {
    .showcase-grid {
        gap: 35px;
    }

    .showcase-card-inner {
        padding: 40px 190px 40px 40px;
    }

    .sap-badge {
        left: -20px;
    }

    .comfort-badge {
        right: -20px;
    }
}

@media (max-width: 992px) {
    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .showcase-left {
        order: 1;
    }

    .showcase-right {
        order: 2;
        padding-left: 0;
    }

    .lifestyle-composition-wrapper {
        margin: 0 auto;
    }

    .showcase-card-inner {
        padding: 40px;
        display: flex;
        flex-direction: column;
    }

    .product-floating-wrapper {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        margin: 40px auto 0 auto;
        width: 170px;
        height: 200px;
    }

    .showcase-controls {
        justify-content: center;
        padding-left: 0;
    }
}

@media (max-width: 576px) {
    .showcase-section-title {
        font-size: 1.9rem;
    }

    .showcase-card-inner {
        padding: 35px 25px;
    }

    .offer-title {
        font-size: 1.55rem;
    }

    .price-current {
        font-size: 1.65rem;
    }

    .lifestyle-composition-wrapper {
        height: 380px;
        max-width: 360px;
    }

    .sap-badge {
        left: -10px;
        padding: 10px 15px;
    }

    .comfort-badge {
        right: -10px;
        padding: 10px 15px;
    }
}

/* ========================================================================
   19. CUSTOMER REVIEWS SECTION WITH DYNAMIC SLIDER (SETS OF 3)
   ======================================================================== */
.reviews-section {
    background-color: #eef5ff;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(32, 48, 95, 0.05);
}

.reviews-blobs {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.reviews-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
}

.blob-teal {
    width: 380px;
    height: 380px;
    background: rgba(14, 165, 233, 0.1);
    top: 10%;
    left: -100px;
}

.blob-blue {
    width: 400px;
    height: 400px;
    background: rgba(32, 48, 95, 0.06);
    bottom: 10%;
    right: -100px;
}

.reviews-section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px auto;
    position: relative;
    z-index: 5;
}

.reviews-tag {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--color-accent-blue);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: inline-block;
    margin-bottom: 10px;
}

.reviews-section-title {
    font-size: 2.35rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.reviews-section-subtitle {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* Slider Track Layout */
.reviews-slider-container {
    position: relative;
    width: 100%;
    z-index: 5;
}

.reviews-slider-wrapper {
    position: relative;
    width: 100%;
}

.reviews-slide-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

.reviews-slide-group.active {
    position: relative;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    z-index: 5;
}

/* Review Card Styling */
.review-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(32, 48, 95, 0.05);
    box-shadow: 0 15px 35px rgba(32, 48, 95, 0.03);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s ease;
}

.review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 50px rgba(32, 48, 95, 0.08);
    border-color: rgba(14, 165, 233, 0.15);
}

.review-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.review-stars {
    display: flex;
    gap: 4px;
}

.review-stars .star {
    color: var(--color-gold, #f59e0b);
    font-size: 1.1rem;
}

.review-quote-icon {
    color: rgba(14, 165, 233, 0.15);
    display: flex;
    align-items: center;
}

.review-text {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.65;
    margin-bottom: 30px;
    font-style: italic;
    flex-grow: 1;
}

/* Reviewer Profile Grid */
.review-profile {
    display: flex;
    align-items: center;
    gap: 16px;
    border-top: 1px solid rgba(32, 48, 95, 0.05);
    padding-top: 20px;
}

.profile-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    color: #ffffff;
    font-family: var(--font-heading);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.avatar-teal {
    background: linear-gradient(135deg, #0ea5e9, #14b8a6);
}

.avatar-blue {
    background: linear-gradient(135deg, #20305f, #0ea5e9);
}

.avatar-purple {
    background: linear-gradient(135deg, #7c3aed, #a855f7);
}

.avatar-aquamarine {
    background: linear-gradient(135deg, #06b6d4, #10b981);
}

.avatar-orange {
    background: linear-gradient(135deg, #f97316, #eab308);
}

.avatar-pink {
    background: linear-gradient(135deg, #ec4899, #f43f5e);
}

.profile-details {
    display: flex;
    flex-direction: column;
}

.profile-name-row {
    display: flex;
    align-items: center;
    gap: 6px;
}

.profile-details h4 {
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0;
}

.profile-meta {
    font-size: 0.82rem;
    color: var(--color-text-muted);
    margin: 4px 0 0 0;
    font-weight: 500;
}

.verified-text {
    color: #10b981;
    font-weight: 600;
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.verified-text.expert-text {
    color: var(--color-accent-blue);
}

.profile-details p {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin: 2px 0 0 0;
}

/* Slider Controls Row */
.reviews-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 50px;
}

.reviews-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid rgba(32, 48, 95, 0.1);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(32, 48, 95, 0.04);
    transition: all 0.3s ease;
}

.reviews-arrow:hover {
    background: var(--color-primary);
    color: #ffffff;
    transform: scale(1.08);
    box-shadow: 0 8px 15px rgba(32, 48, 95, 0.15);
}

.reviews-dots {
    display: flex;
    align-items: center;
    gap: 8px;
}

.reviews-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(32, 48, 95, 0.25);
    cursor: pointer;
    transition: all 0.3s ease;
}

.reviews-dot.active {
    background: var(--color-primary);
    transform: scale(1.25);
    width: 24px;
    border-radius: 5px;
}

/* ========================================================================
   RESPONSIVENESS AND COLLAPSIBLE ADAPTATIONS FOR REVIEWS
   ======================================================================== */
@media (max-width: 992px) {
    .reviews-slide-group {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    /* Hide the 3rd review card on tablet to maintain neat 2-column grid */
    .reviews-slide-group .review-card:nth-child(3) {
        display: none;
    }
}

@media (max-width: 768px) {
    .reviews-slide-group {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Restore the 3rd card on mobile since they stack vertically anyway */
    .reviews-slide-group .review-card:nth-child(3) {
        display: flex;
    }

    .reviews-section-title {
        font-size: 1.95rem;
    }

    .review-card {
        padding: 30px 25px;
    }

    .reviews-controls {
        margin-top: 40px;
    }
}

/* ========================================================================
   20. QUALITY ASSURANCE CERTIFICATIONS SECTION
   ======================================================================== */
.quality-section {
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    z-index: 2;
}

.quality-section .container {
    position: relative;
    z-index: 2;
}

.quality-section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 60px auto;
}

.quality-section-title {
    font-size: 2.3rem;
    font-weight: 700;
    margin-top: 12px;
    margin-bottom: 18px;
}

.quality-section-subtitle {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* Grid Layout */
.quality-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Card Styling */
.quality-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--border-radius-lg);
    padding: 40px 24px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(32, 48, 95, 0.02);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.quality-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(32, 48, 95, 0.07);
    border-color: rgba(32, 48, 95, 0.15);
}

/* Badge and Icon Styling */
.quality-badge-container {
    position: relative;
    margin-bottom: 25px;
    z-index: 2;
}

.quality-icon-wrapper {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 6px 20px rgba(32, 48, 95, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 3;
    transition: var(--transition-smooth);
}

.quality-svg {
    width: 100%;
    height: 100%;
    transition: var(--transition-smooth);
}

/* Hover States for Badges */
.quality-card:hover .quality-icon-wrapper {
    transform: scale(1.04);
    box-shadow: 0 8px 24px rgba(32, 48, 95, 0.08);
}

/* Card Content Typography */
.quality-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 12px;
    font-family: var(--font-heading);
    transition: var(--transition-quick);
}

.quality-card:hover h3 {
    color: var(--color-accent-blue);
}

.quality-card p {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Responsiveness */
@media (max-width: 1024px) {
    .quality-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .quality-section-title {
        font-size: 2.1rem;
    }
}

@media (max-width: 640px) {
    .quality-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .quality-section-title {
        font-size: 1.8rem;
    }

    .quality-card {
        padding: 30px 20px;
    }

    .quality-icon-wrapper {
        width: 80px;
        height: 80px;
    }
}

/* ========================================================================
   21. INTERACTIVE FAQ ACCORDION SECTION
   ======================================================================== */
.faq-section {
    background-color: var(--color-bg-light);
    border-top: 1px solid #e2e8f0;
}

.faq-container {
    max-width: 820px;
    margin: 0 auto;
}

.faq-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--border-radius-md);
    box-shadow: 0 4px 12px rgba(32, 48, 95, 0.02);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    box-shadow: 0 8px 24px rgba(32, 48, 95, 0.05);
    border-color: rgba(32, 48, 95, 0.15);
}

.faq-item[open] {
    box-shadow: 0 10px 30px rgba(32, 48, 95, 0.06);
    border-color: rgba(32, 48, 95, 0.2);
}

.faq-trigger {
    padding: 20px 24px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--color-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    outline: none;
    user-select: none;
    transition: var(--transition-quick);
}

/* Hide default browser marker */
.faq-trigger::-webkit-details-marker {
    display: none;
}

.faq-trigger:hover {
    color: var(--color-accent-blue);
}

.faq-arrow {
    color: var(--color-text-muted);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s ease;
    flex-shrink: 0;
}

.faq-item:hover .faq-arrow {
    color: var(--color-accent-blue);
}

.faq-item[open] .faq-arrow {
    transform: rotate(180deg);
    color: var(--color-accent-blue);
}

.faq-content {
    padding: 0 24px 24px 24px;
    border-top: 1px solid #f1f5f9;
    margin-top: 0;
    padding-top: 20px;
    animation: fade-slide-in 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-content p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.65;
    margin: 0;
}

@keyframes fade-slide-in {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}