/* ============================================================
   ADS K9 — Main Stylesheet
   Afrique Du Sud K9 (Pty) Ltd
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Roboto:wght@300;400;500;700&display=swap');

/* ============================================================
   TOKENS
   ============================================================ */
:root {
    --black:     #0d0d0d;
    --charcoal:  #1a1a1a;
    --dgrey:     #2a2a2a;
    --mgrey:     #555555;
    --lgrey:     #f4f4f4;
    --white:     #ffffff;
    --red:       #cc0000;
    --red-dark:  #990000;
    --orange:    #e87722;
    --heading:   'Oswald', sans-serif;
    --body:      'Roboto', sans-serif;
    --radius:    4px;
    --shadow:    0 4px 24px rgba(0,0,0,0.12);
    --shadow-red:0 4px 24px rgba(204,0,0,0.25);
    --trans:     all 0.25s ease;
    --nav-h:     68px;
    --max-w:     1200px;
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box }
html { scroll-behavior:smooth; -webkit-text-size-adjust:100% }
body { font-family:var(--body); color:var(--dgrey); background:var(--white); line-height:1.7; font-size:16px; -webkit-font-smoothing:antialiased }
img { max-width:100%; height:auto; display:block }
a { color:var(--red); text-decoration:none; transition:var(--trans) }
a:hover { color:var(--orange) }
ul, ol { list-style:none }
button { cursor:pointer; font-family:var(--body); border:none; background:none }
input, textarea, select { font-family:var(--body) }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1,h2,h3,h4,h5 {
    font-family:var(--heading);
    text-transform:uppercase;
    letter-spacing:0.04em;
    line-height:1.15;
    color:var(--black);
}
h1 { font-size:clamp(36px, 5vw, 56px); font-weight:700 }
h2 { font-size:clamp(26px, 3.5vw, 38px); font-weight:700 }
h3 { font-size:clamp(20px, 2.5vw, 26px); font-weight:600 }
h4 { font-size:18px; font-weight:600 }
h5 { font-size:15px; font-weight:600 }
p  { margin-bottom:1rem; line-height:1.8 }
p:last-child { margin-bottom:0 }

/* ============================================================
   LAYOUT HELPERS
   ============================================================ */
.container { width:100%; max-width:var(--max-w); margin:0 auto; padding:0 24px }
.section    { padding:80px 0 }
.section-sm { padding:48px 0 }
.section-lg { padding:100px 0 }
.section-dark  { background:var(--black) }
.section-char  { background:var(--charcoal) }
.section-grey  { background:var(--lgrey) }
.section-red   { background:var(--red) }
.grid-2  { display:grid; grid-template-columns:1fr 1fr; gap:32px }
.grid-3  { display:grid; grid-template-columns:repeat(3,1fr); gap:24px }
.grid-4  { display:grid; grid-template-columns:repeat(4,1fr); gap:20px }
.flex    { display:flex }
.items-center { align-items:center }
.justify-between { justify-content:space-between }
.gap-2 { gap:8px }
.gap-3 { gap:16px }
.gap-4 { gap:24px }
.text-center { text-align:center }
.mt-1 { margin-top:8px }
.mt-2 { margin-top:16px }
.mt-3 { margin-top:24px }
.mt-4 { margin-top:40px }
.mb-1 { margin-bottom:8px }
.mb-2 { margin-bottom:16px }
.mb-3 { margin-bottom:24px }
.sr-only { position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0,0,0,0) }

/* ============================================================
   ACCENT ELEMENTS
   ============================================================ */
.label-tag {
    display:inline-block;
    background:var(--red);
    color:var(--white);
    font-family:var(--heading);
    font-size:11px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:0.15em;
    padding:4px 12px;
    border-radius:2px;
    margin-bottom:14px;
}
.label-tag.orange { background:var(--orange) }

.accent-bar {
    display:block;
    width:56px;
    height:4px;
    background:linear-gradient(90deg, var(--red), var(--orange));
    border-radius:2px;
    margin:14px 0 28px;
}
.accent-bar.center { margin-left:auto; margin-right:auto }

