/* ============================================================
   CMN FISH FARM — Site Stylesheet (WRD-aligned)
   Brand colours (confirmed):
   Red #C0392B · Gold #F1C40F · Deep Green #1a472a
   Navy #1a2a4a · Warm Off-White #F5F0E8
   ============================================================ */

:root {
  --navy:          #1a2a4a;   /* bands: hero, page-hero, footer */
  --navy-2:        #22365e;
  --navy-line:     #3a5280;
  --red:           #C0392B;   /* primary — CTAs, highlights */
  --red-dark:      #96281B;
  --gold:          #F1C40F;   /* accent — prices, badges, award */
  --gold-dark:     #8F6B08;   /* gold variant for text on light bg (contrast) */
  --gold-soft-bg:  rgba(241, 196, 15, 0.14);
  --green:         #1a472a;   /* supporting — WhatsApp buttons, farm accents */
  --green-dark:    #12331e;
  --cream:         #F5F0E8;   /* page background */
  --cream-2:       #ECE3D0;   /* tinted sections */
  --card:          #FFFFFF;
  --text:          #2B3446;
  --muted:         #5C6779;
  --line:          #E2D8C4;
  --on-navy:       #EAF0F8;
  --on-navy-muted: #AEC0D6;
  --radius:        14px;
  --max:           1100px;
  --font-head:     "Fraunces", Georgia, "Times New Roman", serif;
  --font-body:     "Public Sans", "Segoe UI", Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  line-height: 1.65;
  font-size: 1.02rem;
}

img, svg { display: block; max-width: 100%; }
a { color: var(--red); }
a:hover { color: var(--red-dark); }

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

/* ---------- Headings ---------- */
h1, h2, h3 { font-family: var(--font-head); line-height: 1.15; font-weight: 700; color: var(--navy); }

.kicker {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.6rem;
}

.section-title { font-size: clamp(1.7rem, 3.4vw, 2.4rem); }
.section-lead  { color: var(--muted); max-width: 62ch; margin-top: 0.7rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.98rem;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
  cursor: pointer;
  font-family: var(--font-body);
}
.btn:hover { transform: translateY(-2px); }

