/* ============================================
   Momentra International — Core Stylesheet
   ============================================ */

:root {
  --navy: #0a0e27;
  --navy-deep: #060915;
  --navy-mid: #10163a;
  --white: #ffffff;
  --off-white: #f7f7f9;
  --gold: #c9a15a;
  --gold-light: #e0c07f;
  --grey: #5a5f75;
  --grey-light: #8a8fa3;
  --border-dark: rgba(255, 255, 255, 0.1);
  --border-light: #e5e5ea;

  --font: 'Poppins', 'Segoe UI', Arial, sans-serif;
  --font-serif: 'Playfair Display', 'Georgia', serif;
  --font-script: 'Dancing Script', cursive;

  --container: 1280px;
  --radius: 4px;
  --transition: 0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

button { font-family: var(--font); cursor: pointer; border: none; background: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding: 100px 0;
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
}

/* ---------- Typography ---------- */

h1, h2, h3, h4 {
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-size: 40px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 20px;
}

.section-title span { color: var(--gold); }

.section-sub {
  font-size: 17px;
  color: var(--grey);
  max-width: 620px;
  margin-bottom: 48px;
}

.section-head {
  text-align: center;
  margin: 0 auto 56px;
}

.section-head .section-sub { margin-left: auto; margin-right: auto; }

.on-dark .section-title,
.on-dark h1, .on-dark h2, .on-dark h3 { color: var(--white); }
.on-dark .section-sub { color: rgba(255,255,255,0.65); }

/* Dark-background sections: force light heading/sub colors regardless of .on-dark wrapper */
.work-section .section-title,
.testimonials-section .section-title,
.credibility .section-title,
.presence-section .section-title,
.bg-navy .section-title { color: var(--white); }

.work-section .section-sub,
.testimonials-section .section-sub,
.credibility .section-sub,
.presence-section .section-sub,
.bg-navy .section-sub { color: rgba(255,255,255,0.65); }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
}

.btn svg { width: 16px; height: 16px; transition: transform var(--transition); }
.btn:hover svg { transform: translateX(4px); }

.btn-gold {
  background: var(--gold);
  color: var(--navy-deep);
}
.btn-gold:hover { background: var(--gold-light); }

.btn-outline {
  border: 1px solid rgba(255,255,255,0.4);
  color: var(--white);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.btn-outline-dark {
  border: 1px solid var(--navy);
  color: var(--navy);
}
.btn-outline-dark:hover { border-color: var(--gold); color: var(--gold); background: var(--navy); }

.btn-block { width: 100%; justify-content: center; }

/* ============================================
   Header
   ============================================ */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition);
  background: linear-gradient(to bottom, rgba(6,9,21,0.85), transparent);
}

.site-header.scrolled {
  background: var(--navy-deep);
  padding: 14px 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo img { height: 40px; }

/* Powered by A For Pineapple (under logo) */
.header-brand { display: flex; flex-direction: column; gap: 6px; }
.powered-mini {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  padding-left: 2px;
}
.powered-mini img { width: 18px; height: 18px; object-fit: contain; }
.powered-mini .afp {
  font-family: var(--font-script);
  font-size: 17px;
  color: var(--gold-light);
  line-height: 1;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.main-nav a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  padding: 8px 0;
  position: relative;
  transition: color var(--transition);
}

.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.main-nav a:hover,
.main-nav a.active { color: var(--gold); }
.main-nav a.active::after,
.main-nav a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 20px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
}
.nav-toggle span {
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

@media (max-width: 992px) {
  .main-nav {
    position: fixed;
    top: 0; right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--navy-deep);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 40px;
    transition: right var(--transition);
    box-shadow: -10px 0 40px rgba(0,0,0,0.4);
  }
  .main-nav.open { right: 0; }
  .nav-toggle { display: flex; }
  .header-actions .btn-gold { display: none; }
}