.section-heading { margin-bottom:48px }
.section-heading.center { text-align:center }
.section-heading .accent-bar { margin-top:12px; margin-bottom:0 }
.section-heading p { font-size:17px; color:var(--mgrey); margin-top:14px }
.section-heading.light h2,
.section-heading.light h3 { color:var(--white) }
.section-heading.light p   { color:rgba(255,255,255,0.6) }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display:inline-flex;
    align-items:center;
    gap:8px;
    font-family:var(--heading);
    font-size:13px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:0.1em;
    padding:14px 32px;
    border-radius:var(--radius);
    border:2px solid transparent;
    transition:var(--trans);
    cursor:pointer;
    white-space:nowrap;
}
.btn-primary {
    background:var(--red);
    color:var(--white);
    border-color:var(--red);
    box-shadow:var(--shadow-red);
}
.btn-primary:hover {
    background:transparent;
    color:var(--red);
}
.btn-ghost {
    background:transparent;
    color:var(--white);
    border-color:rgba(255,255,255,0.4);
}
.btn-ghost:hover {
    border-color:var(--white);
    color:var(--white);
}
.btn-outline {
    background:transparent;
    color:var(--red);
    border-color:var(--red);
}
.btn-outline:hover {
    background:var(--red);
    color:var(--white);
}
.btn-white {
    background:var(--white);
    color:var(--red);
    border-color:var(--white);
}
.btn-white:hover {
    background:transparent;
    color:var(--white);
}
.btn-sm { padding:9px 20px; font-size:11px }
.btn-lg { padding:17px 40px; font-size:14px }

/* ============================================================
   NAV
   ============================================================ */
#nav {
    position:fixed;
    top:0; left:0; right:0;
    z-index:1000;
    background:var(--black);
    border-bottom:3px solid var(--red);
    height:var(--nav-h);
    transition:var(--trans);
}
#nav.scrolled {
    box-shadow:0 4px 32px rgba(0,0,0,0.5);
    height:58px;
}
.nav-inner {
    display:flex;
    align-items:center;
    height:100%;
    gap:0;
}
.nav-logo {
    display:flex;
    align-items:center;
    gap:12px;
    flex-shrink:0;
    margin-right:auto;
    text-decoration:none;
}
.nav-logo:hover { opacity:0.85 }
.nav-logo-badge {
    width:40px; height:40px;
    background:var(--red);
    border-radius:3px;
    display:flex; align-items:center; justify-content:center;
    font-family:var(--heading);
    font-weight:700; font-size:14px;
    color:var(--white);
    flex-shrink:0;
    transition:var(--trans);
}
#nav.scrolled .nav-logo-badge { width:34px; height:34px; font-size:12px }
.nav-logo-text {
    font-family:var(--heading);
    font-size:15px; font-weight:700;
    color:var(--white);
    text-transform:uppercase;
    letter-spacing:0.06em;
    line-height:1.2;
}
.nav-logo-sub {
    font-family:var(--body);
    font-size:9px;
    color:rgba(255,255,255,0.4);
    text-transform:uppercase;
    letter-spacing:0.15em;
}
.nav-menu {
    display:flex;
    align-items:center;
    height:var(--nav-h);
    gap:0;
}
#nav.scrolled .nav-menu { height:58px }
.nav-item {
    position:relative;
    height:100%;
    display:flex;
    align-items:center;
}
.nav-item > a {
    display:flex;
    align-items:center;
    height:100%;
    padding:0 16px;
    font-family:var(--heading);
    font-size:13px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:0.08em;
    color:rgba(255,255,255,0.85);
    border-bottom:3px solid transparent;
    margin-bottom:-3px;
    transition:var(--trans);
    white-space:nowrap;
    gap:5px;
}
.nav-item > a:hover,
.nav-item.active > a,
.nav-item:hover > a {
    color:var(--orange);
    border-bottom-color:var(--orange);
}
.nav-item.active > a { color:var(--orange) }

/* Dropdown */
.nav-dropdown {
    display:none;
    position:absolute;
    top:100%;
    left:0;
    background:var(--charcoal);
    border-top:3px solid var(--red);
    border-radius:0 0 var(--radius) var(--radius);
    box-shadow:0 8px 32px rgba(0,0,0,0.5);
    min-width:220px;
    z-index:200;
}
.nav-item:hover .nav-dropdown { display:block }
.nav-dropdown a {
    display:block;
    padding:12px 20px;
    font-family:var(--body);
    font-size:13px;
    font-weight:500;
    color:rgba(255,255,255,0.75);
    border-bottom:1px solid rgba(255,255,255,0.06);
    transition:var(--trans);
    text-transform:uppercase;
    letter-spacing:0.05em;
}
.nav-dropdown a:last-child { border-bottom:none }
.nav-dropdown a:hover {
    color:var(--orange);
    background:rgba(204,0,0,0.1);
    padding-left:26px;
}
.nav-cta {
    margin-left:16px;
    padding:9px 20px;
    background:var(--red);
    color:var(--white) !important;
    border-radius:var(--radius);
    font-family:var(--heading);
    font-size:12px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:0.1em;
    border-bottom:none !important;
    margin-bottom:0 !important;
    transition:var(--trans) !important;
}
.nav-cta:hover { background:var(--red-dark) !important; color:var(--white) !important }

