/* ==========================================================================
   FAVEX HEALTHCARE - DESIGN SYSTEM & MASTER STYLESHEET
   ========================================================================== */

:root {
    /* Brand Color Palette - FAVEX ROYAL BLUE BRANDING */
    --primary: #2e3192;
    --primary-dark: #1b1e69;
    --primary-light: #4447b8;
    --primary-subtle: #eef0fa;
    --primary-gradient: linear-gradient(135deg, #2e3192 0%, #151854 100%);
    --primary-glow: rgba(46, 49, 146, 0.22);
    
    --navy-900: #0a0d24;
    --navy-800: #101438;
    --navy-700: #181d4e;
    --navy-600: #232a6e;
    
    --accent-blue: #0084d1;
    --accent-cyan: #0284c7;
    --accent-teal: #008779;
    --accent-gold: #f59e0b;
    --accent-emerald: #10b981;
    
    /* Neutrals */
    --bg-page: #f8faff;
    --bg-card: #ffffff;
    --bg-subtle: #f1f4fb;
    --text-main: #111827;
    --text-muted: #4b5563;
    --text-light: #9ca3af;
    --text-white: #ffffff;
    
    --border-light: #e5e7eb;
    --border-card: rgba(226, 232, 240, 0.9);
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(16, 20, 56, 0.04);
    --shadow-md: 0 4px 14px rgba(16, 20, 56, 0.08);
    --shadow-lg: 0 12px 30px rgba(16, 20, 56, 0.12);
    --shadow-xl: 0 20px 45px rgba(16, 20, 56, 0.16);
    --shadow-brand: 0 10px 25px rgba(46, 49, 146, 0.28);
    
    /* Radii */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    
    /* Typography */
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--navy-900);
    font-weight: 700;
    line-height: 1.25;
}

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

ul {
    list-style: none;
}

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

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

/* Typography Utilities */

/* Buttons & Interactive Elements */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    border: none;
    outline: none;
    transition: var(--transition-smooth);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(0, 135, 121, 0.35);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    box-shadow: var(--shadow-teal);
    transform: translateY(-2px);
    color: #ffffff;
}

.btn-secondary {
    background: #ffffff;
    color: var(--navy-900);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background: var(--bg-subtle);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-outline-white:hover {
    background: #ffffff;
    color: var(--navy-900);
    border-color: #ffffff;
    transform: translateY(-2px);
}

.btn-whatsapp-header {
    background: #25d366;
    color: #ffffff;
    font-size: 0.9rem;
    padding: 9px 18px;
    border-radius: var(--radius-full);
}

.btn-whatsapp-header:hover {
    background: #1ebc59;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
    transform: translateY(-2px);
    color: #ffffff;
}

.btn-block {
    width: 100%;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
}

/* ==========================================================================
   HEADER & NAVBAR
   ========================================================================== */

/* Topbar */
.topbar {
    background: var(--navy-900);
    color: var(--text-light);
    font-size: 0.82rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.topbar-divider {
    opacity: 0.3;
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.topbar-right a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #e2e8f0;
}

.topbar-right a:hover {
    color: var(--primary-light);
}

/* Main Navbar */
.navbar-header {
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    transition: var(--transition-smooth);
}

.navbar-header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

/* Brand Logo */
.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-symbol {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--navy-900) 0%, var(--primary) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.3rem;
    box-shadow: 0 4px 10px rgba(0, 135, 121, 0.25);
    position: relative;
    overflow: hidden;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 1.5px;
    color: var(--navy-900);
    line-height: 1;
}

.logo-subtitle {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--primary);
    margin-top: 2px;
}

/* Nav Menu */
.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--navy-800);
    border-radius: var(--radius-md);
    position: relative;
}

.nav-icon {
    font-size: 0.9rem;
    opacity: 0.7;
}

.nav-link:hover {
    color: var(--primary);
    background: var(--primary-subtle);
}

.nav-link.active {
    color: var(--primary);
    background: var(--primary-subtle);
    font-weight: 700;
}

.nav-badge {
    background: var(--primary);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: var(--radius-full);
    margin-left: 4px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-mobile-cta {
    display: none;
}

.mobile-toggle-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-toggle-btn span {
    width: 100%;
    height: 2.5px;
    background: var(--navy-900);
    border-radius: 4px;
    transition: var(--transition-fast);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, rgba(7, 25, 47, 0.92) 0%, rgba(13, 40, 71, 0.84) 50%, rgba(9, 59, 72, 0.90) 100%),
                url('../images/hero-banner.jpg') center center / cover no-repeat;
    color: #ffffff;
    padding: 95px 0 115px;
    overflow: hidden;
}

.hero-glow-bg {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 180, 160, 0.25) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 180, 160, 0.15);
    border: 1px solid rgba(0, 180, 160, 0.35);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    color: #5eead4;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.18;
    margin-bottom: 22px;
}

.hero-title .gradient-text {
    background: linear-gradient(135deg, #5eead4 0%, #38bdf8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.12rem;
    color: #cbd5e1;
    line-height: 1.65;
    margin-bottom: 34px;
    max-width: 580px;
}

.hero-btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 40px;
}

.hero-trust-list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #e2e8f0;
    font-weight: 500;
}

.hero-trust-item i {
    color: #5eead4;
}

/* Hero Visual & Feature Cards */
.hero-visual-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    position: relative;
}

.hero-visual-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-visual-title {
    color: #ffffff;
    font-size: 1.25rem;
}

.hero-portfolio-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 12px 16px;
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    transition: var(--transition-fast);
}

.hero-portfolio-pill:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(4px);
}

.hero-pill-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #ffffff;
}

