/* ============================================
   M.M. Mobin Traders — Merged Unified Stylesheet
   ============================================ */

:root {
    /* === LOGO COLOR PALETTE === */
    --primary: #18488C;        /* Main Logo Navy Blue */
    --primary-dark: #113568;   /* Slightly darker for hovers */
    --primary-darker: #0A2140; /* Darkest gradient edge */
    --primary-light: #E2EBF7;  /* Very light blue for backgrounds/buttons */
    --primary-lighter: #F1F6FC;/* Even lighter for cards/hovers */

    /* === COMPLEMENTARY ACCENTS === */
    /* Gold/Amber pairs beautifully with Navy Blue for a premium medical feel */
    --accent: #F59E0B;         
    --accent-dark: #D97706;
    --accent-light: #FFFBEB;
    
    /* Secondary (can stay light blue or adjust to the gold/teal if you prefer) */
    --secondary: #0EA5E9;
    --secondary-light: #E0F2FE;

    /* === SUCCESS & UTILITY === */
    --success: #10B981;
    --success-light: #D1FAE5;

    /* === DARK / TEXT === */
    --dark: #0A2140;           /* Matches primary-darker for consistency */
    --dark-800: #1A3450;
    --text: #1E293B;
    --text-muted: #5B6B7B;
    --text-light: #94A3B8;

    /* === BACKGROUNDS & BORDERS === */
    --bg-white: #FFFFFF;
    --bg-light: #F7F9FB;
    --bg-lighter: #FAFCFD;
    --border: #E1E7ED;
    --border-light: #EFF3F7;

    /* === SHADOWS, RADII, FONTS (KEEP THE SAME) === */
    --shadow-sm: 0 1px 3px rgba(24, 72, 140, 0.06), 0 1px 2px rgba(24, 72, 140, 0.04);
    --shadow-md: 0 4px 12px rgba(24, 72, 140, 0.08), 0 2px 6px rgba(24, 72, 140, 0.04);
    --shadow-lg: 0 12px 32px rgba(24, 72, 140, 0.10), 0 4px 12px rgba(24, 72, 140, 0.06);
    --shadow-xl: 0 24px 48px rgba(24, 72, 140, 0.14), 0 8px 20px rgba(24, 72, 140, 0.08);
    
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --max-width: 1200px;
    --header-height: 72px;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
}

body {
    font-family: var(--font);
    color: var(--text);
    background: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

img, svg {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    font-size: inherit;
}

input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    outline: none;
}