/* ============================================
   Hero
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy-deep);
  padding-top: 140px;
  padding-bottom: 60px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.55;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6,9,21,0.96) 10%, rgba(6,9,21,0.55) 55%, rgba(6,9,21,0.85) 100%),
              linear-gradient(to top, rgba(6,9,21,1), transparent 30%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 48px;
  align-items: start;
  width: 100%;
}

.hero-content { max-width: 720px; }

.hero-content .eyebrow { color: var(--gold-light); }

.hero-content h1 {
  font-weight: 700;
  font-size: 58px;
  line-height: 1.06;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 22px;
}

.hero-content h1 .accent { color: var(--gold); }

.hero-content p {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 32px;
  max-width: 500px;
}

.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }

/* Play-circle button (View Showreel) */
.btn-play .play-ic {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy-deep);
  display: inline-flex; align-items: center; justify-content: center;
}
.btn-play .play-ic svg { width: 11px; height: 11px; margin-left: 1px; transform: none; }
.btn-play:hover .play-ic svg { transform: none; }

/* Horizontal stats bar with icons */
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  background: rgba(255,255,255,0.03);
  max-width: 780px;
}
.hero-stat {
  flex: 1 1 0;
  min-width: 112px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 12px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.hero-stat:last-child { border-right: none; }
.hero-stat .stat-ic { width: 26px; height: 26px; color: var(--gold); flex-shrink: 0; }
.hero-stat .num { font-size: 22px; font-weight: 700; color: var(--gold); display: block; line-height: 1.15; }
.hero-stat .label { font-size: 10px; letter-spacing: 0.8px; text-transform: uppercase; color: rgba(255,255,255,0.65); }

/* Powered by A For Pineapple (below stats) */
.powered-by {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
}
.powered-by .pineapple { width: 26px; height: 26px; object-fit: contain; flex-shrink: 0; }
.powered-by .afp {
  font-family: var(--font-script);
  font-size: 23px;
  color: var(--gold-light);
  line-height: 1;
}

/* Quick contact card in hero */
.hero-form-card {
  background: rgba(10,14,39,0.72);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(201,161,90,0.32);
  border-radius: 12px;
  padding: 34px 32px;
}

.hero-form-card h3 {
  color: var(--gold);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.hero-form-card p {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  margin-bottom: 22px;
}

.form-field { position: relative; margin-bottom: 16px; }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font);
  font-size: 14px;
  transition: border-color var(--transition);
}
.form-field textarea { resize: none; min-height: 90px; }
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(255,255,255,0.4); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { outline: none; border-color: var(--gold); }
.form-field select { appearance: none; color: rgba(255,255,255,0.6); }
.form-field select option { background: var(--navy); color: var(--white); }

/* Form fields with leading icon */
.form-field.has-icon { position: relative; }
.form-field.has-icon .fi {
  position: absolute;
  left: 15px;
  top: 25px;
  transform: translateY(-50%);
  width: 16px; height: 16px;
  color: var(--gold);
  opacity: 0.85;
  pointer-events: none;
}
.form-field.has-icon input,
.form-field.has-icon select { padding-left: 42px; }

@media (max-width: 992px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-content h1 { font-size: 44px; }
}
@media (max-width: 480px) {
  .hero-content h1 { font-size: 32px; }
  .hero-stat { flex: 1 1 45%; }
}

/* ============================================
   Marquee / Trusted Brands
   ============================================ */

.brands-strip {
  background: var(--white);
  padding: 48px 0;
  border-bottom: 1px solid var(--border-light);
}

.brands-strip .label {
  text-align: center;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey-light);
  margin-bottom: 32px;
  font-weight: 600;
}

.brands-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
}

