/* ============ Reset & Base ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1a2540;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

:root {
  --navy: #1a1f2e;
  --navy-2: #232938;
  --teal: #dc2626;
  --teal-dark: #b91c1c;
  --gold: #dc2626;
  --bg: #ffffff;
  --bg-soft: #f4f5f7;
  --bg-alt: #e8eaef;
  --text: #1a1f2e;
  --muted: #6b7280;
  --border: #e5e7eb;
  --shadow: 0 10px 30px rgba(26, 31, 46, 0.08);
  --shadow-lg: 0 20px 50px rgba(26, 31, 46, 0.15);
  --radius: 12px;
  --radius-sm: 8px;
  --container: 1200px;
}

/* ============ Layout ============ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: 96px 0; }
@media (max-width: 768px) { section { padding: 64px 0; } }

/* ============ Typography ============ */
h1, h2, h3, h4 { color: var(--navy); font-weight: 700; line-height: 1.25; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.25rem; }
p { color: var(--muted); }
.lead { font-size: 1.125rem; color: var(--muted); max-width: 640px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}
.section-head .eyebrow { display: inline-flex; }
.section-head .eyebrow::before { display: none; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-head .lead { margin: 16px auto 0; }

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 4px 14px rgba(220, 38, 38, 0.3);
}
.btn-primary:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(220, 38, 38, 0.4);
}
.btn-secondary { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-secondary:hover { background: var(--navy); color: #fff; }
.btn-ghost { background: rgba(255,255,255,0.1); color: #fff; border-color: rgba(255,255,255,0.3); }
.btn-ghost:hover { background: #fff; color: var(--navy); }

/* ============ Header ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: var(--navy);
  font-size: 1.125rem;
  letter-spacing: -0.01em;
}
.brand-mark {
  width: 48px;
  height: 48px;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-text small { font-size: 0.7rem; font-weight: 500; color: var(--muted); letter-spacing: 0.05em; }
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text);
  position: relative;
  padding: 4px 0;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--teal); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -8px;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
}
.nav-cta { display: flex; align-items: center; gap: 16px; }
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  transition: color 0.2s;
}
.nav-phone:hover { color: var(--teal); }
.nav-phone svg { color: var(--teal); }
@media (max-width: 1024px) { .nav-phone { display: none; } }
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
  transition: all 0.2s;
}
@media (max-width: 880px) {
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    gap: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: max-height 0.25s ease;
  }
  .nav-links.open { max-height: 500px; padding: 16px 0; }
  .nav-links a { padding: 14px 24px; width: 100%; border-bottom: 1px solid var(--border); }
  .nav-links a.active::after { display: none; }
  .nav-cta .btn { display: none; }
  .menu-toggle { display: block; }
}

/* ============ Hero ============ */
.hero {
  position: relative;
  background:
    /* Left-side dark gradient for text readability */
    linear-gradient(100deg,
      rgba(10, 14, 26, 0.92) 0%,
      rgba(10, 14, 26, 0.78) 35%,
      rgba(10, 14, 26, 0.45) 60%,
      rgba(10, 14, 26, 0.25) 100%
    ),
    /* Main hero photo */
    url('../images/hero-bg.jpg') center / cover no-repeat,
    /* Fallback color while image loads */
    #0a0e1a;
  color: #fff;
  padding: 140px 0 160px;
  overflow: hidden;
  isolation: isolate;
}
/* Subtle red brand glow in top-right corner */
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  z-index: 1;
  background: radial-gradient(circle, rgba(220, 38, 38, 0.25) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
  animation: heroGlow 8s ease-in-out infinite alternate;
}
/* Subtle bottom-left blue glow for atmosphere */
.hero::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  z-index: 1;
  background: radial-gradient(circle, rgba(30, 60, 120, 0.3) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.hero .container { position: relative; z-index: 2; }
.hero-grid > .hero-visual { display: none; }
.hero-grid { grid-template-columns: 1fr; max-width: 720px; }

@keyframes heroGlow {
  0%   { opacity: 0.7; transform: scale(1); }
  100% { opacity: 1;   transform: scale(1.08); }
}

@media (max-width: 880px) {
  .hero {
    padding: 80px 0 100px;
    background:
      linear-gradient(180deg, rgba(10, 14, 26, 0.94) 0%, rgba(10, 14, 26, 0.7) 100%),
      url('../images/hero-bg.jpg') center / cover no-repeat,
      #0a0e1a;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero::before { animation: none; }
}
.hero::before {
  content: '';
  position: absolute;
  top: -150px; right: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(220,38,38,0.18), transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -200px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(220,38,38,0.08), transparent 70%);
  border-radius: 50%;
}
.hero .container { position: relative; z-index: 2; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 880px) { .hero-grid { grid-template-columns: 1fr; gap: 40px; } }
.hero h1 {
  color: #fff;
  margin-bottom: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero h1 span { color: var(--teal); }
.hero p {
  color: rgba(255,255,255,0.9);
  font-size: 1.18rem;
  margin-bottom: 36px;
  max-width: 540px;
  line-height: 1.65;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hero .eyebrow { color: var(--teal); }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-stat strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--teal);
  margin-bottom: 4px;
}
.hero-stat span { color: rgba(255,255,255,0.7); font-size: 0.875rem; }

.hero-visual {
  position: relative;
  height: 420px;
}
.hero-card {
  position: absolute;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  padding: 20px;
  color: #fff;
  display: flex;
  gap: 14px;
  align-items: center;
  min-width: 240px;
}
.hero-card .icon {
  width: 44px; height: 44px;
  background: var(--teal);
  border-radius: 10px;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.hero-card strong { display: block; font-size: 0.95rem; }
.hero-card span { font-size: 0.8rem; color: rgba(255,255,255,0.7); }
.hero-card.c1 { top: 20px; left: 20px; }
.hero-card.c2 { top: 160px; right: 0; }
.hero-card.c3 { bottom: 30px; left: 60px; }
@media (max-width: 880px) { .hero-visual { display: none; } }

/* ============ Service Cards ============ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 36px 32px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(220, 38, 38, 0.2);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover .service-icon {
  background: var(--teal);
  color: #fff;
  transform: scale(1.05) rotate(-3deg);
}
.service-icon {
  width: 60px; height: 60px;
  background: rgba(220, 38, 38, 0.1);
  border-radius: 14px;
  display: grid; place-items: center;
  margin-bottom: 22px;
  color: var(--teal);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-card h3 { margin-bottom: 12px; }
.service-card p { font-size: 0.95rem; }
.service-card ul {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-card li {
  font-size: 0.9rem;
  color: var(--muted);
  padding-left: 22px;
  position: relative;
}
.service-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}
.service-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px dashed var(--border);
}
.service-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--bg-soft);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 5px 11px;
  border-radius: 999px;
  letter-spacing: 0.04em;
}
.service-tag svg { color: var(--teal); }

/* Split — reversed (image left, text right) */
.split--reverse { grid-template-columns: 1fr 1fr; }
.split--reverse > .split-visual,
.split--reverse > .split-visual--alt { order: -1; }
@media (max-width: 880px) {
  .split--reverse > .split-visual,
  .split--reverse > .split-visual--alt { order: 0; }
}

/* Deep-dive: shared heading + list polish */
.deep-dive { margin-bottom: 90px; }
.deep-dive:last-child { margin-bottom: 0; }
.deep-dive h2 { margin-bottom: 16px; }
.deep-dive .deep-list {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 18px;
}
.deep-dive .deep-list li {
  display: flex;
  gap: 8px;
  font-size: 0.92rem;
  color: var(--text);
  align-items: flex-start;
}
.deep-dive .deep-list li svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--teal);
}
@media (max-width: 600px) {
  .deep-dive .deep-list { grid-template-columns: 1fr; }
}

/* ============ Features / Why Us ============ */
.bg-soft { background: var(--bg-soft); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}
.feature {
  text-align: center;
  padding: 24px;
}
.feature-icon {
  width: 68px; height: 68px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(26,31,46,0.08);
  display: grid; place-items: center;
  margin: 0 auto 22px;
  color: var(--teal);
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}
.feature:hover .feature-icon {
  background: var(--teal);
  color: #fff;
  transform: translateY(-4px);
}
.feature h3 { margin-bottom: 8px; font-size: 1.125rem; }
.feature p { font-size: 0.95rem; }

/* ============ About sections ============ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 880px) { .split { grid-template-columns: 1fr; gap: 40px; } }
.split h2 { margin-bottom: 20px; }
.split p { margin-bottom: 16px; }
.split-visual {
  position: relative;
  height: 480px;
  border-radius: 16px;
  overflow: visible;
}
.split-visual > img:first-child {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  box-shadow: 0 20px 50px rgba(26,31,46,0.18);
}
.split-visual-inset {
  position: absolute;
  right: -28px;
  bottom: -28px;
  width: 55%;
  max-width: 280px;
  height: 200px;
  object-fit: cover;
  border-radius: 14px;
  border: 6px solid #fff;
  box-shadow: 0 18px 40px rgba(26,31,46,0.22);
}
.split-visual-badge {
  position: absolute;
  top: -16px;
  left: -16px;
  background: var(--teal);
  color: #fff;
  padding: 18px 22px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 28px rgba(220, 38, 38, 0.35);
  z-index: 2;
}
.split-visual-badge strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  color: #fff;
}
.split-visual-badge span {
  font-size: 0.78rem;
  font-weight: 500;
  margin-top: 6px;
  line-height: 1.3;
  color: rgba(255,255,255,0.95);
}
@media (max-width: 880px) {
  .split-visual { height: 380px; margin-bottom: 50px; }
  .split-visual-inset { width: 60%; height: 150px; right: -12px; bottom: -32px; }
  .split-visual-badge { padding: 14px 18px; }
  .split-visual-badge strong { font-size: 1.6rem; }
}
@media (max-width: 500px) {
  .split-visual { height: 280px; }
  .split-visual-inset { display: none; }
}

/* Alternate composition: inset top-left, badge bottom-right */
.split-visual--alt .split-visual-inset {
  right: auto; bottom: auto;
  top: -28px; left: -28px;
}
.split-visual-badge--bottom {
  top: auto; left: auto;
  bottom: -22px; right: -16px;
}
.split-visual-quote {
  position: absolute;
  left: 24px;
  bottom: 24px;
  max-width: 56%;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  padding: 16px 20px;
  border-radius: 12px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  box-shadow: 0 14px 30px rgba(26,31,46,0.18);
  z-index: 2;
}
.split-visual-quote svg { color: var(--teal); flex-shrink: 0; }
.split-visual-quote p {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.5;
}
@media (max-width: 880px) {
  .split-visual--alt .split-visual-inset { top: -12px; left: -12px; }
  .split-visual-badge--bottom { bottom: -28px; right: -8px; }
  .split-visual-quote { max-width: 70%; padding: 12px 16px; }
  .split-visual-quote p { font-size: 0.8rem; }
}
@media (max-width: 500px) {
  .split-visual-quote { display: none; }
}
.award-video {
  width: 100%;
  border-radius: var(--radius);
  display: block;
  margin-top: 16px;
}
.awards-section { padding-bottom: 80px; }
.awards-section .split-visual {
  height: auto;
  overflow: hidden;
}
.awards-section .split-visual > img:first-child {
  height: auto;
  max-height: 320px;
}
.value-list { display: flex; flex-direction: column; gap: 20px; margin-top: 24px; }
.value-item { display: flex; gap: 16px; align-items: flex-start; }
.value-item .ic {
  flex-shrink: 0;
  width: 40px; height: 40px;
  background: var(--bg-alt);
  border-radius: 10px;
  display: grid; place-items: center;
  color: var(--teal);
}
.value-item strong { display: block; color: var(--navy); margin-bottom: 4px; }
.value-item p { margin: 0; font-size: 0.95rem; }

/* ============ Stats band ============ */
.stats-band {
  background: var(--navy);
  color: #fff;
  padding: 64px 0;
}
.stats-band-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
  text-align: center;
}
.stat strong {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--teal);
  margin-bottom: 6px;
}
.stat span { color: rgba(255,255,255,0.8); font-size: 0.95rem; }

/* ============ CTA band ============ */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, #2a1414 100%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(220,38,38,0.18), transparent 70%);
}
.cta-band .container { position: relative; }
.cta-band h2 { color: #fff; margin-bottom: 16px; }
.cta-band p { color: rgba(255,255,255,0.9); margin-bottom: 32px; }
.cta-band .btn-primary { background: var(--teal); color: #fff; }
.cta-band .btn-primary:hover { background: var(--teal-dark); }

/* ============ Contact ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--bg-soft);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.contact-card .ic {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: #fff;
  border-radius: 10px;
  display: grid; place-items: center;
  color: var(--teal);
  box-shadow: var(--shadow);
}
.contact-card strong { display: block; color: var(--navy); margin-bottom: 4px; }
.contact-card p, .contact-card a { color: var(--muted); font-size: 0.95rem; margin: 0; }
.contact-card a:hover { color: var(--teal); }

.form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-field { display: flex; flex-direction: column; margin-bottom: 16px; }
.form-field label { font-size: 0.875rem; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.form-field input, .form-field select, .form-field textarea {
  font-family: inherit;
  font-size: 0.95rem;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(20,160,152,0.1);
}
.form-field textarea { resize: vertical; min-height: 140px; }
.form button { width: 100%; justify-content: center; padding: 16px; font-size: 1rem; }
.form-note { font-size: 0.85rem; color: var(--muted); margin-top: 12px; text-align: center; }
.form-status {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  display: none;
}
.form-status.success { display: block; background: #dcfce7; color: #166534; border: 1px solid #86efac; }
.form-status.error { display: block; background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }

/* ============ Page header (sub-pages) ============ */
.page-header {
  background:
    linear-gradient(135deg, rgba(15,18,28,0.92), rgba(26,31,46,0.85)),
    url('../images/work-7.jpg') center / cover no-repeat;
  color: #fff;
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top, rgba(220,38,38,0.2), transparent 60%);
}
.page-header .container { position: relative; }
.page-header h1 { color: #fff; margin-bottom: 12px; }
.page-header p { color: rgba(255,255,255,0.8); max-width: 600px; margin: 0 auto; }
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  margin-top: 16px;
}
.breadcrumb a { color: var(--teal); }

/* ============ Footer ============ */
.site-footer {
  background: #14181f;
  color: rgba(255,255,255,0.7);
  padding: 64px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-col h4 { color: #fff; font-size: 0.95rem; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.05em; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 0.9rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--teal); }
.footer-col p { font-size: 0.9rem; color: rgba(255,255,255,0.6); }
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
}
.footer-bottom .socials { display: flex; gap: 12px; }
.footer-bottom .socials a {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  display: grid; place-items: center;
  transition: background 0.2s;
}
.footer-bottom .socials a:hover { background: var(--teal); color: #fff; }

/* ============ Registered Vendor ============ */
.vendor-band {
  padding: 60px 0;
  background: #fff;
  position: relative;
  z-index: 2;
}
.vendor-band-inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.vendor-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}
.vendor-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.vendor-unit {
  display: flex;
  flex-direction: column;
}
.vendor-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 28px;
  display: flex;
  align-items: center;
  gap: 18px;
  text-align: left;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.vendor-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(220, 38, 38, 0.3);
}
.vendor-group-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  flex-shrink: 0;
  filter: grayscale(0.15);
  transition: filter 0.3s ease;
}
.vendor-card:hover .vendor-group-logo { filter: grayscale(0); }
.vendor-name { display: flex; flex-direction: column; line-height: 1.2; }
.vendor-name .pre { font-size: 0.7rem; font-weight: 500; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; }
.vendor-name .main { font-size: 1.4rem; font-weight: 700; color: var(--navy); margin-top: 2px; }
.vendor-name .sub { font-size: 0.72rem; font-weight: 500; color: var(--muted); letter-spacing: 0.1em; margin-top: 4px; }
.vendor-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
}
.vendor-badge svg { color: var(--teal); flex-shrink: 0; }
.vendor-locations {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.25s ease, max-height 0.3s ease, margin 0.3s ease;
}
.vendor-card:hover .vendor-locations {
  opacity: 1;
  max-height: 200px;
  margin-top: 10px;
}
.vendor-card:hover .vendor-badge {
  opacity: 0;
  transition: opacity 0.2s ease;
}
.vendor-locations li {
  font-size: 0.78rem;
  color: var(--muted);
  padding: 3px 0;
  padding-left: 14px;
  position: relative;
}
.vendor-locations li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  transform: translateY(-50%);
}