ul, ol {
    list-style: none;
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* SVG Sprite */
.svg-sprite {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

.icon {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

.icon-sm { width: 18px; height: 18px; }
.icon-lg { width: 32px; height: 32px; }
.icon-xl { width: 48px; height: 48px; }

/* ===== Header ===== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow var(--transition);
    height: var(--header-height);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.35rem;
    color: var(--primary);
    letter-spacing: -0.5px;
    white-space: nowrap;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

.logo-icon svg {
    width: 22px;
    height: 22px;
}

.logo span {
    color: var(--dark);
}

.logo .logo-accent {
    color: var(--accent);
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    padding: 8px 12px;
    font-weight: 500;
    font-size: 0.875rem;
    color: var(--text-muted);
    border-radius: 8px;
    transition: all var(--transition);
    position: relative;
    cursor: pointer;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
    background: var(--primary-light);
}

.nav-link.active {
    font-weight: 600;
}

.nav-link.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link .chevron {
    width: 14px;
    height: 14px;
    transition: transform var(--transition);
}

.nav-link.dropdown-trigger:hover .chevron,
.nav-link.dropdown-trigger.active .chevron {
    transform: rotate(180deg);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
    padding: 12px;
    min-width: 320px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all var(--transition);
    z-index: 100;
}

.dropdown:hover .dropdown-menu,
.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    border-radius: 10px;
    transition: background var(--transition);
    cursor: pointer;
}

.dropdown-menu-item:hover {
    background: var(--primary-lighter);
}

.dropdown-menu-item-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.dropdown-menu-item-icon svg {
    width: 20px;
    height: 20px;
}

.dropdown-menu-item-text h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
}

.dropdown-menu-item-text p {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.3;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 10px;
    transition: all var(--transition);
    white-space: nowrap;
    letter-spacing: 0.01em;
    position: relative;
    overflow: hidden;
}

.btn:active {
    transform: scale(0.97);
}

.btn-primary {
    background: var(--primary);
    color: #fff;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-accent {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 4px 14px rgba(249, 115, 22, 0.35);
}

.btn-accent:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.45);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-white {
    background: #fff;
    color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.btn-white:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.82rem;
    border-radius: 8px;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1rem;
    border-radius: 12px;
}


.hamburger {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: #fff;
    align-items: center;
    justify-content: center;
    color: var(--text);
    transition: all var(--transition);
    cursor: pointer;
}

@media (min-width: 1025px) {
    .hamburger { display: none !important; }
}

.hamburger:hover {
    background: var(--bg-light);
}

/* ===== Mobile Menu ===== */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 380px;
    background: #fff;
    z-index: 2000;
    box-shadow: var(--shadow-xl);
    transform: translateX(100%);
    transition: transform var(--transition-slow);
    overflow-y: auto;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 16px;
}

.mobile-menu-close {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    transition: all var(--transition);
    cursor: pointer;
}

.mobile-menu-close:hover {
    background: var(--bg-light);
}

.mobile-nav-link {
    padding: 14px 16px;
    font-weight: 500;
    color: var(--text);
    border-radius: 10px;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-size: 0.95rem;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    background: var(--primary-lighter);
    color: var(--primary);
}

.mobile-nav-link .chevron {
    transition: transform var(--transition);
    width: 18px;
    height: 18px;
}

.mobile-nav-link.open .chevron {
    transform: rotate(180deg);
}

.mobile-submenu {
    padding-left: 16px;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow);
    flex-shrink: 0;
}

.mobile-submenu.open {
    max-height: 500px;
}

.mobile-submenu-item {
    padding: 10px 16px;
    color: var(--text-muted);
    font-size: 0.85rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-submenu-item:hover {
    background: var(--bg-light);
    color: var(--primary);
}

.mobile-submenu-item svg {
    width: 16px;
    height: 16px;
    color: var(--primary);
}

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

.mobile-menu-overlay.show {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-cta {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* ===== Page Sections ===== */
.page-section {
    display: none;
    animation: fadeIn 0.4s ease forwards;
}

.page-section.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== Hero Slider ===== */
.hero {
    position: relative;
    padding: 80px 0 60px;
    background: linear-gradient(160deg, var(--primary-darker) 0%, var(--primary-dark) 30%, var(--primary) 70%, #0F8A7E 100%);
    overflow: hidden;
    color: #fff;
    min-height: 600px;
    display: flex;
    align-items: center;
    transition: all var(--transition-slow);
}

/* Animated hero blob decorations */
.hero::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(252, 211, 77, 0.08) 0%, transparent 70%);
    top: -150px;
    right: -100px;
    pointer-events: none;
    z-index: 1;
    animation: heroBlob 8s ease-in-out infinite alternate;
}

@keyframes heroBlob {
    from { transform: translate(0, 0) scale(1); }
    to   { transform: translate(40px, 30px) scale(1.15); }
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(255, 255, 255, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(255, 255, 255, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 60% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 2;
}

.hero-overlay-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.12;
    transition: opacity var(--transition-slow), background-image var(--transition-slow);
    pointer-events: none;
    mix-blend-mode: overlay;
    z-index: 1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 3;
}

.hero-slide-content {
    animation: heroSlideFadeIn 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes heroSlideFadeIn {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-slider-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 4;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: all var(--transition);
    border: none;
    padding: 0;
}

.hero-dot.active {
    background: #FCD34D;
    transform: scale(1.2);
    box-shadow: 0 0 8px rgba(252, 211, 77, 0.6);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    padding: 8px 18px;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
}

.hero-badge svg {
    width: 16px;
    height: 16px;
    color: #FCD34D;
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
}

.hero h1 .highlight {
    color: #FCD34D;
    text-decoration: underline;
    text-decoration-color: var(--accent);
    text-decoration-thickness: 0.08em;
    text-underline-offset: 0.15em;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-visual-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-xl);
    padding: 40px 36px;
    backdrop-filter: blur(16px);
    position: relative;
    overflow: hidden;
    text-align: center;
    max-width: 420px;
    width: 100%;
}

.hero-visual-card .floating-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.3;
}

.hero-visual-card .shape-1 {
    width: 80px;
    height: 80px;
    background: var(--accent);
    top: -20px;
    right: -20px;
}

.hero-visual-card .shape-2 {
    width: 60px;
    height: 60px;
    background: var(--secondary);
    bottom: 30px;
    left: -15px;
}

.hero-visual-card .shape-3 {
    width: 40px;
    height: 40px;
    background: #FCD34D;
    top: 50%;
    right: 10px;
    opacity: 0.2;
}

.hero-visual-icon {
    width: 72px;
    height: 72px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #fff;
}

.hero-visual-icon svg {
    width: 36px;
    height: 36px;
}

.hero-visual-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.hero-visual-card p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
}

/* ===== Trust Bar ===== */
.trust-bar {
    background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary-dark) 60%, var(--primary) 100%);
    padding: 36px 0;
    position: relative;
    z-index: 2;
    margin-top: 0;
    overflow: hidden;
}

