/* =========================================================================
   Zevitas Pharmaceutical Website - Custom Style
   ========================================================================= */

/* --- CSS Variables / Design Tokens --- */
:root {
    /* Colors derived from Zevitas Logo */
    --clr-primary: #0B3564;
    /* Deep navy blue background */
    --clr-primary-light: #1b5394;
    --clr-secondary: #F184B3;
    /* Pink text color */
    --clr-secondary-light: #f7b4ce;
    --clr-accent: #FEF667;

    /* Neutrals */
    --clr-text-main: #1e293b;
    --clr-text-muted: #64748b;
    --clr-bg-main: #ffffff;
    --clr-bg-alt: #fdf2f7;
    --clr-bg-glass: rgba(255, 255, 255, 0.85);

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;

    /* Spacing & Layout */
    --container-max: 1280px;
    --container-sm: 900px;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;

    /* Effects */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-color: rgba(30, 58, 138, 0.1);

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 40px;
    --radius-full: 9999px;

    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: var(--font-body);
    color: var(--clr-text-main);
    background-color: var(--clr-bg-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--clr-primary);
    margin-bottom: 0.5em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

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

ul {
    list-style: none;
}

/* --- Utilities --- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 5%;
}

.container-sm {
    max-width: var(--container-sm);
}

.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 2rem;
}

.mt-5 {
    margin-top: 3rem;
}

.bg-light {
    background-color: var(--clr-bg-alt);
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.mb-3 {
    margin-bottom: 1rem;
}

.relative {
    position: relative;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-light));
    color: white;
    box-shadow: 0 4px 14px var(--shadow-color);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px var(--shadow-color);
}

.btn-secondary {
    background-color: var(--clr-bg-alt);
    color: var(--clr-primary);
    border-color: var(--clr-bg-alt);
}

.btn-secondary:hover {
    background-color: #e2e8f0;
}

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

.btn-outline:hover {
    background-color: var(--clr-primary);
    color: white;
}

/* --- Header & Navigation --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
    padding: 0;
}

.header-main {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    border-radius: 0;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.1), 0 2px 8px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
    max-width: 100%;
    margin: 0 auto;
    overflow: visible;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 2.5rem;
    max-width: var(--container-max);
    margin: 0 auto;
}

.site-header.scrolled {
    top: 0;
}

/* Hide on scroll down, show on scroll up */
.site-header.scroll-down {
    transform: translateY(-150%);
}

.site-header.scroll-up {
    transform: translateY(0);
}

.site-header.scrolled .header-main {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    box-shadow: 0 12px 32px rgba(31, 38, 135, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.8);
}

/* Logo Styling */
.header-logo {
    height: 85px;
    width: auto;
    object-fit: contain;
    margin-top: -12px;
    margin-bottom: -12px;
    transition: transform var(--transition-smooth);
}

.logo:hover .header-logo {
    transform: scale(1.04);
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.main-nav .nav-list {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-link {
    font-weight: 500;
    color: #374151;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    position: relative;
    transition: all 0.25s ease;
    letter-spacing: 0.01em;
}

.home-page .site-header:not(.scrolled) .nav-link {
    color: #ffffff;
}

.nav-link:hover {
    color: var(--clr-primary);
    background-color: rgba(255, 255, 255, 0.5);
}

.home-page .site-header:not(.scrolled) .nav-link:hover {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.2);
}

.nav-link.active {
    color: var(--clr-primary);
    font-weight: 600;
}

.home-page .site-header:not(.scrolled) .nav-link.active {
    color: #ffffff;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--clr-primary), var(--clr-primary-light));
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

/* Divider */
.nav-divider {
    width: 1px;
    height: 28px;
    background-color: rgba(0, 0, 0, 0.1);
    margin: 0 0.75rem;
}

/* CTA Button */
.btn-consult {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-light));
    border-radius: var(--radius-full);
    border: none;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px rgba(15, 76, 129, 0.2);
}

.btn-consult:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(15, 76, 129, 0.35);
}

.btn-consult i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.btn-consult:hover i {
    transform: scale(1.15);
}

/* Accent Strip */
.header-accent-strip {
    height: 0;
    display: none;
}

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

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--clr-primary);
    cursor: pointer;
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    padding: calc(100px + var(--space-xl)) 0 var(--space-xl);
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background-color: #fdf2f7; /* Soft base background matching alt bg */
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px); /* Heavy blur for mesh gradient effect */
    opacity: 0.6;
    z-index: -1;
    mix-blend-mode: multiply; /* Better color mixing */
    translate: var(--tx, 0px) var(--ty, 0px);
    transition: translate 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.blob-1 {
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle at center, rgba(241, 132, 179, 0.4) 0%, rgba(241, 132, 179, 0) 70%); /* Primary Pink */
    top: -10%;
    right: -10%;
    animation: blobShape 25s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
}

.blob-2 {
    width: 65vw;
    height: 65vw;
    background: radial-gradient(circle at center, rgba(254, 246, 103, 0.4) 0%, rgba(254, 246, 103, 0) 70%); /* Secondary Yellow */
    bottom: -20%;
    left: -10%;
    animation: blobShape 30s infinite alternate-reverse cubic-bezier(0.4, 0, 0.2, 1);
}

.blob-3 {
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle at center, rgba(106, 212, 245, 0.35) 0%, rgba(106, 212, 245, 0) 70%); /* Lighter cyan highlight */
    top: 20%;
    left: 20%;
    animation: blobShape2 22s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes blobShape {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    }
    33% {
        transform: translate(5vw, 10vh) scale(1.1) rotate(45deg);
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    66% {
        transform: translate(-10vw, -5vh) scale(0.9) rotate(90deg);
        border-radius: 30% 70% 50% 50% / 50% 60% 40% 60%;
    }
    100% {
        transform: translate(0, 0) scale(1) rotate(135deg);
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    }
}

