/* ============================================
   ENTEK MEDİKAL - Ana CSS Dosyası
   ============================================ */

:root {
    --primary:     #1a4a8a;
    --primary-dark:#0f2d5c;
    --primary-light:#2563eb;
    --secondary:   #e63946;
    --accent:      #06b6d4;
    --text:        #1e293b;
    --text-light:  #64748b;
    --bg:          #f8fafc;
    --white:       #ffffff;
    --border:      #e2e8f0;
    --shadow:      0 4px 24px rgba(26,74,138,.1);
    --shadow-lg:   0 12px 40px rgba(26,74,138,.18);
    --radius:      12px;
    --transition:  all .3s cubic-bezier(.4,0,.2,1);
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
a:hover { color: var(--primary); }
ul { list-style: none; padding: 0; margin: 0; }

/* ---- TOPBAR ---- */
.topbar {
    background: var(--primary-dark);
    color: rgba(255,255,255,.9);
    padding: 8px 0;
    font-size: .82rem;
    letter-spacing: .02em;
}
.topbar-left a, .topbar-left span {
    color: rgba(255,255,255,.9);
    margin-right: 18px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.topbar-left a:hover { color: var(--accent); }
.topbar-right a {
    color: rgba(255,255,255,.85);
    margin-left: 10px;
    font-size: .88rem;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.2);
    transition: var(--transition);
}
.topbar-right a:hover {
    background: var(--primary-light);
    border-color: var(--primary-light);
    color: white;
}

/* ---- LANGUAGE TOGGLE ---- */
.flag-icon {
    width: 18px;
    height: 12px;
    border-radius: 2px;
    object-fit: cover;
    vertical-align: middle;
    display: inline-block;
}
.topbar-lang-sep {
    color: rgba(255,255,255,.3);
    margin: 0 6px;
    font-size: .8rem;
}
.topbar-lang-btn {
    display: inline-flex !important;
    align-items: center;
    gap: 4px;
    color: rgba(255,255,255,.9) !important;
    font-size: .8rem;
    font-weight: 600;
    padding: 2px 8px !important;
    border-radius: 4px !important;
    border: 1px solid rgba(255,255,255,.25) !important;
    background: rgba(255,255,255,.06) !important;
    width: auto !important;
    height: auto !important;
    margin-left: 4px;
    letter-spacing: .04em;
    transition: var(--transition);
}
.topbar-lang-btn:hover {
    background: rgba(255,255,255,.18) !important;
    border-color: rgba(255,255,255,.5) !important;
    color: white !important;
}
.lang-toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: .8rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
    border: 1px solid var(--border);
    background: var(--bg);
    color: var(--text) !important;
    letter-spacing: .04em;
    transition: var(--transition);
    text-decoration: none;
}
.lang-toggle-btn:hover {
    background: var(--primary);
    color: white !important;
    border-color: var(--primary);
}

/* ---- NAVBAR ---- */
#mainNav {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(26,74,138,.1);
    padding: 12px 0;
    transition: var(--transition);
    z-index: 1000;
}
#mainNav.scrolled {
    padding: 8px 0;
    box-shadow: 0 4px 30px rgba(26,74,138,.15);
}
.navbar-brand .logo-img {
    height: 72px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}
#mainNav.scrolled .logo-img { height: 58px; }
.nav-link {
    font-weight: 500;
    font-size: .93rem;
    color: var(--text) !important;
    padding: 8px 14px !important;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
    border-radius: 2px;
}
.nav-link:hover::after, .nav-link.active::after { width: 60%; }
.nav-link:hover, .nav-link.active { color: var(--primary) !important; }
.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius);
    padding: 10px;
    margin-top: 8px;
    min-width: 220px;
    animation: dropDown .2s ease;
}
@keyframes dropDown { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }
.dropdown-item {
    border-radius: 8px;
    padding: 8px 14px;
    font-size: .88rem;
    color: var(--text);
    transition: var(--transition);
}
.dropdown-item:hover { background: #eff6ff; color: var(--primary); }
.dropdown-item i { color: var(--primary); width: 16px; }
.nav-btn {
    background: var(--primary) !important;
    color: white !important;
    border-radius: 8px !important;
    padding: 8px 20px !important;
    font-weight: 600;
    font-size: .88rem;
    border: none;
    box-shadow: 0 4px 12px rgba(26,74,138,.3);
}
.nav-btn:hover {
    background: var(--primary-dark) !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(26,74,138,.4);
}

/* ---- HERO BUTONLAR (global) ---- */
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-hero-primary {
    background: white;
    color: var(--primary);
    padding: 13px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: .95rem;
    transition: var(--transition);
    box-shadow: 0 8px 24px rgba(0,0,0,.2);
    display: inline-flex;
    align-items: center;
}
.btn-hero-primary:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0,0,0,.3);
}
.btn-hero-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,.7);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: .95rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
}
.btn-hero-outline:hover {
    background: rgba(255,255,255,.15);
    border-color: white;
    color: white;
    transform: translateY(-2px);
}