.brands-row img,
.brand-mark {
  height: 34px;
  max-width: 120px;
  width: auto;
  object-fit: contain;
  opacity: 0.6;
  filter: grayscale(100%);
  transition: opacity var(--transition), filter var(--transition);
}
.brand-mark {
  font-weight: 700;
  font-size: 20px;
  color: var(--navy);
  display: flex;
  align-items: center;
  height: auto;
}
.brands-row img:hover,
.brands-row .brand-mark:hover { opacity: 1; filter: none; }

/* ============================================
   Credibility Section
   ============================================ */

.credibility {
  background: var(--navy-deep);
  color: var(--white);
}

.credibility .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.credibility-media {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
.credibility-media img { width: 100%; height: 380px; object-fit: cover; }

.play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
}
.play-btn:hover { background: var(--gold); border-color: var(--gold); }
.play-btn svg { width: 22px; height: 22px; margin-left: 3px; }

.credibility-content .eyebrow { color: var(--gold-light); }
.credibility-content h2 { font-size: 34px; margin-bottom: 20px; }
.credibility-content h2 .accent { color: var(--gold); }
.credibility-content p { color: rgba(255,255,255,0.7); margin-bottom: 36px; font-size: 16px; }

.stat-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.stat-grid .num { font-size: 30px; font-weight: 700; color: var(--gold); display: block; }
.stat-grid .label { font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-top: 6px; }

@media (max-width: 992px) {
  .credibility .container { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================
   Services / What We Do
   ============================================ */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 320px;
  display: flex;
  align-items: flex-end;
  transition: transform var(--transition);
}
.service-card:hover { transform: translateY(-6px); }

.service-card img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover img { transform: scale(1.08); }

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,9,21,0.95) 20%, rgba(6,9,21,0.2) 70%);
  z-index: 1;
}

.service-card-body {
  position: relative;
  z-index: 2;
  padding: 28px;
  width: 100%;
}

.service-card-body .icon {
  width: 40px; height: 40px;
  color: var(--gold);
  margin-bottom: 12px;
}

.service-card-body h3 {
  color: var(--white);
  font-size: 19px;
  margin-bottom: 6px;
}

.service-card-body .link {
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  opacity: 0;
  transform: translateY(6px);
  transition: all var(--transition);
}
.service-card:hover .link { opacity: 1; transform: translateY(0); }

@media (max-width: 992px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ============================================
   Featured Work
   ============================================ */

.work-section { background: var(--navy-deep); color: var(--white); }

.work-tabs {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.work-tab {
  padding: 10px 24px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: all var(--transition);
}
.work-tab.active,
.work-tab:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-deep);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.work-card {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  overflow: hidden;
  background: var(--navy-mid);
  transition: transform var(--transition), border-color var(--transition);
}
.work-card:hover { transform: translateY(-6px); border-color: var(--gold); }

.work-card-media { height: 220px; overflow: hidden; }
.work-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.work-card:hover .work-card-media img { transform: scale(1.08); }

.work-card-body { padding: 24px; }

.work-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.work-card-body h3 { font-size: 19px; color: var(--white); margin-bottom: 16px; }

.work-meta { display: flex; flex-direction: column; gap: 8px; font-size: 13px; }
.work-meta div { color: rgba(255,255,255,0.65); }
.work-meta strong { color: var(--gold-light); font-weight: 600; margin-right: 6px; }

.work-footer-cta { text-align: center; margin-top: 48px; }

@media (max-width: 992px) {
  .work-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .work-grid { grid-template-columns: 1fr; }
}

/* ============================================
   Why Momentra
   ============================================ */

.why-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.why-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 122px;
  grid-auto-flow: dense;
  gap: 10px;
}
.why-gallery img { width: 100%; height: 100%; object-fit: cover; border-radius: 6px; }
.why-gallery .tall { grid-row: span 2; }

.why-list { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 32px; margin-top: 32px; }

.why-item { display: flex; align-items: flex-start; gap: 14px; }
.why-item .check {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy-deep);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 13px;
}
.why-item span.text { font-size: 15px; font-weight: 500; color: var(--navy); }