.hero-pill-icon.bone { background: #0284c7; }
.hero-pill-icon.pain { background: #e11d48; }
.hero-pill-icon.gastro { background: #8b5cf6; }
.hero-pill-icon.sports { background: #059669; }

.hero-pill-text h5 {
    color: #ffffff;
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.hero-pill-text p {
    color: #94a3b8;
    font-size: 0.78rem;
}

/* ==========================================================================
   STATS BAR
   ========================================================================== */
.stats-section {
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.stats-card-container {
    background: #ffffff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: 36px 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    border: 1px solid var(--border-light);
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 18px;
}

.stat-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: var(--primary-subtle);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.stat-info h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--navy-900);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-info p {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ==========================================================================
   SECTION COMMON COMPONENTS
   ========================================================================== */
.section {
    padding: 85px 0;
}

.section-subtle {
    background-color: var(--bg-subtle);
}

.section-navy {
    background: var(--navy-900);
    color: #ffffff;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--primary-subtle);
    color: var(--primary);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 14px;
    border-radius: var(--radius-full);
    margin-bottom: 14px;
}

.section-navy .section-tag {
    background: rgba(0, 180, 160, 0.15);
    color: #5eead4;
}

.section-title {
    font-size: 2.35rem;
    font-weight: 800;
    margin-bottom: 14px;
}

.section-navy .section-title {
    color: #ffffff;
}

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

.section-navy .section-subtitle {
    color: #94a3b8;
}

/* ==========================================================================
   ABOUT / MISSION HIGHLIGHT SECTION
   ========================================================================== */
.about-grid-home {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-img-box {
    position: relative;
}

.about-main-banner {
    background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
    border-radius: var(--radius-lg);
    padding: 44px;
    color: #ffffff;
    position: relative;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-banner-badge {
    position: absolute;
    bottom: -25px;
    right: 30px;
    background: #ffffff;
    color: var(--navy-900);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border-left: 5px solid var(--primary);
    display: flex;
    align-items: center;
    gap: 14px;
}

.about-banner-badge i {
    font-size: 2rem;
    color: var(--primary);
}

.about-banner-badge strong {
    font-size: 1.25rem;
    display: block;
    line-height: 1.1;
}

.about-banner-badge span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

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

.mission-highlight-card {
    background: var(--primary-subtle);
    border-left: 4px solid var(--primary);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    padding: 20px 24px;
    margin: 24px 0;
}

.mission-highlight-card h4 {
    font-size: 1.1rem;
    color: var(--primary-dark);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mission-highlight-card p {
    font-size: 0.98rem;
    color: var(--navy-900);
    font-weight: 500;
    margin-bottom: 0;
}

.feature-check-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 20px;
    margin: 24px 0 28px;
}

.feature-check-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--navy-900);
}

.feature-check-item i {
    color: var(--primary);
    font-size: 1.15rem;
    flex-shrink: 0;
    width: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.about-action-btns {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 10px;
}

/* ==========================================================================
   PORTFOLIO CATEGORIES & CAROUSEL
   ========================================================================== */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.carousel-wrapper {
    position: relative;
    margin: 20px 0 10px;
}

.carousel-track-container {
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 15px 6px 25px;
    cursor: grab;
}

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

.carousel-track-container::-webkit-scrollbar {
    display: none;
}

.carousel-track {
    display: flex;
    gap: 24px;
    width: max-content;
}

.carousel-item.category-card {
    flex: 0 0 310px;
    width: 310px;
    min-height: 400px;
    scroll-snap-align: start;
    user-select: none;
    padding: 22px 20px 24px;
}

.carousel-card-img-wrap {
    position: relative;
    width: 100%;
    height: 170px;
    background: #f8fafc;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-card-img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.carousel-item.category-card:hover .carousel-card-img {
    transform: scale(1.08);
}

.carousel-card-icon-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.carousel-item.category-card:hover .carousel-card-icon-badge {
    background: var(--primary);
    color: #ffffff;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid var(--border-light);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    color: var(--navy-900);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.carousel-btn:hover {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
    box-shadow: 0 8px 25px rgba(0, 135, 121, 0.35);
    transform: translateY(-50%) scale(1.08);
}

.carousel-btn.prev {
    left: -24px;
}

.carousel-btn.next {
    right: -24px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-dot.active {
    width: 28px;
    border-radius: 12px;
    background: var(--primary);
}

@media (max-width: 991px) {
    .carousel-btn.prev {
        left: -12px;
    }
    .carousel-btn.next {
        right: -12px;
    }
}

@media (max-width: 768px) {
    .carousel-btn {
        display: none;
    }
    .carousel-item.category-card {
        flex: 0 0 270px;
        width: 270px;
    }
}

.category-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 30px 26px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent-cyan) 100%);
    opacity: 0;
    transition: var(--transition-fast);
}

.category-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(0, 135, 121, 0.3);
}

.category-card:hover::before {
    opacity: 1;
}

.cat-icon-wrap {
    width: 54px;
    height: 54px;
    background: var(--primary-subtle);
    color: var(--primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 20px;
    transition: var(--transition-fast);
}

.category-card:hover .cat-icon-wrap {
    background: var(--primary);
    color: #ffffff;
    transform: scale(1.08);
}

.cat-title {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--navy-900);
}

.cat-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.55;
    margin-bottom: 20px;
}

.cat-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.92rem;
}

.cat-link i {
    transition: var(--transition-fast);
}

.category-card:hover .cat-link i {
    transform: translateX(5px);
}

/* ==========================================================================
   PRODUCT SHOWCASE & CATALOG (PRODUCTS.PHP)
   ========================================================================== */
.catalog-controls {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 24px 30px;
    box-shadow: var(--shadow-md);
    margin-bottom: 40px;
    border: 1px solid var(--border-light);
}

.catalog-search-row {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 20px;
}

.search-input-wrap {
    position: relative;
    flex: 1;
}

.search-input-wrap i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 1.1rem;
}

.search-field {
    width: 100%;
    padding: 14px 18px 14px 48px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: var(--transition-fast);
}

.search-field:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(0, 135, 121, 0.12);
}

.filter-tabs-scroll {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: thin;
}