/* ============================================
   HERO - ANİMASYONLU MEDİKAL HERO
   ============================================ */

.hero-medical {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 90px 0 60px;
}

/* Arka plan */
.hero-bg-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        #051c3f 0%,
        #0f2d5c 30%,
        #1a4a8a 65%,
        #0e7490 100%
    );
    z-index: 0;
}

/* Yüzen ikonlar */
.hero-floating-icons { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.float-icon {
    position: absolute;
    color: rgba(255,255,255,.06);
    font-size: 3.5rem;
    animation: floatUp 12s ease-in-out infinite;
}
.fi-1  { left: 5%;  top: 15%; font-size:3rem;   animation-duration:14s; animation-delay:0s; }
.fi-2  { left: 12%; top: 65%; font-size:2.5rem; animation-duration:11s; animation-delay:2s; }
.fi-3  { left: 80%; top: 10%; font-size:4rem;   animation-duration:16s; animation-delay:1s; }
.fi-4  { left: 88%; top: 55%; font-size:2.8rem; animation-duration:13s; animation-delay:3s; }
.fi-5  { left: 45%; top: 5%;  font-size:3.2rem; animation-duration:15s; animation-delay:1.5s; }
.fi-6  { left: 55%; top: 80%; font-size:3.8rem; animation-duration:12s; animation-delay:4s; }
.fi-7  { left: 25%; top: 85%; font-size:2.2rem; animation-duration:10s; animation-delay:0.5s; }
.fi-8  { left: 72%; top: 75%; font-size:3rem;   animation-duration:17s; animation-delay:2.5s; }

@keyframes floatUp {
    0%,100% { transform: translateY(0) rotate(0deg); opacity:.05; }
    25%      { transform: translateY(-18px) rotate(5deg); opacity:.09; }
    50%      { transform: translateY(-8px) rotate(-3deg); opacity:.06; }
    75%      { transform: translateY(-22px) rotate(4deg); opacity:.08; }
}

/* Dalga */
.hero-wave-top  { position: absolute; top:0; left:0; right:0; z-index:1; line-height:0; }
.hero-wave-top svg { width:100%; height:80px; }
.hero-wave-bottom { position: absolute; bottom:0; left:0; right:0; z-index:2; line-height:0; }
.hero-wave-bottom svg { width:100%; height:60px; display:block; }

.hero-medical-inner { position: relative; z-index: 3; }

/* Sol İçerik */
.hero-text-block { animation: heroSlideIn .9s cubic-bezier(.16,1,.3,1) both; }
@keyframes heroSlideIn { from { opacity:0; transform:translateX(-40px); } to { opacity:1; transform:translateX(0); } }

.hero-tag-line {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.2);
    color: rgba(255,255,255,.9);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 22px;
}
.hero-pulse-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    display: inline-block;
    animation: pulseDot 1.8s ease-in-out infinite;
    flex-shrink: 0;
}
@keyframes pulseDot {
    0%,100% { box-shadow: 0 0 0 0 rgba(34,197,94,.4); }
    50%      { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}

.hero-main-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 2px 30px rgba(0,0,0,.25);
}
.hero-title-accent {
    background: linear-gradient(135deg, #06b6d4, #22d3ee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle-text {
    color: rgba(255,255,255,.8);
    font-size: clamp(.9rem, 1.5vw, 1.05rem);
    line-height: 1.75;
    margin-bottom: 22px;
    max-width: 500px;
}

/* Özellik Chips */
.hero-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 4px; }
.hero-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.18);
    color: rgba(255,255,255,.9);
    padding: 5px 14px;
    border-radius: 50px;
    font-size: .78rem;
    font-weight: 500;
    transition: var(--transition);
}
.hero-chip i { color: #22d3ee; font-size: .7rem; }
.hero-chip:hover { background: rgba(255,255,255,.18); }

/* Hızlı iletişim */
.hero-quick-contact {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 28px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 14px;
    padding: 12px 20px;
    backdrop-filter: blur(8px);
}
.hqc-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: .9rem;
    flex-shrink: 0;
}
.hqc-label { font-size: .7rem; color: rgba(255,255,255,.6); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
.hqc-number { color: white; font-weight: 700; font-size: .95rem; text-decoration: none; display: block; }
.hqc-number:hover { color: #22d3ee; }

/* ---- HERO VİZÜEL PANEL ---- */
.hero-visual-panel {
    position: relative;
    width: 100%;
    height: 500px;
    animation: heroFadeIn 1s .3s cubic-bezier(.16,1,.3,1) both;
}
@keyframes heroFadeIn { from { opacity:0; transform:translateX(40px); } to { opacity:1; transform:translateX(0); } }

/* Merkez */
.hvp-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
}
.hvp-rings { position: absolute; top:50%; left:50%; transform:translate(-50%,-50%); }
.hvp-ring {
    position: absolute;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,.12);
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    animation: ringPulse 3s ease-in-out infinite;
}
.hvp-ring.r1 { width:140px; height:140px; animation-delay:0s; }
.hvp-ring.r2 { width:200px; height:200px; animation-delay:.5s; border-color:rgba(6,182,212,.2); }
.hvp-ring.r3 { width:270px; height:270px; animation-delay:1s; border-color:rgba(6,182,212,.1); }
@keyframes ringPulse {
    0%,100% { transform:translate(-50%,-50%) scale(1); opacity:.7; }
    50%      { transform:translate(-50%,-50%) scale(1.04); opacity:1; }
}