/* ============ Map embed ============ */
.map-tabs {
  display: inline-flex;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px;
  margin: 0 auto 24px;
  gap: 4px;
  box-shadow: 0 4px 14px rgba(26,31,46,0.06);
}
.map-tabs-wrap { text-align: center; }
.map-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  background: transparent;
  color: var(--muted);
  font-family: inherit;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 22px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.map-tab:hover { color: var(--text); }
.map-tab.active {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}
.map-tab svg { flex-shrink: 0; }

.map-container {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(26,31,46,0.12);
  border: 1px solid var(--border);
  background: #f1f3f6;
  aspect-ratio: 16 / 9;
  max-height: 520px;
}
.map-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.map-frame.active {
  opacity: 1;
  pointer-events: auto;
}
.map-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.map-actions .btn { gap: 8px; }
@media (max-width: 600px) {
  .map-container { aspect-ratio: 4 / 5; }
  .map-tab { padding: 10px 16px; font-size: 0.85rem; }
  .vendor-grid { grid-template-columns: 1fr; }
}

/* ============ Review card ============ */
.review-card .ic { color: #f4b400; background: #fff8e1; }
.review-card svg { color: #f4b400; }
.review-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--teal);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}
.review-link:hover { color: var(--teal-dark); border-bottom-color: currentColor; }