.filter-tab-btn {
    white-space: nowrap;
    padding: 9px 18px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-light);
    background: var(--bg-subtle);
    color: var(--navy-800);
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.filter-tab-btn:hover {
    background: #e2e8f0;
    color: var(--navy-900);
}

.filter-tab-btn.active {
    background: var(--navy-900);
    color: #ffffff;
    border-color: var(--navy-900);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 28px;
}

.product-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(0, 135, 121, 0.35);
}

.product-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 14px;
}

.product-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    background: var(--primary-subtle);
    color: var(--primary-dark);
}

.product-form-tag {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
    background: var(--bg-subtle);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
}

.product-name {
    font-size: 1.45rem;
    color: var(--navy-900);
    font-weight: 800;
    margin-bottom: 4px;
}

.product-range-label {
    font-size: 0.84rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 14px;
    display: block;
}

.product-composition {
    background: var(--bg-subtle);
    padding: 12px 14px;
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    border-left: 3px solid var(--navy-700);
}

.composition-label {
    font-size: 0.74rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 2px;
}

.composition-val {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--navy-900);
    line-height: 1.4;
}

.product-indications {
    font-size: 0.86rem;
    color: var(--text-muted);
    margin-bottom: 22px;
    line-height: 1.5;
}

.product-indications strong {
    color: var(--navy-800);
}

.product-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    border-top: 1px solid var(--border-light);
    padding-top: 16px;
}

/* Empty search state */
.no-results-box {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    background: #ffffff;
    border-radius: var(--radius-lg);
    border: 1px dashed var(--border-light);
}

.no-results-box i {
    font-size: 3rem;
    color: var(--text-light);
    margin-bottom: 16px;
}

/* ==========================================================================
   PAGE HERO / BANNER COMMON
   ========================================================================== */
.page-banner {
    position: relative;
    background: linear-gradient(135deg, rgba(7, 25, 47, 0.92) 0%, rgba(13, 40, 71, 0.85) 50%, rgba(9, 59, 72, 0.90) 100%),
                url('../images/banner-doctors.jpg') center center / cover no-repeat;
    color: #ffffff;
    padding: 75px 0 85px;
    overflow: hidden;
}

.page-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 85% 30%, rgba(0, 180, 160, 0.20) 0%, transparent 60%);
    pointer-events: none;
}

.page-banner .container {
    position: relative;
    z-index: 2;
}

.page-banner-title {
    font-size: 2.8rem;
    color: #ffffff;
    margin-bottom: 12px;
}

.page-banner-desc {
    font-size: 1.1rem;
    color: #cbd5e1;
    max-width: 680px;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: #94a3b8;
    margin-bottom: 14px;
}

.breadcrumb-nav a {
    color: #5eead4;
}

.breadcrumb-nav a:hover {
    text-decoration: underline;
}

/* ==========================================================================
   ABOUT US PAGE STYLES
   ========================================================================== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.value-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 32px 26px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: var(--transition-smooth);
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.value-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--primary-subtle);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 18px;
}

.value-title {
    font-size: 1.25rem;
    color: var(--navy-900);
    margin-bottom: 10px;
}

.value-desc {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 40px 0;
}

.mv-card {
    border-radius: var(--radius-lg);
    padding: 40px;
    position: relative;
    box-shadow: var(--shadow-md);
}

.mv-card.mission {
    background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 100%);
    color: #ffffff;
}

.mv-card.vision {
    background: linear-gradient(135deg, #005f55 0%, #008779 100%);
    color: #ffffff;
}

.mv-card-icon {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #5eead4;
}

.mv-card h3 {
    color: #ffffff;
    font-size: 1.6rem;
    margin-bottom: 14px;
}

.mv-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #e2e8f0;
}

/* ==========================================================================
   QUALITY & COMPLIANCE PAGE STYLES
   ========================================================================== */
.quality-pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.pillar-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.pillar-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.pillar-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: var(--navy-900);
    color: #5eead4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.pillar-title {
    font-size: 1.35rem;
    margin-bottom: 12px;
    color: var(--navy-900);
}

.pillar-desc {
    color: var(--text-muted);
    font-size: 0.94rem;
    line-height: 1.65;
}

.testing-flow-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.flow-step-box {
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: 24px;
    border: 1px solid var(--border-light);
    position: relative;
}

.flow-step-num {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 10px;
}

.flow-step-box h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--navy-900);
}

.flow-step-box p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ==========================================================================
   CONTACT US PAGE STYLES
   ========================================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 40px;
    align-items: flex-start;
}

.contact-info-panel {
    background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 100%);
    color: #ffffff;
    border-radius: var(--radius-lg);
    padding: 44px;
    box-shadow: var(--shadow-lg);
}

.contact-info-panel h3 {
    color: #ffffff;
    font-size: 1.75rem;
    margin-bottom: 14px;
}

.contact-info-panel p {
    color: #cbd5e1;
    font-size: 0.95rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-detail-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-icon-bubble {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(0, 180, 160, 0.2);
    color: #5eead4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-detail-card h5 {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 4px;
}

.contact-detail-card a, .contact-detail-card span {
    color: #e2e8f0;
    font-size: 0.92rem;
}

.contact-detail-card a:hover {
    color: #5eead4;
}

.contact-form-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 44px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
}

.form-group {
    margin-bottom: 20px;
}

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

.form-group label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--navy-900);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-fast);
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 135, 121, 0.12);
}

.form-feedback {
    margin-top: 14px;
    font-size: 0.9rem;
    display: none;
    padding: 12px;
    border-radius: var(--radius-md);
}

.form-feedback.success {
    display: block;
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.form-feedback.error {
    display: block;
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
    background: var(--navy-900);
    color: #94a3b8;
    position: relative;
    padding-top: 70px;
}

.footer-top-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent-cyan) 50%, var(--accent-blue) 100%);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 1.1fr 1.1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.65;
    color: #94a3b8;
    margin-bottom: 22px;
}

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

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.social-link:hover {
    background: var(--primary);
    color: #ffffff;
    transform: translateY(-3px);
}

