/* ============================================
   TEMPLATE 100 — LEFT NAV + FULLPAGE
   ============================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: auto; }
body {
    font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #1a1a2e;
    background: #f5f7fa;
    overflow-x: hidden;
    font-size: 18px;
    line-height: 1.7;
}
p { font-size: 18px; line-height: 1.8; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }
ul { list-style: none; }

/* ---------- CSS Variables ---------- */
:root {
    --nav-w: 220px;
    --nav-bg: #0a1628;
    --nav-accent: #2E86AB;
    --c1: #1B3A5C;
    --c2: #2E86AB;
    --c3: #0D1B2A;
    --warm: #F4A261;
    --c1-light: #E8F0F8;
    --c2-light: #E6F4FA;
    --light-bg: #F0F7FB;
    --white: #ffffff;
    --ease: cubic-bezier(.4,0,.2,1);
}

/* ---------- LEFT SIDEBAR NAV (homepage only) ---------- */
.fp-nav {
    position: fixed;
    left: 0; top: 0;
    width: var(--nav-w);
    height: 100vh;
    background: var(--nav-bg);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    transition: width .35s var(--ease), transform .35s var(--ease);
    overflow: hidden;
}
.fp-nav.collapsed { width: 68px; }
.fp-nav-logo {
    padding: 24px 18px 20px;
    border-bottom: 1px solid rgba(255,255,255,.07);
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 80px;
}
.fp-nav-logo img { height: 38px; flex-shrink: 0; filter: brightness(0) invert(1); }
.fp-nav-logo-text { color: #fff; font-size: 12px; font-weight: 700; letter-spacing: 1px; white-space: nowrap; opacity: 1; transition: opacity .2s; }
.fp-nav.collapsed .fp-nav-logo-text { opacity: 0; pointer-events: none; }

/* Nav Links */
.fp-nav-links { flex: 1; padding: 12px 0; display: flex; flex-direction: column; gap: 1px; overflow-y: auto; }
.fp-nav-link {
    display: flex; align-items: center; gap: 12px;
    padding: 13px 20px; color: rgba(255,255,255,.45);
    font-size: 13px; font-weight: 600; letter-spacing: .5px;
    transition: all .25s; position: relative; white-space: nowrap; cursor: pointer;
}
.fp-nav-link::before {
    content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%) scaleY(0);
    width: 3px; height: 55%; background: var(--nav-accent); border-radius: 0 3px 3px 0; transition: transform .25s;
}
.fp-nav-link:hover, .fp-nav-link.active { color: #fff; background: rgba(255,255,255,.05); }
.fp-nav-link.active::before { transform: translateY(-50%) scaleY(1); }
.fp-nav-link i { font-size: 17px; width: 22px; text-align: center; flex-shrink: 0; }
.fp-nav-link span { opacity: 1; transition: opacity .2s; }
.fp-nav.collapsed .fp-nav-link span { opacity: 0; pointer-events: none; }
.fp-nav.collapsed .fp-nav-link { padding: 13px 22px; justify-content: center; }

/* Nav Bottom Contact */
.fp-nav-contact { padding: 16px 18px; border-top: 1px solid rgba(255,255,255,.07); opacity: 1; transition: opacity .2s; }
.fp-nav.collapsed .fp-nav-contact { opacity: 0; pointer-events: none; }
.fp-nav-contact a { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.35); font-size: 11px; padding: 5px 0; transition: color .25s; }
.fp-nav-contact a:hover { color: var(--nav-accent); }
.fp-nav-contact a i { font-size: 13px; width: 16px; text-align: center; }

/* Nav Toggle */
.fp-nav-toggle {
    padding: 14px 18px; border-top: 1px solid rgba(255,255,255,.07);
    display: flex; align-items: center; gap: 10px;
    color: rgba(255,255,255,.3); font-size: 12px; cursor: pointer; transition: color .25s; white-space: nowrap;
}
.fp-nav-toggle:hover { color: rgba(255,255,255,.7); }
.fp-nav-toggle i { font-size: 15px; width: 22px; text-align: center; flex-shrink: 0; }
.fp-nav.collapsed .fp-nav-toggle span { opacity: 0; pointer-events: none; }