@media (max-width: 992px) {
  .why-section .container { grid-template-columns: 1fr; }
  .why-list { grid-template-columns: 1fr; }
}

/* ============================================
   Industries
   ============================================ */

.industries-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.industry-card {
  text-align: center;
  padding: 32px 16px;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  transition: all var(--transition);
}
.industry-card:hover { border-color: var(--gold); box-shadow: 0 10px 30px rgba(0,0,0,0.06); transform: translateY(-4px); }

.industry-card .icon {
  width: 42px; height: 42px;
  margin: 0 auto 16px;
  color: var(--gold);
}
.industry-card .name {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--navy);
}

@media (max-width: 992px) { .industries-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .industries-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============================================
   Testimonials
   ============================================ */

.testimonials-section { background: var(--navy-deep); color: var(--white); }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 32px;
}

.stars { color: var(--gold); font-size: 15px; margin-bottom: 18px; letter-spacing: 2px; }

.testimonial-card p {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 24px;
  min-height: 96px;
}

.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-author img {
  width: 46px; height: 46px;
  border-radius: 50%;
  object-fit: cover;
}
.avatar-initials {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(201,161,90,0.15);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  flex-shrink: 0;
}
.testimonial-author .name { font-size: 14px; font-weight: 600; color: var(--white); }
.testimonial-author .role { font-size: 12px; color: rgba(255,255,255,0.55); }

@media (max-width: 992px) { .testimonial-grid { grid-template-columns: 1fr; } }

/* ============================================
   Global Presence + Request (merged)
   ============================================ */

.presence-cta-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  align-items: center;
}

.pres-label {
  display: block;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 28px;
}

.world-map { position: relative; width: 100%; }
.world-map > img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.62;
}

.wm-pin {
  position: absolute;
  transform: translate(-50%, -100%);
  z-index: 2;
}
.wm-pin i {
  display: block;
  width: 17px;
  height: 17px;
  background: var(--gold);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 4px 10px rgba(0,0,0,0.45);
  position: relative;
}
.wm-pin i::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 6px; height: 6px;
  background: var(--navy-deep);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.request-panel {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,161,90,0.28);
  border-radius: 10px;
  padding: 36px;
}

@media (max-width: 992px) {
  .presence-cta-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 560px) {
  .request-panel { padding: 28px 20px; }
}

/* ============================================
   CTA / Contact Split
   ============================================ */

.cta-split {
  background: var(--off-white);
}
.cta-split .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(10,14,39,0.12);
}

.cta-media {
  position: relative;
  min-height: 480px;
}
.cta-media img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }

.cta-form-panel {
  background: var(--navy-deep);
  padding: 56px 48px;
  color: var(--white);
}
.cta-form-panel h2 { font-size: 28px; margin-bottom: 8px; color: var(--white); }
.cta-form-panel p { color: rgba(255,255,255,0.6); margin-bottom: 32px; font-size: 14px; }

.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

@media (max-width: 992px) {
  .cta-split .container { grid-template-columns: 1fr; }
  .cta-media { min-height: 260px; }
}
@media (max-width: 560px) {
  .form-grid-2 { grid-template-columns: 1fr; }
  .cta-form-panel { padding: 40px 24px; }
}

/* ============================================
   Footer
   ============================================ */

.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.7);
  padding-top: 72px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand img { height: 34px; margin-bottom: 18px; }
.footer-brand p { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.55); margin-bottom: 20px; }

.footer-col h4 {
  color: var(--white);
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--gold); }

.footer-contact li { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 16px; font-size: 14px; color: rgba(255,255,255,0.65); }
.footer-contact svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }

.social-row { display: flex; gap: 12px; margin-top: 20px; }
.social-row a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.social-row a:hover { background: var(--gold); border-color: var(--gold); color: var(--navy-deep); }
.social-row svg { width: 16px; height: 16px; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: rgba(255,255,255,0.45); }
.footer-bottom a:hover { color: var(--gold); }
.footer-legal { display: flex; gap: 24px; }

