/* ==========================================================================
   AFRILINK-LINERS — Luxury Chauffeur & Transfer Service
   Brand palette:  #2b2b2b (ink)  ·  #f7f8fa (paper)
                   #222445 (navy) ·  #dfc140 (gold)
   ========================================================================== */

:root {
  --ink:        #2b2b2b;
  --ink-2:      #1f1f21;
  --navy:       #222445;
  --navy-2:     #1a1c35;
  --paper:      #f7f8fa;
  --gold:       #dfc140;
  --gold-soft:  #e9d179;
  --white:      #ffffff;
  --muted:      #6b6c78;
  --line:       rgba(223, 193, 64, 0.35);

  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans:  "Jost", "Helvetica Neue", Arial, sans-serif;

  --shadow: 0 24px 60px -28px rgba(20, 22, 45, 0.45);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 300;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.75;
  letter-spacing: 0.2px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.15;
  margin: 0 0 0.5em;
}

p { margin: 0 0 1.1rem; }

a { color: var(--gold); text-decoration: none; transition: color 0.3s var(--ease); }
a:hover { color: var(--navy); }

img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 110px 0; position: relative; }
section[id] { scroll-margin-top: 88px; }

/* ---------- Shared bits ------------------------------------------------- */
.overline {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.overline::before {
  content: "";
  width: 38px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}
.overline.center { justify-content: center; }
.overline.on-dark { color: var(--gold-soft); }

.section-head { max-width: 720px; margin-bottom: 64px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 {
  font-size: clamp(2rem, 4vw, 2.9rem);
  margin-bottom: 18px;
}
.section-head p { color: var(--muted); font-size: 1.05rem; margin: 0; }
.on-dark h2, .on-dark h3, .on-dark h4 { color: var(--white); }
.on-dark p { color: rgba(255, 255, 255, 0.72); }
.ethos .section-head h2,
.why .section-head h2,
.future .section-head h2 { color: var(--white); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 16px 34px;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.35s var(--ease);
}
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: transparent; border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-outline { background: transparent; border-color: rgba(255,255,255,0.55); color: var(--white); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-dark { background: var(--navy); color: var(--white); }
.btn-dark:hover { background: var(--gold); color: var(--navy); }

/* ---------- Header ------------------------------------------------------ */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: all 0.4s var(--ease);
  background: transparent;
}
#header.scrolled {
  padding: 12px 0;
  background: rgba(26, 28, 53, 0.96);
  box-shadow: 0 10px 40px -18px rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
}
#header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 15px; }
.brand-mark {
  width: 40px; height: 40px;
  position: relative;
  flex: 0 0 auto;
  transition: transform 0.5s var(--ease);
}
.brand-mark::before {
  content: "";
  position: absolute; inset: 0;
  border: 1.5px solid var(--gold);
  transform: rotate(45deg);
}
.brand-mark::after {
  content: "";
  position: absolute; inset: 12px;
  background: var(--gold);
  transform: rotate(45deg);
}
.brand:hover .brand-mark { transform: rotate(90deg); }
.brand-text { line-height: 1; }
.brand-text .name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.18rem;
  letter-spacing: 1px;
  color: var(--white);
}
.brand-text .name span { color: var(--gold); }
.brand-text .tag {
  display: block;
  font-size: 0.56rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}

#navbar ul {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0; padding: 0;
}
#navbar a {
  display: block;
  padding: 10px 16px;
  font-size: 0.76rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  position: relative;
}
#navbar a::after {
  content: "";
  position: absolute;
  left: 16px; right: 16px; bottom: 4px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
#navbar a:hover, #navbar a.active { color: var(--white); }
#navbar a:hover::after, #navbar a.active::after { transform: scaleX(1); }
#navbar .nav-cta { margin-left: 14px; }
#navbar .nav-cta a {
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 11px 24px;
  border-radius: 2px;
}
#navbar .nav-cta a::after { display: none; }
#navbar .nav-cta a:hover { background: var(--gold); color: var(--navy); }

.mobile-toggle {
  display: none;
  background: none;
  border: 0;
  color: var(--white);
  font-size: 26px;
  cursor: pointer;
  line-height: 1;
}

