/* WQCAS USA — Redesigned to match wqcas.com visual style */
/* Palette: Deep blue #003366, accent blue #0066CC, white, light gray */

:root {
    --blue-dark:  #003366;
    --blue-mid:   #004080;
    --blue-accent:#0066CC;
    --blue-light: #E8F0FB;
    --blue-border:#C5D8F5;
    --gray-bg:    #F4F4F4;
    --gray-light: #FAFAFA;
    --border:     #E0E0E0;
    --text:       #333333;
    --text-light: #666666;
    --white:      #FFFFFF;
    --gold:       #E8A000;
    --max-w:      1200px;
    --font-main:  'Open Sans', 'Helvetica Neue', Arial, sans-serif;
    --font-heading: 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
    --radius:     3px;
    --shadow:     0 2px 8px rgba(0,0,0,.10);
    --shadow-lg:  0 4px 20px rgba(0,0,0,.15);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 15px; scroll-behavior: smooth; }
body { font-family: var(--font-main); color: var(--text); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { color: var(--blue-accent); text-decoration: none; transition: color .2s; }
a:hover { color: var(--blue-dark); }
img { max-width: 100%; height: auto; display: block; }

/* ══════════════════════════════════════
   TOP BAR
══════════════════════════════════════ */
.top-bar {
    background: var(--blue-dark);
    color: rgba(255,255,255,.75);
    font-size: 12px;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,.10);
}
.top-bar-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-bar a { color: rgba(255,255,255,.75); }
.top-bar a:hover { color: var(--white); }
.top-bar-contact { display: flex; gap: 20px; }
.top-bar-contact span { display: flex; align-items: center; gap: 5px; }

/* ══════════════════════════════════════
   HEADER
══════════════════════════════════════ */
.site-header {
    background: var(--white);
    border-bottom: 3px solid var(--blue-dark);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,.12);
}
.header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 88px;
    gap: 24px;
}

/* ── LOGO ── */
.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    flex-shrink: 0;
}
.logo-img {
    height: 68px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    display: block;
}
.logo-text-block {
    line-height: 1.15;
    border-left: 2px solid var(--border);
    padding-left: 14px;
}
.logo-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--blue-dark);
    letter-spacing: .5px;
    display: block;
}
.logo-sub {
    font-size: 9px;
    color: var(--text-light);
    letter-spacing: .10em;
    text-transform: uppercase;
    display: block;
    margin-top: 3px;
    max-width: 280px;
    line-height: 1.4;
}

/* ── NAV ── */
.main-nav { display: flex; align-items: center; }
.main-nav > a {
    color: var(--text);
    font-size: 13px;
    font-weight: 600;
    padding: 30px 13px;
    display: block;
    border-bottom: 3px solid transparent;
    margin-bottom: -3px;
    transition: color .2s, border-color .2s;
    text-transform: uppercase;
    letter-spacing: .04em;
    white-space: nowrap;
}
.main-nav > a:hover,
.main-nav > a.active {
    color: var(--blue-dark);
    border-bottom-color: var(--blue-dark);
}
.main-nav > a.nav-inquiry {
    background: var(--blue-dark);
    color: var(--white);
    border-radius: var(--radius);
    padding: 10px 18px;
    margin: 0 0 0 10px;
    border-bottom: none;
    font-size: 13px;
}
.main-nav > a.nav-inquiry:hover {
    background: var(--blue-accent);
    color: var(--white);
    border-bottom: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-shrink: 0;
}
.nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--blue-dark);
    border-radius: 2px;
    transition: .3s;
}