/* Admin link */
.nav-admin-link {
    display:flex;
    align-items:center;
    justify-content:center;
    width:30px;
    height:30px;
    margin-left:12px;
    color:rgba(255,255,255,0.3);
    transition:color 0.2s;
    flex-shrink:0;
}
.nav-admin-link:hover { color:rgba(255,255,255,0.7) }

/* Mobile hamburger */
.nav-burger {
    display:none;
    flex-direction:column;
    gap:5px;
    padding:8px;
    cursor:pointer;
    margin-left:16px;
}
.nav-burger span {
    display:block;
    width:24px; height:2px;
    background:var(--white);
    border-radius:2px;
    transition:var(--trans);
}
.nav-burger.open span:nth-child(1) { transform:rotate(45deg) translate(5px,5px) }
.nav-burger.open span:nth-child(2) { opacity:0 }
.nav-burger.open span:nth-child(3) { transform:rotate(-45deg) translate(5px,-5px) }

/* Mobile nav */
.nav-mobile {
    display:none;
    position:fixed;
    top:var(--nav-h);
    left:0; right:0; bottom:0;
    background:var(--black);
    overflow-y:auto;
    z-index:999;
    padding:20px 0 40px;
}
.nav-mobile.open { display:block }
.nav-mobile a {
    display:block;
    padding:14px 24px;
    font-family:var(--heading);
    font-size:15px;
    font-weight:600;
    color:rgba(255,255,255,0.85);
    text-transform:uppercase;
    letter-spacing:0.06em;
    border-bottom:1px solid rgba(255,255,255,0.06);
    transition:var(--trans);
}
.nav-mobile a:hover { color:var(--orange); background:rgba(255,255,255,0.03) }
.nav-mobile .mob-sub a {
    padding-left:40px;
    font-size:13px;
    color:rgba(255,255,255,0.55);
}
.nav-mobile .mob-label {
    padding:18px 24px 8px;
    font-size:10px;
    font-weight:500;
    text-transform:uppercase;
    letter-spacing:0.15em;
    color:rgba(255,255,255,0.25);
    font-family:var(--body);
}
.nav-mobile .mob-cta {
    margin:20px 24px 0;
    background:var(--red);
    color:var(--white) !important;
    text-align:center;
    border-radius:var(--radius);
    border-bottom:none !important;
}

/* Offset body for fixed nav */
body { padding-top:var(--nav-h) }

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position:relative;
    background:var(--black);
    min-height:520px;
    display:flex;
    align-items:center;
    overflow:hidden;
}
.hero-bg-img {
    position:absolute;
    inset:0;
    background-size:cover;
    background-position:center;
    opacity:0.55;
}
.hero-overlay {
    position:absolute;
    inset:0;
    background:linear-gradient(135deg, rgba(13,13,13,0.6) 50%, rgba(204,0,0,0.05) 100%);
}
.hero-line-r {
    position:absolute;
    top:0; right:160px;
    width:4px; height:100%;
    background:var(--red);
    opacity:0.7;
}
.hero-line-r2 {
    position:absolute;
    top:0; right:180px;
    width:2px; height:100%;
    background:var(--orange);
    opacity:0.4;
}
.hero-content {
    position:relative;
    z-index:2;
    max-width:680px;
    padding:64px 0;
}
.hero-content h1 { color:var(--white); margin-bottom:8px }
.hero-content h1 span { color:var(--red) }
.hero-content p { color:rgba(255,255,255,0.75); font-size:17px; max-width:560px; margin-bottom:32px }
.hero-btns { display:flex; gap:16px; flex-wrap:wrap }