.hvp-logo-wrap {
    width: 120px;
    height: 120px;
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(16px);
    border: 2px solid rgba(255,255,255,.3);
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 40px rgba(0,0,0,.3), inset 0 1px 0 rgba(255,255,255,.2);
    position: relative;
}

/* Medikal Haç İkonu */
.hvp-cross-icon {
    position: relative;
    width: 52px;
    height: 52px;
}
.hvp-cross-v, .hvp-cross-h {
    position: absolute;
    background: linear-gradient(135deg, #06b6d4, #38bdf8);
    border-radius: 4px;
}
.hvp-cross-v {
    width: 16px;
    height: 52px;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}
.hvp-cross-h {
    width: 52px;
    height: 16px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

/* Kategori Kartları - Görsel Destekli */
.hvp-cat-card {
    position: absolute;
    overflow: hidden;
    border-radius: 14px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: .8rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 8px 28px rgba(0,0,0,.35);
    animation: cardFloat 4s ease-in-out infinite;
    transition: var(--transition);
    z-index: 4;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,.2);
    background: rgba(15,45,92,.75);
    backdrop-filter: blur(10px);
    min-width: 140px;
}
.hvp-cat-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: .35;
    transition: opacity .4s;
    z-index: 0;
}
.hvp-cat-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,30,70,.8) 0%, rgba(6,182,212,.25) 100%);
    z-index: 1;
}
.hvp-cat-card:hover { transform: translateY(-4px) scale(1.03) !important; box-shadow: 0 14px 36px rgba(0,0,0,.45); }
.hvp-cat-card:hover .hvp-cat-img { opacity: .55; }
.hvp-cat-icon {
    width: 34px;
    height: 34px;
    background: linear-gradient(135deg, rgba(6,182,212,.6), rgba(37,99,235,.5));
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(255,255,255,.2);
}
.hvp-cat-card > span {
    position: relative;
    z-index: 2;
    text-shadow: 0 1px 4px rgba(0,0,0,.5);
}