/* ---------- Hero -------------------------------------------------------- */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 160px 0 90px;
  background: linear-gradient(180deg, rgba(26,28,53,0.72) 0%, rgba(26,28,53,0.55) 40%, rgba(43,43,43,0.9) 100%),
              url("img/homepage2.jpg") center 30% / cover no-repeat;
  color: var(--white);
  position: relative;
}
#hero::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0; height: 140px;
  background: linear-gradient(180deg, transparent, var(--paper));
  pointer-events: none;
}
.hero-content { max-width: 780px; position: relative; z-index: 2; }
.hero-content h1 {
  color: var(--white);
  font-size: clamp(2.6rem, 6.2vw, 5rem);
  line-height: 1.05;
  margin-bottom: 24px;
}
.hero-content h1 em { color: var(--gold); font-style: normal; }
.hero-tagline {
  font-size: 1.15rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  margin-bottom: 40px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }
.hero-meta {
  display: flex;
  gap: 48px;
  margin-top: 64px;
  padding-top: 34px;
  border-top: 1px solid rgba(255,255,255,0.18);
  max-width: 640px;
}
.hero-meta .stat .num {
  font-family: var(--serif);
  font-size: 2.2rem;
  color: var(--gold);
  line-height: 1;
}
.hero-meta .stat .lbl {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-top: 8px;
}

/* ---------- About ------------------------------------------------------- */
.about { background: var(--paper); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-figure { position: relative; }
.about-figure img {
  width: 100%;
  border-radius: 3px;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 2;
}
.about-figure::before {
  content: "";
  position: absolute;
  top: -20px; left: -20px;
  width: 120px; height: 120px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
  z-index: 1;
}
.about-figure::after {
  content: "";
  position: absolute;
  bottom: -20px; right: -20px;
  width: 120px; height: 120px;
  border-bottom: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  z-index: 1;
}
.about-text h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); margin-bottom: 22px; }
.about-text p { color: #4a4b57; }
.director-card {
  margin-top: 30px;
  padding: 24px 28px;
  background: var(--white);
  border-left: 3px solid var(--gold);
  box-shadow: 0 18px 40px -30px rgba(20,22,45,0.5);
}
.director-card .role {
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}
.director-card .who {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--navy);
  margin-top: 4px;
}
.director-card .who small { display:block; font-family: var(--sans); font-size:0.8rem; color: var(--muted); letter-spacing: 0.04em; margin-top:6px; font-weight:300; }

/* ---------- Vision / Mission / Values (dark band) ----------------------- */
.ethos {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 60%, var(--ink) 100%);
  color: var(--white);
}
.ethos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  margin-bottom: 74px;
}
.ethos-card {
  padding: 40px 34px;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 3px;
  background: rgba(255,255,255,0.02);
  transition: all 0.4s var(--ease);
}
.ethos-card:hover { border-color: var(--line); transform: translateY(-6px); background: rgba(223,193,64,0.04); }
.ethos-card .k {
  font-family: var(--serif);
  font-size: 2.4rem;
  color: var(--gold);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 16px;
}
.ethos-card h3 { color: var(--white); font-size: 1.5rem; margin-bottom: 14px; }
.ethos-card p { color: rgba(255,255,255,0.72); margin: 0; font-size: 0.97rem; }

.values-head { text-align: center; margin-bottom: 40px; }
.values-head span { color: rgba(255,255,255,0.6); letter-spacing: 0.05em; }
.values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.value {
  text-align: center;
  padding: 30px 18px;
  border-top: 2px solid var(--line);
}
.value .vn {
  font-family: var(--serif);
  font-size: 0.9rem;
  color: var(--gold);
  letter-spacing: 0.1em;
}
.value h4 { color: var(--white); font-size: 1.15rem; margin: 10px 0 0; }

/* ---------- What We Do -------------------------------------------------- */
.services { background: var(--paper); }
.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.svc-card {
  background: var(--white);
  padding: 44px 30px;
  border: 1px solid #eceef3;
  border-radius: 3px;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.svc-card::before {
  content: "";
  position: absolute; top: 0; left: 0; height: 3px; width: 0;
  background: var(--gold);
  transition: width 0.4s var(--ease);
}
.svc-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: transparent; }
.svc-card:hover::before { width: 100%; }
.svc-icon {
  width: 58px; height: 58px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold);
  margin-bottom: 24px;
}
.svc-icon svg { width: 26px; height: 26px; }
.svc-card h4 { font-size: 1.25rem; margin-bottom: 10px; }
.svc-card p { color: var(--muted); font-size: 0.94rem; margin: 0; }

/* ---------- Fleet & Rates ---------------------------------------------- */
.fleet { background: var(--white); }
/* .rates-wrap {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: start;
} */

.fleet-layout{
    display:grid;
    grid-template-columns:1.2fr 0.8fr;
    gap:60px;
    align-items:center;
}

.rates-info{
    display:flex;
    align-items:center;
}