/* ══════════════════════════════════════
   HERO BANNER
══════════════════════════════════════ */
.hero {
    background: linear-gradient(135deg, var(--blue-dark) 0%, #00509E 50%, #0066CC 100%);
    color: var(--white);
    padding: 80px 24px 70px;
    position: relative;
    overflow: hidden;
    min-height: 420px;
    display: flex;
    align-items: center;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='1' fill='rgba(255,255,255,0.06)'/%3E%3C/svg%3E") repeat;
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    right: 0; top: 0; bottom: 0;
    width: 45%;
    background: rgba(255,255,255,.04);
    clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
    pointer-events: none;
}

.hero-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    position: relative;
    z-index: 1;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero-content {}
.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.30);
    color: rgba(255,255,255,.90);
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
}
.hero h1 {
    font-size: clamp(26px, 4vw, 44px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--white);
}
.hero-lead {
    font-size: 16px;
    color: rgba(255,255,255,.85);
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 480px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-hero-primary {
    background: var(--white);
    color: var(--blue-dark);
    font-weight: 700;
    font-size: 14px;
    padding: 13px 28px;
    border-radius: var(--radius);
    border: 2px solid var(--white);
    display: inline-flex; align-items: center; gap: 8px;
    transition: all .2s;
    cursor: pointer;
}
.btn-hero-primary:hover { background: rgba(255,255,255,.90); color: var(--blue-dark); }
.btn-hero-outline {
    background: transparent;
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
    padding: 13px 28px;
    border-radius: var(--radius);
    border: 2px solid rgba(255,255,255,.50);
    display: inline-flex; align-items: center; gap: 8px;
    transition: all .2s;
    cursor: pointer;
}
.btn-hero-outline:hover { border-color: var(--white); color: var(--white); }

/* Hero right side info box */
.hero-info-box {
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.20);
    border-radius: 6px;
    padding: 32px;
    backdrop-filter: blur(4px);
}
.hero-info-box h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255,255,255,.20);
    text-transform: uppercase;
    letter-spacing: .06em;
}
.hero-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,.10);
}
.hero-info-item:last-child { border-bottom: none; padding-bottom: 0; }
.hero-info-icon {
    width: 36px; height: 36px;
    background: rgba(255,255,255,.15);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}
.hero-info-text strong { display: block; color: var(--white); font-size: 13px; margin-bottom: 2px; }
.hero-info-text span { color: rgba(255,255,255,.65); font-size: 12px; }

/* ══════════════════════════════════════
   ABOUT STRIP (below hero)
══════════════════════════════════════ */
.about-strip {
    background: var(--gray-bg);
    padding: 48px 24px;
    border-bottom: 1px solid var(--border);
}
.about-strip-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 48px;
    align-items: center;
}
.about-strip-logo { text-align: center; }
.about-strip-logo .big-w {
    width: 100px; height: 100px;
    background: var(--blue-dark);
    border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
    font-size: 52px; font-weight: 800; color: var(--white);
    font-family: Georgia, serif;
    letter-spacing: -4px;
}
.about-strip-logo p { font-size: 12px; color: var(--text-light); text-transform: uppercase; letter-spacing: .1em; }
.about-strip-text h2 { font-size: 22px; font-weight: 700; color: var(--blue-dark); margin-bottom: 12px; }
.about-strip-text p { font-size: 14px; color: var(--text-light); line-height: 1.75; margin-bottom: 10px; }

/* ══════════════════════════════════════
   SECTION GENERIC
══════════════════════════════════════ */
.section { padding: 64px 24px; }
.section-inner { max-width: var(--max-w); margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-tag {
    display: inline-block;
    background: var(--blue-light);
    color: var(--blue-dark);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 14px;
}
.section-header h2 {
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 700;
    color: var(--blue-dark);
    margin-bottom: 12px;
}
.section-header p { font-size: 15px; color: var(--text-light); max-width: 600px; margin: 0 auto; line-height: 1.7; }
.section-divider {
    width: 50px; height: 3px;
    background: var(--blue-accent);
    margin: 16px auto 0;
    border-radius: 2px;
}

/* ══════════════════════════════════════
   SERVICES / STANDARDS CARDS
══════════════════════════════════════ */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 32px 28px;
    text-align: center;
    transition: box-shadow .25s, transform .25s, border-color .25s;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--blue-dark);
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: #B0C8EE; }
.service-icon {
    width: 70px; height: 70px;
    background: var(--blue-light);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
}
.service-code {
    font-size: 11px;
    font-weight: 700;
    color: var(--blue-accent);
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}
.service-card h3 { font-size: 17px; font-weight: 700; color: var(--blue-dark); margin-bottom: 12px; line-height: 1.3; }
.service-card p { font-size: 13.5px; color: var(--text-light); line-height: 1.65; }
.service-link {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 13px; font-weight: 600; color: var(--blue-accent);
    margin-top: 16px;
    transition: gap .2s;
}
.service-link:hover { gap: 10px; color: var(--blue-dark); }

/* ══════════════════════════════════════
   NEWS SECTION
══════════════════════════════════════ */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.news-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    transition: box-shadow .25s;
    display: flex; flex-direction: column;
}
.news-card:hover { box-shadow: var(--shadow-lg); }
.news-card-thumb {
    background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-accent) 100%);
    height: 160px;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.news-card-thumb-icon { font-size: 40px; opacity: .4; }
.news-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.news-card-date { font-size: 11px; color: var(--text-light); margin-bottom: 8px; letter-spacing: .04em; }
.news-card h3 { font-size: 15px; font-weight: 700; color: var(--blue-dark); margin-bottom: 10px; line-height: 1.4; flex: 1; }
.news-card p { font-size: 13px; color: var(--text-light); line-height: 1.6; margin-bottom: 14px; }
.news-read-more {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 12.5px; font-weight: 700; color: var(--blue-accent);
    text-transform: uppercase; letter-spacing: .04em;
    margin-top: auto;
}
.news-read-more:hover { color: var(--blue-dark); }