/* Kart pozisyonları */
.hvp-card-tl { top: 5%;  left: 0%;   animation-delay: 0s;    animation-duration:4.5s; }
.hvp-card-tc { top: 0%;  left: 35%;  animation-delay: 0.8s;  animation-duration:5s; }
.hvp-card-tr { top: 5%;  right: 0%;  animation-delay: 1.6s;  animation-duration:4.2s; }
.hvp-card-bl { bottom: 8%; left: 0%;  animation-delay: 0.4s;  animation-duration:5.5s; }
.hvp-card-bc { bottom: 2%; left: 32%; animation-delay: 1.2s;  animation-duration:4.8s; }
.hvp-card-br { bottom: 8%; right: 0%; animation-delay: 2s;    animation-duration:4s; }

@keyframes cardFloat {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(-8px); }
}

/* ---- STATS BAR ---- */
.stats-bar {
    background: var(--primary);
    padding: 24px 0;
}
.stat-item {
    text-align: center;
    color: white;
    padding: 8px 20px;
    border-right: 1px solid rgba(255,255,255,.2);
}
.stat-item:last-child { border-right: none; }
.stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    color: var(--accent);
}
.stat-label { font-size: .83rem; opacity: .85; margin-top: 4px; }

/* ---- SECTION STYLES ---- */
section { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-badge {
    display: inline-block;
    background: #eff6ff;
    color: var(--primary);
    padding: 5px 16px;
    border-radius: 50px;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 14px;
    border: 1px solid #bfdbfe;
}
.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 14px;
    line-height: 1.25;
}
.section-title span { color: var(--primary); }
.section-subtitle {
    font-size: .95rem;
    color: var(--text-light);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}
.section-line {
    width: 56px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 4px;
    margin: 16px auto 0;
}

/* ---- SERVICES ---- */
.services-section { background: var(--bg); }
.service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px 28px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: var(--transition);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.6rem;
    color: var(--primary);
    transition: var(--transition);
}
.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
}
.service-card h5 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text);
}
.service-card p { font-size: .88rem; color: var(--text-light); line-height: 1.6; }

/* ---- CATEGORIES / PRODUCTS ---- */
.category-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: block;
    height: 280px;
    background: var(--primary-dark);
}
.category-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
    opacity: .75;
}
.category-card:hover img { transform: scale(1.07); opacity: .6; }
.category-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,45,92,.9) 0%, rgba(15,45,92,.3) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px 20px;
    transition: var(--transition);
}
.category-card-overlay .cat-icon {
    width: 46px;
    height: 46px;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    margin-bottom: 10px;
    border: 1px solid rgba(255,255,255,.2);
}
.category-card-overlay h5 {
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 4px;
}
.category-card-overlay p { color: rgba(255,255,255,.8); font-size: .8rem; margin: 0; }
.category-card-overlay .cat-btn {
    margin-top: 12px;
    opacity: 0;
    transform: translateY(8px);
    transition: var(--transition);
}
.category-card:hover .cat-btn { opacity: 1; transform: translateY(0); }

/* ---- PRODUCT CARD ---- */
.product-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    height: 100%;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-card-img {
    position: relative;
    height: 220px;
    background: #f1f5f9;
    overflow: hidden;
}
.product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.05); }
.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary);
    color: white;
    font-size: .72rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 50px;
}
.product-card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.product-card-body .cat-label {
    font-size: .75rem;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: 8px;
}
.product-card-body h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: .95rem;
    color: var(--text);
    margin-bottom: 10px;
    line-height: 1.4;
    flex: 1;
}
.product-card-body p {
    font-size: .83rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 16px;
}
.btn-detail {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #eff6ff;
    color: var(--primary);
    padding: 8px 18px;
    border-radius: 8px;
    font-size: .83rem;
    font-weight: 600;
    transition: var(--transition);
    border: 1px solid #bfdbfe;
}
.btn-detail:hover { background: var(--primary); color: white; }

/* No image placeholder */
.no-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    color: var(--primary);
    font-size: 3rem;
}
.no-image-placeholder span {
    font-size: .75rem;
    font-weight: 600;
    margin-top: 8px;
    opacity: .7;
}