/* ============ Decorative patterns ============ */
.bg-soft {
  background:
    radial-gradient(circle at 1px 1px, rgba(26,31,46,0.06) 1px, transparent 0) 0 0 / 24px 24px,
    var(--bg-soft);
}
.stats-band {
  background:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,0.04) 1px, transparent 0) 0 0 / 28px 28px,
    var(--navy);
}

/* ============ Footer enhancements ============ */
.ssm-line {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  letter-spacing: 0.03em;
}

/* ============ Work Gallery ============ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 200px;
  gap: 16px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  background: var(--bg-alt);
  box-shadow: var(--shadow);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item .gallery-caption {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  background: linear-gradient(to top, rgba(26,31,46,0.85) 0%, rgba(26,31,46,0.2) 50%, transparent 100%);
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-caption,
.gallery-item:focus-within .gallery-caption { opacity: 1; }
.gallery-caption .tag {
  display: inline-block;
  background: var(--teal);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 8px;
  align-self: flex-start;
}
.gallery-caption strong { display: block; font-size: 1rem; line-height: 1.3; }
.gallery-caption p { color: rgba(255,255,255,0.85); font-size: 0.85rem; margin: 6px 0 0; }

/* Layout: 5 photos in a magazine-style mosaic */
.gallery-item.g1 { grid-column: span 6; grid-row: span 2; }
.gallery-item.g2 { grid-column: span 3; grid-row: span 1; }
.gallery-item.g3 { grid-column: span 3; grid-row: span 1; }
.gallery-item.g4 { grid-column: span 3; grid-row: span 1; }
.gallery-item.g5 { grid-column: span 3; grid-row: span 1; }