/* ══════════════════════════════════════
   PAGE HERO
══════════════════════════════════════ */
.page-hero {
    background: linear-gradient(135deg, var(--blue-dark) 0%, #004FAD 100%);
    color: var(--white);
    padding: 48px 24px 40px;
}
.page-hero-inner { max-width: var(--max-w); margin: 0 auto; }
.breadcrumb { font-size: 12.5px; color: rgba(255,255,255,.60); margin-bottom: 10px; }
.breadcrumb a { color: rgba(255,255,255,.70); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { margin: 0 6px; opacity: .5; }
.page-hero h1 { font-size: clamp(24px, 3.5vw, 38px); font-weight: 700; color: var(--white); margin-bottom: 8px; }
.page-hero p { font-size: 15px; color: rgba(255,255,255,.75); max-width: 560px; }

/* ══════════════════════════════════════
   VISION / MISSION BOX
══════════════════════════════════════ */
.vm-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.vm-card {
    background: var(--blue-dark);
    color: var(--white);
    padding: 32px 28px;
    border-radius: 4px;
    text-align: center;
}
.vm-card-icon { font-size: 32px; margin-bottom: 14px; }
.vm-card h3 { font-size: 14px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 14px; color: rgba(255,255,255,.65); }
.vm-card p { font-size: 13.5px; color: rgba(255,255,255,.85); line-height: 1.7; }

/* ══════════════════════════════════════
   CONTACT
══════════════════════════════════════ */
.contact-layout { display: grid; grid-template-columns: 1fr 1.6fr; gap: 48px; }
.contact-sidebar h2 { font-size: 22px; font-weight: 700; color: var(--blue-dark); margin-bottom: 14px; }
.contact-sidebar p { font-size: 14px; color: var(--text-light); line-height: 1.75; margin-bottom: 24px; }
.contact-items { display: flex; flex-direction: column; gap: 16px; }
.contact-item {
    display: flex; gap: 14px; align-items: flex-start;
    padding: 16px; background: var(--gray-bg);
    border-radius: 4px; border-left: 3px solid var(--blue-accent);
}
.contact-item-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.contact-item-label { font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: var(--text-light); margin-bottom: 3px; }
.contact-item-value { font-size: 14px; font-weight: 600; color: var(--text); }
.contact-item-value a { color: var(--blue-accent); }

/* ══════════════════════════════════════
   FORMS
══════════════════════════════════════ */
.form-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 32px;
    box-shadow: var(--shadow);
}
.form-card h3 { font-size: 17px; font-weight: 700; color: var(--blue-dark); margin-bottom: 22px; padding-bottom: 14px; border-bottom: 2px solid var(--blue-light); }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--text-light); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid var(--border);
    border-radius: 3px;
    font-family: var(--font-main);
    font-size: 14px;
    color: var(--text);
    background: var(--white);
    outline: none;
    transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--blue-accent); box-shadow: 0 0 0 3px rgba(0,102,204,.10); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* BUTTONS */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius);
    font-size: 13.5px; font-weight: 700;
    letter-spacing: .04em;
    cursor: pointer; border: none;
    transition: all .2s; text-decoration: none;
    font-family: var(--font-main);
}
.btn-primary { background: var(--blue-dark); color: var(--white); }
.btn-primary:hover { background: var(--blue-accent); color: var(--white); }
.btn-accent { background: var(--blue-accent); color: var(--white); }
.btn-accent:hover { background: var(--blue-dark); color: var(--white); }
.btn-full { width: 100%; justify-content: center; }
.btn-sm { padding: 8px 16px; font-size: 12.5px; }