.trust-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 10% 50%, rgba(255,255,255,0.05) 0%, transparent 60%),
        radial-gradient(ellipse at 90% 50%, rgba(252, 211, 77, 0.07) 0%, transparent 60%);
    pointer-events: none;
}

.trust-bar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

.trust-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-right: 1px solid rgba(255,255,255,0.12);
}

.trust-stat:last-child {
    border-right: none;
}

.trust-stat-number {
    font-size: 2.4rem;
    font-weight: 900;
    background: linear-gradient(135deg, #fff 30%, #FCD34D 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1.5px;
    line-height: 1;
}

.trust-stat-label {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.72);
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* ===== Section Common ===== */
.section {
    padding: 72px 0;
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--dark);
    margin-bottom: 14px;
    line-height: 1.2;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

.section-tag {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 14px;
}

/* ===== Category Cards ===== */
.category-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.category-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 28px 20px;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: block;
}

.category-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-lighter) 0%, transparent 60%);
    opacity: 0;
    transition: opacity var(--transition);
    border-radius: inherit;
}

.category-card:hover::before {
    opacity: 1;
}

.category-card:hover {
    box-shadow: 0 16px 40px rgba(24, 72, 140, 0.15);
    transform: translateY(-6px);
    border-color: var(--primary);
}

.category-card-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-lighter);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--primary);
    transition: all var(--transition);
    position: relative;
    z-index: 1;
}

.category-card:hover .category-card-icon {
    background: var(--primary);
    color: #fff;
    transform: scale(1.1) rotate(-4deg);
    box-shadow: 0 8px 20px rgba(24, 72, 140, 0.3);
}

.category-card-icon svg {
    width: 28px;
    height: 28px;
}

.category-card h3 {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
    position: relative;
    z-index: 1;
}

.category-card p {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.4;
    position: relative;
    z-index: 1;
}

/* ===== Value Props ===== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.value-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.value-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.value-card:hover::after {
    transform: scaleX(1);
}

.value-card:hover {
    box-shadow: 0 20px 48px rgba(24, 72, 140, 0.12);
    transform: translateY(-4px);
    border-color: var(--primary-light);
}

.value-card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-lighter));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 18px;
    transition: all var(--transition);
}

.value-card:hover .value-card-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(24, 72, 140, 0.25);
}

.value-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.value-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===== Testimonials ===== */
.testimonials-section {
    background: var(--bg-light);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 28px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    color: #F59E0B;
    margin-bottom: 14px;
}

.testimonial-stars svg {
    width: 18px;
    height: 18px;
    fill: #F59E0B;
    stroke: none;
}

.testimonial-text {
    font-size: 0.92rem;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 18px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.testimonial-author h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
}

.testimonial-author p {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* ===== Partner Logos ===== */
.partners-section {
    padding: 40px 0;
    background: #fff;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.partner-logo-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.partner-logo {
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--text-light);
    letter-spacing: -0.5px;
    transition: all var(--transition);
    white-space: nowrap;
    opacity: 0.7;
}

.partner-logo:hover {
    color: var(--primary);
    opacity: 1;
}

/* ===== About Page ===== */
.about-hero {
    background: linear-gradient(140deg, var(--primary-darker) 0%, var(--primary-dark) 50%, var(--primary) 100%);
    color: #fff;
    padding: 72px 0;
    position: relative;
    overflow: hidden;
}

.about-hero::after {
    content: '';
    position: absolute;
    bottom: -60px;
    right: -30px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
}

.about-hero h1 {
    font-size: 2.6rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 14px;
}

.about-hero p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    font-size: 1.05rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.about-content h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.about-content p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.about-visual {
    background: var(--primary-lighter);
    border-radius: var(--radius-lg);
    padding: 36px;
    text-align: center;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
}

.about-visual-icon {
    width: 90px;
    height: 90px;
    background: var(--bg-white);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.about-visual-icon svg {
    width: 40px;
    height: 40px;
}

/* Highlights in Story section */
.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 32px;
}

.highlight-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.highlight-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.highlight-item:hover .highlight-icon {
    background: var(--primary);
    color: #fff;
    transform: scale(1.05);
}

.highlight-icon svg {
    width: 20px;
    height: 20px;
}

.highlight-item strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.highlight-item span {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Image wrapper in Story section */
.about-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4 / 3;
}