/* ---------- MAIN CONTENT AREA ---------- */
.fp-main {
    margin-left: var(--nav-w);
    transition: margin-left .35s var(--ease);
    min-height: 100vh;
}
.fp-nav.collapsed ~ .fp-main { margin-left: 68px; }

/* ---------- SECTION SHARED ---------- */
.fp-section { position: relative; overflow: hidden; }
.fp-sec-inner { padding: 60px 48px; height: 100vh; display: flex; flex-direction: column; justify-content: center; }
.fp-label { display: inline-flex; align-items: center; gap: 10px; font-size: 11px; font-weight: 800; letter-spacing: 4px; text-transform: uppercase; color: var(--c2); margin-bottom: 14px; }
.fp-label::before { content: ''; width: 30px; height: 2px; background: var(--c2); }
.fp-title { font-size: clamp(1.6rem, 3vw, 2.5rem); font-weight: 900; color: var(--c3); line-height: 1.15; margin-bottom: 10px; white-space: nowrap; }
.fp-title-light { color: #fff; }
.fp-bar { width: 44px; height: 3px; background: linear-gradient(90deg, var(--c2), var(--warm)); border-radius: 3px; margin-bottom: 20px; }

/* ---------- SECTION 1: HERO ---------- */
.fp-hero-bg {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, #0D1B2A 0%, #1B3A5C 40%, #2E86AB 100%);
}
.fp-hero-bg::after {
    content: ''; position: absolute; inset: 0;
    background: url('') center/cover no-repeat; opacity: .12; mix-blend-mode: luminosity;
}
.fp-hero-deco { position: absolute; z-index: 1; pointer-events: none; }
.fp-hero-stats { display: flex; gap: 32px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); margin-top: 20px; margin-bottom: 28px; }
.fp-hero-stat-num { font-size: 2rem; font-weight: 900; color: #fff; }
.fp-hero-stat-label { font-size: 11px; color: rgba(255,255,255,.6); margin-top: 3px; letter-spacing: 1px; text-transform: uppercase; }
.fp-hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }

/* Services Strip at bottom of hero */
.fp-svc-strip { display: grid; grid-template-columns: repeat(3,1fr); position: absolute; bottom: 0; left: 0; right: 0; z-index: 3; }
.fp-svc-item { padding: 22px 28px; background: rgba(255,255,255,.07); backdrop-filter: blur(12px); border-right: 1px solid rgba(255,255,255,.08); color: #fff; transition: background .3s; }
.fp-svc-item:last-child { border-right: none; }
.fp-svc-item:hover { background: rgba(255,255,255,.12); }
.fp-svc-item i { font-size: 22px; margin-bottom: 8px; color: var(--warm); }
.fp-svc-item h4 { font-size: 14px; font-weight: 800; margin-bottom: 4px; }
.fp-svc-item p { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.4; }

/* ---------- SECTION 2: ABOUT ---------- */
.fp-about-grid { display: grid; grid-template-columns: 5fr 7fr; gap: 48px; align-items: center; }
.fp-about-img { position: relative; border-radius: 12px; overflow: hidden; }
.fp-about-img img { width: 100%; height: 340px; object-fit: cover; }
.fp-about-badge { position: absolute; bottom: -14px; right: -8px; background: linear-gradient(135deg, var(--c1), var(--c2)); color: #fff; padding: 12px 22px; border-radius: 6px; box-shadow: 0 10px 30px rgba(27,58,92,.3); text-align: center; }
.fp-about-badge .big { font-size: 1.4rem; font-weight: 900; }
.fp-about-badge .small { font-size: 10px; opacity: .8; letter-spacing: 1px; }

/* ---------- SECTION 3: GALLERY ---------- */
.fp-gallery-grid { display: grid; grid-template-columns: 5fr 3fr 3fr; grid-template-rows: 180px 180px; gap: 10px; }
.fp-g-item { position: relative; overflow: hidden; border-radius: 8px; }
.fp-g-item:first-child { grid-row: 1/3; }
.fp-g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.fp-g-item:hover img { transform: scale(1.05); }
.fp-g-label { position: absolute; bottom: 0; left: 0; right: 0; padding: 16px; background: linear-gradient(transparent, rgba(13,27,42,.7)); color: #fff; font-weight: 700; font-size: 12px; letter-spacing: 1px; opacity: 0; transform: translateY(6px); transition: all .3s; }
.fp-g-item:hover .fp-g-label { opacity: 1; transform: translateY(0); }

/* ---------- SECTION 4: DETAILS / ADVANTAGES ---------- */
.fp-supply-band { position: relative; overflow: hidden; border-radius: 10px; background: linear-gradient(135deg, #0D1B2A, #1B3A5C, #2E86AB); margin-bottom: 28px; }
.fp-supply-band::before { content: ''; position: absolute; top: -50px; right: -50px; width: 250px; height: 250px; border-radius: 50%; background: rgba(244,162,97,.06); filter: blur(40px); }
.fp-supply-inner { display: grid; grid-template-columns: 1fr 1fr; position: relative; z-index: 2; }
.fp-supply-inner > div { padding: 28px 32px; }
.fp-supply-inner > div + div { border-top: 1px solid rgba(255,255,255,.08); }
@media(min-width:1024px) { .fp-supply-inner > div + div { border-top: none; border-left: 1px solid rgba(255,255,255,.08); } }

.fp-adv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.fp-adv-item { display: flex; align-items: flex-start; gap: 16px; padding: 18px 20px; border-bottom: 1px solid #e8ecf1; transition: all .3s; }
.fp-adv-item:nth-child(odd) { border-right: 1px solid #e8ecf1; }
.fp-adv-item:hover { background: linear-gradient(135deg, var(--c1-light), transparent); }
.fp-adv-ico { width: 40px; height: 40px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 17px; color: var(--c2); background: var(--c2-light); flex-shrink: 0; transition: all .3s; }
.fp-adv-item:hover .fp-adv-ico { background: var(--c2); color: #fff; transform: scale(1.06); }
.fp-adv-item h4 { font-size: 17px; font-weight: 800; color: var(--c3); margin-bottom: 4px; white-space: nowrap; }
.fp-adv-item p { font-size: 14px; line-height: 1.65; color: #64748b; }

/* ---------- SECTION 5: CULTURE ---------- */
.fp-culture-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 36px; }
.fp-culture-col { text-align: center; padding: 28px 20px; position: relative; }
.fp-culture-col::after { content: ''; position: absolute; top: 0; right: -18px; width: 1px; height: 100%; background: linear-gradient(to bottom, transparent, var(--c2), transparent); opacity: .2; }
.fp-culture-col:last-child::after { display: none; }
.fp-culture-hex { width: 64px; height: 64px; margin: 0 auto 16px; position: relative; display: flex; align-items: center; justify-content: center; }
.fp-culture-hex svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.fp-culture-hex i { font-size: 24px; color: var(--c2); position: relative; z-index: 1; }
.fp-culture-col h3 { font-size: 12px; font-weight: 800; letter-spacing: 3px; text-transform: uppercase; color: var(--c2); margin-bottom: 12px; }
.fp-culture-col p { font-size: 15px; font-weight: 300; line-height: 1.6; color: var(--c3); font-style: italic; max-width: 280px; margin: 0 auto; }

/* ---------- SECTION 6: CONTACT ---------- */
.fp-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.fp-contact-card { background: var(--c1-light); border-radius: 10px; overflow: hidden; }
.fp-contact-card-header { background: linear-gradient(135deg, var(--c1), var(--c2)); padding: 20px 28px; color: #fff; }
.fp-contact-card-header h4 { font-size: 11px; font-weight: 800; letter-spacing: 3px; text-transform: uppercase; opacity: .8; margin-bottom: 3px; }
.fp-contact-card-header p { font-size: 17px; font-weight: 900; }
.fp-contact-card-body { padding: 6px 0; }
.fp-ct-item { display: flex; align-items: flex-start; gap: 14px; padding: 16px 28px; transition: all .3s; border-bottom: 1px solid #dde5ef; }
.fp-ct-item:last-child { border-bottom: none; }
.fp-ct-item:hover { background: var(--c2-light); }
.fp-ct-icon { width: 40px; height: 40px; border-radius: 8px; background: var(--c2-light); display: flex; align-items: center; justify-content: center; font-size: 16px; color: var(--c2); flex-shrink: 0; transition: all .3s; }
.fp-ct-item:hover .fp-ct-icon { background: var(--c2); color: #fff; }
.fp-ct-label { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--c2); margin-bottom: 3px; }
.fp-ct-val { font-size: 15px; font-weight: 700; color: var(--c3); word-break: break-all; }

/* ---------- SECTION 7: SEO ---------- */
.fp-seo-section { background: linear-gradient(180deg, #0D1B2A 0%, #1B3A5C 50%, #2E86AB 100%); }
.fp-seo-tag { display: inline-flex; padding: 7px 20px; border: 1px solid rgba(255,255,255,.15); border-radius: 100px; color: rgba(255,255,255,.7); font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; transition: all .3s; }
.fp-seo-tag:hover { border-color: var(--warm); color: var(--warm); }
.fp-seo-feat { display: flex; align-items: flex-start; gap: 20px; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.06); }
.fp-seo-feat:last-child { border-bottom: none; }
.fp-seo-feat i { font-size: 20px; color: var(--warm); flex-shrink: 0; margin-top: 2px; }
.fp-seo-feat h4 { font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 4px; white-space: nowrap; }
.fp-seo-feat p { font-size: 15px; line-height: 1.7; color: rgba(255,255,255,.65); }

/* Final CTA */
.fp-final-cta { position: relative; padding: 48px 0 0; margin-top: 36px; }
.fp-final-cta::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 100px; height: 2px; background: linear-gradient(90deg, transparent, rgba(255,255,255,.25), transparent); }
.fp-final-cta-title { font-size: clamp(1.6rem, 3.5vw, 2.5rem); font-weight: 900; color: #fff; text-align: center; margin-bottom: 10px; white-space: nowrap; }
.fp-final-cta-sub { font-size: 15px; line-height: 1.7; color: rgba(255,255,255,.7); text-align: center; max-width: 700px; margin: 0 auto 36px; }
.fp-final-cta-methods { display: flex; flex-direction: column; align-items: center; gap: 14px; }
@media(min-width:768px) { .fp-final-cta-methods { flex-direction: row; justify-content: center; align-items: stretch; gap: 18px; } }
.fp-final-card { display: flex; align-items: center; gap: 14px; padding: 18px 32px; border-radius: 14px; text-decoration: none; transition: all .3s; min-width: 240px; justify-content: center; }
.fp-final-card:hover { transform: translateY(-3px); }
.fp-final-card--phone { background: rgba(255,255,255,.95); color: #0D1B2A; box-shadow: 0 6px 28px rgba(0,0,0,.18); }
.fp-final-card--phone:hover { box-shadow: 0 12px 40px rgba(0,0,0,.28); }
.fp-final-card--phone .fp-final-card-icon { background: linear-gradient(135deg, #2E86AB, #1B3A5C); color: #fff; }
.fp-final-card--email { background: rgba(255,255,255,.06); color: #fff; border: 1.5px solid rgba(255,255,255,.18); backdrop-filter: blur(12px); }
.fp-final-card--email:hover { border-color: rgba(255,255,255,.35); }
.fp-final-card--email .fp-final-card-icon { background: rgba(255,255,255,.1); color: #fff; border: 1px solid rgba(255,255,255,.2); }
.fp-final-card--wa { background: #25D366; color: #fff; box-shadow: 0 6px 28px rgba(37,211,102,.28); }
.fp-final-card--wa:hover { box-shadow: 0 12px 40px rgba(37,211,102,.4); }
.fp-final-card--wa .fp-final-card-icon { background: rgba(255,255,255,.2); color: #fff; }
.fp-final-card-icon { width: 42px; height: 42px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.fp-final-card-value { font-size: 14px; font-weight: 800; white-space: nowrap; }

/* ---------- BUTTONS ---------- */
.fp-btn { display: inline-flex; align-items: center; gap: 9px; padding: 12px 28px; font-weight: 700; font-size: 13px; border-radius: 10px; cursor: pointer; transition: all .3s; border: none; text-decoration: none; }
.fp-btn-primary { background: linear-gradient(135deg, #2E86AB, #1B3A5C); color: #fff; box-shadow: 0 5px 20px rgba(46,134,171,.35); }
.fp-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(46,134,171,.5); }
.fp-btn-outline { background: rgba(255,255,255,.08); color: #fff; border: 1.5px solid rgba(255,255,255,.2); }
.fp-btn-outline:hover { border-color: rgba(255,255,255,.4); background: rgba(255,255,255,.15); }
.fp-btn-warm { background: #F4A261; color: #0D1B2A; box-shadow: 0 5px 20px rgba(244,162,97,.3); }
.fp-btn-warm:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(244,162,97,.45); }
.fp-btn-white { background: #fff; color: var(--c1); box-shadow: 0 5px 20px rgba(0,0,0,.12); }
.fp-btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,.18); }

/* ---------- FOOTER (inside last section) ---------- */
.fp-footer { position: absolute; bottom: 0; left: 0; right: 0; background: var(--nav-bg); padding: 24px 48px 16px; z-index: 10; }
.fp-footer-grid { display: grid; grid-template-columns: 0.5fr 1.5fr 1fr 1fr; gap: 32px; margin-bottom: 16px; }
.fp-footer h5 { color: #fff; font-size: 12px; font-weight: 800; margin-bottom: 10px; letter-spacing: 1px; }
.fp-footer ul li { margin-bottom: 6px; }
.fp-footer ul li a { color: rgba(255,255,255,.4); font-size: 13px; transition: all .25s; }
.fp-footer ul li a:hover { color: #fff; padding-left: 3px; }
.fp-footer-copy { border-top: 1px solid rgba(255,255,255,.08); padding-top: 12px; text-align: center; color: rgba(255,255,255,.25); font-size: 12px; }

/* ---------- REVEAL ANIMATIONS ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: all .7s cubic-bezier(.23,1,.32,1); }
.reveal.active { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-36px); transition: all .7s cubic-bezier(.23,1,.32,1); }
.reveal-left.active { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(36px); transition: all .7s cubic-bezier(.23,1,.32,1); }
.reveal-right.active { opacity: 1; transform: translateX(0); }

/* ---------- TOP HEADER (products & other pages) ---------- */
.top-header {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    background: #fff; box-shadow: 0 2px 16px rgba(0,0,0,.05);
    transition: all .3s;
    height: 80px;
    display: flex; align-items: center;
}
.top-header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,.08); }
.top-header-inner { max-width: 1400px; margin: 0 auto; padding: 0 24px; width: 100%; display: flex; justify-content: space-between; align-items: center; }
.top-header img { height: 44px; transition: height .3s; }
.top-header.scrolled img { height: 36px; }
.top-header-nav { display: flex; gap: 28px; align-items: center; }
.top-header-nav a { font-weight: 600; font-size: 15px; color: var(--c3); transition: color .25s; position: relative; }
.top-header-nav a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--c1); transition: width .25s; }
.top-header-nav a:hover { color: var(--c1); }
.top-header-nav a:hover::after { width: 100%; }
.top-header-mobile-btn { display: none; font-size: 24px; color: var(--c1); cursor: pointer; border: none; background: none; }
.top-header-mobile-menu { display: none; position: fixed; top: 80px; left: 0; right: 0; background: #fff; padding: 20px; box-shadow: 0 8px 24px rgba(0,0,0,.08); z-index: 999; flex-direction: column; gap: 14px; }
.top-header-mobile-menu.open { display: flex; }
.top-header-mobile-menu a { font-weight: 600; font-size: 16px; color: var(--c3); padding: 8px 0; }

/* ---------- FIXED ASIDE CONTACTS ---------- */
.fixed_contacts img:not(:last-child) { display: inline-block; padding: 14px; }
.fixed_contacts_default, .fixed_contacts_active { background: var(--first-color); }
.fixed_contacts_default { height: 254px; width: 50px; }
.fixed_contacts_active a, .fixed_contacts_active img { display: block !important; }
.fixed_contacts { position: fixed; z-index: 100; right: 0; top: 25%; transition: all .3s ease; }
.fixed_contacts ul li:not(:last-child) { border-bottom: 1px solid var(--fixed-aside-bottom-color); }
.fixed_contacts ul li:last-child { align-items: flex-start; }
.fixed_contacts_active { width: 320px; height: 380px; }
.fixed_contacts ul { width: 100%; display: flex; flex-direction: column; padding: 0; margin-left: 0 !important; }
.fixed_contacts ul li { display: flex; align-items: center; color: #fff; font-size: 18px !important; padding-inline-start: 0; padding: 0 !important; }
.fixed_contacts ul li a { color: inherit; display: none; }
.fixed_contacts ul li a:hover { color: inherit !important; }
.whatsapp_qrcode { width: 100%; height: 100%; display: flex; flex-direction: column; }
.whatsapp_qrcode a { height: 50px; line-height: 50px; }
.whatsapp_qrcode img { display: none; width: 90px; }
.police::before { text-align: center; display: inline-block; height: 25px; width: 25px; line-height: 25px; transform: translateY(20%); }

/* ---------- MOBILE NAV OVERLAY ---------- */
.fp-nav-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 999; }
.fp-nav-overlay.active { display: block; }
.fp-mobile-btn { display: none; position: fixed; top: 16px; left: 16px; z-index: 1100; width: 44px; height: 44px; border-radius: 10px; background: var(--nav-bg); color: #fff; font-size: 20px; align-items: center; justify-content: center; cursor: pointer; border: none; box-shadow: 0 4px 16px rgba(0,0,0,.2); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .fp-nav { transform: translateX(-100%); width: 240px !important; }
    .fp-nav.mobile-open { transform: translateX(0); }
    .fp-nav.mobile-open ~ .fp-main { margin-left: 0 !important; }
    .fp-mobile-btn { display: flex; }
    .fp-main { margin-left: 0 !important; }
    .fp-sec-inner { padding: 40px 20px; }
    .fp-about-grid { grid-template-columns: 1fr; }
    .fp-gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
    .fp-gallery-grid .fp-g-item:first-child { grid-row: auto; }
    .fp-gallery-grid .fp-g-item img { height: 200px; }
    .fp-adv-grid { grid-template-columns: 1fr; }
    .fp-adv-item:nth-child(odd) { border-right: none; }
    .fp-culture-grid { grid-template-columns: 1fr; }
    .fp-contact-grid { grid-template-columns: 1fr; }
    .fp-supply-inner { grid-template-columns: 1fr; }
    .fp-svc-strip { grid-template-columns: 1fr; position: relative; }
    .fp-footer { padding: 20px; }
    .fp-footer-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .top-header-nav { display: none; }
    .top-header-mobile-btn { display: block; }
}
@media (max-width: 640px) {
    .fp-footer-grid { grid-template-columns: 1fr; }
    .fp-hero-stats { gap: 20px; flex-wrap: wrap; }
}

/* ---------- KEYFRAME ANIMATIONS ---------- */
@keyframes gentleFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.gentle-float { animation: gentleFloat 5s ease-in-out infinite; }
@keyframes dropFall { 0% { transform: translateY(-8px); opacity: 0; } 40% { opacity: 1; } 100% { transform: translateY(12px); opacity: 0; } }
.drop-anim { animation: dropFall 2.5s ease-in infinite; }
@keyframes liquidFlow { 0% { stroke-dashoffset: 20; } 100% { stroke-dashoffset: 0; } }
.liquid-flow { stroke-dasharray: 6 4; animation: liquidFlow 1.5s linear infinite; }
@keyframes flaskBubble { 0% { transform: translateY(0) scale(1); opacity: .6; } 100% { transform: translateY(-18px) scale(.3); opacity: 0; } }
.flask-bubble { animation: flaskBubble 2.5s ease-out infinite; }
@keyframes pipeFlow { 0% { stroke-dashoffset: 30; } 100% { stroke-dashoffset: 0; } }
.pipe-flow { stroke-dasharray: 8 6; animation: pipeFlow 2s linear infinite; }

/* ---------- MISC ---------- */
.police::before { text-align: center; display: inline-block; height: 25px; width: 25px; line-height: 25px; transform: translateY(20%); }