.btn-wa { background: var(--green); color: #fff; border-color: var(--green); }
.btn-wa:hover { background: var(--green-dark); border-color: var(--green-dark); color: #fff; }

.btn-red { background: var(--red); color: #fff; border-color: var(--red); }
.btn-red:hover { background: var(--red-dark); border-color: var(--red-dark); color: #fff; }

.btn-ghost { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn-ghost:hover { background: rgba(241, 196, 15, 0.14); color: var(--gold); }

.btn svg { width: 1.15em; height: 1.15em; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--navy);
  border-bottom: 3px solid var(--red);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  transition: box-shadow 0.3s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.75rem;
  position: relative;
}

.brand { display: flex; align-items: center; gap: 0.65rem; text-decoration: none; }
.brand-logo { width: 44px; height: 44px; flex-shrink: 0; }
img.brand-logo {
  border-radius: 50%;
  background: #fff;
  object-fit: contain;
  padding: 1px;
}
.brand-name {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.1;
}
.brand-name small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

/* FIX 2 — nav layout: links left, WhatsApp + language toggle right */
.main-nav { flex: 1; display: flex; align-items: center; margin-left: 1.25rem; }
.main-nav .nav-links { display: flex; align-items: center; gap: 0.25rem; list-style: none; }
.main-nav .nav-links > li > a {
  display: block;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  text-decoration: none;
  color: var(--on-navy);
  font-weight: 600;
  font-size: 0.95rem;
}
.main-nav .nav-links > li > a:hover { background: var(--navy-2); color: var(--gold); }
.main-nav .nav-links > li > a.active { background: var(--red); color: #fff; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.nav-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #25D366;
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s ease, transform 0.15s ease;
}
.nav-whatsapp:hover { background: #1eb857; color: #fff; transform: translateY(-1px); }
.nav-whatsapp svg { width: 1.1em; height: 1.1em; }

.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--navy-line);
  border-radius: 10px;
  padding: 0.45rem 0.6rem;
  color: var(--cream);
  cursor: pointer;
}
.nav-toggle svg { width: 24px; height: 24px; }

/* ---------- Hero (Home) ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 420px at 85% -10%, rgba(192, 57, 43, 0.30), transparent 60%),
    radial-gradient(700px 380px at -5% 110%, rgba(26, 71, 42, 0.45), transparent 60%),
    linear-gradient(180deg, var(--navy-2), var(--navy));
  padding: 4.5rem 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(241, 196, 15, 0.16) 0 6px, transparent 7px),
    radial-gradient(circle, rgba(234, 240, 248, 0.09) 0 4px, transparent 5px),
    radial-gradient(circle, rgba(234, 240, 248, 0.07) 0 9px, transparent 10px);
  background-size: 340px 340px, 220px 220px, 460px 460px;
  background-position: 12% 30%, 70% 60%, 45% 10%;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

.hero .kicker { color: var(--gold); }
.hero h1 { font-size: clamp(2.3rem, 5.6vw, 3.7rem); color: var(--cream); margin-bottom: 1.1rem; }
.hero h1 .accent { color: var(--gold); }
.hero p { color: var(--on-navy-muted); font-size: 1.12rem; max-width: 56ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.8rem; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background:
    radial-gradient(700px 320px at 85% 0%, rgba(192, 57, 43, 0.25), transparent 60%),
    linear-gradient(180deg, var(--navy-2), var(--navy));
  padding: 3.6rem 0 3.2rem;
}
.page-hero .kicker { color: var(--gold); }
.page-hero h1 { font-size: clamp(2rem, 4.4vw, 3rem); color: var(--cream); }
.page-hero p { color: var(--on-navy-muted); margin-top: 0.6rem; max-width: 62ch; }
.page-hero .tagline-line { color: var(--gold); font-family: var(--font-head); font-size: 1.15rem; margin-top: 0.9rem; }

/* ---------- Trust strip (Home) ---------- */
.trust-strip {
  background: #fff;
  border-top: 4px solid var(--red);
  border-bottom: 1px solid var(--line);
}
.trust-strip .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-block: 1.5rem;
}
.trust-item { display: flex; gap: 0.9rem; align-items: flex-start; }
.trust-icon {
  width: 46px; height: 46px;
  flex-shrink: 0;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--gold-soft-bg);
  color: var(--gold-dark);
}
.trust-icon svg { width: 24px; height: 24px; }
.trust-item strong { display: block; color: var(--navy); }
.trust-item span { color: var(--muted); font-size: 0.9rem; }

/* ---------- Sections ---------- */
.section { padding: 4rem 0; }
.section + .section, .section + .cta-section { border-top: 1px solid var(--line); }
.section-tint { background: var(--cream-2); }

/* ---------- Cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem;
  transition: transform 0.15s ease, border-color 0.15s ease;
}
.card:hover { transform: translateY(-4px); border-color: var(--gold); }
.card h3 { font-size: 1.2rem; margin: 0.9rem 0 0.45rem; }
.card h3:first-child { margin-top: 0; }
.card p { color: var(--muted); font-size: 0.97rem; }

.card-icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--gold-soft-bg);
  color: var(--gold-dark);
}
.card-icon svg { width: 28px; height: 28px; }

a.card-link {
  display: inline-block;
  margin-top: 0.9rem;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
}
a.card-link:hover { text-decoration: underline; }

/* ---------- Price cards ---------- */
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.price-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-top: 5px solid var(--red);
  border-radius: var(--radius);
  padding: 1.7rem;
  display: flex;
  flex-direction: column;
}
.price-card.gold-top { border-top-color: var(--gold); }
.price-card h3 { font-size: 1.25rem; }
.price-card .bm { color: var(--gold-dark); font-style: italic; font-size: 0.92rem; }
.price {
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--gold-dark);
  margin: 0.7rem 0 0.2rem;
}
.price small { font-family: var(--font-body); font-size: 0.95rem; color: var(--muted); font-weight: 600; }
.price-card p.note { color: var(--muted); font-size: 0.95rem; margin-top: 0.5rem; flex-grow: 1; }
.price-card .btn { margin-top: 1.2rem; justify-content: center; }
.price-card .photo-slot { margin-bottom: 1.2rem; }

.badge {
  display: inline-block;
  align-self: flex-start;
  background: var(--green);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  margin-bottom: 0.6rem;
}

/* ---------- Photo placeholders ---------- */
.photo-slot {
  border: 2px dashed var(--gold-dark);
  background: linear-gradient(135deg, #FBF7EE, #F1E9D6);
  border-radius: var(--radius);
  padding: 1.5rem;
  min-height: 210px;
  display: grid;
  place-content: center;
  justify-items: center;
  text-align: center;
  gap: 0.4rem;
}
.photo-slot svg { width: 42px; height: 42px; color: var(--gold-dark); }
.photo-slot strong {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
}
.photo-slot p { color: var(--muted); font-size: 0.9rem; max-width: 40ch; }
.photo-slot code {
  font-size: 0.8rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0.15rem 0.55rem;
  color: var(--red-dark);
}
.photo-slot.tall { min-height: 380px; }

/* FIX 1 — image & video sizing: nothing requires scrolling to view fully */
main img {
  max-width: 100%;
  max-height: 60vh;
  object-fit: cover;
  display: block;
}

.photo {
  width: 100%;
  height: 220px;
  max-height: 220px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  display: block;
  background: #fff;
}
.photo-hero {
  height: auto;
  width: 100%;
  max-height: 55vh;
  object-fit: cover;
  object-position: center top;
}
.photo-full {
  height: auto;
  width: auto;
  max-width: 100%;
  max-height: 60vh;
  object-fit: contain;
  margin-inline: auto;
}

video {
  max-height: 55vh;
  object-fit: contain;
  background: #000;
}

.slot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

/* ---------- Pending marker ---------- */
.pending {
  display: inline-block;
  font-size: 0.82em;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--gold-dark);
  background: var(--gold-soft-bg);
  border: 1px dashed var(--gold-dark);
  border-radius: 6px;
  padding: 0.08rem 0.45rem;
}