.rates-info .note{
    padding:20px 24px;
    background:var(--paper);
    border-left:4px solid #dfc140;
    color:#4a4b57;
    line-height:1.8;
}

@media (max-width:768px){
    .fleet-layout{
        grid-template-columns:1fr;
        gap:32px;
    }
}


.rates-wrap{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:48px;
    align-items:center;
}

@media (max-width:768px){
    .rates-wrap{
        grid-template-columns:1fr;
    }
}

.rates-intro .note {
  margin-top: 24px;
  padding: 20px 24px;
  background: var(--paper);
  border-left: 3px solid var(--gold);
  font-size: 0.92rem;
  color: #4a4b57;
}
.rate-list { display: flex; flex-direction: column; }
.rate-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 4px;
  border-bottom: 1px solid #ececf1;
  transition: padding 0.3s var(--ease), background 0.3s var(--ease);
}
.rate-row:hover { background: var(--paper); padding-left: 14px; padding-right: 14px; }
.rate-row .veh {
  font-family: var(--serif);
  font-size: 1.06rem;
  color: var(--navy);
}
.rate-row .veh small {
  display: block;
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
}
.rate-row .dots { flex: 1; border-bottom: 1px dotted #c9cbd6; transform: translateY(-4px); }
.rate-row .price {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--gold);
  white-space: nowrap;
  font-size: 1.05rem;
}
.rate-row.premium .price { color: var(--navy); }
.rate-foot { margin-top: 20px; font-size: 0.82rem; color: var(--muted); }

/* ---------- Classes / fleet cards -------------------------------------- */
.classes { background: var(--paper); }
.class-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.class-card {
  display: flex;
  gap: 26px;
  align-items: center;
  background: var(--white);
  border: 1px solid #eceef3;
  border-radius: 3px;
  padding: 24px;
  transition: all 0.4s var(--ease);
}
.class-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.class-card .thumb {
  flex: 0 0 150px;
  height: 110px;
  border-radius: 3px;
  overflow: hidden;
  background: var(--paper);
  display: flex; align-items: center; justify-content: center;
}
.class-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.class-card .cinfo .tier {
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}
.class-card .cinfo h4 { font-size: 1.28rem; margin: 4px 0 6px; }
.class-card .cinfo p { color: var(--muted); font-size: 0.9rem; margin: 0; }

/* ---------- Why choose us (dark, image) -------------------------------- */
.why {
  background: linear-gradient(rgba(26,28,53,0.9), rgba(43,43,43,0.94)),
              url("img/hero-bg.jpg") center / cover fixed no-repeat;
  color: var(--white);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.why-item { padding-top: 26px; border-top: 2px solid var(--line); }
.why-item .wn {
  font-family: var(--serif);
  font-size: 2.4rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
}
.why-item h4 { color: var(--white); font-size: 1.2rem; margin-bottom: 10px; }
.why-item p { color: rgba(255,255,255,0.7); font-size: 0.92rem; margin: 0; }
.why-foot {
  text-align: center;
  max-width: 760px;
  margin: 64px auto 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.25rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
}

/* ---------- Here to serve ---------------------------------------------- */
.serve { background: var(--white); }
.serve-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; }
.serve-col { position: relative; padding-left: 0; }
.serve-col h4 {
  display: flex; align-items: center; gap: 14px;
  font-size: 1.4rem; margin-bottom: 14px;
}
.serve-col h4 .dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--gold); flex: 0 0 auto;
}
.serve-col p { color: var(--muted); margin: 0; }

/* ---------- Future direction ------------------------------------------- */
.future {
  background: linear-gradient(150deg, var(--ink) 0%, var(--navy-2) 100%);
  color: var(--white);
}
.future-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 60px; align-items: center; }
.future h2 { color: var(--white); font-size: clamp(2rem, 4vw, 3rem); }
.future p { color: rgba(255,255,255,0.75); }
.future .lead {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--gold-soft);
  line-height: 1.6;
}

/* ---------- Contact ----------------------------------------------------- */
.contact { background: var(--paper); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-info .info-item {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid #e4e6ee;
}
.contact-info .info-item:first-of-type { padding-top: 0; }
.info-item .ic {
  flex: 0 0 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold);
}
.info-item .ic svg { width: 20px; height: 20px; }
.info-item h4 { font-size: 1.1rem; margin-bottom: 4px; }
.info-item p, .info-item a { margin: 0; color: #4a4b57; font-size: 0.95rem; }
.info-item a { display: block; }
.info-item a:hover { color: var(--gold); }

.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: 3px;
  box-shadow: var(--shadow);
}
.contact-form .grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}
.field input, .field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid #d9dbe4;
  border-radius: 2px;
  background: var(--paper);
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--ink);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(223,193,64,0.15);
}
.field textarea { resize: vertical; min-height: 130px; }
.contact-form .btn { width: 100%; justify-content: center; border: 0; }