/* ============ Work category grid ============ */
.work-category { margin-bottom: 40px; }
.work-category:last-child { margin-bottom: 0; }
.work-category-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  text-align: center;
  margin-bottom: 16px;
  position: relative;
}
.work-category-title::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: var(--teal);
  margin: 8px auto 0;
  border-radius: 2px;
}
.work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.work-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--bg-alt);
}
.work-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.work-item:hover img { transform: scale(1.05); }

@media (max-width: 880px) {
  .work-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .work-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
}

/* ============ Vendor logos ============ */
.vendor-logos {
  padding: 14px 0 0;
}
.vendor-hotel-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.vendor-hotel-logos img {
  height: 40px;
  max-width: 110px;
  object-fit: contain;
  opacity: 0.75;
  transition: opacity 0.3s ease;
}
.vendor-hotel-logos img:hover { opacity: 1; }

@media (max-width: 880px) {
  .vendor-group-logo { width: 52px; height: 52px; }
  .vendor-hotel-logos img { height: 34px; max-width: 90px; }
}
@media (max-width: 600px) {
  .vendor-card { padding: 16px 18px; gap: 12px; }
  .vendor-group-logo { width: 44px; height: 44px; }
  .vendor-hotel-logos { gap: 10px; }
  .vendor-hotel-logos img { height: 28px; max-width: 75px; }
}