.about-image-wrapper .about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.about-image-wrapper:hover .about-img {
    transform: scale(1.04);
}

.about-badge {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    padding: 12px 20px;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 2;
}

.about-badge svg {
    width: 18px;
    height: 18px;
    color: var(--accent);
}

@media (max-width: 768px) {
    .about-highlights {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* ===== Hospital Grid (About Page) ===== */
.hospital-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 8px;
}

.hospital-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 28px 20px;
    text-align: center;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    box-shadow: var(--shadow-sm);
}

.hospital-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.hospital-logo-container {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--bg-light);
    flex-shrink: 0;
}

.hospital-logo-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.hospital-card h3 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.4;
    margin: 0;
}

@media (max-width: 992px) {
    .hospital-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .hospital-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

.timeline {
    position: relative;
    padding-left: 32px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
}

.timeline-item {
    position: relative;
    padding-bottom: 32px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -32px;
    top: 4px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--primary);
    border: 3px solid #fff;
    box-shadow: 0 0 0 3px var(--primary-light);
}

.timeline-item h4 {
    font-weight: 600;
    color: var(--primary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.timeline-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 32px;
}

@media (max-width: 600px) {
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
}

.mv-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 28px;
    transition: all var(--transition);
}

.mv-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.mv-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.mv-card h4 svg {
    width: 22px;
    height: 22px;
    color: var(--primary);
}

.mv-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ===== Product Page Hero ===== */
.product-page-hero {
    background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary-dark) 50%, var(--primary) 100%);
    color: #fff;
    padding: 64px 0;
    position: relative;
    overflow: hidden;
}

.product-page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(255, 255, 255, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(255, 255, 255, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.product-page-hero .container {
    position: relative;
    z-index: 1;
}

.product-page-hero h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.product-page-hero p {
    font-size: 1.1rem;
    opacity: 0.85;
    max-width: 600px;
}

.product-page-hero .breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.7);
    flex-wrap: wrap;
    padding: 0;
}

.product-page-hero .breadcrumbs a {
    transition: color 0.2s;
}

.product-page-hero .breadcrumbs a:hover {
    color: #fff;
}

.product-page-hero .breadcrumbs .sep {
    opacity: 0.5;
}

.product-page-hero .breadcrumbs .current {
    color: #fff;
    font-weight: 500;
}

/* ===== Breadcrumbs (general) ===== */
.breadcrumbs {
    padding: 16px 0;
    font-size: 0.82rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.breadcrumbs span {
    cursor: pointer;
    transition: color var(--transition);
}

.breadcrumbs span:hover {
    color: var(--primary);
}

.breadcrumbs .sep {
    color: var(--text-light);
    cursor: default;
}

.breadcrumbs .current {
    color: var(--primary);
    font-weight: 600;
    cursor: default;
}

/* ===== Product Toolbar ===== */
.product-toolbar {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.product-search-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
}

.product-search {
    position: relative;
    max-width: 480px;
    width: 100%;
}

.product-search svg {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: var(--text-muted);
}

.product-search input {
    width: 100%;
    padding: 12px 16px 12px 44px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.2s;
    background: #fff;
    color: var(--text);
}

.product-search input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.1);
}

.product-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.filter-chip {
    padding: 8px 16px;
    border-radius: var(--radius-full);
    border: 1.5px solid var(--border);
    background: #fff;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}

.filter-chip:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.filter-chip.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 2px 8px rgba(15, 118, 110, 0.25);
}