/* Page hero (inner pages) */
.page-hero {
    background:var(--charcoal);
    border-bottom:3px solid var(--red);
    padding:56px 0;
    position:relative;
    overflow:hidden;
}
.page-hero::after {
    content:'';
    position:absolute;
    top:0; right:0;
    width:300px; height:100%;
    background:linear-gradient(135deg, transparent 40%, rgba(204,0,0,0.06) 100%);
}
.page-hero h1 { color:var(--white) }
.page-hero p  { color:rgba(255,255,255,0.55); font-size:16px; margin-top:8px; margin-bottom:0 }
.breadcrumb {
    display:flex;
    align-items:center;
    gap:8px;
    margin-bottom:16px;
    font-size:12px;
    text-transform:uppercase;
    letter-spacing:0.08em;
}
.breadcrumb a  { color:rgba(255,255,255,0.4) }
.breadcrumb a:hover { color:var(--orange) }
.breadcrumb span { color:rgba(255,255,255,0.2) }
.breadcrumb .current { color:var(--orange) }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
    background:var(--charcoal);
    border-bottom:1px solid rgba(255,255,255,0.06);
}
.stats-bar .container {
    display:grid;
    grid-template-columns:repeat(4,1fr);
}
.stat-item {
    text-align:center;
    padding:28px 16px;
    border-right:1px solid rgba(255,255,255,0.06);
}
.stat-item:last-child { border-right:none }
.stat-num {
    display:block;
    font-family:var(--heading);
    font-size:42px;
    font-weight:700;
    color:#fff;
    line-height:1;
}
.stat-lbl {
    display:block;
    font-size:11px;
    text-transform:uppercase;
    letter-spacing:0.12em;
    color:rgba(255,255,255,0.4);
    margin-top:6px;
}

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.service-card {
    background:var(--white);
    border:1px solid rgba(0,0,0,0.07);
    border-bottom:3px solid var(--red);
    border-radius:var(--radius);
    padding:28px 24px;
    transition:var(--trans);
}
.service-card:hover {
    transform:translateY(-4px);
    box-shadow:var(--shadow);
    border-bottom-color:var(--orange);
}
.service-card-icon {
    width:44px; height:44px;
    background:rgba(204,0,0,0.08);
    border-radius:var(--radius);
    display:flex; align-items:center; justify-content:center;
    margin-bottom:16px;
    transition:var(--trans);
}
.service-card:hover .service-card-icon { background:rgba(204,0,0,0.14) }
.service-card-icon svg { width:22px; height:22px; stroke:var(--red); fill:none; stroke-width:2 }
.service-card h3 { font-size:18px; margin-bottom:10px }
.service-card p { font-size:13px; color:var(--mgrey); line-height:1.7; margin-bottom:16px }
.service-card-link {
    font-family:var(--heading);
    font-size:11px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:0.1em;
    color:var(--red);
    display:inline-flex;
    align-items:center;
    gap:6px;
    transition:var(--trans);
}
.service-card-link:hover { color:var(--orange); gap:10px }

/* ============================================================
   ICON LIST (service detail pages)
   ============================================================ */
.icon-list { display:flex; flex-direction:column; gap:16px; margin:24px 0 }
.icon-list-item {
    display:flex;
    align-items:flex-start;
    gap:14px;
}
.icon-list-icon {
    width:36px; height:36px;
    background:rgba(204,0,0,0.08);
    border-radius:var(--radius);
    display:flex; align-items:center; justify-content:center;
    flex-shrink:0;
    margin-top:2px;
}
.icon-list-icon svg { width:16px; height:16px; stroke:var(--red); fill:none; stroke-width:2 }
.icon-list-item h4 { font-size:15px; margin-bottom:4px }
.icon-list-item p { font-size:13px; color:var(--mgrey); margin:0 }

/* ============================================================
   VALUES / CORE CARDS
   ============================================================ */
.value-card {
    background:var(--white);
    border:1px solid rgba(0,0,0,0.07);
    border-top:3px solid var(--red);
    border-radius:var(--radius);
    padding:24px 20px;
    text-align:center;
}
.value-icon {
    width:44px; height:44px;
    background:rgba(204,0,0,0.08);
    border-radius:50%;
    display:flex; align-items:center; justify-content:center;
    margin:0 auto 14px;
}
.value-icon svg { width:18px; height:18px; stroke:var(--red); fill:none; stroke-width:2 }
.value-card h4 { font-size:14px; margin-bottom:8px }
.value-card p  { font-size:12px; color:var(--mgrey); line-height:1.6; margin:0 }

/* ============================================================
   IMAGE BLOCK
   ============================================================ */