@media (max-width: 880px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery-item.g1, .gallery-item.g2, .gallery-item.g3, .gallery-item.g4, .gallery-item.g5 {
    grid-column: span 1; grid-row: span 1;
  }
  .gallery-item.g1 { grid-column: span 2; grid-row: span 2; }
}
@media (max-width: 500px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.g1 { grid-column: span 1; grid-row: span 1; }
}

/* ============ Animations ============ */
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.hero-card.c1 { animation: float 6s ease-in-out infinite; }
.hero-card.c2 { animation: float 6s ease-in-out infinite 2s; }
.hero-card.c3 { animation: float 6s ease-in-out infinite 4s; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============ PDF Viewer ============ */
.pdf-viewer-wrapper {
  max-width: 900px;
  margin: 0 auto;
}
.pdf-viewer-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  justify-content: center;
  flex-wrap: wrap;
}
.pdf-viewer-actions .btn {
  gap: 8px;
}
.pdf-viewer-actions .btn svg {
  flex-shrink: 0;
}
.pdf-viewer-container {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(26, 31, 46, 0.15);
  border: 1px solid var(--border);
  background: #f1f3f6;
}
.pdf-iframe {
  display: block;
  width: 100%;
  height: 800px;
  border: 0;
}
.pdf-fallback {
  padding: 60px 24px;
  text-align: center;
  background: #fff;
}
.pdf-fallback p {
  margin-bottom: 20px;
  font-size: 1.1rem;
}
.pdf-viewer-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 12px 16px;
  background: var(--bg-soft);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--muted);
  justify-content: center;
}
.pdf-viewer-note svg {
  flex-shrink: 0;
  color: var(--teal);
}
.pdf-viewer-note strong {
  color: var(--text);
}
@media (max-width: 880px) {
  .pdf-iframe {
    height: 600px;
  }
  .pdf-viewer-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .pdf-viewer-actions .btn {
    justify-content: center;
  }
}
@media (max-width: 500px) {
  .pdf-iframe {
    height: 500px;
  }
}