.results-count {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.results-count strong {
    color: var(--text);
}

/* ===== Product Grid ===== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* ===== Product Card — Premium Redesign ===== */
.product-card {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: transform 0.28s cubic-bezier(0.4,0,0.2,1),
                box-shadow 0.28s cubic-bezier(0.4,0,0.2,1),
                border-color 0.28s;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    position: relative;
    box-shadow: 0 2px 8px rgba(24,72,140,0.06);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(24,72,140,0.14), 0 4px 12px rgba(24,72,140,0.08);
    border-color: rgba(24,72,140,0.12);
}

/* Image container */
.product-card-image {
    height: 220px;
    background: linear-gradient(145deg, var(--primary-lighter) 0%, #edf3fb 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

/* Actual product photo */
.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 16px;
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
    display: block;
}

.product-card:hover .product-card-image img {
    transform: scale(1.06);
}

/* Subtle gradient scrim at the bottom of the image */
.product-card-image::after {
    content: '';
    position: absolute;
    inset: auto 0 0 0;
    height: 48px;
    background: linear-gradient(to top, rgba(255,255,255,0.55), transparent);
    pointer-events: none;
}

/* Fallback SVG icon (when no image) */
.product-card-image svg {
    width: 60px;
    height: 60px;
    color: var(--primary);
    opacity: 0.45;
    transition: all var(--transition);
    flex-shrink: 0;
}

.product-card:hover .product-card-image svg {
    transform: scale(1.12);
    opacity: 0.75;
}

/* Badge */
.product-card-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 3px 9px;
    background: var(--success);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 6px rgba(16,185,129,0.35);
    z-index: 1;
}

.product-card-badge.out-of-stock {
    background: #EF4444;
    box-shadow: 0 2px 6px rgba(239,68,68,0.35);
}

.product-card-badge.bulk {
    background: var(--accent);
    box-shadow: 0 2px 6px rgba(245,158,11,0.35);
}

/* Card body */
.product-card-body {
    padding: 16px 18px 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.product-card-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
    flex-wrap: wrap;
}

.product-card-category {
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    background: var(--primary-light);
    padding: 2px 8px;
    border-radius: var(--radius-full);
}

.product-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 5px;
    line-height: 1.35;
    color: var(--dark);
    transition: color 0.2s;
}

.product-card:hover h3 {
    color: var(--primary);
}

.product-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.55;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 14px;
}

/* Footer */
.product-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid var(--border-light);
}

.product-card-price {
    font-weight: 800;
    color: var(--primary);
    font-size: 0.88rem;
    letter-spacing: -0.01em;
}

/* Inquire button inside the card */
.btn-inquire {
    padding: 7px 14px;
    background: var(--primary);
    color: #fff;
    border-radius: var(--radius-full);
    font-size: 0.73rem;
    font-weight: 600;
    transition: all 0.22s;
    white-space: nowrap;
    cursor: pointer;
    letter-spacing: 0.01em;
    box-shadow: 0 2px 8px rgba(24,72,140,0.2);
}

.btn-inquire:hover {
    background: var(--primary-dark);
    box-shadow: 0 4px 14px rgba(24,72,140,0.35);
    transform: translateY(-1px);
}

.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 64px 24px;
}

.empty-state svg {
    width: 64px;
    height: 64px;
    color: var(--border);
    margin: 0 auto 16px;
}

.empty-state h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.empty-state p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.no-results {
    text-align: center;
    padding: 48px 24px;
    color: var(--text-muted);
    grid-column: 1 / -1;
}

.no-results svg {
    width: 48px;
    height: 48px;
    color: var(--text-light);
    margin: 0 auto 16px;
}

/* ===== Product Detail Page ===== */
.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    margin-bottom: 48px;
}

.product-detail-visual {
    background: linear-gradient(135deg, var(--primary-lighter) 0%, #fff 100%);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-detail-visual svg {
    width: 120px;
    height: 120px;
    color: var(--primary);
    opacity: 0.3;
}

.product-detail-visual .detail-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 6px 14px;
    background: var(--primary);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    text-transform: uppercase;
}

.product-detail-visual .detail-brand {
    position: absolute;
    bottom: 20px;
    right: 20px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    color: var(--text);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    border: 1px solid var(--border);
}

.product-detail-info {
    padding-top: 8px;
}

.product-detail-info .detail-meta {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.product-detail-info .detail-meta span {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    padding: 4px 10px;
    border-radius: var(--radius-full);
}

.product-detail-info .detail-meta .cat {
    background: var(--primary-light);
    color: var(--primary);
}



.product-detail-info h1 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.product-detail-info .detail-desc {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.product-detail-info .detail-price {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 24px;
}

.product-detail-info .detail-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.detail-features {
    background: var(--bg-light);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 24px;
    border: 1px solid var(--border);
}

.detail-features h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-features ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.detail-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.detail-features li svg {
    width: 18px;
    height: 18px;
    color: var(--success);
    flex-shrink: 0;
}

.related-section {
    background: var(--bg-light);
    border-top: 1px solid var(--border);
    padding: 64px 0;
}

/* ===== Distribution Page ===== */
.distribution-map {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    text-align: center;
    margin-bottom: 40px;
}

.distribution-map-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(15, 118, 110, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 118, 110, 0.04) 1px, transparent 1px);
    background-size: 32px 32px;
}

.distribution-map-content {
    position: relative;
    z-index: 1;
    padding: 40px 20px;
}

.distribution-map-content h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 8px;
}

.distribution-map-content p {
    color: var(--text-muted);
    max-width: 480px;
    margin: 0 auto 24px;
}

.region-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    padding: 8px 18px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text);
    margin: 4px;
    box-shadow: var(--shadow-sm);
    cursor: default;
    transition: all var(--transition);
}