@keyframes blobShape2 {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
        border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
    }
    50% {
        transform: translate(-10vw, 15vh) scale(1.2) rotate(-60deg);
        border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%;
    }
    100% {
        transform: translate(10vw, -10vh) scale(0.9) rotate(-120deg);
        border-radius: 30% 70% 30% 70% / 70% 30% 70% 30%;
    }
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 0.35rem 1rem;
    background-color: rgba(241, 132, 179, 0.1);
    color: var(--clr-secondary);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(241, 132, 179, 0.2);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--clr-primary) 20%, var(--clr-primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-quote {
    font-size: 1.125rem;
    color: var(--clr-text-muted);
    margin-bottom: 2.5rem;
    max-width: 90%;
    font-style: italic;
    border-left: 3px solid var(--clr-secondary);
    padding-left: 1.5rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

.hero-image-wrapper {
    position: relative;
}

.glass-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-lg);
    padding: 1rem;
    box-shadow: var(--shadow-xl);
}

.hero-img {
    border-radius: var(--radius-md);
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
}

.floating-badge {
    position: absolute;
    bottom: -20px;
    left: -30px;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: float-small 6s ease-in-out infinite;
}

.floating-badge i {
    font-size: 2.5rem;
    color: var(--clr-secondary);
}

.floating-badge strong {
    display: block;
    color: var(--clr-primary);
    line-height: 1.2;
}

.floating-badge span {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
}

@keyframes float-small {

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

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

/* --- Nexa Wellness Style Hero --- */
.hero-nexa {
    position: relative;
    width: 100%;
    padding: calc(110px + var(--space-xl) + 2rem) 0 calc(var(--space-xl) + 1rem);
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 96%, 0 100%);
}

.nexa-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: #0b3d91;
}

.nexa-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
}

.nexa-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Stronger royal blue overlay for better text contrast */
    background: linear-gradient(135deg, rgba(30, 80, 180, 0.7) 0%, rgba(10, 30, 90, 0.9) 100%);
    mix-blend-mode: multiply;
}

.nexa-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    width: 100%;
    padding: 0 1.5rem;
}

.nexa-hero-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
}

.nexa-text-col {
    flex: 1 1 100%;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.nexa-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.nexa-trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    align-items: center;
}

.nexa-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.nexa-badge-wrap {
    margin-bottom: 2rem;
}

.nexa-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.6rem 2rem;
    border-radius: var(--radius-full);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: white;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.nexa-title {
    font-size: clamp(2.5rem, 5.5vw, 4.2rem);
    line-height: 1.15;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), text-shadow 0.4s ease;
}

.interactive-title:hover {
    transform: scale(1.02) translateY(-5px);
    text-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}

.text-glow-interactive {
    display: inline-block;
    position: relative;
    color: #ffffff;
    transition: color 0.3s ease;
}

.interactive-title:hover .text-glow-interactive {
    background: linear-gradient(
        to right,
        #ff3b3b,
        #ff993b,
        #ffff3b,
        #3bff3b,
        #3b99ff,
        #993bff,
        #ff3b99,
        #ff3b3b
    );
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: shine 3s linear infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.nexa-desc {
    font-size: clamp(1.1rem, 1.5vw, 1.25rem);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 3.5rem;
    max-width: 600px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.btn-nexa-explore {
    background: white;
    color: #0b3d91;
    padding: 1rem 2.2rem;
    border-radius: var(--radius-full);
    font-size: 1.1rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    text-decoration: none;
}

.btn-nexa-explore:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    background: #f8f8f8;
}

.btn-nexa-outline {
    background: transparent;
    color: white;
    padding: 1rem 2.2rem;
    border-radius: var(--radius-full);
    font-size: 1.1rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    border: 2px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
    text-decoration: none;
}

.btn-nexa-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-4px);
}

.nexa-trust-badges .trust-badge {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.6rem 1rem;
    border-radius: var(--radius-full);
    color: white;
}

.trust-badge .icon {
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.trust-badge .text {
    display: flex;
    flex-direction: column;
    font-size: 0.8rem;
}

.trust-badge .text strong {
    font-size: 0.95rem;
}

.nexa-slider-wrapper {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
    position: relative;
    max-width: 450px;
    margin-left: auto;
}

.nexa-slider-counter {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--clr-primary);
    z-index: 10;
}

.nexa-slider-counter .muted {
    color: var(--clr-text-muted);
    font-size: 1rem;
    font-weight: 500;
}

.nexa-product-card {
    display: none;
    animation: fadeSlideIn 0.5s ease forwards;
}

.nexa-product-card.active {
    display: block;
}

@keyframes fadeSlideIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.nexa-product-card .card-img-wrap {
    position: relative;
    margin-bottom: 2rem;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 220px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nexa-product-card .card-img-wrap img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.category-badge {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    color: var(--clr-secondary);
    padding: 0.4rem 1.2rem;
    border-radius: var(--radius-full);
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.nexa-product-card .product-title {
    color: var(--clr-primary);
    font-weight: 800;
    margin-bottom: 0.5rem;
    font-size: 1.6rem;
}

.nexa-product-card .product-subtitle {
    color: var(--clr-text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.btn-view-details {
    background: var(--clr-primary);
    color: white;
    padding: 0.8rem 1.8rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-smooth);
}

.btn-view-details:hover {
    background: var(--clr-primary-light);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(11, 53, 100, 0.3);
}

.nexa-slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.slider-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    color: var(--clr-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slider-btn:hover {
    background: var(--clr-primary);
    color: white;
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 0.5rem;
}

.slider-dots .dot {
    width: 25px;
    height: 4px;
    border-radius: 2px;
    background: #e2e8f0;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slider-dots .dot.active {
    background: var(--clr-primary);
    background: linear-gradient(to right, var(--clr-primary), var(--clr-secondary));
}

.btn-nexa-explore i {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.btn-nexa-explore:hover i {
    transform: translateX(6px);
}

/* --- Certificates Section --- */
.certificates-section {
    padding: var(--space-xl) 0;
}

.section-header {
    margin-bottom: var(--space-lg);
    max-width: 700px;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(241, 132, 179, 0.1);
    color: var(--clr-secondary);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(241, 132, 179, 0.2);
    width: fit-content;
}

.section-title {
    font-size: 2.75rem;
    margin-bottom: 1.25rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--clr-secondary), var(--clr-accent));
    border-radius: 2px;
}

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

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.cert-card {
    background: var(--clr-bg-main);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.cert-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--clr-primary), var(--clr-primary-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-smooth);
}

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

.cert-card:hover::before {
    transform: scaleX(1);
}

.cert-icon {
    width: 64px;
    height: 64px;
    background-color: var(--clr-bg-alt);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: var(--clr-secondary);
}

.cert-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.cert-card p {
    color: var(--clr-text-muted);
}

/* --- Therapeutic Segments --- */
.segments-section {
    padding: var(--space-xl) 0;
}

.segments-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.segments-content .section-title {
    margin-left: 0;
}

.segment-list {
    margin-top: 2rem;
    display: grid;
    gap: 1rem;
}

.segment-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 1rem;
    background: var(--clr-bg-main);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

.segment-list li:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-md);
}