/* ---------- Feature / award ---------- */
.feature {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.6rem;
  align-items: start;
  background: linear-gradient(135deg, rgba(241, 196, 15, 0.12), rgba(192, 57, 43, 0.06));
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  padding: 2rem;
}
.feature-icon {
  width: 74px; height: 74px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  flex-shrink: 0;
}
.feature-icon svg { width: 40px; height: 40px; }
.feature p { color: var(--text); margin-top: 0.5rem; }
.feature .meta { color: var(--muted); font-size: 0.95rem; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
.two-col p { color: var(--muted); margin-top: 0.8rem; }
.two-col p strong { color: var(--navy); }

/* ---------- Steps ---------- */
.steps { list-style: none; counter-reset: step; margin-top: 2rem; display: grid; gap: 1rem; }
.steps li {
  counter-increment: step;
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem 1.4rem;
}
.steps li::before {
  content: counter(step);
  flex-shrink: 0;
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
}
.steps strong { color: var(--navy); display: block; }
.steps span { color: var(--muted); font-size: 0.95rem; }

/* ---------- Info list ---------- */
.info-list { list-style: none; display: grid; gap: 1rem; margin-top: 1.6rem; }
.info-list li { display: grid; grid-template-columns: 46px 1fr; gap: 0.9rem; align-items: start; }
.info-icon {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--cream-2);
  color: var(--gold-dark);
}
.info-icon svg { width: 24px; height: 24px; }
.info-list strong { color: var(--navy); display: block; }
.info-list span, .info-list a { color: var(--muted); }
.info-list a:hover { color: var(--red); }

/* ---------- Enquiry form ---------- */
.enquiry-form {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
}
.form-grid { display: grid; gap: 1.1rem; }
.enquiry-form label {
  display: block;
  font-weight: 700;
  color: var(--navy);
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}
.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  font: inherit;
  color: var(--text);
  background: #FFFDF8;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 0.8rem 0.9rem;
}
.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(241, 196, 15, 0.25);
}
.enquiry-form textarea { resize: vertical; min-height: 120px; }
.form-note { color: var(--muted); font-size: 0.88rem; }
.form-actions .btn { width: 100%; justify-content: center; }

/* ---------- Map ---------- */
.map-wrap {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
}
.map-wrap iframe { width: 100%; height: 380px; border: 0; display: block; }
.map-link { display: inline-block; margin-top: 0.8rem; font-weight: 600; }