.region-badge:hover {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: var(--shadow-md);
}

.region-badge svg {
    width: 16px;
    height: 16px;
    color: var(--success);
}

.logistics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.logistics-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 28px;
    transition: all var(--transition);
}

.logistics-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.logistics-card-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 14px;
}

.logistics-card h4 {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.logistics-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 32px;
}

.process-step {
    text-align: center;
    padding: 24px 16px;
    position: relative;
}

.process-step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    margin: 0 auto 14px;
    position: relative;
    z-index: 1;
}

.process-step h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 4px;
}

.process-step p {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* ===== Business Partners Page ===== */
.partner-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.partner-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    cursor: default;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    position: relative;
    overflow: hidden;
}

.partner-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, var(--primary-lighter) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition);
    border-radius: inherit;
}

.partner-card:hover::before {
    opacity: 1;
}

.partner-card:hover {
    box-shadow: 0 20px 48px rgba(24, 72, 140, 0.12);
    transform: translateY(-6px);
    border-color: var(--primary-light);
}

.partner-logo-container {
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    position: relative;
    z-index: 1;
}

.partner-logo-container img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(30%);
    transition: filter var(--transition), transform var(--transition);
}

.partner-card:hover .partner-logo-container img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.partner-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

/* Partners section intro badge */
.partners-count-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 6px 18px;
    border-radius: var(--radius-full);
    margin-bottom: 12px;
}

/* ===== Brands Page ===== */
.brand-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.brand-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 28px 20px;
    text-align: center;
    transition: all var(--transition);
    cursor: pointer;
}

.brand-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
    border-color: var(--primary-light);
}

.brand-logo-placeholder {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.5px;
    margin-bottom: 8px;
}

.brand-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ===== Certificates Page ===== */
.cert-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.cert-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 28px 20px;
    text-align: center;
    transition: all var(--transition);
    cursor: pointer;
}

.cert-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
    border-color: var(--primary-light);
}

.cert-badge {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-light), #fff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    color: var(--primary);
    border: 2px solid var(--primary-light);
    transition: all var(--transition);
}

.cert-card:hover .cert-badge {
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(15, 118, 110, 0.2);
}

.cert-badge svg {
    width: 32px;
    height: 32px;
}

.cert-card h4 {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 4px;
}