.social-link.whatsapp-bg:hover {
    background: #25d366;
}

.footer-heading {
    color: #ffffff;
    font-size: 1.15rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

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

.footer-links a {
    color: #94a3b8;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: #5eead4;
    transform: translateX(4px);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.88rem;
}

.footer-contact-icon {
    color: #5eead4;
    font-size: 1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact-item span {
    display: block;
    font-size: 0.76rem;
    text-transform: uppercase;
    color: #64748b;
    font-weight: 700;
}

.footer-contact-item a {
    color: #e2e8f0;
}

.footer-contact-item a:hover {
    color: #5eead4;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0 34px;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 14px;
}

.copyright {
    font-size: 0.88rem;
    color: #94a3b8;
}

.footer-meta-notes {
    display: flex;
    gap: 18px;
    font-size: 0.82rem;
    color: #cbd5e1;
}

.medical-disclaimer {
    font-size: 0.78rem;
    color: #64748b;
    line-height: 1.5;
}

/* ==========================================================================
   FLOATING ELEMENTS & MODALS
   ========================================================================== */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.9rem;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition-smooth);
}

.floating-whatsapp:hover {
    transform: scale(1.1) rotate(6deg);
    color: #ffffff;
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.6);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--navy-900);
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-md);
}

.floating-whatsapp:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(-4px);
}

.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 35px;
    width: 44px;
    height: 44px;
    background: #ffffff;
    color: var(--navy-900);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    z-index: 998;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary);
    color: #ffffff;
    transform: translateY(-3px);
}

/* Modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(7, 25, 47, 0.7);
    backdrop-filter: blur(6px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

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

.modal-box {
    background: #ffffff;
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 540px;
    padding: 34px;
    position: relative;
    box-shadow: var(--shadow-xl);
    transform: scale(0.92);
    transition: var(--transition-smooth);
}

.modal-overlay.active .modal-box {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 18px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 1.8rem;
    color: var(--text-muted);
    cursor: pointer;
}

.modal-close:hover {
    color: var(--navy-900);
}

.modal-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border-light);
}

.modal-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--primary-subtle);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.modal-title {
    font-size: 1.35rem;
    color: var(--navy-900);
}

.modal-subtitle {
    font-size: 0.88rem;
    color: var(--primary);
    font-weight: 600;
}


/* ==========================================================================
   ENHANCED GLOBAL MOBILE & RESPONSIVE FOUNDATIONS
   ========================================================================== */

html {
    box-sizing: border-box;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

*, *::before, *::after {
    box-sizing: inherit;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

body.nav-menu-open {
    overflow: hidden !important;
    touch-action: none;
}

/* Backdrop Overlay for Mobile Nav Menu */
.mobile-menu-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(10, 13, 36, 0.65);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

/* Animated Hamburger Toggle Button */
.mobile-toggle-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    padding: 9px 8px;
    background: var(--primary-subtle);
    border: 1px solid rgba(46, 49, 146, 0.15);
    border-radius: var(--radius-md);
    cursor: pointer;
    z-index: 1001;
    transition: all 0.25s ease;
}

.mobile-toggle-btn:hover, .mobile-toggle-btn:focus {
    background: rgba(46, 49, 146, 0.15);
}

.mobile-toggle-btn span {
    display: block;
    width: 100%;
    height: 2.5px;
    background: var(--navy-900);
    border-radius: 4px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease;
    transform-origin: center;
}

.mobile-toggle-btn.active span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.mobile-toggle-btn.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-toggle-btn.active span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* Product Card Image Showcase */
.product-card-img-wrap {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin: -10px -10px 16px -10px;
    background: #f1f5f9;
    aspect-ratio: 16 / 10;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

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

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

.product-img-overlay {
    position: absolute;
    inset: 0;
    background: rgba(8, 26, 47, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card-img-wrap:hover .product-img-overlay {
    opacity: 1;
}

.btn-zoom-img {
    background: #ffffff;
    color: var(--navy-900);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Header & Footer Logos */
.header-brand-img {
    height: 50px;
    width: auto;
    max-width: 185px;
    object-fit: contain;
    transition: transform var(--transition-base);
}

.brand-logo:hover .header-brand-img {
    transform: scale(1.03);
}

.footer-brand-img {
    height: 52px;
    width: auto;
    max-width: 195px;
    object-fit: contain;
    background: #ffffff;
    padding: 6px 14px;
    border-radius: 10px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.18);
    transition: transform var(--transition-base);
}

.footer-logo:hover .footer-brand-img {
    transform: scale(1.04);
}

/* Touch-friendly Carousel Track */
.carousel-track-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 8px 4px 16px 4px;
}

.carousel-track-container::-webkit-scrollbar {
    display: none;
}

.carousel-item.category-card {
    scroll-snap-align: start;
}

/* Form Input Sizing for Mobile (prevents iOS auto-zoom) */
.form-control, .search-field {
    font-size: 16px;
}

/* ==========================================================================
   BREAKPOINT: LARGE SCREENS / LAPTOPS (max-width: 1200px)
   ========================================================================== */
@media (max-width: 1200px) {
    .container {
        padding: 0 24px;
    }
    .hero-grid {
        gap: 36px;
    }
    .stats-card-container {
        padding: 30px 24px;
        gap: 20px;
    }
}

/* ==========================================================================
   BREAKPOINT: TABLET SCREENS (max-width: 991px)
   ========================================================================== */
@media (max-width: 991px) {
    /* Header & Navigation */
    .topbar {
        display: none;
    }
    .navbar-container {
        height: 72px;
    }
    .mobile-toggle-btn {
        display: flex;
    }
    .nav-cta-btn {
        display: none;
    }
    .btn-whatsapp-header span {
        display: none;
    }
    .btn-whatsapp-header {
        padding: 9px 12px;
        font-size: 1.1rem;
        border-radius: var(--radius-md);
    }
    .header-brand-img {
        height: 44px;
        max-width: 160px;
    }

    /* Mobile Drawer */
    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        bottom: 0;
        height: calc(100vh - 72px);
        background: #ffffff;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        padding: 24px 20px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.18);
        transform: translateY(-105%);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, visibility 0.3s ease;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        z-index: 999;
    }

    .nav-menu.open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        width: 100%;
    }

    .nav-link {
        padding: 14px 18px;
        font-size: 1.05rem;
        border-radius: var(--radius-md);
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 12px;
        border: 1px solid rgba(0, 0, 0, 0.05);
        background: #f8fafc;
    }

    .nav-link:hover, .nav-link.active {
        background: var(--primary-subtle);
        border-color: rgba(46, 49, 146, 0.18);
        color: var(--primary);
    }

    .nav-mobile-cta {
        display: block;
        margin-top: 24px;
        padding-top: 20px;
        border-top: 1px solid var(--border-light);
    }

    /* Hero Section */
    .hero-section {
        padding: 60px 0 80px 0;
    }
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-title {
        font-size: clamp(2rem, 5vw, 2.8rem);
    }

    /* Stats Grid */
    .stats-section {
        margin-top: -40px;
    }
    .stats-card-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 26px 20px;
    }

    /* Portfolios Carousel */
    .carousel-btn.prev {
        left: -8px;
    }
    .carousel-btn.next {
        right: -8px;
    }

    /* Grid Layouts */
    .about-grid-home, .mission-vision-grid, .contact-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .quality-pillars-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .testing-flow-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 36px 24px;
    }
}