.segment-list i {
    color: var(--clr-secondary);
    font-size: 1.5rem;
}

.glass-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: 1rem;
}

.glass-box {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}

.img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.glass-box:hover .img-box img {
    transform: scale(1.05);
}

.stat-box {
    background: var(--clr-bg-main);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.stat-box.dark {
    background: var(--clr-primary);
    color: white;
}

.stat-box.dark .stat-label {
    color: rgba(255, 255, 255, 0.8);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    color: var(--clr-secondary);
    margin-bottom: 0.5rem;
}

.stat-box.dark .stat-number {
    color: white;
}

.stat-label {
    font-weight: 500;
    color: var(--clr-text-muted);
}

/* --- Featured Products --- */
.products-section {
    padding: var(--space-xl) 0;
}

.products-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--clr-bg-main);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

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

.product-img-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: var(--clr-bg-alt);
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.category-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--clr-primary);
    z-index: 2;
}

.product-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.product-composition {
    color: var(--clr-text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--clr-secondary);
    font-weight: 600;
}

.product-link:hover {
    color: var(--clr-primary);
    gap: 0.75rem;
}

/* --- Location CTA --- */
.location-section {
    padding: var(--space-xl) 0;
    background: linear-gradient(to bottom, transparent 50%, var(--clr-primary) 50%);
}

.cta-card {
    background: linear-gradient(90deg, var(--clr-primary), var(--clr-secondary));
    border-radius: var(--radius-lg);
    padding: 4rem 3rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.cta-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.1) 1px, transparent 0);
    background-size: 32px 32px;
    z-index: 1;
}

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

.location-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(4px);
}

.cta-title {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-desc {
    font-size: 1.15rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.cta-card .btn-primary {
    background: white;
    color: var(--clr-primary);
}

.cta-card .btn-primary:hover {
    background: var(--clr-bg-alt);
    transform: translateY(-2px);
}

/* --- Products Page --- */
.filter-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 1.25rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: white;
    color: var(--clr-text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    font-family: var(--font-body);
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-pill:hover {
    border-color: var(--clr-primary);
    color: var(--clr-primary);
    background: rgba(30, 58, 138, 0.05);
    transform: translateY(-1px);
}

.filter-pill.active {
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-secondary));
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(15, 76, 129, 0.3);
}

.filter-pill i {
    font-size: 1rem;
}

.products-grid .product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(15, 76, 129, 0.15);
}

.products-grid .product-card:hover .product-img {
    transform: scale(1.08);
}

.products-grid .product-link:hover {
    gap: 0.6rem;
}

.product-card.hidden {
    display: none;
}

/* --- Footer --- */
.site-footer {
    background-color: #0f172a;
    /* Deep dark bg */
    color: white;
    padding-top: var(--space-xl);
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo-img {
    height: 90px;
    width: auto;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 10px;
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
}

.footer-about {
    color: rgba(255, 255, 255, 0.6);
    max-width: 400px;
}

.footer-links h4,
.footer-contact h4 {
    color: white;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.footer-links ul {
    display: grid;
    gap: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
}

.footer-links a:hover {
    color: var(--clr-secondary-light);
    padding-left: 5px;
}

.contact-list {
    display: grid;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.6);
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-list i {
    font-size: 1.2rem;
    color: var(--clr-secondary-light);
}

.footer-bottom {
    padding: 1.5rem 0;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

/* ═══════════════════════════════════════════════════
   STUNNING VISUAL ENHANCEMENTS
   ═══════════════════════════════════════════════════ */

/* --- Floating Particles --- */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    animation: particleDrift 12s infinite ease-in-out;
}

.p1 { width: 8px; height: 8px; background: var(--clr-secondary); top: 15%; left: 10%; animation-delay: 0s; }
.p2 { width: 6px; height: 6px; background: var(--clr-accent); top: 30%; left: 80%; animation-delay: 2s; }
.p3 { width: 10px; height: 10px; background: var(--clr-primary-light); top: 60%; left: 25%; animation-delay: 4s; }
.p4 { width: 5px; height: 5px; background: var(--clr-secondary-light); top: 75%; left: 70%; animation-delay: 6s; }
.p5 { width: 7px; height: 7px; background: var(--clr-secondary); top: 45%; left: 50%; animation-delay: 1s; }
.p6 { width: 4px; height: 4px; background: var(--clr-accent); top: 20%; left: 60%; animation-delay: 3s; }

@keyframes particleDrift {
    0% { opacity: 0; transform: translateY(0) translateX(0) scale(0); }
    10% { opacity: 0.7; transform: translateY(-20px) translateX(10px) scale(1); }
    50% { opacity: 0.4; transform: translateY(-80px) translateX(-20px) scale(0.8); }
    90% { opacity: 0.6; transform: translateY(-160px) translateX(15px) scale(0.5); }
    100% { opacity: 0; transform: translateY(-200px) translateX(0) scale(0); }
}

/* --- Shimmer Badge --- */
.shimmer-badge {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.shimmer-badge i {
    animation: sparkleRotate 3s ease-in-out infinite;
}

@keyframes sparkleRotate {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(15deg) scale(1.2); }
}

.shimmer-badge::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    animation: shimmerSweep 3s infinite;
}

@keyframes shimmerSweep {
    0% { left: -100%; }
    100% { left: 200%; }
}

/* --- Animated Hero Title --- */
.animated-title {
    position: relative;
}

.hero-highlight {
    background: linear-gradient(135deg, var(--clr-secondary) 0%, var(--clr-primary-light) 50%, var(--clr-secondary) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
}

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

/* --- Glowing Hero Card --- */
.hero-card-glow {
    position: relative;
    transition: box-shadow 0.5s ease;
}

.hero-card-glow::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--clr-secondary), var(--clr-accent), var(--clr-primary-light), var(--clr-secondary));
    background-size: 300% 300%;
    border-radius: calc(var(--radius-lg) + 2px);
    z-index: -1;
    animation: glowBorder 6s ease-in-out infinite;
    opacity: 0.6;
    filter: blur(8px);
}