/* ALERTS */
.alert { padding: 13px 16px; border-radius: 3px; font-size: 14px; margin-bottom: 16px; }
.alert-success { background: #d4edda; color: #155724; border-left: 4px solid #28a745; }
.alert-error   { background: #f8d7da; color: #721c24; border-left: 4px solid #dc3545; }

/* ══════════════════════════════════════
   CTA STRIP
══════════════════════════════════════ */
.cta-strip {
    background: var(--blue-dark);
    color: var(--white);
    padding: 48px 24px;
    text-align: center;
}
.cta-strip h2 { font-size: 26px; font-weight: 700; margin-bottom: 12px; }
.cta-strip p { font-size: 15px; color: rgba(255,255,255,.75); max-width: 520px; margin: 0 auto 28px; }

/* ══════════════════════════════════════
   ACCREDITATION BODIES TABLE
══════════════════════════════════════ */
.table-wrap { overflow-x: auto; }
.data-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.data-table th { background: var(--blue-dark); color: var(--white); padding: 13px 16px; text-align: left; font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.data-table td { padding: 13px 16px; border-bottom: 1px solid var(--border); color: var(--text-light); }
.data-table tr:hover td { background: var(--blue-light); }
.data-table tr:last-child td { border-bottom: none; }

/* ══════════════════════════════════════
   PRICING TABLE
══════════════════════════════════════ */
.pricing-table { width: 100%; border-collapse: collapse; font-size: 14px; margin-bottom: 24px; }
.pricing-table th { background: var(--blue-dark); color: var(--white); padding: 14px 20px; text-align: left; font-size: 12px; text-transform: uppercase; letter-spacing: .06em; }
.pricing-table td { padding: 13px 20px; border-bottom: 1px solid var(--border); }
.pricing-table tr:nth-child(even) td { background: var(--gray-bg); }
.pricing-table tr:hover td { background: var(--blue-light); }
.pricing-note { font-size: 13px; color: var(--text-light); font-style: italic; padding: 10px 0; }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.site-footer {
    background: var(--blue-dark);
    color: rgba(255,255,255,.65);
    padding-top: 56px;
}
.footer-grid {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px 48px;
    display: grid;
    grid-template-columns: 260px 1fr 1fr 1fr;
    gap: 40px;
}
.footer-brand .logo-wrap { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo-w {
    width: 44px; height: 44px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.20);
    border-radius: 4px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; font-weight: 800; color: var(--white);
    font-family: Georgia, serif; letter-spacing: -2px;
}
.footer-brand .brand-name { font-size: 16px; font-weight: 700; color: var(--white); display: block; }
.footer-brand .brand-full { font-size: 11px; color: rgba(255,255,255,.45); display: block; margin-top: 2px; }
.footer-brand p { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,.55); }
.footer-col h4 { font-size: 13px; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 16px; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,.10); }
.footer-col a { display: block; font-size: 13px; color: rgba(255,255,255,.55); padding: 5px 0; transition: color .2s; }
.footer-col a:hover { color: rgba(255,255,255,.90); padding-left: 6px; }
.footer-col address { font-style: normal; font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.8; }
.footer-bottom {
    background: rgba(0,0,0,.25);
    padding: 16px 24px;
}
.footer-bottom-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 12.5px;
    color: rgba(255,255,255,.40);
}
.footer-bottom-inner a { color: rgba(255,255,255,.55); }
.footer-bottom-inner a:hover { color: var(--white); }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .services-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .top-bar-contact { display: none; }
    .main-nav { display: none; position: fixed; top: 80px; left: 0; right: 0; bottom: 0; background: var(--white); flex-direction: column; padding: 24px; overflow-y: auto; border-top: 1px solid var(--border); gap: 0; z-index: 99; }
    .main-nav.open { display: flex; }
    .main-nav > a { padding: 14px 0; border-bottom: 1px solid var(--border); margin: 0; font-size: 15px; }
    .main-nav > a.nav-inquiry { margin-top: 16px; text-align: center; }
    .nav-toggle { display: flex; }
    .hero-inner { grid-template-columns: 1fr; }
    .hero-info-box { display: none; }
    .about-strip-inner { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .news-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .contact-layout { grid-template-columns: 1fr; }
    .vm-grid { grid-template-columns: 1fr; }
    .form-row-2 { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
}
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { transition: none !important; animation: none !important; }
}

/* ── Logo responsive ── */
@media (max-width: 1100px) {
    .logo-text-block { display: none; }
    .logo-img { height: 58px; }
    .main-nav > a { padding: 30px 9px; font-size: 12px; }
}
@media (max-width: 900px) {
    .logo-text-block { display: block; }
    .logo-img { height: 52px; }
}

/* ── Footer Logo ── */
.footer-logo-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}
.footer-logo-img {
    height: 52px;
    width: auto;
    max-width: 110px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: .85;
}
.footer-logo-img:hover { opacity: 1; }
.footer-brand-text { line-height: 1.2; }
.footer-brand-text .brand-name {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
}
.footer-brand-text .brand-full {
    display: block;
    font-size: 9.5px;
    color: rgba(255,255,255,.40);
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-top: 2px;
}
.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 14px;
}
.footer-social a {
    color: rgba(255,255,255,.45);
    font-size: 16px;
    font-weight: 700;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 4px;
    transition: .2s;
}
.footer-social a:hover {
    color: var(--white);
    border-color: rgba(255,255,255,.40);
}