/* ---- ABOUT SECTION ---- */
.about-section { background: var(--bg); padding: 90px 0; }
.about-visual-wrap {
    position: relative;
}
.about-carousel {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(26,74,138,.15);
}
.about-carousel-track { position: relative; height: 420px; }
.about-carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .6s ease;
}
.about-carousel-slide.active { opacity: 1; z-index: 1; }
.about-carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.about-slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 24px;
    background: linear-gradient(transparent, rgba(0,0,0,.65));
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: .95rem;
}
.about-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,.9);
    color: var(--primary);
    font-size: .9rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0,0,0,.15);
}
.about-carousel-btn:hover { background: var(--primary); color: white; }
.about-carousel-btn.prev { left: 14px; }
.about-carousel-btn.next { right: 14px; }
.about-carousel-dots {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}
.about-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,.5);
    cursor: pointer;
    transition: var(--transition);
}
.about-dot.active {
    background: white;
    width: 28px;
    border-radius: 5px;
}
.about-img-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary);
    color: white;
    padding: 16px 22px;
    border-radius: var(--radius);
    text-align: center;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(26,74,138,.3);
}
.about-img-badge .badge-num {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    display: block;
    line-height: 1;
}
.about-img-badge small { font-size: .75rem; opacity: .85; }
.about-stats-row {
    display: flex;
    gap: 16px;
    position: absolute;
    bottom: 0;
    left: 0;
}
.about-mini-stat {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 14px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(26,74,138,.1);
}
.about-mini-stat i {
    font-size: 1.3rem;
    color: var(--primary);
    width: 40px;
    height: 40px;
    background: rgba(26,74,138,.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-mini-stat strong {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.1;
}
.about-mini-stat span {
    font-size: .75rem;
    color: var(--text-light);
}
.about-content { padding-left: 20px; }
@media (max-width: 991.98px) {
    .about-visual-wrap { margin-bottom: 30px; }
    .about-carousel-track { height: 300px; }
    .about-stats-row { position: relative; bottom: auto; margin-top: 16px; }
    .about-content { padding-left: 0; }
}
.about-feature-list li {
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
    align-items: flex-start;
}
.about-feature-list .feat-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: .95rem;
    flex-shrink: 0;
    margin-top: 2px;
}
.about-feature-list .feat-text h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: .95rem;
    margin-bottom: 3px;
    color: var(--text);
}
.about-feature-list .feat-text p { font-size: .83rem; color: var(--text-light); margin: 0; }

/* ---- CTA SECTION ---- */
.cta-section {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: white;
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3z' fill='%23ffffff' fill-opacity='0.04' fill-rule='evenodd'/%3E%3C/svg%3E");
}
.cta-content { position: relative; z-index: 1; }
.cta-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    margin-bottom: 14px;
}
.cta-section p { opacity: .88; margin-bottom: 32px; font-size: .95rem; }
.btn-cta {
    background: white;
    color: var(--primary);
    padding: 13px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: .9rem;
    transition: var(--transition);
    box-shadow: 0 6px 20px rgba(0,0,0,.2);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-cta:hover { background: var(--accent); color: white; transform: translateY(-2px); }
.btn-cta-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,.5);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: .9rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-cta-outline:hover { border-color: white; background: rgba(255,255,255,.1); color: white; }

/* ---- BLOG CARDS ---- */
.blog-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    height: 100%;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-card-img {
    height: 200px;
    overflow: hidden;
    background: #f1f5f9;
}
.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.blog-meta { display: flex; gap: 14px; font-size: .78rem; color: var(--text-light); margin-bottom: 12px; }
.blog-meta span { display: flex; align-items: center; gap: 4px; }
.blog-card-body h5 {
    font-family: 'Poppins', sans-serif;
    font-size: .98rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text);
    line-height: 1.4;
    flex: 1;
}
.blog-card-body p { font-size: .83rem; color: var(--text-light); line-height: 1.6; margin-bottom: 16px; }
.read-more {
    color: var(--primary);
    font-weight: 600;
    font-size: .83rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}
.read-more:hover { gap: 10px; color: var(--primary-dark); }