@keyframes glowBorder {
    0%, 100% { background-position: 0% 50%; opacity: 0.4; }
    50% { background-position: 100% 50%; opacity: 0.8; }
}

.hero-card-glow:hover::before {
    opacity: 1;
    filter: blur(12px);
}

/* Second floating badge */
.floating-badge.badge-2 {
    position: absolute;
    top: 20px;
    right: -25px;
    bottom: auto;
    left: auto;
    animation: float-small 5s ease-in-out infinite reverse;
}

/* --- Glowing CTA Button --- */
.btn-glow {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-glow::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.btn-glow:hover::after {
    opacity: 1;
    animation: btnPulse 1.5s ease-in-out infinite;
}

@keyframes btnPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* ═══ Stats Counter Bar ═══ */
.stats-counter-section {
    padding: 0;
    margin-top: -3rem;
    position: relative;
    z-index: 10;
}

.stats-bar {
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-light));
    border-radius: var(--radius-xl);
    padding: 2.5rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 20px 60px rgba(11, 53, 100, 0.3);
    position: relative;
    overflow: hidden;
}

.stats-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 2px 2px, rgba(255,255,255,0.08) 1px, transparent 0);
    background-size: 24px 24px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.stat-icon {
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--clr-accent);
    backdrop-filter: blur(4px);
    flex-shrink: 0;
}

.stat-content {
    color: white;
}

.stat-val {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
}

.stat-suffix {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--clr-accent);
}

.stat-content p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.2rem;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
}

/* ═══ Enhanced Certificate Cards ═══ */
.cert-icon {
    background: linear-gradient(135deg, rgba(241, 132, 179, 0.15), rgba(11, 53, 100, 0.1));
    border: 1px solid rgba(241, 132, 179, 0.2);
    transition: all 0.4s ease;
}

.cert-card:hover .cert-icon {
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-secondary));
    color: white;
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 25px rgba(241, 132, 179, 0.3);
}

/* ═══ Enhanced Product Cards ═══ */
.product-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 60%, rgba(241, 132, 179, 0.05) 100%);
    border-radius: var(--radius-lg);
    pointer-events: none;
    transition: opacity 0.4s ease;
    opacity: 0;
}

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

.product-card {
    position: relative;
}

/* ═══ Enhanced Section Titles ═══ */
.section-title {
    position: relative;
    display: inline-block;
}

.section-header .section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--clr-secondary), var(--clr-accent));
    border-radius: 3px;
}

/* ═══ Responsive Stats Bar ═══ */
@media (max-width: 992px) {
    .stats-bar {
        flex-wrap: wrap;
        gap: 1.5rem;
        justify-content: center;
        padding: 2rem;
    }
    .stat-divider {
        display: none;
    }
    .stat-item {
        min-width: 40%;
    }
}

@media (max-width: 768px) {
    .stats-counter-section {
        margin-top: -1rem;
        padding: 0 1rem;
    }
    .stats-bar {
        flex-direction: column;
        gap: 1.5rem;
        border-radius: var(--radius-lg);
        padding: 2rem 1.5rem;
    }
    .stat-item {
        width: 100%;
        justify-content: flex-start;
        padding-left: 1.5rem;
    }
    .floating-badge.badge-2 {
        display: none;
    }
    .hero-particles {
        display: none;
    }
}

/* ═══════════════════════════════════════════════════
   3D INTERACTIVE HERO STYLES
   ═══════════════════════════════════════════════════ */

/* Interactive Background Glow */
.interactive-hero {
    position: relative;
    overflow: hidden;
}

/* ═══════════════════════════════════════════════════
   PRODUCT SHOWCASE HERO SLIDER
   ═══════════════════════════════════════════════════ */

/* Layout & Background */
.hero-showcase {
    position: relative;
    padding: calc(100px + var(--space-xl)) 0 var(--space-lg);
    background: var(--clr-bg-alt);
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

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

.showcase-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
}

.showcase-gradient-orb.orb-1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(241, 132, 179, 0.35), transparent 70%);
    top: -15%; right: -5%;
    animation: orbFloat1 20s ease-in-out infinite alternate;
}

.showcase-gradient-orb.orb-2 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(11, 53, 100, 0.2), transparent 70%);
    bottom: -20%; left: -10%;
    animation: orbFloat2 25s ease-in-out infinite alternate-reverse;
}

.showcase-gradient-orb.orb-3 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(254, 246, 103, 0.15), transparent 70%);
    top: 40%; left: 30%;
    animation: orbFloat3 18s ease-in-out infinite alternate;
}