.cert-card p {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.cert-card .view-link {
    display: inline-block;
    margin-top: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
}

.cert-card .view-link:hover {
    text-decoration: underline;
}

/* ===== Gallery Page ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    grid-auto-rows: 200px;
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    position: relative;
    transition: all var(--transition);
    background: var(--bg-light);
    border: 1px solid var(--border);
}

.gallery-item:hover {
    box-shadow: var(--shadow-lg);
    transform: scale(1.02);
}

.gallery-item img,
.gallery-item-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 2rem;
    transition: transform var(--transition);
}

.gallery-item img {
    position: relative;
    z-index: 2;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item-placeholder svg {
    width: 40px;
    height: 40px;
    opacity: 0.6;
}

.gallery-item-fallback {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-lighter) 0%, var(--primary-light) 100%);
    color: var(--primary);
    transition: all var(--transition);
    z-index: 1;
}

.fallback-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.fallback-icon {
    width: 48px;
    height: 48px;
    color: var(--primary);
    opacity: 0.4;
    transition: transform var(--transition);
}

.fallback-text {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--primary);
    opacity: 0.65;
}

.gallery-item:hover .fallback-icon {
    transform: translateY(-4px) scale(1.05);
}

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 118, 110, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    opacity: 0;
    transition: all var(--transition);
    font-size: 0.9rem;
    font-weight: 500;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-tall {
    grid-row: span 2;
}

.gallery-item-wide {
    grid-column: span 2;
}

/* ===== Contact Page ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-form {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--dark);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 0.9rem;
    transition: all var(--transition);
    background: var(--bg-white);
    color: var(--text);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-info-icon {
    width: 44px;
    height: 44px;
    background: var(--primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.contact-info-item h4 {
    font-weight: 600;
    color: var(--dark);
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.contact-info-item p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.map-placeholder {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    color: var(--text-muted);
    position: relative;
    overflow: hidden;
    background-image:
        linear-gradient(rgba(15, 118, 110, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 118, 110, 0.06) 1px, transparent 1px);
    background-size: 24px 24px;
}

.map-placeholder svg {
    width: 48px;
    height: 48px;
    color: var(--primary);
    opacity: 0.5;
}

.map-container {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    height: 320px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.map-container:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ===== Footer ===== */
.footer {
    background: linear-gradient(180deg, var(--primary-darker) 0%, #060F1E 100%);
    color: #94A3B8;
    padding: 64px 0 24px;
    margin-top: auto;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand h3 {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-brand p {
    font-size: 0.85rem;
    line-height: 1.7;
    max-width: 300px;
}

.footer h4 {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 0.85rem;
    transition: color var(--transition);
    cursor: pointer;
}

.footer-links a:hover {
    color: #fff;
}

.footer-newsletter input {
    width: 100%;
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 0.85rem;
    outline: none;
    transition: all var(--transition);
    margin-bottom: 10px;
}

.footer-newsletter input::placeholder {
    color: #64748B;
}

.footer-newsletter input:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.45);
}

.footer-bottom a {
    color: rgba(255,255,255,0.6);
    transition: color var(--transition);
}

.footer-bottom a:hover {
    color: #fff;
}

/* ===== Modals ===== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    padding: 20px;
}

.modal-overlay.show,
.modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: #fff;
    border-radius: var(--radius-lg);
    max-width: 520px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 32px;
    box-shadow: var(--shadow-xl);
    transform: scale(0.9) translateY(20px);
    transition: all var(--transition);
    position: relative;
}

.modal-overlay.show .modal,
.modal-overlay.open .modal {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all var(--transition);
    cursor: pointer;
}

.modal-close:hover {
    background: var(--border);
    color: var(--text);
}

.modal h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.modal p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* ===== Lightbox ===== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 4000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    cursor: zoom-out;
    padding: 20px;
}

.lightbox.show,
.lightbox.open {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: default;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content img,
.lightbox-content .lightbox-placeholder {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.lightbox-content svg {
    width: 120px;
    height: 120px;
    color: var(--primary);
    opacity: 0.5;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    transition: all var(--transition);
    z-index: 10;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.lightbox-caption {
    color: #fff;
    text-align: center;
    padding: 12px 20px;
    font-size: 0.9rem;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.6);
    border-radius: var(--radius-full);
    white-space: nowrap;
}

/* ===== Floating WhatsApp ===== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1500;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    transition: all var(--transition);
    cursor: pointer;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.55);
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
}

/* ===== Scroll to Top ===== */
.scroll-top {
    position: fixed;
    bottom: 90px;
    right: 24px;
    z-index: 1400;
    width: 44px;
    height: 44px;
    background: var(--dark);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    cursor: pointer;
}

.scroll-top.show,
.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--primary);
}

/* ===== Toast ===== */
.toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--dark);
    color: #fff;
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 500;
    z-index: 5000;
    box-shadow: var(--shadow-xl);
    transition: all var(--transition-slow);
    display: flex;
    align-items: center;
    gap: 10px;
}

.toast.show {
    transform: translateX(-50%) translateY(0);
}

.toast svg {
    width: 20px;
    height: 20px;
    color: var(--success);
}