.phone-row{
    margin-bottom:12px;
}

.wa-btn{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:16px;
    color:#1f8a4c;
    text-decoration:none;
    font-weight:600;
    transition:.25s ease;
}

.wa-btn .cta{
    font-size:.9rem;
    font-weight:500;
    color:#7a7a7a;
    transition:.25s ease;
}

.wa-btn:hover{
    color:#25D366;
}

.wa-btn:hover .cta{
    color:#25D366;
    transform:translateX(4px);
}

.cta .arrow{
    display:inline-block;
    animation:arrow-bounce 1.8s ease-in-out infinite;
}

@keyframes arrow-bounce{
    0%,100%{
        transform:translateX(0);
    }
    50%{
        transform:translateX(6px);
    }
}

/* ---------- Footer ------------------------------------------------------ */
#footer {
  background: var(--ink-2);
  color: rgba(255,255,255,0.7);
  padding: 76px 0 30px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .fb-mark {
  display: flex; align-items: center; gap: 14px; margin-bottom: 22px;
}
.footer-brand .fb-mark .brand-mark { width: 44px; height: 44px; }
.footer-brand .fb-mark .name {
  font-family: var(--serif); font-weight: 600; font-size: 1.4rem;
  letter-spacing: 1px; color: var(--white);
}
.footer-brand .fb-mark .name span { color: var(--gold); }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.92rem; max-width: 320px; }
.footer-col h5 {
  color: var(--white);
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { color: rgba(255,255,255,0.65); font-size: 0.93rem; }
.footer-col a:hover { color: var(--gold); }
.footer-col p { color: rgba(255,255,255,0.65); font-size: 0.93rem; margin: 0 0 12px; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 26px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}
.footer-bottom .tagline { color: var(--gold); letter-spacing: 0.2em; text-transform: uppercase; font-size: 0.72rem; }

/* ---------- Back to top ------------------------------------------------- */
.back-to-top {
  position: fixed;
  right: 26px; bottom: 26px;
  width: 46px; height: 46px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transform: translateY(12px);
  transition: all 0.4s var(--ease);
  z-index: 999;
  box-shadow: 0 12px 30px -10px rgba(0,0,0,0.5);
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--navy); color: var(--gold); }

/* ---------- Reveal on scroll ------------------------------------------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---------- Responsive -------------------------------------------------- */
@media (max-width: 1024px) {
  .svc-grid, .why-grid { grid-template-columns: repeat(2, 1fr); }
  .ethos-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  section { padding: 80px 0; }
  #navbar {
    position: fixed;
    top: 0; right: 0;
    width: min(320px, 82vw);
    height: 100vh;
    background: var(--navy-2);
    padding: 90px 30px 30px;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    box-shadow: -20px 0 50px -20px rgba(0,0,0,0.6);
  }
  #navbar.open { transform: translateX(0); }
  #navbar ul { flex-direction: column; align-items: stretch; gap: 4px; }
  #navbar a { padding: 14px 8px; font-size: 0.9rem; }
  #navbar a::after { display: none; }
  #navbar .nav-cta { margin: 16px 0 0; }
  #navbar .nav-cta a { text-align: center; }
  .mobile-toggle { display: block; z-index: 1001; }
  #header.scrolled .mobile-toggle, #header .mobile-toggle { color: var(--white); }
  .about-grid, .future-grid, .contact-grid,
   .rates-wrap { grid-template-columns: 1fr; gap: 44px; }
  .about-figure { max-width: 520px; }
  .serve-grid { grid-template-columns: 1fr; gap: 34px; }
  .values { grid-template-columns: repeat(2, 1fr); }
  .class-grid { grid-template-columns: 1fr; }
  .hero-meta { flex-wrap: wrap; gap: 28px; }
}

@media (max-width: 560px) {
  .container { padding: 0 20px; }
  .svc-grid, .why-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 34px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .contact-form { padding: 26px; }
  .contact-form .grid2 { grid-template-columns: 1fr; }
  .brand-text .tag { display: none; }
  .class-card { flex-direction: column; align-items: stretch; text-align: left; }
  .class-card .thumb { flex-basis: auto; width: 100%; height: 150px; }
  .hero-content h1 { font-size: 2.6rem; }
}