@keyframes orbFloat1 {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-60px, 40px) scale(1.15); }
    100% { transform: translate(30px, -30px) scale(0.9); }
}
@keyframes orbFloat2 {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(50px, -50px) scale(1.1); }
    100% { transform: translate(-40px, 30px) scale(0.95); }
}
@keyframes orbFloat3 {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-30px, 60px) scale(1.2); }
    100% { transform: translate(50px, -20px) scale(0.85); }
}

.showcase-noise {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: url('https://grainy-gradients.vercel.app/noise.svg');
    opacity: 0.04;
}

.showcase-mesh-lines {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: 
        linear-gradient(rgba(11, 53, 100, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(11, 53, 100, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

/* Container Grid */
.showcase-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* === Left: Text Content === */
.showcase-content {
    display: flex;
    flex-direction: column;
}

.showcase-title {
    font-size: clamp(2.5rem, 4.5vw, 3.8rem);
    line-height: 1.08;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--clr-text-main);
}

.showcase-desc {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--clr-text-muted);
    margin-bottom: 2.5rem;
    max-width: 95%;
}

.showcase-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

/* Trust Chips */
.showcase-trust-row {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.trust-chip {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    padding: 0.65rem 1.25rem;
    border-radius: var(--radius-full);
    transition: all 0.3s ease;
}

.trust-chip:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(11, 53, 100, 0.1);
}

.trust-chip-icon {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(11, 53, 100, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--clr-primary);
    flex-shrink: 0;
}

.trust-chip-icon.gold {
    background: rgba(254, 246, 103, 0.25);
    color: #b45309;
}

.trust-chip-text strong {
    display: block;
    font-size: 0.85rem;
    color: var(--clr-text-main);
    line-height: 1.2;
}

.trust-chip-text span {
    font-size: 0.75rem;
    color: var(--clr-text-muted);
}

/* === Right: Product Slider === */
.showcase-slider {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    perspective: 1200px;
}

/* Glow Ring */
.slider-glow-ring {
    position: absolute;
    top: 50%; left: 50%;
    width: 380px; height: 380px;
    transform: translate(-50%, -55%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(241, 132, 179, 0.15) 0%, rgba(11, 53, 100, 0.08) 40%, transparent 70%);
    filter: blur(40px);
    pointer-events: none;
    animation: glowPulse 4s ease-in-out infinite;
    z-index: 0;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -55%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -55%) scale(1.1); }
}

/* Slider Stage */
.slider-stage {
    position: relative;
    width: 100%;
    max-width: 420px;
    height: 480px;
    z-index: 1;
}

/* Individual Slide */
.showcase-slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    opacity: 0;
    transform: scale(0.85) rotateY(15deg) translateX(60px);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 1;
}

.showcase-slide.active {
    opacity: 1;
    transform: scale(1) rotateY(0deg) translateX(0);
    pointer-events: auto;
    z-index: 3;
}

.showcase-slide.prev {
    opacity: 0;
    transform: scale(0.85) rotateY(-15deg) translateX(-60px);
    z-index: 2;
}

.showcase-slide.next {
    opacity: 0.3;
    transform: scale(0.85) rotateY(15deg) translateX(60px);
    z-index: 2;
}

/* Slide Card - 3D Tilt Ready */
.slide-card {
    width: 100%; height: 100%;
    border-radius: 2rem;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 
        0 25px 50px rgba(11, 53, 100, 0.12),
        0 4px 12px rgba(0, 0, 0, 0.04),
        inset 0 0 0 1px rgba(255, 255, 255, 0.6);
    display: flex;
    flex-direction: column;
    transition: transform 0.15s ease-out, box-shadow 0.3s ease;
    will-change: transform;
    transform-style: preserve-3d;
    cursor: grab;
    padding-bottom: 0.5rem;
}

.slide-card:hover {
    box-shadow: 
        0 35px 60px rgba(11, 53, 100, 0.18),
        0 15px 30px rgba(241, 132, 179, 0.15),
        inset 0 0 0 1px rgba(255, 255, 255, 0.8);
}

/* Slide Image */
.slide-img-wrap {
    position: relative;
    margin: 1rem 1rem 0;
    border-radius: 1.5rem;
    height: auto;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: linear-gradient(135deg, var(--clr-bg-main), var(--clr-bg-alt));
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

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

.showcase-slide.active .slide-img-wrap img {
    animation: slideImgReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideImgReveal {
    from { transform: scale(1.15); }
    to { transform: scale(1); }
}

.slide-card:hover .slide-img-wrap img {
    transform: scale(1.08);
}

/* Shine Effect */
.slide-img-shine {
    position: absolute;
    top: 0; left: -100%;
    width: 60%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-20deg);
    pointer-events: none;
}

.showcase-slide.active .slide-img-shine {
    animation: shineSwipe 1.2s 0.3s ease-out forwards;
}

@keyframes shineSwipe {
    0% { left: -100%; }
    100% { left: 150%; }
}

/* Slide Info Glass Panel */
.slide-info-glass {
    padding: 2.5rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
    text-align: center;
    align-items: center;
    justify-content: center;
}

.slide-info-glass::before {
    display: none;
}

.slide-category {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 1.25rem;
    background: white;
    box-shadow: 0 4px 12px rgba(241, 132, 179, 0.15);
    border: 1px solid rgba(241, 132, 179, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--clr-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    width: fit-content;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
}

.slide-name {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--clr-primary);
    margin-top: 0.2rem;
    margin-bottom: 0.75rem;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--clr-primary), #1a6ab5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.slide-comp {
    font-size: 0.95rem;
    color: var(--clr-text-muted);
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

/* View Details Button in Showcase */
.btn-view-product {
    margin-top: 1.25rem;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 1.4rem;
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-light));
    color: white;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 12px rgba(11, 53, 100, 0.15);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.btn-view-product:hover {
    background: linear-gradient(135deg, var(--clr-secondary), var(--clr-secondary-light));
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(241, 132, 179, 0.3);
}