/* ---- REFERENCES ---- */
.references-section { background: var(--bg); }
.reference-item {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px 20px;
    text-align: center;
    font-weight: 600;
    color: var(--text-light);
    border: 1px solid var(--border);
    transition: var(--transition);
    font-size: .9rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 130px;
}
.reference-item:hover { border-color: var(--primary); color: var(--primary); box-shadow: var(--shadow); }
.reference-name {
    display: block;
    font-size: .8rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.3;
}

/* ---- PAGE HERO ---- */
.page-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--accent) 100%);
    color: white;
    padding: 70px 0 60px;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    margin-bottom: 10px;
}
.page-hero p { opacity: .88; font-size: .95rem; margin: 0; }
.breadcrumb { background: none; padding: 0; margin: 14px 0 0; }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.5); }
.breadcrumb-item a { color: rgba(255,255,255,.8); text-decoration: none; }
.breadcrumb-item a:hover { color: white; }
.breadcrumb-item.active { color: rgba(255,255,255,.7); }

/* ---- PAGE HERO IMAGE ---- */
.page-hero-image {
    text-align: center;
    position: relative;
    z-index: 1;
}
.page-hero-image img {
    max-height: 280px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,.25));
    animation: heroFloat 3s ease-in-out infinite;
}
.page-hero-placeholder {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    background: rgba(255,255,255,.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,.15);
}
.page-hero-placeholder i {
    font-size: 4rem;
    color: rgba(255,255,255,.6);
}
@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* ---- REPAIR SERVICE ROWS ---- */
.repair-service-row {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 50px;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(26,74,138,.08);
    border: 1px solid rgba(26,74,138,.06);
    transition: var(--transition);
}
.repair-service-row:last-child { margin-bottom: 0; }
.repair-service-row:hover {
    box-shadow: 0 12px 40px rgba(26,74,138,.15);
    transform: translateY(-4px);
}
.repair-service-row.reverse { flex-direction: row-reverse; }
.repair-service-img {
    flex: 0 0 45%;
    max-width: 45%;
    position: relative;
    overflow: hidden;
    min-height: 300px;
}
.repair-service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    transition: transform .5s ease;
}
.repair-service-row:hover .repair-service-img img {
    transform: scale(1.05);
}
.repair-service-icon-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(26,74,138,.3);
    z-index: 2;
}
.repair-service-row.reverse .repair-service-icon-badge {
    left: auto;
    right: 16px;
}
.repair-service-content {
    flex: 1;
    padding: 40px;
}
.repair-service-content h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--text);
    margin-bottom: 14px;
}
.repair-service-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: .93rem;
}
@media (max-width: 991.98px) {
    .repair-service-row,
    .repair-service-row.reverse {
        flex-direction: column;
    }
    .repair-service-img {
        flex: 0 0 auto;
        max-width: 100%;
        width: 100%;
        min-height: 220px;
    }
    .repair-service-content { padding: 28px; }
}

/* ---- TECHNICAL SERVICE SECTION ---- */
.technical-service-section {
    padding: 90px 0;
    background: linear-gradient(135deg, #f0f7ff 0%, #f8fafc 50%, #eef6ff 100%);
    position: relative;
    overflow: hidden;
}
.technical-service-section::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(26,74,138,.06) 0%, transparent 70%);
    border-radius: 50%;
}
.ts-features { margin-top: 10px; }
.ts-feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 18px 0;
    border-bottom: 1px solid rgba(26,74,138,.08);
}
.ts-feature-item:last-child { border-bottom: none; }
.ts-feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(26,74,138,.2);
}
.ts-feature-text h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: .95rem;
    margin-bottom: 4px;
    color: var(--text);
}
.ts-feature-text p {
    font-size: .85rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}
