/* ============================================================
   ACİL İLKYARDIM EĞİTİM MERKEZİ — Premium Tema (site.css)
   Kendi kendine yeten modern tasarım sistemi.
   ============================================================ */

/* ---------- Design Tokens ---------- */
:root {
    --primary: #e63946;
    --primary-dark: #c1121f;
    --primary-soft: #fff1f2;
    --ink: #0f1b2d;
    --ink-2: #16243a;
    --text: #334155;
    --text-light: #64748b;
    --heading: #0f1b2d;
    --bg: #ffffff;
    --bg-soft: #f6f8fc;
    --bg-soft-2: #eef2f9;
    --border: #e6eaf2;
    --white: #fff;
    --radius: 18px;
    --radius-sm: 12px;
    --shadow-sm: 0 1px 2px rgba(15,27,45,.06), 0 4px 14px rgba(15,27,45,.05);
    --shadow: 0 10px 30px rgba(15,27,45,.08);
    --shadow-lg: 0 24px 60px rgba(15,27,45,.16);
    --maxw: 1200px;
    --ease: cubic-bezier(.4,0,.2,1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    color: var(--heading);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -.02em;
}

a { color: var(--primary); text-decoration: none; transition: color .2s var(--ease); }
img { max-width: 100%; display: block; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-sm { padding: 70px 0; }
.bg-soft { background: var(--bg-soft); }
.text-center { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; gap: 10px; justify-content: center;
    padding: 15px 30px; border-radius: 999px; font-weight: 700; font-size: 15px;
    border: 0; cursor: pointer; transition: all .25s var(--ease); line-height: 1;
    font-family: 'Plus Jakarta Sans', sans-serif; white-space: nowrap;
}
.btn i { font-size: 14px; transition: transform .25s var(--ease); }
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 10px 24px rgba(230,57,70,.32); }
.btn-primary:hover { background: var(--primary-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 16px 32px rgba(230,57,70,.4); }
.btn-primary:hover i { transform: translateX(4px); }
.btn-light { background: #fff; color: var(--ink); box-shadow: var(--shadow-sm); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow); color: var(--primary); }
.btn-outline { background: transparent; color: var(--ink); border: 2px solid var(--border); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.btn-ghost-light { background: rgba(255,255,255,.12); color: #fff; border: 1px solid rgba(255,255,255,.25); backdrop-filter: blur(6px); }
.btn-ghost-light:hover { background: rgba(255,255,255,.22); color: #fff; transform: translateY(-2px); }
.btn-lg { padding: 17px 36px; font-size: 16px; }

/* ---------- Section Heading ---------- */
.eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--primary); font-weight: 700; font-size: 13px;
    text-transform: uppercase; letter-spacing: .12em;
    background: var(--primary-soft); padding: 7px 16px; border-radius: 999px; margin-bottom: 18px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.section-head { max-width: 680px; margin: 0 auto 60px; text-align: center; }
.section-head h2 { font-size: clamp(28px, 4vw, 44px); margin-bottom: 16px; }
.section-head p { color: var(--text-light); font-size: 17px; }
.section-head.left { margin-left: 0; text-align: left; }

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
    background: var(--ink); color: #cbd5e1; font-size: 14px;
    padding: 10px 0;
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.topbar .tb-info { display: flex; gap: 26px; flex-wrap: wrap; }
.topbar .tb-info a, .topbar .tb-info span { color: #cbd5e1; display: inline-flex; align-items: center; gap: 8px; }
.topbar .tb-info i { color: var(--primary); }
.topbar .tb-social { display: flex; gap: 10px; }
.topbar .tb-social a {
    width: 30px; height: 30px; border-radius: 50%; background: rgba(255,255,255,.1);
    display: grid; place-items: center; color: #fff; font-size: 13px; transition: background .2s;
}
.topbar .tb-social a:hover { background: var(--primary); }

/* ============================================================
   NAVBAR
   ============================================================ */
.site-header { position: sticky; top: 0; z-index: 900; }
.navbar {
    background: rgba(255,255,255,.92); backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow .3s var(--ease);
}
.navbar.scrolled { box-shadow: 0 6px 24px rgba(15,27,45,.08); }
.navbar .container { display: flex; align-items: center; justify-content: space-between; height: 84px; }
.navbar-brand img { height: 52px; width: auto; }
.nav-menu { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-menu > li { position: relative; }
.nav-menu > li > a {
    display: flex; align-items: center; gap: 6px;
    padding: 12px 16px; color: var(--ink); font-weight: 600; font-size: 15px;
    border-radius: 10px; transition: all .2s var(--ease);
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.nav-menu > li > a:hover, .nav-menu > li.active > a { color: var(--primary); background: var(--primary-soft); }
.nav-menu .has-dropdown > a .caret { font-size: 11px; transition: transform .2s; }
.nav-menu .has-dropdown:hover > a .caret { transform: rotate(180deg); }

.dropdown {
    position: absolute; top: calc(100% + 10px); left: 0; min-width: 250px;
    background: #fff; border-radius: 14px; box-shadow: var(--shadow-lg);
    border: 1px solid var(--border); padding: 10px; list-style: none;
    opacity: 0; visibility: hidden; transform: translateY(10px); transition: all .25s var(--ease);
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown li a {
    display: block; padding: 11px 14px; color: var(--text); font-weight: 500; font-size: 14.5px;
    border-radius: 9px; transition: all .2s;
}
.dropdown li a:hover { background: var(--bg-soft); color: var(--primary); padding-left: 18px; }

.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; background: none; border: 0; font-size: 26px; color: var(--ink); cursor: pointer; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; background: var(--ink); overflow: hidden; }
.hero-slides { position: relative; min-height: 640px; }
.hero-slide {
    position: absolute; inset: 0; opacity: 0; visibility: hidden;
    transition: opacity 1s var(--ease); display: flex; align-items: center;
}
.hero-slide.active { opacity: 1; visibility: visible; }
.hero-slide .hero-bg {
    position: absolute; inset: 0; background-size: cover; background-position: center;
    transform: scale(1.08); transition: transform 7s linear;
}
.hero-slide.active .hero-bg { transform: scale(1); }
.hero-slide::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(100deg, rgba(15,27,45,.92) 0%, rgba(15,27,45,.7) 45%, rgba(15,27,45,.25) 100%);
}
.hero-content { position: relative; z-index: 3; max-width: 640px; padding: 60px 0; }
.hero-content .eyebrow { background: rgba(230,57,70,.18); color: #fff; }
.hero-content h1 { color: #fff; font-size: clamp(34px, 5.2vw, 60px); margin-bottom: 22px; }
.hero-content h1 span { color: var(--primary); }
.hero-content p { color: #cbd5e1; font-size: 18px; margin-bottom: 32px; max-width: 540px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-dots { position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%); z-index: 4; display: flex; gap: 10px; }
.hero-dots button { width: 11px; height: 11px; border-radius: 50%; border: 0; background: rgba(255,255,255,.4); cursor: pointer; transition: all .3s; padding: 0; }
.hero-dots button.active { background: var(--primary); width: 32px; border-radius: 6px; }
.hero-arrow {
    position: absolute; top: 50%; transform: translateY(-50%); z-index: 4;
    width: 52px; height: 52px; border-radius: 50%; border: 0; cursor: pointer;
    background: rgba(255,255,255,.12); color: #fff; font-size: 18px; backdrop-filter: blur(6px);
    transition: background .2s; display: grid; place-items: center;
}
.hero-arrow:hover { background: var(--primary); }
.hero-arrow.prev { left: 28px; } .hero-arrow.next { right: 28px; }

/* Quick info bar under hero */
.quick-bar { background: var(--primary); }
.quick-bar .container { display: grid; grid-template-columns: repeat(3, 1fr); }
.quick-item { display: flex; align-items: center; gap: 16px; padding: 28px 24px; color: #fff; }
.quick-item + .quick-item { border-left: 1px solid rgba(255,255,255,.18); }
.quick-item i { font-size: 30px; opacity: .9; }
.quick-item b { display: block; font-size: 16px; font-family: 'Plus Jakarta Sans'; }
.quick-item span { font-size: 14px; color: rgba(255,255,255,.85); }

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-media { position: relative; }
.about-media img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; }
.about-media .badge-float {
    position: absolute; bottom: -26px; right: -10px; background: #fff; border-radius: 16px;
    box-shadow: var(--shadow-lg); padding: 22px 26px; display: flex; align-items: center; gap: 16px;
}
.about-media .badge-float .num { font-size: 34px; font-weight: 800; color: var(--primary); font-family: 'Plus Jakarta Sans'; line-height: 1; }
.about-media .badge-float small { color: var(--text-light); font-weight: 600; }
.about-text h2 { font-size: clamp(26px, 3.5vw, 40px); margin-bottom: 20px; }
.about-text p { margin-bottom: 18px; }
.about-list { list-style: none; margin-top: 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.about-list li { display: flex; align-items: center; gap: 10px; font-weight: 600; color: var(--ink); }
.about-list li i { color: var(--primary); background: var(--primary-soft); width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; font-size: 12px; }

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card {
    background: #fff; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border);
    box-shadow: var(--shadow-sm); transition: all .3s var(--ease); display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card .sc-media { position: relative; height: 220px; overflow: hidden; }
.service-card .sc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.service-card:hover .sc-media img { transform: scale(1.08); }
.service-card .sc-icon {
    position: absolute; bottom: -24px; left: 24px; width: 56px; height: 56px; border-radius: 14px;
    background: var(--primary); color: #fff; display: grid; place-items: center; font-size: 24px;
    box-shadow: 0 10px 24px rgba(230,57,70,.4);
}
.service-card .sc-body { padding: 38px 26px 28px; flex: 1; display: flex; flex-direction: column; }
.service-card .sc-body h3 { font-size: 20px; margin-bottom: 12px; }
.service-card .sc-body p {
    color: var(--text-light); font-size: 14.5px; margin-bottom: 20px; flex: 1;
    display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden;
}
.service-card .sc-link { color: var(--primary); font-weight: 700; display: inline-flex; align-items: center; gap: 8px; font-size: 14.5px; font-family: 'Plus Jakarta Sans'; }
.service-card .sc-link i { transition: transform .25s; }
.service-card:hover .sc-link i { transform: translateX(5px); }

/* ============================================================
   WHY US / FEATURES
   ============================================================ */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.feature-card {
    background: #fff; border-radius: var(--radius); padding: 34px 30px; border: 1px solid var(--border);
    transition: all .3s var(--ease); position: relative; overflow: hidden;
}
.feature-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: var(--primary); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease); }
.feature-card:hover { box-shadow: var(--shadow); transform: translateY(-5px); }
.feature-card:hover::before { transform: scaleX(1); }
.feature-card .fc-ic { width: 60px; height: 60px; border-radius: 16px; background: var(--primary-soft); color: var(--primary); display: grid; place-items: center; font-size: 26px; margin-bottom: 22px; transition: all .3s; }
.feature-card:hover .fc-ic { background: var(--primary); color: #fff; }
.feature-card h3 { font-size: 19px; margin-bottom: 12px; }
.feature-card p { color: var(--text-light); font-size: 14.5px; }

/* ============================================================
   STATS
   ============================================================ */
.stats-band { background: var(--ink); position: relative; overflow: hidden; }
.stats-band::before { content: ''; position: absolute; top: -50%; right: -10%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(230,57,70,.25), transparent 70%); }
.stats-grid2 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; position: relative; z-index: 2; }
.stat-box { text-align: center; color: #fff; }
.stat-box .num { font-size: 48px; font-weight: 800; font-family: 'Plus Jakarta Sans'; color: #fff; line-height: 1; }
.stat-box .num span { color: var(--primary); }
.stat-box p { color: #94a3b8; margin-top: 10px; font-weight: 500; }

/* ============================================================
   PAGE BANNER (inner pages)
   ============================================================ */
.page-banner { position: relative; background: linear-gradient(120deg, var(--ink) 0%, var(--ink-2) 100%); padding: 80px 0; overflow: hidden; }
.page-banner::before { content: ''; position: absolute; inset: 0; opacity: .5;
    background-image: radial-gradient(rgba(255,255,255,.06) 1.5px, transparent 1.5px);
    background-size: 22px 22px; }
.page-banner::after { content: ''; position: absolute; top: -40%; right: -5%; width: 460px; height: 460px; background: radial-gradient(circle, rgba(230,57,70,.3), transparent 70%); }
.page-banner .container { position: relative; z-index: 2; }
.page-banner h1 { color: #fff; font-size: clamp(30px, 4.5vw, 48px); margin-bottom: 14px; }
.breadcrumb { display: flex; gap: 10px; align-items: center; color: #94a3b8; font-size: 15px; font-weight: 500; }
.breadcrumb a { color: #cbd5e1; }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb i { font-size: 11px; }
.breadcrumb .current { color: var(--primary); }

/* ============================================================
   CONTENT / ARTICLE
   ============================================================ */
.content-wrap { display: grid; grid-template-columns: 1fr; gap: 40px; }
.content-wrap.has-sidebar { grid-template-columns: 1fr 340px; align-items: start; }
.article { background: #fff; }
.article > img { border-radius: var(--radius); margin-bottom: 34px; box-shadow: var(--shadow-sm); width: 100%; }
.article h1, .article h2 { font-size: 30px; margin: 10px 0 18px; }
.article h3 { font-size: 22px; margin: 32px 0 12px; padding-left: 16px; border-left: 4px solid var(--primary); }
.article h4 { font-size: 19px; margin: 28px 0 10px; color: var(--primary-dark); }
.article p { margin-bottom: 16px; color: var(--text); }
.article ul { margin: 0 0 20px 0; list-style: none; }
.article ul li { position: relative; padding-left: 30px; margin-bottom: 12px; }
.article ul li::before { content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; left: 0; top: 1px; color: var(--primary); background: var(--primary-soft); width: 22px; height: 22px; border-radius: 50%; font-size: 11px; display: grid; place-items: center; }
.article strong { color: var(--heading); }

/* Sidebar widgets */
.widget { background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; margin-bottom: 24px; }
.widget .w-title { font-size: 18px; margin-bottom: 18px; padding-bottom: 14px; border-bottom: 2px solid var(--border); position: relative; }
.widget .w-title::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 50px; height: 2px; background: var(--primary); }
.widget ul { list-style: none; }
.widget.info-list li { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px dashed var(--border); font-size: 15px; }
.widget.info-list li:last-child { border-bottom: 0; }
.widget.info-list li span { color: var(--text-light); }
.widget.info-list li b { color: var(--ink); font-family: 'Plus Jakarta Sans'; }
.widget.links li a { display: flex; align-items: center; gap: 10px; padding: 11px 0; color: var(--text); font-weight: 600; border-bottom: 1px solid var(--border); }
.widget.links li:last-child a { border-bottom: 0; }
.widget.links li a:hover { color: var(--primary); padding-left: 6px; }
.widget.links li a i { color: var(--primary); }
.widget-cta { background: var(--ink); color: #fff; text-align: center; }
.widget-cta h4 { color: #fff; font-size: 20px; margin-bottom: 10px; }
.widget-cta p { color: #94a3b8; font-size: 14.5px; margin-bottom: 18px; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery-grid .g-item { position: relative; border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 1/1; cursor: pointer; }
.gallery-grid .g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.gallery-grid .g-item:hover img { transform: scale(1.1); }
.gallery-grid .g-item::after { content: '\f00e'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; inset: 0; background: rgba(15,27,45,.55); color: #fff; display: grid; place-items: center; font-size: 24px; opacity: 0; transition: opacity .3s; }
.gallery-grid .g-item:hover::after { opacity: 1; }

/* Press / image cards */
.press-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.press-card { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--border); transition: all .3s var(--ease); background: #fff; }
.press-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.press-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

/* Video grid */
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.video-card { position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer; box-shadow: var(--shadow-sm); aspect-ratio: 16/10; }
.video-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.video-card:hover img { transform: scale(1.08); }
.video-card::before { content: ''; position: absolute; inset: 0; background: rgba(15,27,45,.35); transition: background .3s; }
.video-card:hover::before { background: rgba(15,27,45,.5); }
.video-card .play { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 70px; height: 70px; border-radius: 50%; background: var(--primary); color: #fff; display: grid; place-items: center; font-size: 24px; z-index: 2; box-shadow: 0 10px 30px rgba(230,57,70,.5); transition: transform .3s; }
.video-card:hover .play { transform: translate(-50%,-50%) scale(1.12); }

/* ============================================================
   REFERENCES
   ============================================================ */
.ref-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.ref-chip {
    background: #fff; border: 1px solid var(--border); border-radius: var(--radius-sm);
    padding: 22px 18px; text-align: center; font-weight: 700; color: var(--ink); font-size: 14px;
    display: flex; align-items: center; justify-content: center; gap: 10px; min-height: 88px;
    transition: all .25s var(--ease); font-family: 'Plus Jakarta Sans';
}
.ref-chip:hover { border-color: var(--primary); color: var(--primary); box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.ref-chip i { color: var(--primary); font-size: 16px; }

/* Referanslar sayfası — arama + dizin kartları */
.ref-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: 40px; }
.ref-count-badge { display: inline-flex; align-items: center; gap: 12px; background: var(--ink); color: #fff; padding: 14px 22px; border-radius: 14px; font-family: 'Plus Jakarta Sans'; font-weight: 700; }
.ref-count-badge .n { font-size: 26px; color: var(--primary); line-height: 1; }
.ref-count-badge small { display: block; font-size: 12px; color: #94a3b8; font-weight: 500; }
.ref-search { position: relative; flex: 1; max-width: 380px; min-width: 240px; }
.ref-search i { position: absolute; left: 18px; top: 50%; transform: translateY(-50%); color: var(--text-light); }
.ref-search input { width: 100%; padding: 15px 18px 15px 46px; border: 1.5px solid var(--border); border-radius: 999px; font-size: 15px; font-family: inherit; background: var(--bg-soft); transition: all .2s; }
.ref-search input:focus { outline: 0; border-color: var(--primary); background: #fff; box-shadow: 0 0 0 4px rgba(230,57,70,.1); }

.ref-directory { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.ref-card2 {
    display: flex; align-items: center; gap: 16px; background: #fff; border: 1px solid var(--border);
    border-radius: 16px; padding: 18px 20px; position: relative; overflow: hidden;
    transition: all .25s var(--ease);
}
.ref-card2::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--primary); transform: scaleY(0); transition: transform .25s var(--ease); }
.ref-card2:hover { box-shadow: var(--shadow); transform: translateY(-4px); border-color: transparent; }
.ref-card2:hover::before { transform: scaleY(1); }
.ref-card2 .ic { width: 50px; height: 50px; border-radius: 13px; background: var(--primary-soft); color: var(--primary); display: grid; place-items: center; font-size: 20px; flex: none; transition: all .25s; }
.ref-card2:hover .ic { background: var(--primary); color: #fff; }
.ref-card2 .nm { font-family: 'Plus Jakarta Sans'; font-weight: 700; color: var(--ink); font-size: 15px; line-height: 1.35; }
.ref-card2 .idx { margin-left: auto; font-size: 13px; font-weight: 700; color: #cbd5e1; flex: none; }
.ref-empty { text-align: center; padding: 50px; color: var(--text-light); grid-column: 1/-1; }

/* Marquee strip (homepage) */
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; gap: 50px; width: max-content; animation: scroll 40s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item { font-family: 'Plus Jakarta Sans'; font-weight: 700; font-size: 19px; color: var(--text-light); white-space: nowrap; opacity: .8; }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ============================================================
   CTA
   ============================================================ */
.cta-band { position: relative; background: linear-gradient(120deg, var(--primary), var(--primary-dark)); border-radius: 28px; padding: 64px; overflow: hidden; text-align: center; }
.cta-band::before { content: '\f0f8'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; right: -20px; bottom: -40px; font-size: 220px; color: rgba(255,255,255,.08); }
.cta-band h2 { color: #fff; font-size: clamp(26px,3.5vw,40px); margin-bottom: 14px; position: relative; }
.cta-band p { color: rgba(255,255,255,.9); font-size: 18px; margin-bottom: 30px; position: relative; }
.cta-band .btn { position: relative; }

/* ============================================================
   FORMS / CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: start; }
.form-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 38px; box-shadow: var(--shadow-sm); }
.form-card h2 { font-size: 28px; margin-bottom: 8px; }
.form-card .sub { color: var(--text-light); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; margin-bottom: 8px; font-size: 14.5px; color: var(--ink); }
.field input, .field textarea {
    width: 100%; padding: 14px 16px; border: 1.5px solid var(--border); border-radius: 12px;
    font-size: 15px; font-family: inherit; background: var(--bg-soft); transition: all .2s; color: var(--text);
}
.field input:focus, .field textarea:focus { outline: 0; border-color: var(--primary); background: #fff; box-shadow: 0 0 0 4px rgba(230,57,70,.1); }
.field textarea { min-height: 140px; resize: vertical; }
.alert-msg:not(:empty) { margin-top: 18px; }
.alert { padding: 14px 18px; border-radius: 12px; font-size: 14.5px; }
.alert-success, .alert.alert-success { background: #ecfdf5; color: #047857; border: 1px solid #a7f3d0; }
.alert-error, .alert.alert-error { background: #fef2f2; color: #b91c1c; border: 1px solid #fecaca; }

.info-cards { display: flex; flex-direction: column; gap: 18px; }
.info-card { background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; display: flex; gap: 18px; align-items: flex-start; transition: all .25s; }
.info-card:hover { box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.info-card .ic { width: 54px; height: 54px; border-radius: 14px; background: var(--primary); color: #fff; display: grid; place-items: center; font-size: 22px; flex: none; }
.info-card h4 { font-size: 17px; margin-bottom: 5px; }
.info-card p, .info-card a { color: var(--text-light); font-size: 15px; }
.info-card a:hover { color: var(--primary); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--ink); color: #94a3b8; padding-top: 80px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1.2fr 1.4fr; gap: 40px; padding-bottom: 56px; }
.footer-col h4 { color: #fff; font-size: 17px; margin-bottom: 22px; }
.footer-col.about img { height: 50px; margin-bottom: 20px; }
.footer-col.about p { font-size: 14.5px; line-height: 1.8; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { color: #94a3b8; font-size: 14.5px; display: inline-flex; align-items: center; gap: 8px; transition: all .2s; }
.footer-col ul li a:hover { color: var(--primary); transform: translateX(4px); }
.footer-col.contact .fc-row { display: flex; gap: 14px; margin-bottom: 18px; }
.footer-col.contact .fc-row i { color: var(--primary); font-size: 18px; margin-top: 3px; }
.footer-col.contact .fc-row span { font-size: 14.5px; line-height: 1.7; }
.footer-social { display: flex; gap: 10px; margin-top: 8px; }
.footer-social a { width: 40px; height: 40px; border-radius: 11px; background: rgba(255,255,255,.08); display: grid; place-items: center; color: #fff; transition: all .25s; }
.footer-social a:hover { background: var(--primary); transform: translateY(-3px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 24px 0; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; font-size: 14px; }
.footer-bottom a { color: #cbd5e1; }
.footer-bottom a:hover { color: var(--primary); }

/* ============================================================
   FLOATING / WHATSAPP / MODAL
   ============================================================ */
.whatsapp-fab { position: fixed; bottom: 26px; right: 26px; width: 60px; height: 60px; border-radius: 50%; background: #25d366; box-shadow: 0 10px 30px rgba(37,211,102,.5); display: grid; place-items: center; z-index: 800; transition: transform .25s; }
.whatsapp-fab:hover { transform: scale(1.1); }
.whatsapp-fab i { color: #fff; font-size: 30px; }
.whatsapp-fab::after { content: ''; position: absolute; inset: 0; border-radius: 50%; border: 2px solid #25d366; animation: pulse 2s infinite; }
@keyframes pulse { 0% { transform: scale(1); opacity: 1; } 100% { transform: scale(1.6); opacity: 0; } }

.modal-overlay { position: fixed; inset: 0; background: rgba(15,27,45,.85); display: none; place-items: center; z-index: 1000; padding: 20px; }
.modal-overlay.open { display: grid; }
.modal-video { width: 100%; max-width: 900px; background: #000; border-radius: 16px; overflow: hidden; position: relative; }
.modal-video video { width: 100%; display: block; }
.modal-close { position: absolute; top: -46px; right: 0; width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.15); color: #fff; border: 0; font-size: 20px; cursor: pointer; }
.modal-close:hover { background: var(--primary); }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .content-wrap.has-sidebar { grid-template-columns: 1fr; }
    .cards-grid, .feature-grid, .press-grid, .video-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid2 { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; }
    .gallery-grid, .ref-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
    .about-media .badge-float { right: 10px; }
}
@media (max-width: 860px) {
    .section { padding: 70px 0; }
    .nav-toggle { display: block; }
    .nav-menu {
        position: fixed; top: 0; right: 0; height: 100vh; width: 300px; max-width: 86vw;
        background: #fff; flex-direction: column; align-items: stretch; gap: 0; padding: 90px 20px 30px;
        box-shadow: -10px 0 40px rgba(0,0,0,.15); transform: translateX(100%); transition: transform .3s var(--ease);
        overflow-y: auto; z-index: 950;
    }
    .nav-menu.open { transform: translateX(0); }
    .nav-menu > li > a { padding: 14px 16px; border-radius: 10px; }
    .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; padding: 0 0 0 14px; display: none; }
    .has-dropdown.open .dropdown { display: block; }
    .nav-overlay { position: fixed; inset: 0; background: rgba(15,27,45,.5); z-index: 940; display: none; }
    .nav-overlay.show { display: block; }
    .nav-cta .btn { display: none; }
    .topbar .tb-info { display: none; }
    .topbar .container { justify-content: center; }
}
@media (max-width: 560px) {
    .quick-bar .container { grid-template-columns: 1fr; }
    .quick-item + .quick-item { border-left: 0; border-top: 1px solid rgba(255,255,255,.18); }
    .cards-grid, .feature-grid, .press-grid, .video-grid, .gallery-grid, .ref-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .about-list { grid-template-columns: 1fr; }
    .cta-band { padding: 44px 24px; }
    .hero-slides { min-height: 560px; }
    .stats-grid2 { grid-template-columns: 1fr 1fr; }
}