.img-block {
    border-radius:var(--radius);
    overflow:hidden;
    background:var(--lgrey);
    position:relative;
}
.img-block img { width:100%; height:100%; object-fit:cover; display:block }
.img-block-placeholder {
    width:100%; min-height:320px;
    display:flex; align-items:center; justify-content:center;
    font-size:13px; color:#aaa; text-transform:uppercase; letter-spacing:0.1em;
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band { padding:64px 0; text-align:center }
.cta-band.red { background:var(--red) }
.cta-band.dark { background:var(--black) }
.cta-band h2 { color:var(--white); margin-bottom:12px }
.cta-band p  { color:rgba(255,255,255,0.75); font-size:16px; margin-bottom:28px }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-form .form-group { margin-bottom:18px }
.contact-form label {
    display:block;
    font-size:12px;
    font-weight:500;
    text-transform:uppercase;
    letter-spacing:0.1em;
    color:var(--mgrey);
    margin-bottom:7px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
    width:100%;
    border:1px solid #ddd;
    border-radius:var(--radius);
    padding:13px 15px;
    font-size:15px;
    color:var(--dgrey);
    background:var(--white);
    transition:var(--trans);
    font-family:var(--body);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline:none;
    border-color:var(--red);
    box-shadow:0 0 0 3px rgba(204,0,0,0.1);
}
.contact-form select {
    appearance:none;
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23cc0000' stroke-width='2' fill='none'/%3E%3C/svg%3E");
    background-repeat:no-repeat;
    background-position:right 14px center;
    padding-right:40px;
}
.contact-form textarea { min-height:130px; resize:vertical }
.contact-form .form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px }
.contact-form .error-msg { color:var(--red); font-size:12px; margin-top:5px }
.alert { padding:14px 18px; border-radius:var(--radius); font-size:14px; margin-bottom:20px }
.alert-success { background:rgba(40,167,69,0.1); border:1px solid rgba(40,167,69,0.3); color:#1a7c34 }
.alert-error   { background:rgba(204,0,0,0.08); border:1px solid rgba(204,0,0,0.25); color:var(--red) }

/* ============================================================
   CONTACT INFO BLOCK
   ============================================================ */
.contact-info-item {
    display:flex;
    align-items:flex-start;
    gap:16px;
    margin-bottom:24px;
}
.contact-info-icon {
    width:40px; height:40px;
    background:rgba(204,0,0,0.08);
    border-radius:var(--radius);
    display:flex; align-items:center; justify-content:center;
    flex-shrink:0;
}
.contact-info-icon svg { width:18px; height:18px; stroke:var(--red); fill:none; stroke-width:2 }
.contact-info-item h4 { font-size:13px; margin-bottom:4px; color:var(--black) }
.contact-info-item p, .contact-info-item a { font-size:14px; color:var(--mgrey); margin:0; line-height:1.8 }
.contact-info-item a:hover { color:var(--red) }

/* ============================================================
   CLIENTS / EXPERIENCE
   ============================================================ */
.client-pills { display:flex; flex-wrap:wrap; gap:10px }
.client-pill {
    background:var(--white);
    border:1px solid rgba(0,0,0,0.1);
    border-radius:var(--radius);
    padding:8px 18px;
    font-size:12px;
    font-weight:500;
    color:var(--mgrey);
    text-transform:uppercase;
    letter-spacing:0.06em;
    transition:var(--trans);
}
.client-pill:hover { border-color:var(--red); color:var(--red) }

.exp-item {
    display:flex;
    align-items:flex-start;
    gap:14px;
    padding:16px 0;
    border-bottom:1px solid rgba(0,0,0,0.06);
}
.exp-item:last-child { border-bottom:none }
.exp-dot {
    width:10px; height:10px;
    background:var(--red);
    border-radius:50%;
    flex-shrink:0;
    margin-top:6px;
}
.exp-item p { font-size:15px; margin:0; line-height:1.6 }

/* ============================================================
   TRAINING TABLES
   ============================================================ */
.training-table { width:100%; border-collapse:collapse; margin-top:16px }
.training-table th {
    text-align:left;
    padding:10px 14px;
    font-size:11px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:0.1em;
    color:var(--white);
    background:var(--red);
}
.training-table td {
    padding:12px 14px;
    font-size:13px;
    border-bottom:1px solid rgba(0,0,0,0.06);
    vertical-align:top;
}
.training-table tr:last-child td { border-bottom:none }
.training-table tr:nth-child(even) td { background:rgba(0,0,0,0.02) }
.saqa-id { font-family:monospace; font-size:12px; color:var(--red); font-weight:600 }

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
    background:var(--charcoal);
    border-top:3px solid var(--red);
}
.footer-main {
    padding:60px 0 40px;
}
.footer-grid {
    display:grid;
    grid-template-columns:1.4fr 1fr 1fr 1fr;
    gap:40px;
}
.footer-col h4 {
    font-family:var(--heading);
    font-size:13px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:0.1em;
    color:var(--white);
    padding-bottom:12px;
    border-bottom:2px solid var(--red);
    margin-bottom:18px;
}
.footer-col p,
.footer-col a,
.footer-col li {
    font-size:13px;
    color:rgba(255,255,255,0.55);
    line-height:2;
    display:block;
}
.footer-col a:hover { color:var(--orange) }
.footer-col .footer-logo-text {
    font-family:var(--heading);
    font-size:16px;
    font-weight:700;
    color:var(--white);
    text-transform:uppercase;
    letter-spacing:0.06em;
    margin-bottom:8px;
    display:block;
}
.footer-col .footer-tagline {
    font-size:12px;
    color:rgba(255,255,255,0.35);
    text-transform:uppercase;
    letter-spacing:0.1em;
    margin-bottom:16px;
}
.footer-reg {
    margin-top:16px;
    font-size:11px !important;
    color:rgba(255,255,255,0.25) !important;
    line-height:1.8 !important;
}
.footer-bottom {
    background:var(--black);
    padding:18px 0;
}
.footer-bottom-inner {
    display:flex;
    align-items:center;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:12px;
}
.footer-bottom p {
    font-size:12px;
    color:rgba(255,255,255,0.25);
}
.footer-psira {
    display:flex;
    gap:20px;
}
.footer-psira span {
    font-size:11px;
    color:rgba(255,255,255,0.2);
    text-transform:uppercase;
    letter-spacing:0.08em;
}
.social-links { display:flex; gap:10px; margin-top:12px }
.social-link {
    width:34px; height:34px;
    background:rgba(255,255,255,0.06);
    border-radius:var(--radius);
    display:flex; align-items:center; justify-content:center;
    transition:var(--trans);
}
.social-link:hover { background:var(--red) }
.social-link svg { width:16px; height:16px; stroke:rgba(255,255,255,0.6); fill:none; stroke-width:2 }
.social-link:hover svg { stroke:var(--white) }