@media (max-width: 992px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-top { grid-template-columns: 1fr; }
}

/* ============================================
   Page Hero (inner pages)
   ============================================ */

.page-hero {
  background: var(--navy-deep);
  padding: 180px 0 90px;
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.28;
}
.page-hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, var(--navy-deep), rgba(6,9,21,0.7));
}
.page-hero .container { position: relative; z-index: 2; }
.breadcrumb { font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 18px; letter-spacing: 0.5px; }
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: var(--gold); }
.page-hero h1 { font-family: var(--font-serif); font-weight: 600; font-size: 50px; letter-spacing: -0.5px; color: var(--white); max-width: 760px; }
.page-hero p { font-size: 17px; color: rgba(255,255,255,0.65); max-width: 620px; margin-top: 18px; }

/* ============================================
   Misc reusable
   ============================================ */

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 992px) { .two-col { grid-template-columns: 1fr; gap: 40px; } }

.bg-navy { background: var(--navy-deep); color: var(--white); }
.bg-off { background: var(--off-white); }

.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border: 1px solid var(--gold);
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  padding: 36px 28px;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  transition: all var(--transition);
}
.value-card:hover { box-shadow: 0 16px 40px rgba(10,14,39,0.08); transform: translateY(-4px); border-color: var(--gold); }
.value-card .icon { width: 40px; height: 40px; color: var(--gold); margin-bottom: 18px; }
.value-card h3 { font-size: 18px; margin-bottom: 10px; }
.value-card p { font-size: 14px; color: var(--grey); }

@media (max-width: 992px) { .value-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .value-grid { grid-template-columns: 1fr; } }

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-card { text-align: center; }
.team-card img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 8px; margin-bottom: 16px; filter: grayscale(20%); }
.team-card h4 { font-size: 15px; margin-bottom: 4px; }
.team-card .role { font-size: 12px; color: var(--gold); letter-spacing: 0.5px; text-transform: uppercase; }

@media (max-width: 992px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }

.timeline { position: relative; padding-left: 40px; border-left: 2px solid var(--border-light); }
.timeline-item { position: relative; padding-bottom: 40px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -46px; top: 4px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--gold);
}
.timeline-item h4 { color: var(--gold); font-size: 13px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 6px; }
.timeline-item p { font-size: 15px; color: var(--grey); }

/* Services list page */
.service-detail-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 64px 0;
  border-bottom: 1px solid var(--border-light);
}
.service-detail-row:last-child { border-bottom: none; }
.service-detail-row.reverse { direction: rtl; }
.service-detail-row.reverse > * { direction: ltr; }
.service-detail-row img { border-radius: 8px; width: 100%; height: 380px; object-fit: cover; }
.service-detail-content .num { font-size: 13px; font-weight: 700; color: var(--gold); letter-spacing: 2px; margin-bottom: 12px; }
.service-detail-content h3 { font-size: 28px; margin-bottom: 16px; }
.service-detail-content p { color: var(--grey); margin-bottom: 20px; }
.service-detail-content ul li {
  font-size: 14px;
  color: var(--navy);
  padding: 8px 0 8px 26px;
  position: relative;
  border-top: 1px solid var(--border-light);
}
.service-detail-content ul li:first-child { border-top: none; }
.service-detail-content ul li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 8px;
  color: var(--gold);
  font-weight: 700;
}

@media (max-width: 992px) {
  .service-detail-row, .service-detail-row.reverse { grid-template-columns: 1fr; direction: ltr; }
}

/* Work / Portfolio filter grid page */
.filter-bar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
}
.filter-btn {
  padding: 10px 22px;
  border: 1px solid var(--border-light);
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--grey);
  transition: all var(--transition);
}
.filter-btn.active, .filter-btn:hover { background: var(--navy-deep); border-color: var(--navy-deep); color: var(--gold); }

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.portfolio-item.hidden { display: none; }