.btn-view-product i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.btn-view-product:hover i {
    transform: translate(2px, -2px) rotate(45deg);
}

/* === Slider Controls === */
.slider-controls {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-top: 2rem;
    position: relative;
    z-index: 5;
}

.slider-arrow {
    width: 46px; height: 46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--clr-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.slider-arrow:hover {
    background: var(--clr-primary);
    color: white;
    transform: scale(1.08);
    box-shadow: 0 8px 25px rgba(11, 53, 100, 0.2);
}

.slider-arrow:active {
    transform: scale(0.95);
}

/* Dots */
.slider-dots {
    display: flex;
    gap: 0.5rem;
}

.slider-dot {
    width: 32px; height: 4px;
    border-radius: 4px;
    background: rgba(11, 53, 100, 0.15);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 0;
}

.slider-dot:hover {
    background: rgba(11, 53, 100, 0.25);
}

.slider-dot.active {
    width: 48px;
    background: rgba(11, 53, 100, 0.12);
}

.dot-progress {
    display: block;
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--clr-primary), var(--clr-secondary));
    border-radius: 4px;
    transition: width 0s linear;
}

.slider-dot.active .dot-progress {
    width: 0%;
    animation: dotFill 4s linear forwards;
}

@keyframes dotFill {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* Counter */
.slider-counter {
    position: absolute;
    top: 1rem; right: 0;
    display: flex;
    align-items: baseline;
    gap: 0.2rem;
    font-family: var(--font-heading);
    z-index: 5;
}

.counter-current {
    font-size: 2rem;
    font-weight: 800;
    color: var(--clr-primary);
    line-height: 1;
}

.counter-sep {
    font-size: 1.2rem;
    color: var(--clr-text-muted);
    margin: 0 0.1rem;
}

.counter-total {
    font-size: 1rem;
    font-weight: 600;
    color: var(--clr-text-muted);
}

/* === Responsive Showcase === */
@media (max-width: 1100px) {
    .showcase-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .showcase-content {
        text-align: center;
        align-items: center;
    }
    .showcase-desc {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    .showcase-actions {
        justify-content: center;
    }
    .showcase-trust-row {
        justify-content: center;
    }
    .showcase-slider {
        max-width: 420px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero-showcase {
        padding: calc(80px + var(--space-lg)) 0 var(--space-md);
        min-height: auto;
    }
    .showcase-title {
        font-size: 2.2rem;
    }
    .showcase-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    .showcase-actions .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    .slider-stage {
        max-width: 340px;
        height: 420px;
    }
    .showcase-trust-row {
        flex-direction: column;
        align-items: center;
    }
    .slider-counter {
        display: none;
    }
    .slider-glow-ring {
        width: 280px; height: 280px;
    }
}

@media (max-width: 480px) {
    .slider-stage {
        max-width: 300px;
        height: 380px;
    }
    .slide-info-glass {
        padding: 1.25rem 1.5rem 1.5rem;
    }
    .slide-name {
        font-size: 1.2rem;
    }
    .slide-comp {
        font-size: 0.8rem;
    }
}

/* ═══ Shared Hero Utilities ═══ */
.shimmer-pill {
    display: inline-flex;
    align-items: center;
    background: rgba(11, 53, 100, 0.05);
    padding: 0.5rem 1.25rem;
    border-radius: 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(11, 53, 100, 0.1);
    width: fit-content;
}

.pill-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--clr-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pill-text i {
    color: var(--clr-secondary);
}

.title-accent {
    display: block;
}

.animate-gradient-text {
    background: linear-gradient(-45deg, var(--clr-primary), var(--clr-secondary), #8b5cf6, var(--clr-primary));
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientFlow 6s ease infinite;
}

@keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Magnetic Buttons */
.magnetic-wrap {
    display: inline-block;
    transition: transform 0.2s ease-out;
}

.btn-primary.btn-magnetic {
    padding: 1.1rem 2.2rem;
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--clr-primary);
    color: white;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(11, 53, 100, 0.2);
    transition: all 0.3s ease;
}

.btn-primary.btn-magnetic:hover {
    background: var(--clr-text-main);
    transform: scale(1.02);
}

.btn-secondary-glass {
    padding: 1.1rem 2.2rem;
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(11, 53, 100, 0.1);
    color: var(--clr-text-main);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary-glass:hover {
    background: rgba(255, 255, 255, 0.8);
    border-color: var(--clr-primary);
}


/* --- Animations --- */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

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

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

.delay-3 {
    transition-delay: 0.6s;
}

/* --- About Pages Specific Styles --- */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.team-card {
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

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

.team-img-wrapper img {
    transition: transform var(--transition-slow);
}

.team-card:hover .team-img-wrapper img {
    transform: scale(1.1);
}

.culture-grid .glass-card {
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.culture-grid .glass-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* --- Responsive Design --- */
@media (max-width: 992px) {
    .container {
        padding: 0 5%;
    }

    .header-inner {
        padding: 0.5rem 1.5rem;
    }

    .header-logo {
        height: 70px;
        margin: -10px 0;
    }

    .nav-link {
        padding: 0.4rem 0.6rem;
        font-size: 0.85rem;
    }

    .btn-consult {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .nav-divider {
        height: 22px;
    }

    .hero-container,
    .segments-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-content {
        text-align: center;
    }

    .hero-quote {
        margin: 0 auto 2.5rem;
        border-left: none;
        border-top: 3px solid var(--clr-secondary);
        padding-left: 0;
        padding-top: 1rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .floating-badge {
        left: 50%;
        transform: translateX(-50%);
        bottom: -30px;
        width: 90%;
        max-width: 320px;
        animation: none;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .site-header {
        top: 0;
        padding: 0;
    }

    .header-main {
        border-radius: 0;
    }

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

    .header-logo {
        height: 60px;
        margin: -10px 0;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 340px;
        height: 100vh;
        background: linear-gradient(180deg, #dbeafe 0%, #f0fdfa 50%, #e0f2fe 100%);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        box-shadow: -10px 0 40px rgba(15, 76, 129, 0.15);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        transition: right var(--transition-smooth);
        z-index: 1000;
        border-left: 1px solid rgba(255, 255, 255, 0.6);
    }

    .main-nav.active {
        right: 0;
    }

    .main-nav .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .nav-link,
    .home-page .site-header:not(.scrolled) .nav-link {
        color: #374151;
        font-size: 1.2rem;
        padding: 0.75rem 1.5rem;
        border-radius: var(--radius-md);
        transition: all 0.3s ease;
    }

    .nav-link:hover,
    .nav-link.active,
    .home-page .site-header:not(.scrolled) .nav-link:hover,
    .home-page .site-header:not(.scrolled) .nav-link.active {
        color: var(--clr-primary);
        background: rgba(255, 255, 255, 0.6);
        transform: scale(1.05);
    }

    .nav-divider {
        width: 50px;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--clr-secondary), transparent);
        margin: 0.5rem 0;
    }

    .btn-consult {
        padding: 0.85rem 2rem;
        font-size: 1rem;
    }

    /* Disable hide-on-scroll on mobile so hamburger is always reachable */
    .site-header.scroll-down {
        transform: translateY(0) !important;
    }

    .mobile-menu-btn {
        display: block;
        z-index: 1001;
        font-size: 2rem;
        padding: 0.25rem;
        border-radius: var(--radius-sm);
        transition: all 0.3s ease;
    }

    .mobile-menu-btn:hover {
        background: rgba(255, 255, 255, 0.5);
    }

    .glass-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .img-box {
        height: 200px;
    }

    .hero-section {
        padding: calc(80px + var(--space-lg)) 0 var(--space-md);
        min-height: auto;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-content {
        text-align: center;
        order: 1;
    }

    .hero-image-wrapper {
        order: 2;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.15;
        margin-bottom: 1rem;
    }

    .section-badge {
        margin-bottom: 1rem;
        font-size: 0.75rem;
    }

    .hero-quote {
        font-size: 0.95rem;
        margin: 0 auto 1.5rem;
        border-left: none;
        border-top: 3px solid var(--clr-secondary);
        padding-left: 0;
        padding-top: 1rem;
        max-width: 100%;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .main-hero-card {
        border-radius: var(--radius-lg);
    }

    .hero-img {
        aspect-ratio: 16/10;
        border-radius: var(--radius-md);
    }

    .floating-badge {
        left: 50%;
        transform: translateX(-50%);
        bottom: -20px;
        width: auto;
        max-width: 90%;
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
        animation: none;
    }

    .floating-badge i {
        font-size: 1.8rem;
    }

    .floating-badge strong {
        font-size: 0.85rem;
    }

    .floating-badge span {
        font-size: 0.7rem;
    }

    .cta-card {
        padding: 3rem 1.5rem;
    }

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

/* --- Modal --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.modal-content {
    background: var(--clr-bg-main);
    width: 90%;
    max-width: 800px;
    border-radius: var(--radius-lg);
    position: relative;
    transform: translateY(20px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.modal-overlay.active .modal-content {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--clr-text-main);
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-fast);
}

.modal-close:hover {
    background: var(--clr-primary);
    color: white;
}

.modal-body {
    display: flex;
    flex-direction: column;
}

.modal-img-container {
    height: 300px;
    background: var(--clr-bg-alt);
    position: relative;
}

.modal-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-info {
    padding: 2.5rem;
    position: relative;
}

.popup-tag {
    position: relative;
    top: 0;
    left: 0;
    display: inline-block;
    margin-bottom: 1rem;
    background: rgba(30, 58, 138, 0.1);
}

@media (min-width: 768px) {
    .modal-body {
        flex-direction: row;
    }
    .modal-img-container {
        width: 45%;
        height: auto;
        min-height: 400px;
    }
    .modal-info {
        width: 55%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}

/* --- Lightbox for Image Enlargement --- */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 10000;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.lightbox-overlay.active {
    display: flex;
    opacity: 1;
}

#lightbox-img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 1rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-overlay.active #lightbox-img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: white;
    color: var(--clr-primary);
    transform: rotate(90deg);
}

/* Modal Image Hover (Clickable) */
.modal-img-container {
    cursor: zoom-in;
    overflow: hidden;
}

#modal-img {
    transition: transform 0.3s ease;
}

.modal-img-container:hover #modal-img {
    transform: scale(1.05);
}

/* --- Interactive Image Carousel (Gallery) --- */
.image-carousel-section {
    padding: var(--space-xl) 0;
    background-color: var(--clr-bg-main);
    overflow: hidden; /* Prevent horizontal scroll */
    position: relative;
}

.carousel-container-full {
    position: relative;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 2rem 0;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 1.5rem;
    padding: 3rem 0; /* Removing horizontal padding for exact viewport relative centering */
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    touch-action: pan-y;
    will-change: transform;
    cursor: grab;
    align-items: center;
}

.carousel-track:active {
    cursor: grabbing;
}

.carousel-item {
    position: relative;
    flex: 0 0 auto;
    width: clamp(320px, 55vw, 850px);
    aspect-ratio: 16/9;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transform: scale(0.85); 
    opacity: 0.5;
    filter: blur(2px) grayscale(30%);
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.carousel-item.active {
    transform: scale(1.05) translateY(-10px);
    opacity: 1;
    filter: none;
    box-shadow: 0 20px 40px rgba(15, 76, 129, 0.25), 0 0 0 1px rgba(255,255,255,0.5) inset;
    z-index: 5;
}

.carousel-item.prev, .carousel-item.next {
    opacity: 0.8;
    filter: blur(1px) grayscale(10%);
    transform: scale(0.9);
    z-index: 2;
}

.carousel-item:hover {
    box-shadow: var(--shadow-lg);
}

.carousel-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.carousel-item:hover .carousel-img {
    transform: scale(1.05);
}

.carousel-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 76, 129, 0.4);
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    pointer-events: none;
}

.carousel-item.active:hover .carousel-item-overlay {
    opacity: 1;
}

.carousel-item-overlay i {
    transform: scale(0.5);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.carousel-item.active:hover .carousel-item-overlay i {
    transform: scale(1);
}

.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: var(--clr-primary);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.gallery-arrow:hover {
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-light));
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(15, 76, 129, 0.3);
}

/* 3D Coverflow fully enabled for desktop */
@media (min-width: 769px) {
    .image-carousel-section {
        padding: var(--space-xl) 0;
    }
    .carousel-container-full {
        max-width: 100%;
        overflow: hidden;
    }
}

.gallery-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
    color: white;
    transform: translateY(-50%) scale(1.1);
    border-color: rgba(255, 255, 255, 0.6);
}

.gallery-prev {
    left: 2%;
}

.gallery-next {
    right: 2%;
}

/* Dots Navigation */
.gallery-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 10;
}

@media (max-width: 768px) {
    .gallery-dots {
        display: none; /* Hide dots on mobile coverflow */
    }
}

.gallery-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.gallery-dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

.gallery-dot.active {
    background: white;
    border-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .image-carousel-section {
        padding: 1.5rem 0 1rem;
    }
    .section-header {
        margin-bottom: 1.5rem;
    }
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 0.75rem;
    }
    .section-desc {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    .section-badge {
        font-size: 0.7rem;
        padding: 0.35rem 0.8rem;
        margin-bottom: 0.5rem;
    }
    .carousel-container-full {
        padding: 0.25rem 0;
    }
    .carousel-track {
        padding: 0.5rem 0;
    }
    .gallery-prev { left: 4px; }
    .gallery-next { right: 4px; }
    .carousel-item { 
        width: 95vw;
        height: auto;
        min-height: auto;
    }
    .gallery-arrow { width: 38px; height: 38px; font-size: 1.1rem; }
}



/* --- Contact Page Structural Refactor --- */
.contact-cards-grid {
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 1.5rem; 
    margin-bottom: 3rem;
}

.contact-card {
    padding: 2rem; 
    text-align: center; 
    border-radius: var(--radius-lg); 
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease; 
    cursor: pointer;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(15,76,129,0.12);
}

.contact-card:active {
    transform: translateY(2px) scale(0.96);
    box-shadow: 0 5px 15px rgba(15,76,129,0.08);
}

.contact-layout {
    display: grid; 
    grid-template-columns: 1.5fr 1fr; 
    gap: 3rem; 
    align-items: start;
}

.form-row {
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 1.25rem;
}

.form-control {
    width: 100%; 
    padding: 0.85rem 1.25rem; 
    border: 1px solid rgba(0,0,0,0.1); 
    border-radius: var(--radius-md); 
    font-family: var(--font-body); 
    font-size: 1rem; 
    background: rgba(255,255,255,0.8); 
    transition: all 0.3s ease; 
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.form-control:focus {
    border-color: var(--clr-secondary);
    box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.1);
    background: #ffffff;
}

/* Mobile Quick Connect FAB */
.mobile-fab-container {
    display: none;
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1000;
}

.mobile-fab {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-secondary));
    color: white;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(15, 76, 129, 0.3);
    border: none;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.mobile-fab:active {
    transform: scale(0.85);
}

.fab-menu {
    position: absolute;
    bottom: 75px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.9);
    transform-origin: bottom right;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.mobile-fab-container.active .fab-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.fab-item {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    color: var(--clr-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.2s ease;
    text-decoration: none;
}

.fab-item.whatsapp { color: #25D366; }
.fab-item.phone { color: var(--clr-secondary); }

.fab-item:active {
    transform: scale(0.9);
    background: #f0f0f0;
}

/* Mobile Constraints */
@media (max-width: 768px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .mobile-fab-container {
        display: block;
    }
}

/* Hero responsive */
@media (max-width: 992px) {
    .nexa-hero-row {
        flex-direction: column;
        text-align: center;
        gap: 2.5rem;
    }
    .nexa-text-col,
    .nexa-slider-col {
        flex: 1 1 100%;
    }
    .nexa-slider-col {
        justify-content: center;
    }
    .nexa-actions {
        justify-content: center;
    }
    .nexa-trust-badges {
        justify-content: center;
    }
    .nexa-slider-wrapper {
        margin: 0 auto;
    }
}

/* --- Business Partners Marquee --- */
@keyframes scroll-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.marquee-track {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    min-width: 100%;
}

.partner-logo {
    height: 100px;
    max-width: 260px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.partner-logo:hover {
    transform: scale(1.08);
}

.marquee-wrapper:hover .marquee-track {
    animation-play-state: paused;
}

/* Why Choose Us Responsive */
@media (max-width: 992px) {
    .why-choose-layout {
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
    }
    .why-choose-visual {
        order: -1;
    }
    .why-choose-visual .floating-badge {
        right: 10px !important;
        bottom: 15px !important;
    }
    .why-choose-content {
        text-align: center;
    }
    .why-choose-content .features-list {
        text-align: left;
    }
    .why-choose-section {
        padding: 4rem 0 !important;
    }
}

@media (max-width: 480px) {
    .why-choose-visual .floating-badge {
        right: 5px !important;
        bottom: 10px !important;
        padding: 0.8rem !important;
        gap: 0.6rem !important;
    }
    .why-choose-visual .floating-badge strong {
        font-size: 0.95rem !important;
    }
    .why-choose-visual .floating-badge span {
        font-size: 0.8rem !important;
    }
    .why-choose-visual .floating-badge div:first-child {
        width: 40px !important;
        height: 40px !important;
        font-size: 1.2rem !important;
    }
}