/* ============================================================
   MAP
   ============================================================ */
.map-wrap iframe { display:block; width:100%; border:none; height:380px }

/* ============================================================
   BACK TO TOP
   ============================================================ */
#back-top {
    position:fixed;
    bottom:28px; right:28px;
    width:42px; height:42px;
    background:var(--red);
    border-radius:var(--radius);
    display:flex; align-items:center; justify-content:center;
    cursor:pointer;
    opacity:0; pointer-events:none;
    transition:var(--trans);
    z-index:500;
    border:none;
}
#back-top.visible { opacity:1; pointer-events:all }
#back-top:hover { background:var(--red-dark) }
#back-top svg { width:18px; height:18px; stroke:var(--white); fill:none; stroke-width:2.5 }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:1024px) {
    .grid-4 { grid-template-columns:repeat(2,1fr) }
    .footer-grid { grid-template-columns:1fr 1fr; gap:32px }
}

@media (max-width:900px) {
    .grid-3 { grid-template-columns:1fr 1fr }
    .grid-2 { grid-template-columns:1fr }
    .stats-bar .container { grid-template-columns:repeat(2,1fr) }
    .stat-item:nth-child(2) { border-right:none }
    .nav-menu { display:none }
    .nav-burger { display:flex }
    .contact-form .form-row { grid-template-columns:1fr }
}

@media (max-width:600px) {
    .section { padding:56px 0 }
    .grid-3 { grid-template-columns:1fr }
    .grid-4 { grid-template-columns:1fr }
    .footer-grid { grid-template-columns:1fr }
    .stats-bar .container { grid-template-columns:repeat(2,1fr) }
    .hero-content h1 { font-size:34px }
    .hero-btns { flex-direction:column }
    .btn { justify-content:center }
    .footer-bottom-inner { flex-direction:column; text-align:center }
    .cta-band h2 { font-size:26px }
}

@media print {
    #nav, #footer, .btn, #back-top { display:none !important }
    body { padding-top:0 }
}