@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;500;600;700&family=Manrope:wght@400;500;600;700;800&family=Public+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --navy: #0c3c5a;
  --cyan: #00a4d4;
  --gold: #d6b461;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --text: #333333;
  --font-heading: 'Manrope', sans-serif;
  --font-body: 'Public Sans', sans-serif;
  --font-accent: 'Barlow Condensed', sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
::selection { background: var(--cyan); color: #fff; }

/* ========= TOP BAR ========= */
.top-bar { background: var(--navy); color: #fff; font-size: 12px; padding: 6px 0; letter-spacing: 0.05em; }
.top-bar .container { display: flex; justify-content: space-between; align-items: center; }
.top-bar a { color: #fff; display: inline-flex; align-items: center; gap: 6px; transition: color .2s; }
.top-bar a:hover { color: var(--cyan); }
.top-bar .social { display: flex; gap: 10px; }
/* ========= HEADER ========= */
.header { position: sticky; top: 0; z-index: 100; background: #fff; border-bottom: 1px solid var(--gray-200); transition: box-shadow .3s; }
.header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.08); }
.header .container { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.header-logo { display: flex; align-items: center; gap: 12px; }
.header-logo img { height: 52px; width: auto; }
.header-logo .brand-text { line-height: 1.2; }
.header-logo .brand-name { font-family: var(--font-heading); font-weight: 800; font-size: 18px; color: var(--navy); letter-spacing: -0.02em; }
.header-logo .brand-sub { font-size: 10px; font-weight: 600; color: var(--cyan); letter-spacing: 0.2em; text-transform: uppercase; }

/* Nav */
.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-menu > li { position: relative; }
.nav-menu > li > a { display: flex; align-items: center; gap: 4px; padding: 8px 14px; font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--gray-700); transition: color .2s; }
.nav-menu > li > a:hover, .nav-menu > li > a.active { color: var(--cyan); }
.nav-menu > li > a .arrow { font-size: 10px; transition: transform .2s; }

/* Dropdown */
.dropdown { position: absolute; top: 100%; left: 0; padding-top: 8px; opacity: 0; visibility: hidden; transition: all .2s; }
.dropdown-inner { background: #fff; border: 1px solid var(--gray-200); border-radius: 2px; box-shadow: 0 10px 40px rgba(0,0,0,.1); min-width: 260px; padding: 8px 0; }
.dropdown a { display: block; padding: 8px 16px; font-size: 13px; color: var(--gray-700); transition: all .15s; }
.dropdown a:hover { background: var(--gray-50); color: var(--cyan); }
li:hover > .dropdown { opacity: 1; visibility: visible; }

/* CTA */
.btn-cta { display: inline-flex; align-items: center; gap: 8px; height: 40px; padding: 0 24px; background: var(--navy); color: #fff; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; border: none; cursor: pointer; transition: background .2s; border-radius: 2px; }
.btn-cta:hover { background: #11496b; }
.btn-cta-cyan { background: var(--cyan); }
.btn-cta-cyan:hover { background: #0284b0; }
.btn-cta-outline { background: transparent; border: 2px solid #fff; color: #fff; }
.btn-cta-outline:hover { background: #fff; color: var(--navy); }
.btn-cta-gold { background: transparent; border: 2px solid var(--gold); color: var(--gold); }
.btn-cta-gold:hover { background: var(--gold); color: var(--navy); }
.btn-cta-lg { height: 48px; padding: 0 32px; font-size: 12px; }

/* Mobile */
.mobile-toggle { display: none; background: none; border: 1px solid var(--gray-200); padding: 6px; cursor: pointer; color: var(--navy); border-radius: 2px; width: 40px; height: 40px; align-items: center; justify-content: center; font-size: 20px; }
.mobile-menu { display: none; background: #fff; border-top: 1px solid var(--gray-200); padding: 16px; }
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: 10px 12px; font-size: 14px; font-weight: 500; color: var(--gray-700); border-radius: 4px; }
.mobile-menu a:hover { background: var(--gray-50); color: var(--cyan); }
.mobile-menu .sub { padding-left: 24px; }
.mobile-menu .sub a { font-size: 13px; }

/* ========= CONTAINER ========= */
.container { max-width: 1200px; margin: 0 auto; padding: 0 16px; }

/* ========= HERO ========= */
.hero { position: relative; height: 85vh; min-height: 600px; overflow: hidden; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1s; }
.hero-slide.active { opacity: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(12,60,90,.9), rgba(12,60,90,.6), transparent); }
.hero-content { position: relative; z-index: 2; height: 100%; display: flex; align-items: center; }
.hero-inner { max-width: 640px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px; background: rgba(0,164,212,.15); border: 1px solid rgba(0,164,212,.3); margin-bottom: 20px; }
.hero-badge .dot { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; animation: pulse 2s infinite; }
.hero-badge span { color: var(--gold); font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .4; } }
.hero h1 { font-family: var(--font-heading); font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; color: #fff; line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 16px; }
.hero p { font-size: 18px; color: #cbd5e1; max-width: 520px; margin-bottom: 24px; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-dots { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); display: flex; gap: 12px; z-index: 5; }
.hero-dots button { width: 48px; height: 6px; border: none; border-radius: 3px; background: rgba(255,255,255,.3); cursor: pointer; transition: background .2s; }
.hero-dots button.active { background: var(--cyan); }
.hero-arrows { position: absolute; top: 50%; z-index: 5; }
.hero-arrows button { position: absolute; top: 50%; transform: translateY(-50%); width: 40px; height: 40px; background: rgba(255,255,255,.1); backdrop-filter: blur(4px); border: none; color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 18px; transition: background .2s; border-radius: 2px; }
.hero-arrows button:hover { background: rgba(255,255,255,.2); }
.hero-arrow-l { left: 16px; }
.hero-arrow-r { right: 16px; }

/* ========= SECTIONS ========= */
.section { padding: 64px 0; }
.section-lg { padding: 80px 0; }
.section-gray { background: var(--gray-50); }
.section-navy { background: var(--navy); }
.section-label { font-family: var(--font-accent); font-size: 12px; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; color: var(--cyan); margin-bottom: 12px; }
.section-title { font-family: var(--font-heading); font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 800; color: var(--navy); letter-spacing: -0.02em; }
.section-navy .section-title { color: #fff; }
.text-center { text-align: center; }
.mb-12 { margin-bottom: 48px; }
.mb-6 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 16px; }
.mt-6 { margin-top: 24px; }

/* ========= PAGE HERO (dark) ========= */
.page-hero { padding: 80px 0 100px; background: var(--navy); position: relative; overflow: hidden; text-align: center; }
.page-hero::before { content: ''; position: absolute; top: 20px; right: -40px; width: 350px; height: 350px; border: 40px solid rgba(255,255,255,.04); border-radius: 50%; }
.page-hero .section-label { margin-bottom: 16px; }
.page-hero h1 { font-family: var(--font-heading); font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; color: #fff; line-height: 1.1; margin-bottom: 16px; }
.page-hero p { font-size: 18px; color: #94a3b8; max-width: 600px; margin: 0 auto; }

/* ========= GRID ========= */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ========= CARDS ========= */
.card { background: #fff; border: 1px solid var(--gray-200); border-radius: 2px; overflow: hidden; transition: all .3s; }
.card:hover { border-color: var(--cyan); box-shadow: 0 8px 30px rgba(0,0,0,.08); }
.card-img { width: 100%; height: 180px; object-fit: cover; transition: transform .5s; }
.card:hover .card-img { transform: scale(1.05); }
.card-img-wrap { overflow: hidden; }
.card-body { padding: 20px; }
.card-icon { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: rgba(12,60,90,.05); border-radius: 2px; margin-bottom: 12px; font-size: 18px; color: var(--cyan); }
.card-title { font-family: var(--font-heading); font-weight: 700; color: var(--navy); font-size: 14px; margin-bottom: 8px; }
.card-text { font-size: 13px; color: var(--gray-500); line-height: 1.6; }
.card-link { display: inline-flex; align-items: center; gap: 4px; font-size: 12px; font-weight: 600; color: var(--cyan); margin-top: 12px; transition: gap .2s; }
.card:hover .card-link { gap: 8px; }

/* Horizontal card */
.card-h { display: flex; }
.card-h .card-img-wrap { width: 40%; flex-shrink: 0; }
.card-h .card-img { height: 100%; }
.card-h .card-body { width: 60%; display: flex; flex-direction: column; justify-content: center; }

/* Brand card */
.brand-logo-circle { width: 72px; height: 72px; border-radius: 50%; border: 2px solid var(--gray-200); display: flex; align-items: center; justify-content: center; overflow: hidden; background: #fff; padding: 8px; margin: 0 auto 16px; transition: all .3s; }
.card:hover .brand-logo-circle { border-color: var(--cyan); transform: scale(1.05); }
.brand-logo-circle img { width: 100%; height: 100%; object-fit: contain; }

/* ========= VALUE PROPS ========= */
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.value-item { display: flex; gap: 16px; align-items: flex-start; }
.value-icon { width: 48px; height: 48px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: rgba(12,60,90,.04); border-radius: 2px; font-size: 20px; color: var(--cyan); }
.value-title { font-family: var(--font-heading); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--navy); margin-bottom: 4px; }
.value-text { font-size: 13px; color: var(--gray-600); }

/* ========= CERTIFICATIONS ========= */
.cert-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 32px; padding: 32px 0; border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200); }
.cert-item { display: flex; align-items: center; gap: 8px; color: var(--gray-400); font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; transition: color .2s; }
.cert-item:hover { color: var(--navy); }

/* ========= FINAL CTA ========= */
.final-cta { text-align: center; }
.final-cta h2 { font-family: var(--font-heading); font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 800; color: #fff; margin-bottom: 16px; }
.final-cta p { color: #94a3b8; font-size: 18px; max-width: 600px; margin: 0 auto 32px; }
.final-cta .btns { display: flex; justify-content: center; flex-wrap: wrap; gap: 16px; }

/* ========= SERVICE DETAIL HERO ========= */
.svc-hero { position: relative; height: 50vh; min-height: 380px; overflow: hidden; }
.svc-hero img { width: 100%; height: 100%; object-fit: cover; }
.svc-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, var(--navy), rgba(12,60,90,.5), transparent); }
.svc-hero-content { position: absolute; bottom: 0; left: 0; right: 0; padding-bottom: 48px; }
.svc-hero .back-link { display: inline-flex; align-items: center; gap: 4px; color: var(--cyan); font-size: 13px; margin-bottom: 16px; }
.svc-hero .back-link:hover { color: #fff; }
.svc-hero h1 { font-family: var(--font-heading); font-size: clamp(1.8rem, 4vw, 3rem); color: #fff; font-weight: 800; }

/* ========= DETAIL LAYOUT ========= */
.detail-layout { display: grid; grid-template-columns: 1fr 340px; gap: 48px; }
.detail-main h2 { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; color: var(--navy); margin-bottom: 16px; }
.detail-main p { color: var(--gray-600); line-height: 1.8; font-size: 16px; margin-bottom: 24px; }
.process-step { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 16px; }
.step-num { width: 32px; height: 32px; border-radius: 50%; background: var(--navy); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; flex-shrink: 0; }
.step-text { padding-top: 4px; color: var(--gray-700); font-weight: 500; }

/* Sidebar */
.sidebar-card { background: #fff; border: 1px solid var(--gray-200); border-radius: 2px; padding: 24px; position: sticky; top: 96px; }
.sidebar-card h3 { font-family: var(--font-heading); font-weight: 700; color: var(--navy); margin-bottom: 12px; font-size: 15px; }
.benefit-item { display: flex; gap: 8px; align-items: flex-start; font-size: 13px; color: var(--gray-600); margin-bottom: 8px; }
.benefit-icon { color: var(--cyan); flex-shrink: 0; font-size: 14px; margin-top: 2px; }
.tag { display: inline-block; padding: 4px 12px; background: var(--gray-100); font-size: 12px; font-weight: 500; color: var(--gray-700); border-radius: 2px; margin: 2px; }
.sidebar-card .btn-cta { width: 100%; justify-content: center; margin-top: 16px; }
.sidebar-divider { border: none; border-top: 1px solid var(--gray-200); margin: 20px 0; }

/* Gallery placeholders */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.gallery-placeholder { aspect-ratio: 4/3; background: var(--gray-100); border: 1px solid var(--gray-200); display: flex; align-items: center; justify-content: center; font-size: 12px; color: var(--gray-400); border-radius: 2px; }

/* Nav between pages */
.page-nav { display: flex; justify-content: space-between; margin-top: 64px; padding-top: 32px; border-top: 1px solid var(--gray-200); }
.page-nav a { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--gray-600); transition: color .2s; }
.page-nav a:hover { color: var(--cyan); }

/* ========= ABOUT ========= */
.vision-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.vision-card { padding: 40px; border: 1px solid var(--gray-200); border-radius: 2px; }
.vision-card .icon { width: 48px; height: 48px; border-radius: 2px; display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 20px; }
.vision-card h2 { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.vision-card p { color: var(--gray-600); line-height: 1.8; }

/* Timeline */
.timeline-item { display: flex; gap: 24px; }
.timeline-marker { display: flex; flex-direction: column; align-items: center; }
.timeline-dot { width: 48px; height: 48px; border-radius: 50%; background: var(--navy); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; flex-shrink: 0; transition: background .2s; }
.timeline-item:hover .timeline-dot { background: var(--cyan); }
.timeline-line { width: 2px; height: 48px; background: var(--gray-200); }
.timeline-content { padding-bottom: 32px; }
.timeline-content h3 { font-family: var(--font-heading); font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.timeline-content p { font-size: 14px; color: var(--gray-600); }

/* Values */
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.value-card { background: #fff; padding: 32px; border: 1px solid var(--gray-100); border-radius: 2px; text-align: center; transition: all .3s; }
.value-card:hover { border-color: var(--cyan); box-shadow: 0 8px 30px rgba(0,0,0,.06); }
.value-card .icon { width: 56px; height: 56px; margin: 0 auto 16px; background: rgba(0,164,212,.08); border-radius: 2px; display: flex; align-items: center; justify-content: center; font-size: 22px; color: var(--cyan); }
.value-card h3 { font-family: var(--font-heading); font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.value-card p { font-size: 14px; color: var(--gray-600); }

/* Team */
.team-card { border: 1px solid var(--gray-200); border-radius: 2px; overflow: hidden; transition: all .3s; }
.team-card:hover { border-color: var(--cyan); box-shadow: 0 8px 30px rgba(0,0,0,.08); }
.team-photo { height: 192px; background: linear-gradient(135deg, var(--gray-100), var(--gray-200)); display: flex; align-items: center; justify-content: center; }
.team-photo .placeholder { width: 80px; height: 80px; border-radius: 50%; background: rgba(12,60,90,.08); display: flex; align-items: center; justify-content: center; font-size: 28px; color: rgba(12,60,90,.3); }
.team-info { padding: 20px; text-align: center; }
.team-info h3 { font-family: var(--font-heading); font-weight: 700; color: var(--navy); }
.team-info .role { font-size: 12px; color: var(--cyan); font-weight: 500; margin-top: 4px; }
.team-info p { font-size: 12px; color: var(--gray-500); margin-top: 8px; }

/* ========= CONTACT ========= */
.contact-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 48px; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; }
.contact-icon { width: 44px; height: 44px; background: rgba(12,60,90,.04); border-radius: 2px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 18px; color: var(--cyan); }
.contact-label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--navy); margin-bottom: 4px; }
.contact-value { font-size: 14px; color: var(--gray-600); }
.contact-value a { color: var(--gray-600); transition: color .2s; }
.contact-value a:hover { color: var(--cyan); }

/* Forms */
.form-card { background: #fff; border: 1px solid var(--gray-200); border-radius: 2px; padding: 32px; }
.form-card h2 { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700; color: var(--navy); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 500; color: var(--gray-700); margin-bottom: 4px; }
.form-control { width: 100%; height: 40px; padding: 0 12px; border: 1px solid var(--gray-200); border-radius: 4px; font-size: 14px; font-family: var(--font-body); color: var(--text); transition: border-color .2s, box-shadow .2s; }
.form-control:focus { outline: none; border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(0,164,212,.1); }
textarea.form-control { height: auto; padding: 10px 12px; resize: none; }
select.form-control { appearance: auto; background: #fff; }

/* Multi-step form */
.step-progress { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 32px; }
.step-dot { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; background: var(--gray-200); color: var(--gray-500); transition: all .2s; }
.step-dot.active { background: var(--navy); color: #fff; }
.step-line { width: 48px; height: 2px; background: var(--gray-200); }
.step-line.active { background: var(--navy); }
.form-step { display: none; }
.form-step.active { display: block; }
.form-nav { display: flex; justify-content: space-between; margin-top: 24px; padding-top: 16px; border-top: 1px solid var(--gray-200); }

/* Map */
.map-section { height: 400px; background: var(--gray-100); }
.map-section iframe { width: 100%; height: 100%; border: 0; }

/* ========= BRAND DETAIL ========= */
.brand-hero-logo { width: 96px; height: 96px; border-radius: 50%; overflow: hidden; background: rgba(255,255,255,.1); padding: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.brand-hero-logo img { width: 100%; height: 100%; object-fit: contain; }
.brand-hero-row { display: flex; align-items: center; gap: 24px; }
.highlight-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.highlight-item { padding: 20px; background: var(--gray-50); border: 1px solid var(--gray-100); border-radius: 2px; text-align: center; }
.highlight-item .star { color: var(--gold); font-size: 18px; margin-bottom: 8px; }
.highlight-item p { font-size: 13px; font-weight: 500; color: var(--navy); }

/* ========= FOOTER ========= */
.footer { background: var(--navy); color: #fff; padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand p { font-size: 13px; color: #94a3b8; line-height: 1.8; margin-top: 12px; }
.footer-social { display: flex; gap: 8px; margin-top: 16px; }
.footer-social a { width: 36px; height: 36px; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; font-size: 14px; border-radius: 2px; transition: background .2s; }
.footer-social a:hover { background: var(--cyan); }
.footer h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--cyan); margin-bottom: 16px; }
.footer ul li { margin-bottom: 8px; }
.footer ul a { font-size: 13px; color: #94a3b8; transition: color .2s; }
.footer ul a:hover { color: #fff; }
.footer-contact-item { display: flex; gap: 12px; font-size: 13px; color: #94a3b8; margin-bottom: 12px; }
.footer-contact-item .fi { color: var(--cyan); flex-shrink: 0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); margin-top: 48px; padding: 16px 0; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 12px; color: #64748b; }
.footer-bottom a { color: #94a3b8; transition: color .2s; }
.footer-bottom a:hover { color: #fff; }
.scroll-top { width: 32px; height: 32px; background: rgba(255,255,255,.08); border: none; color: #fff; display: flex; align-items: center; justify-content: center; cursor: pointer; border-radius: 2px; font-size: 14px; transition: background .2s; }
.scroll-top:hover { background: var(--cyan); }

/* ========= RESPONSIVE ========= */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .value-grid, .values-grid { grid-template-columns: repeat(2, 1fr); }
  .detail-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .highlight-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .top-bar { display: none; }
  .nav-menu { display: none; }
  .mobile-toggle { display: flex; }
  .header .btn-cta { display: none; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .vision-grid { grid-template-columns: 1fr; }
  .value-grid, .values-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .card-h { flex-direction: column; }
  .card-h .card-img-wrap { width: 100%; height: 200px; }
  .card-h .card-body { width: 100%; }
  .hero { min-height: 500px; height: 70vh; }
  .hero h1 { font-size: 2rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-hero-row { flex-direction: column; text-align: center; }
}