@media (max-width: 992px) { .portfolio-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .portfolio-grid { grid-template-columns: 1fr; } }

/* Clients page */
.logo-wall {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  background: var(--border-light);
  border: 1px solid var(--border-light);
}
.logo-wall .cell {
  background: var(--white);
  aspect-ratio: 2/1;
  min-width: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  color: var(--navy);
  opacity: 0.7;
  transition: opacity var(--transition);
}
.logo-wall .cell img { max-width: 78%; max-height: 30px; width: auto; height: auto; }
.logo-wall .cell:hover { opacity: 1; }
@media (max-width: 992px) { .logo-wall { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 600px) {
  .logo-wall { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .logo-wall .cell { padding: 16px; font-size: 14px; }
}

/* Contact page */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}
.contact-info-card {
  padding: 32px;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  text-align: center;
}
.contact-info-card .icon {
  width: 44px; height: 44px;
  color: var(--gold);
  margin: 0 auto 16px;
}
.contact-info-card h4 { font-size: 15px; margin-bottom: 8px; }
.contact-info-card p { font-size: 14px; color: var(--grey); }

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

/* Scroll to top */
.scroll-top {
  position: fixed;
  right: 28px;
  bottom: 28px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: all var(--transition);
  z-index: 900;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}
.scroll-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.scroll-top svg { width: 18px; height: 18px; }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* Form success message */
.form-success {
  display: none;
  padding: 14px 16px;
  background: rgba(201,161,90,0.15);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  color: var(--gold-light);
  font-size: 13px;
  margin-top: 16px;
}
.form-success.show { display: block; }

/* ============================================
   Gallery Page
   ============================================ */

.gallery-tabs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 12px;
}
.gallery-tab {
  padding: 10px 28px;
  border: 1px solid var(--border-light);
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--grey);
  transition: all var(--transition);
}
.gallery-tab.active, .gallery-tab:hover {
  background: var(--navy-deep);
  border-color: var(--navy-deep);
  color: var(--gold);
}

.gallery-count {
  text-align: center;
  font-size: 13px;
  color: var(--grey-light);
  margin-bottom: 48px;
}

.gallery-event { margin-bottom: 56px; }
.gallery-event:last-child { margin-bottom: 0; }

.gallery-event-head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-light);
}
.gallery-event-head h3 {
  font-size: 22px;
  color: var(--navy);
}
.gallery-event-head .cnt {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
}
.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  background: var(--off-white);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,9,21,0.35), transparent 45%);
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item .zoom-ic {
  position: absolute;
  right: 12px; bottom: 12px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy-deep);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transform: translateY(6px);
  transition: all var(--transition);
  z-index: 2;
}
.gallery-item:hover .zoom-ic { opacity: 1; transform: translateY(0); }
.gallery-item .zoom-ic svg { width: 16px; height: 16px; }

@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .gallery-event-head h3 { font-size: 18px; }
}
@media (max-width: 380px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(6,9,21,0.94);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 92%;
  max-height: 86vh;
  border-radius: 6px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.lb-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.lb-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--navy-deep); }
.lb-btn svg { width: 22px; height: 22px; }
.lb-prev { left: 24px; }
.lb-next { right: 24px; }
.lb-close {
  position: absolute;
  top: 24px; right: 24px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.lb-close:hover { background: var(--gold); border-color: var(--gold); color: var(--navy-deep); }
.lb-close svg { width: 20px; height: 20px; }
.lb-caption {
  position: absolute;
  bottom: 24px; left: 0; right: 0;
  text-align: center;
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  letter-spacing: 0.5px;
}
@media (max-width: 600px) {
  .lightbox { padding: 16px; }
  .lb-btn { width: 42px; height: 42px; }
  .lb-prev { left: 10px; } .lb-next { right: 10px; }
}