/* ---------- CTA band ---------- */
.cta-band {
  background:
    radial-gradient(600px 260px at 20% 0%, rgba(241, 196, 15, 0.18), transparent 60%),
    linear-gradient(135deg, var(--red), var(--red-dark));
  border-radius: var(--radius);
  padding: 3rem 2.5rem;
  text-align: center;
}
.cta-band h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.2rem); }
.cta-band p { color: rgba(255, 255, 255, 0.9); margin: 0.7rem auto 1.6rem; max-width: 52ch; }
.cta-band .btn-wa { border-color: #fff; }
.cta-band .btn-ghost { color: #fff; border-color: #fff; }
.cta-band .btn-ghost:hover { background: rgba(255, 255, 255, 0.14); color: #fff; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy);
  border-top: 3px solid var(--gold);
  padding: 3.2rem 0 1.6rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 2.2rem;
}
.footer-grid h3 {
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}
.footer-grid p, .footer-grid li { color: var(--on-navy-muted); font-size: 0.95rem; }
.footer-grid ul { list-style: none; display: grid; gap: 0.45rem; }
.footer-grid a { color: var(--on-navy-muted); text-decoration: none; }
.footer-grid a:hover { color: var(--gold); }
.footer-brand { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.9rem; }
.footer-brand .brand-name { font-size: 1.1rem; }
.footer-bottom {
  border-top: 1px solid var(--navy-line);
  margin-top: 2.4rem;
  padding-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: space-between;
  color: var(--on-navy-muted);
  font-size: 0.85rem;
}

/* ---------- Language toggle (EN / BM) ---------- */
.lang-toggle { display: flex; gap: 4px; }
.lang-toggle button {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 6px;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease;
}
.lang-toggle button:hover { color: #fff; }
.lang-toggle button.active {
  background: #C0392B;
  border-color: #C0392B;
  color: #fff;
}

/* Language visibility — default English, body.lang-bm-active shows BM */
.lang-bm { display: none; }
body.lang-bm-active .lang-en { display: none; }
body.lang-bm-active .lang-bm { display: inline; }

/* ---------- Final update additions ---------- */
.trust-strip .container { grid-template-columns: repeat(4, 1fr); }
.trust-icon { font-size: 1.4rem; }

.halal-note {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  margin-top: 0.9rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--green);
}

.photo-caption { margin-top: 0.6rem; font-size: 0.92rem; color: var(--muted); }

.event-card {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 6px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.8rem;
}
.event-date {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.28rem 0.8rem;
  border-radius: 999px;
  margin-bottom: 0.8rem;
}
.event-timeline { list-style: none; margin-top: 1rem; display: grid; gap: 0.45rem; }
.event-timeline li {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 0.8rem;
  font-size: 0.95rem;
  color: var(--muted);
}
.event-timeline strong { color: var(--navy); }

.testimonial-card {
  background: #FBF7EE;
  border: 2px dashed var(--gold-dark);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  margin-top: 2rem;
}
.testimonial-card .t-icon { font-size: 2.2rem; }

@media (max-width: 1000px) {
  .trust-strip .container { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- FIX 3 — Services dropdown ---------- */
.nav-dropdown { position: relative; }
.dropdown-toggle { cursor: pointer; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
  min-width: 220px;
  padding: 8px;
  z-index: 1001;
  list-style: none;
}
.dropdown-menu li a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  color: #1a2a4a;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}
.dropdown-menu li a .dropdown-sub {
  display: block;
  font-size: 11px;
  color: #888;
  font-weight: 400;
  margin-top: 2px;
}
.dropdown-menu li a:hover { background: #F5F0E8; color: #1a2a4a; }
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu,
.nav-dropdown.open .dropdown-menu { display: block; }

/* ---------- Founding story ---------- */
.pull-quote {
  border-left: 5px solid var(--gold);
  background: #FBF7EE;
  border-radius: 0 12px 12px 0;
  padding: 1.3rem 1.6rem;
  margin-top: 1.8rem;
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--navy);
}
.pull-quote cite {
  display: block;
  margin-top: 0.8rem;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--muted);
}

.footer-est {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

/* ---------- CHANGE 2 — standardized award photos ---------- */
.photo-award {
  width: 100%;
  height: 280px;
  min-height: 280px;
  max-height: 280px;
  object-fit: cover;
  object-position: center top;
  border-radius: 10px;
  border: 1px solid var(--line);
  display: block;
  cursor: zoom-in;
}

.award-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
  align-items: start;
}

@media (max-width: 640px) {
  .award-grid { grid-template-columns: 1fr; }
  .photo-award {
    height: 220px;
    min-height: 220px;
    max-height: 220px;
  }
}

/* ---------- FIX 4 — Image lightbox ---------- */
.lightbox-trigger { cursor: zoom-in; transition: opacity 0.2s; }
.lightbox-trigger:hover { opacity: 0.88; }
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lightbox-overlay.open { display: flex; }
.lightbox-content { max-width: 90vw; max-height: 90vh; text-align: center; }
.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}
.lightbox-content p { color: rgba(255, 255, 255, 0.7); font-size: 13px; margin-top: 12px; }
.lightbox-close {
  position: fixed;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: #fff;
  font-size: 36px;
  cursor: pointer;
  z-index: 10000;
  line-height: 1;
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .two-col, .hero-grid, .feature { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .trust-strip .container { grid-template-columns: 1fr; }
  .photo-slot.tall { min-height: 260px; }

  .nav-toggle { display: block; }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--navy-2);
    border-bottom: 3px solid var(--red);
    display: none;
    padding: 0.8rem 1.25rem 1.2rem;
    margin-left: 0;
  }
  .main-nav.open { display: block; }
  .main-nav .nav-links { flex-direction: column; align-items: stretch; gap: 0.3rem; }
  .main-nav .nav-links > li > a { padding: 0.75rem 1rem; }

  .nav-right { flex-direction: column; align-items: stretch; margin-left: 0; margin-top: 0.7rem; gap: 0.6rem; }
  .nav-whatsapp { justify-content: center; padding: 0.7rem 1rem; }

  /* Services dropdown becomes an accordion on mobile */
  .nav-dropdown .dropdown-menu { position: static; margin-top: 0.3rem; box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2); }

  .lang-toggle { width: 100%; }
  .lang-toggle button { flex: 1; text-align: center; padding: 0.6rem 0.5rem; }
}