.ts-visual-panel { position: relative; }
.ts-stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}
.ts-stat-card {
    background: white;
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(26,74,138,.08);
    border: 1px solid rgba(26,74,138,.06);
    transition: var(--transition);
}
.ts-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(26,74,138,.15);
}
.ts-stat-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 14px;
    background: linear-gradient(135deg, rgba(26,74,138,.08), rgba(37,99,235,.08));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.3rem;
}
.ts-stat-num {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 6px;
}
.ts-stat-label {
    font-size: .8rem;
    color: var(--text-light);
    font-weight: 500;
}
.ts-cta-banner {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    border-radius: 16px;
    padding: 24px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: white;
}
.ts-cta-content {
    display: flex;
    align-items: center;
    gap: 16px;
}
.ts-cta-content > i {
    font-size: 2rem;
    opacity: .8;
}
.ts-cta-content h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: .95rem;
    margin: 0 0 4px;
    color: white;
}
.ts-cta-content p {
    font-size: .8rem;
    margin: 0;
    opacity: .75;
}
.ts-cta-btn {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: rgba(255,255,255,.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    transition: var(--transition);
    text-decoration: none;
}
.ts-cta-btn:hover {
    background: rgba(255,255,255,.3);
    color: white;
    transform: translateX(4px);
}
@media (max-width: 767.98px) {
    .technical-service-section { padding: 60px 0; }
    .ts-stat-grid { gap: 12px; }
    .ts-stat-card { padding: 20px 14px; }
    .ts-stat-num { font-size: 1.6rem; }
    .ts-cta-banner { flex-direction: column; text-align: center; }
    .ts-cta-content { flex-direction: column; }
}

/* ---- CONTACT PAGE ---- */
.contact-info-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    margin-bottom: 20px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    transition: var(--transition);
}
.contact-info-card:hover { box-shadow: var(--shadow-lg); }
.contact-info-card .ci-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.contact-info-card .ci-body h6 {
    font-weight: 600;
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--text-light);
    margin-bottom: 4px;
}
.contact-info-card .ci-body a,
.contact-info-card .ci-body p {
    font-size: .95rem;
    color: var(--text);
    font-weight: 500;
    margin: 0;
}
.contact-info-card .ci-body a:hover { color: var(--primary); }
.contact-form-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}
.form-control, .form-select {
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 11px 14px;
    font-size: .9rem;
    color: var(--text);
    transition: var(--transition);
    background: #f8fafc;
}
.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26,74,138,.12);
    background: white;
}
.form-label { font-weight: 500; font-size: .88rem; color: var(--text); margin-bottom: 6px; }
.btn-submit {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    padding: 13px 36px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: .95rem;
    transition: var(--transition);
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(26,74,138,.3);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(26,74,138,.4); }

/* ---- ALERTS ---- */
.alert { border-radius: var(--radius); border: none; padding: 14px 18px; font-size: .9rem; }
.alert-success { background: #f0fdf4; color: #15803d; border-left: 4px solid #22c55e; }
.alert-danger { background: #fef2f2; color: #b91c1c; border-left: 4px solid #ef4444; }
.alert-info { background: #eff6ff; color: var(--primary); border-left: 4px solid var(--primary); }

/* ---- FOOTER ---- */
.footer { background: #0f172a; }
.footer-main { padding: 70px 0 50px; }
.footer-widget {}
.footer-logo { height: 54px; width: auto; mix-blend-mode: lighten; opacity: .92; }
.footer-desc { font-size: .87rem; color: rgba(255,255,255,.6); line-height: 1.7; margin-bottom: 20px; }
.footer-title {
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: .95rem;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255,255,255,.1);
}
.footer-links li { margin-bottom: 8px; }
.footer-links a {
    color: rgba(255,255,255,.6);
    font-size: .87rem;
    display: flex;
    align-items: center;
    gap: 7px;
    transition: var(--transition);
}
.footer-links a i { font-size: .65rem; color: var(--accent); }
.footer-links a:hover { color: white; padding-left: 4px; }
.footer-contact li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 14px;
}
.footer-contact li i {
    color: var(--accent);
    font-size: .9rem;
    margin-top: 3px;
    flex-shrink: 0;
}
.footer-contact li span, .footer-contact li a {
    font-size: .87rem;
    color: rgba(255,255,255,.7);
    line-height: 1.5;
}
.footer-contact li a:hover { color: white; }
.footer-social { display: flex; gap: 8px; }
.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.7);
    font-size: .85rem;
    transition: var(--transition);
}
.footer-social a:hover { background: var(--primary); border-color: var(--primary); color: white; }
.btn-whatsapp {
    background: #25D366;
    color: white;
    padding: 9px 18px;
    border-radius: 50px;
    font-size: .82rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}