/* ==========================================================================
   BREAKPOINT: STANDARD SMARTPHONES (max-width: 768px)
   ========================================================================== */
@media (max-width: 768px) {
    .section {
        padding: 50px 0;
    }
    .section-header {
        margin-bottom: 32px;
    }
    .section-title {
        font-size: clamp(1.6rem, 5vw, 2.1rem);
    }
    .section-subtitle {
        font-size: 0.95rem;
    }

    /* Page Banner */
    .page-banner {
        padding: 40px 0 36px 0;
    }
    .page-banner-title {
        font-size: clamp(1.65rem, 5.5vw, 2.2rem);
    }
    .page-banner-desc {
        font-size: 0.92rem;
        line-height: 1.6;
    }

    /* Hero Buttons & Trust */
    .hero-title {
        font-size: clamp(1.8rem, 6vw, 2.4rem);
    }
    .hero-btn-group {
        display: flex;
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
    .hero-btn-group .btn {
        width: 100%;
    }
    .hero-trust-list {
        flex-direction: column;
        gap: 10px;
    }

    /* Carousel */
    .carousel-btn {
        display: none;
    }
    .carousel-item.category-card {
        flex: 0 0 260px;
        width: 260px;
        padding: 22px 18px;
    }

    /* Product Grid & Search Controls */
    .catalog-controls {
        padding: 18px 16px;
        margin-bottom: 24px;
        border-radius: var(--radius-md);
    }
    .catalog-search-row {
        margin-bottom: 14px;
    }
    .search-field {
        padding: 12px 14px 12px 42px;
        font-size: 0.95rem;
    }
    .filter-tabs-scroll {
        padding-bottom: 6px;
        gap: 6px;
        -webkit-overflow-scrolling: touch;
    }
    .filter-tab-btn {
        padding: 8px 14px;
        font-size: 0.82rem;
    }
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
        gap: 18px;
    }
    .product-card {
        padding: 20px 16px;
    }

    /* About & Quality Boxes */
    .about-main-banner {
        padding: 28px 20px !important;
    }
    .quality-pillars-grid {
        grid-template-columns: 1fr;
    }
    .testing-flow-steps {
        grid-template-columns: 1fr;
    }

    /* Contact Page */
    .contact-info-panel, .contact-form-card {
        padding: 24px 18px;
        border-radius: var(--radius-md);
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .form-group {
        margin-bottom: 16px;
    }

    /* Floating Buttons */
    .floating-whatsapp {
        bottom: 20px;
        right: 18px;
        width: 52px;
        height: 52px;
        font-size: 1.6rem;
    }
    .whatsapp-tooltip {
        display: none !important;
    }
    .back-to-top {
        bottom: 82px;
        right: 20px;
        width: 44px;
        height: 44px;
        font-size: 1.05rem;
    }

    /* Modal dialog */
    .modal-overlay {
        padding: 16px;
    }
    .modal-box {
        padding: 24px 18px;
        border-radius: var(--radius-md);
    }
}

/* ==========================================================================
   BREAKPOINT: COMPACT SMARTPHONES (max-width: 576px)
   ========================================================================== */
@media (max-width: 576px) {
    .container {
        padding: 0 16px;
    }

    /* Header brand */
    .header-brand-img {
        height: 40px;
        max-width: 145px;
    }

    /* Stats Section */
    .stats-section {
        margin-top: -24px;
    }
    .stats-card-container {
        grid-template-columns: repeat(2, 1fr);
        padding: 18px 14px;
        gap: 14px;
    }
    .stat-box {
        gap: 10px;
    }
    .stat-icon {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
        border-radius: 10px;
    }
    .stat-info h3 {
        font-size: 1.4rem;
    }
    .stat-info p {
        font-size: 0.78rem;
    }

    /* Hero visual card */
    .hero-visual-card {
        padding: 18px 14px;
    }
    .hero-portfolio-pill {
        padding: 10px 12px;
        gap: 10px;
    }
    .hero-pill-icon {
        width: 34px;
        height: 34px;
        font-size: 0.95rem;
    }
    .hero-pill-text h5 {
        font-size: 0.88rem;
    }
    .hero-pill-text p {
        font-size: 0.74rem;
    }

    /* Portfolio Carousel */
    .carousel-item.category-card {
        flex: 0 0 82vw;
        width: 82vw;
        max-width: 280px;
    }

    /* Product Grid (Full Width 1-Column on small phones) */
    .products-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* Values & Testing Grids */
    .values-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .value-card, .mv-card, .pillar-card, .flow-step-box {
        padding: 20px 16px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .footer-bottom-flex {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    .footer-meta-notes {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }
}

/* ==========================================================================
   BREAKPOINT: EXTRA SMALL SCREENS (max-width: 380px)
   ========================================================================== */
@media (max-width: 380px) {
    .container {
        padding: 0 12px;
    }
    .stats-card-container {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .header-brand-img {
        height: 36px;
        max-width: 125px;
    }
    .hero-title {
        font-size: 1.65rem;
    }
    .btn {
        padding: 11px 18px;
        font-size: 0.9rem;
    }
}


/* ==========================================================================
   MASTER RESPONSIVE DESIGN & MOBILE OPTIMIZATIONS
   ========================================================================== */

/* Global Mobile Resets */
html {
    box-sizing: border-box;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

*, *::before, *::after {
    box-sizing: inherit;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

body.nav-menu-open {
    overflow: hidden !important;
    touch-action: none;
}

/* Backdrop Overlay for Mobile Nav Menu */
.mobile-menu-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(10, 13, 36, 0.65);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

/* Animated Hamburger Toggle Button */
.mobile-toggle-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    padding: 9px 8px;
    background: var(--primary-subtle);
    border: 1px solid rgba(46, 49, 146, 0.15);
    border-radius: var(--radius-md);
    cursor: pointer;
    z-index: 1001;
    transition: all 0.25s ease;
}

.mobile-toggle-btn:hover, .mobile-toggle-btn:focus {
    background: rgba(46, 49, 146, 0.15);
}

.mobile-toggle-btn span {
    display: block;
    width: 100%;
    height: 2.5px;
    background: var(--navy-900);
    border-radius: 4px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease;
    transform-origin: center;
}

.mobile-toggle-btn.active span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.mobile-toggle-btn.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-toggle-btn.active span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* Product Card Image Showcase */
.product-card-img-wrap {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin: -10px -10px 16px -10px;
    background: #f1f5f9;
    aspect-ratio: 16 / 10;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

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

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

.product-img-overlay {
    position: absolute;
    inset: 0;
    background: rgba(8, 26, 47, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card-img-wrap:hover .product-img-overlay {
    opacity: 1;
}

.btn-zoom-img {
    background: #ffffff;
    color: var(--navy-900);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Header & Footer Logos */
.header-brand-img {
    height: 50px;
    width: auto;
    max-width: 185px;
    object-fit: contain;
    transition: transform var(--transition-base);
}

.brand-logo:hover .header-brand-img {
    transform: scale(1.03);
}

.footer-brand-img {
    height: 52px;
    width: auto;
    max-width: 195px;
    object-fit: contain;
    background: #ffffff;
    padding: 6px 14px;
    border-radius: 10px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.18);
    transition: transform var(--transition-base);
}

.footer-logo:hover .footer-brand-img {
    transform: scale(1.04);
}

/* Carousel Track & Touch */
.carousel-track-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 8px 4px 16px 4px;
}

.carousel-track-container::-webkit-scrollbar {
    display: none;
}

.carousel-item.category-card {
    scroll-snap-align: start;
}

/* Form Controls (Prevents iOS auto-zoom on input focus) */
.form-control, .search-field {
    font-size: 16px;
}

/* ==========================================================================
   BREAKPOINT: TABLET & SMALL LAPTOP (max-width: 991px)
   ========================================================================== */
@media (max-width: 991px) {
    /* Topbar & Navbar */
    .topbar {
        display: none;
    }
    .navbar-container {
        height: 72px;
    }
    .mobile-toggle-btn {
        display: flex;
    }
    .nav-cta-btn {
        display: none;
    }
    .btn-whatsapp-header span {
        display: none;
    }
    .btn-whatsapp-header {
        padding: 9px 12px;
        font-size: 1.1rem;
        border-radius: var(--radius-md);
    }
    .header-brand-img {
        height: 44px;
        max-width: 160px;
    }

    /* Mobile Drawer */
    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        bottom: 0;
        height: calc(100vh - 72px);
        background: #ffffff;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        padding: 24px 20px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.18);
        transform: translateY(-105%);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, visibility 0.3s ease;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        z-index: 999;
    }

    .nav-menu.open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        width: 100%;
    }

    .nav-link {
        padding: 14px 18px;
        font-size: 1.05rem;
        border-radius: var(--radius-md);
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 12px;
        border: 1px solid rgba(0, 0, 0, 0.05);
        background: #f8fafc;
    }

    .nav-link:hover, .nav-link.active {
        background: var(--primary-subtle);
        border-color: rgba(46, 49, 146, 0.18);
        color: var(--primary);
    }

    .nav-mobile-cta {
        display: block;
        margin-top: 24px;
        padding-top: 20px;
        border-top: 1px solid var(--border-light);
    }

    /* Hero Section */
    .hero-section {
        padding: 60px 0 80px 0;
    }
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-title {
        font-size: clamp(2rem, 5vw, 2.8rem);
    }

    /* Stats Grid */
    .stats-section {
        margin-top: -40px;
    }
    .stats-card-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 26px 20px;
    }

    /* About Section & Badge Overlap Solution */
    .about-grid-home {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .about-img-box {
        margin-bottom: 24px;
        position: relative;
    }
    .about-banner-badge {
        position: relative;
        bottom: auto;
        right: auto;
        left: auto;
        margin-top: 16px;
        width: 100%;
        box-shadow: var(--shadow-md);
        padding: 14px 20px;
        justify-content: flex-start;
    }
    .about-banner-badge i {
        font-size: 1.6rem;
    }
    .about-banner-badge strong {
        font-size: 1.05rem;
    }
    .about-banner-badge span {
        font-size: 0.8rem;
    }

    /* Other Grids */
    .mission-vision-grid, .contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .quality-pillars-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .testing-flow-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 36px 24px;
    }
}

/* ==========================================================================
   BREAKPOINT: STANDARD SMARTPHONES (max-width: 768px)
   ========================================================================== */
@media (max-width: 768px) {
    .section {
        padding: 48px 0;
    }
    .section-header {
        margin-bottom: 28px;
    }
    .section-title {
        font-size: clamp(1.6rem, 5vw, 2.1rem);
    }
    .section-subtitle {
        font-size: 0.95rem;
    }

    /* Page Banner */
    .page-banner {
        padding: 40px 0 36px 0;
    }
    .page-banner-title {
        font-size: clamp(1.65rem, 5.5vw, 2.2rem);
    }
    .page-banner-desc {
        font-size: 0.92rem;
        line-height: 1.6;
    }

    /* Hero Buttons */
    .hero-title {
        font-size: clamp(1.8rem, 6vw, 2.4rem);
    }
    .hero-btn-group {
        display: flex;
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
    .hero-btn-group .btn {
        width: 100%;
    }
    .hero-trust-list {
        flex-direction: column;
        gap: 10px;
    }

    /* Carousel */
    .carousel-btn {
        display: none;
    }
    .carousel-item.category-card {
        flex: 0 0 260px;
        width: 260px;
        padding: 22px 18px;
    }

    /* Product Grid & Controls */
    .catalog-controls {
        padding: 18px 16px;
        margin-bottom: 24px;
        border-radius: var(--radius-md);
    }
    .catalog-search-row {
        margin-bottom: 14px;
    }
    .search-field {
        padding: 12px 14px 12px 42px;
        font-size: 0.95rem;
    }
    .filter-tabs-scroll {
        padding-bottom: 6px;
        gap: 6px;
        -webkit-overflow-scrolling: touch;
    }
    .filter-tab-btn {
        padding: 8px 14px;
        font-size: 0.82rem;
    }
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
        gap: 18px;
    }
    .product-card {
        padding: 20px 16px;
    }

    /* About Main Banner */
    .about-main-banner {
        padding: 28px 20px !important;
    }
    .quality-pillars-grid {
        grid-template-columns: 1fr;
    }
    .testing-flow-steps {
        grid-template-columns: 1fr;
    }

    /* Contact Page */
    .contact-info-panel, .contact-form-card {
        padding: 24px 18px;
        border-radius: var(--radius-md);
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .form-group {
        margin-bottom: 16px;
    }

    /* Floating Buttons */
    .floating-whatsapp {
        bottom: 20px;
        right: 18px;
        width: 52px;
        height: 52px;
        font-size: 1.6rem;
    }
    .whatsapp-tooltip {
        display: none !important;
    }
    .back-to-top {
        bottom: 82px;
        right: 20px;
        width: 44px;
        height: 44px;
        font-size: 1.05rem;
    }

    /* Modal */
    .modal-overlay {
        padding: 16px;
    }
    .modal-box {
        padding: 24px 18px;
        border-radius: var(--radius-md);
    }
}

/* ==========================================================================
   BREAKPOINT: COMPACT PHONES & FEATURE CHECKLISTS (max-width: 640px)
   ========================================================================== */
@media (max-width: 640px) {
    /* Feature Check Lists transformed into clean single-column cards */
    .feature-check-list {
        grid-template-columns: 1fr;
        gap: 10px;
        margin: 18px 0 24px;
    }
    .feature-check-item {
        background: #f8fafc;
        padding: 12px 16px;
        border-radius: var(--radius-md);
        border: 1px solid rgba(46, 49, 146, 0.08);
        font-size: 0.92rem;
        gap: 12px;
    }
    .feature-check-item i {
        color: var(--primary);
        font-size: 1.2rem;
    }

    /* About Section Buttons */
    .about-action-btns {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }
    .about-action-btns .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================================================
   BREAKPOINT: COMPACT SMARTPHONES (max-width: 576px)
   ========================================================================== */
@media (max-width: 576px) {
    .container {
        padding: 0 16px;
    }

    /* Header */
    .header-brand-img {
        height: 40px;
        max-width: 145px;
    }

    /* Stats Section */
    .stats-section {
        margin-top: -24px;
    }
    .stats-card-container {
        grid-template-columns: repeat(2, 1fr);
        padding: 18px 14px;
        gap: 14px;
    }
    .stat-box {
        gap: 10px;
    }
    .stat-icon {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
        border-radius: 10px;
    }
    .stat-info h3 {
        font-size: 1.4rem;
    }
    .stat-info p {
        font-size: 0.78rem;
    }

    /* Hero visual card */
    .hero-visual-card {
        padding: 18px 14px;
    }
    .hero-portfolio-pill {
        padding: 10px 12px;
        gap: 10px;
    }
    .hero-pill-icon {
        width: 34px;
        height: 34px;
        font-size: 0.95rem;
    }
    .hero-pill-text h5 {
        font-size: 0.88rem;
    }
    .hero-pill-text p {
        font-size: 0.74rem;
    }

    /* Portfolio Carousel */
    .carousel-item.category-card {
        flex: 0 0 82vw;
        width: 82vw;
        max-width: 280px;
    }

    /* Product Grid */
    .products-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* Values & Testing Grids */
    .values-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .value-card, .mv-card, .pillar-card, .flow-step-box {
        padding: 20px 16px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .footer-bottom-flex {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    .footer-meta-notes {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }
}

/* ==========================================================================
   BREAKPOINT: EXTRA SMALL SCREENS (max-width: 380px)
   ========================================================================== */
@media (max-width: 380px) {
    .container {
        padding: 0 12px;
    }
    .stats-card-container {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .header-brand-img {
        height: 36px;
        max-width: 125px;
    }
    .hero-title {
        font-size: 1.65rem;
    }
    .btn {
        padding: 11px 18px;
        font-size: 0.9rem;
    }
}

.footer-logo-img,
.footer-brand-img {
    height: 52px !important;
    width: auto !important;
    max-width: 195px !important;
    object-fit: contain !important;
    background: #ffffff !important;
    padding: 6px 14px !important;
    border-radius: 10px !important;
    box-shadow: 0 4px 14px rgba(0,0,0,0.18) !important;
    display: inline-block !important;
    transition: transform var(--transition-base) !important;
}
.footer-logo:hover .footer-logo-img,
.footer-logo:hover .footer-brand-img {
    transform: scale(1.04) !important;
}


/* === Enhanced Footer Brand Column & Badges === */
.footer-logo {
    display: inline-flex !important;
    align-items: center !important;
    margin-bottom: 18px !important;
}

.footer-brand-img {
    height: 48px !important;
    width: auto !important;
    max-width: 190px !important;
    object-fit: contain !important;
    background: #ffffff !important;
    padding: 6px 14px !important;
    border-radius: 10px !important;
    box-shadow: 0 4px 14px rgba(0,0,0,0.18) !important;
    display: inline-block !important;
    transition: transform var(--transition-base, 0.3s ease) !important;
}

.footer-logo:hover .footer-brand-img {
    transform: scale(1.03) !important;
}

.footer-desc {
    font-size: 0.93rem !important;
    line-height: 1.65 !important;
    color: #94a3b8 !important;
    margin-bottom: 18px !important;
}

.footer-cert-tags {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    margin-bottom: 20px !important;
}

.footer-cert-badge {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    padding: 6px 12px !important;
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(45, 212, 191, 0.28) !important;
    border-radius: 20px !important;
    color: #e2e8f0 !important;
    font-size: 0.78rem !important;
    font-weight: 600 !important;
    line-height: 1 !important;
    white-space: nowrap !important;
}

.footer-cert-badge i {
    color: #2dd4bf !important;
    font-size: 0.82rem !important;
}

.footer-socials {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 12px !important;
    margin-top: 12px !important;
}

.footer-socials .social-link {
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.14) !important;
    color: #ffffff !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1rem !important;
    text-decoration: none !important;
    transition: all 0.25s ease !important;
}

.footer-socials .social-link:hover {
    background: #0d9488 !important;
    border-color: #0d9488 !important;
    color: #ffffff !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 6px 16px rgba(13, 148, 136, 0.4) !important;
}

.footer-socials .social-link.whatsapp-bg:hover {
    background: #25d366 !important;
    border-color: #25d366 !important;
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4) !important;
}


/* === About Section Banner & Badge Layout (No Overlap) === */
.about-img-box {
    position: relative;
    padding-bottom: 25px;
}

.about-main-banner {
    background: linear-gradient(135deg, #0b1528 0%, #1e293b 100%) !important;
    border-radius: var(--radius-lg, 16px) !important;
    padding: 44px 44px 80px 44px !important;
    color: #ffffff !important;
    position: relative !important;
    box-shadow: var(--shadow-lg, 0 10px 25px -5px rgba(0,0,0,0.3)) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
}

.about-main-banner h3 {
    color: #ffffff !important;
    font-size: 1.85rem !important;
    font-weight: 700 !important;
    line-height: 1.25 !important;
    margin-bottom: 16px !important;
}

.about-main-banner p {
    color: #cbd5e1 !important;
    font-size: 0.95rem !important;
    line-height: 1.7 !important;
    margin-bottom: 0 !important;
    max-width: 95% !important;
}

.about-banner-badge {
    position: absolute !important;
    bottom: 0px !important;
    right: 28px !important;
    background: #ffffff !important;
    color: #0f172a !important;
    padding: 14px 22px !important;
    border-radius: 12px !important;
    box-shadow: 0 12px 28px -4px rgba(0, 0, 0, 0.28), 0 8px 10px -6px rgba(0, 0, 0, 0.2) !important;
    border-left: 5px solid #0d9488 !important;
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    z-index: 3 !important;
}

.about-banner-badge i {
    font-size: 1.85rem !important;
    color: #0d9488 !important;
    line-height: 1 !important;
}

.about-banner-badge strong {
    font-size: 1.15rem !important;
    display: block !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    line-height: 1.2 !important;
}

.about-banner-badge span {
    font-size: 0.82rem !important;
    color: #64748b !important;
    display: block !important;
    margin-top: 2px !important;
}

@media (max-width: 991px) {
    .about-img-box {
        padding-bottom: 0 !important;
        margin-bottom: 24px !important;
    }
    .about-main-banner {
        padding: 36px 24px 32px 24px !important;
    }
    .about-banner-badge {
        position: relative !important;
        bottom: auto !important;
        right: auto !important;
        margin-top: 16px !important;
        width: 100% !important;
    }
}


/* === PCD Franchise & Business CTA Section Background Image === */
.section-navy,
.section-cta-banner {
    position: relative !important;
    background: linear-gradient(135deg, rgba(11, 21, 40, 0.88) 0%, rgba(15, 23, 42, 0.92) 100%), url('../images/banner-doctors.jpg') center center / cover no-repeat !important;
    background-attachment: scroll !important;
    color: #ffffff !important;
    overflow: hidden !important;
    padding: 95px 0 !important;
}

@media (min-width: 992px) {
    .section-navy,
    .section-cta-banner {
        background-attachment: fixed !important;
    }
}

.section-navy::before,
.section-cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(45, 212, 191, 0.12) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
    z-index: 1;
}

.section-navy .container,
.section-cta-banner .container {
    position: relative;
    z-index: 2;
}

.section-navy .section-title,
.section-cta-banner .section-title {
    color: #ffffff !important;
    font-size: 2.35rem !important;
    font-weight: 800 !important;
    line-height: 1.3 !important;
}

.section-navy .section-subtitle,
.section-cta-banner .section-subtitle {
    color: #e2e8f0 !important;
    font-size: 1.05rem !important;
    line-height: 1.7 !important;
}