/* ===== Scroll Animation ===== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 1100px) {
    .category-grid { grid-template-columns: repeat(3, 1fr); }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .product-grid { grid-template-columns: repeat(3, 1fr); }
    .cert-grid, .brand-grid { grid-template-columns: repeat(3, 1fr); }
    .process-steps { grid-template-columns: repeat(2, 1fr); }
    .partner-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
    .nav-desktop { display: none; }
    .hamburger { display: flex; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .product-detail-grid { grid-template-columns: 1fr; gap: 32px; }
    .partner-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .hero h1 { font-size: 2.4rem; }
    .hero-subtitle { max-width: 100%; }
    .hero-buttons { justify-content: center; }
    .hero-visual { display: none; }

    .trust-bar-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
    }
    .trust-stat:nth-child(2) { border-right: none; }
    .trust-stat:nth-child(1),
    .trust-stat:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.12); }

    .testimonial-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; gap: 32px; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
    .logistics-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .cert-grid, .brand-grid { grid-template-columns: repeat(2, 1fr); }
    .partner-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

@media (max-width: 768px) {
    .product-grid { grid-template-columns: 1fr; gap: 14px; }
    .product-page-hero { padding: 40px 0; }
    .product-page-hero h1 { font-size: 1.8rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .scroll-top { right: 16px; bottom: 80px; }
    .whatsapp-float { right: 16px; bottom: 16px; width: 48px; height: 48px; }
    .whatsapp-float svg { width: 24px; height: 24px; }
    .partner-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .partner-card { padding: 24px 16px; }
}

@media (max-width: 640px) {
    :root { --header-height: 64px; }

    .container { padding: 0 16px; }

    .hero {
        padding: 48px 0 40px;
        min-height: auto;
    }

    .hero h1 { font-size: 1.9rem; letter-spacing: -0.5px; }
    .hero-subtitle { font-size: 0.95rem; }

    .section { padding: 48px 0; }
    .section-header h2 { font-size: 1.6rem; }
    .section-header { margin-bottom: 36px; }

    .category-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .values-grid { grid-template-columns: 1fr; }
    .product-grid { grid-template-columns: 1fr; gap: 12px; }
    .cert-grid, .brand-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .partner-grid { grid-template-columns: 1fr; gap: 14px; }
    .partner-card { flex-direction: row; padding: 20px; gap: 16px; text-align: left; }
    .partner-logo-container { width: 72px; height: 72px; flex-shrink: 0; }
    .partner-logo-container img { max-height: 56px; }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 180px;
    }

    .gallery-item-wide,
    .gallery-item-tall {
        grid-column: span 1;
        grid-row: span 1;
    }

    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; align-items: flex-start; gap: 6px; }
    .process-steps { grid-template-columns: 1fr; }
    .product-toolbar { flex-direction: column; }
    .product-search { max-width: 100%; }
    .trust-stat-number { font-size: 1.8rem; }
    .trust-bar-grid { grid-template-columns: repeat(2, 1fr); }

    .contact-form { padding: 24px 20px; }

    .whatsapp-float {
        bottom: 16px;
        right: 16px;
        width: 48px;
        height: 48px;
    }

    .scroll-top {
        bottom: 76px;
        right: 16px;
        width: 40px;
        height: 40px;
    }

    .product-detail-visual { min-height: 280px; }
    .product-detail-info h1 { font-size: 1.5rem; }
    .modal { padding: 24px 20px; }
    .about-hero h1 { font-size: 1.9rem; }
}

@media (max-width: 380px) {
    .hero h1 { font-size: 1.55rem; }
    .category-grid { grid-template-columns: 1fr; }
    .product-grid { grid-template-columns: 1fr; }
    .cert-grid, .brand-grid { grid-template-columns: 1fr; }
    .partner-grid { grid-template-columns: 1fr; }
    .trust-stat-number { font-size: 1.5rem; }
}

/* ============================================
   Product Detail Page Additions
   ============================================ */

/* Share Button */
.btn-share {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 10px;
    transition: all var(--transition);
    white-space: nowrap;
    background: var(--bg-light);
    color: var(--text-muted);
    border: 1.5px solid var(--border);
    cursor: pointer;
    font-family: inherit;
}

.btn-share:hover {
    background: var(--primary-light);
    color: var(--primary);
    border-color: var(--primary-light);
    transform: translateY(-1px);
}

.btn-share:active {
    transform: scale(0.97);
}

/* Ensure detail page content is visible immediately */
#detailContainer .animate-on-scroll {
    opacity: 1;
    transform: translateY(0);
}

/* Related section header spacing fix */
.related-section .section-header {
    margin-bottom: 40px;
}

/* Detail badge contrast tweak */
.detail-badge {
    z-index: 2;
}

.detail-brand {
    z-index: 2;
}

/* === Team Contact Cards (About Visual Panel) === */
.team-contact-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 16px 18px;
    margin-top: 12px;
    text-align: left;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.team-contact-card:first-of-type {
    margin-top: 0;
}

.team-contact-card:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-md);
}

.team-contact-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.team-contact-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
}

.team-contact-role {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--primary);
    background: var(--primary-light);
    padding: 2px 10px;
    border-radius: var(--radius-full);
}

.team-contact-details {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--text-muted);
    border-top: 1px solid var(--border-light);
    padding-top: 10px;
}

.team-contact-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    transition: color var(--transition);
}

.team-contact-link:hover {
    color: var(--primary);
}

/* === Team Section Styles === */
.team-section {
    background: var(--bg-white);
    padding: 80px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.team-card {
    background: var(--bg-lighter);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.team-image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    background: linear-gradient(135deg, var(--primary-lighter), var(--primary-light));
    overflow: hidden;
}

.team-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    opacity: 0.7;
}

.team-placeholder svg {
    width: 48px;
    height: 48px;
}

.team-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform var(--transition-slow);
}

.team-card:hover .team-img {
    transform: scale(1.05);
}

.team-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.team-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
}

.team-role {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.team-bio {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.team-contact-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    border-top: 1px solid var(--border-light);
    padding-top: 16px;
    font-size: 0.85rem;
    color: var(--text);
}

.team-contact-info span {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Responsive adjustments for team grid */
@media (max-width: 992px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
    .team-section {
        padding: 50px 0;
    }
}