.btn-whatsapp:hover { background: #1fba5a; color: white; transform: translateY(-1px); }
.footer-bottom {
    background: rgba(0,0,0,.3);
    border-top: 1px solid rgba(255,255,255,.06);
    padding: 18px 0;
}
.footer-bottom p { color: rgba(255,255,255,.5); font-size: .82rem; margin: 0; }

/* ---- FLOATING BUTTONS ---- */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.6rem;
    box-shadow: 0 6px 20px rgba(37,211,102,.4);
    transition: var(--transition);
    animation: pulse 2.5s infinite;
}
.whatsapp-float:hover { transform: scale(1.12); color: white; box-shadow: 0 8px 28px rgba(37,211,102,.5); }
@keyframes pulse {
    0%,100% { box-shadow: 0 6px 20px rgba(37,211,102,.4); }
    50% { box-shadow: 0 6px 20px rgba(37,211,102,.4), 0 0 0 8px rgba(37,211,102,.12); }
}
.scroll-top {
    position: fixed;
    bottom: 90px;
    right: 24px;
    z-index: 999;
    width: 42px;
    height: 42px;
    background: var(--primary);
    border: none;
    border-radius: 10px;
    color: white;
    font-size: .9rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 14px rgba(26,74,138,.3);
    display: flex;
    align-items: center;
    justify-content: center;
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--primary-dark); transform: translateY(-2px); }

/* ---- UTILITIES ---- */
.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    padding: 10px 26px;
    border-radius: 50px;
    font-weight: 600;
    font-size: .88rem;
    transition: var(--transition);
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 14px rgba(26,74,138,.3);
}
.btn-primary-custom:hover { color: white; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,74,138,.4); }
.btn-outline-custom {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 9px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: .88rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.btn-outline-custom:hover { background: var(--primary); color: white; }
.text-primary-custom { color: var(--primary) !important; }
.bg-primary-custom { background: var(--primary) !important; }
.badge-primary { background: var(--primary); color: white; }

/* ---- SEARCH & FILTER ---- */
.filter-bar {
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    margin-bottom: 32px;
}
.filter-bar .form-control,
.filter-bar .form-select {
    border-radius: 8px;
}
.category-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 16px;
    border-radius: 50px;
    font-size: .83rem;
    font-weight: 500;
    border: 1.5px solid var(--border);
    color: var(--text-light);
    background: white;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}
.category-filter-btn:hover, .category-filter-btn.active {
    border-color: var(--primary);
    color: var(--primary);
    background: #eff6ff;
}

/* ---- BREADCRUMB ---- */
.page-breadcrumb {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
}
.page-breadcrumb .breadcrumb { margin: 0; }
.page-breadcrumb .breadcrumb-item { font-size: .85rem; }
.page-breadcrumb .breadcrumb-item a { color: var(--primary); }
.page-breadcrumb .breadcrumb-item.active { color: var(--text-light); }
.page-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: var(--border); }

/* ---- PRODUCT DETAIL ---- */
.product-detail-img {
    border-radius: var(--radius);
    overflow: hidden;
    background: #f1f5f9;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-detail-img img { width: 100%; height: 100%; object-fit: contain; }
.product-spec-table { border-radius: var(--radius); overflow: hidden; }
.product-spec-table th {
    background: #eff6ff;
    color: var(--primary);
    font-weight: 600;
    font-size: .88rem;
    width: 35%;
}
.product-spec-table td { font-size: .88rem; }

/* ---- RESPONSIVE ---- */
@media (max-width: 991px) {
    .about-content { padding-left: 0; margin-top: 32px; }
    section { padding: 60px 0; }
    .hero-medical { padding: 70px 0 50px; min-height: auto; }
    .hero-visual-panel { display: none; }
}
@media (max-width: 767px) {
    .topbar { display: none; }
    .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.2); padding: 14px; }
    section { padding: 50px 0; }
    .contact-form-card { padding: 24px 18px; }
    .hero-medical { padding: 60px 0 40px; }
    .hero-main-title { font-size: 1.7rem; }
    .hero-quick-contact { flex-wrap: wrap; }
}
@media (max-width: 575px) {
    .hero-btns { flex-direction: column; align-items: flex-start; }
    .category-card { height: 220px; }
    .footer-main { padding: 50px 0 36px; }
    .hero-chips { display: none; }
}
