/* ===========================
   TOWNER CONSULTING — STYLES
   =========================== */

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

:root {
  --navy: #0d1b2e;
  --navy-light: #162d55;
  --blue: #1a4a8a;
  --blue-mid: #1e5799;
  --accent: #2979ff;
  --accent-hover: #1565c0;
  --white: #ffffff;
  --off-white: #f7f8fc;
  --gray: #6b7280;
  --gray-light: #e5e7eb;
  --text: #1a1a2e;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ===== STICKY CTA ===== */
.sticky-cta {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--navy);
  color: white;
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.sticky-cta span { font-size: 0.875rem; font-weight: 500; }
.btn-proposal {
  background: var(--accent);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: background 0.2s;
}
.btn-proposal:hover { background: var(--accent-hover); }

/* ===== NAV ===== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.nav-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 70px;
}
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
/* Nav logo — white transparent PNG */
.logo-img {
  height: 38px;
  width: auto;
  display: block;
}
/* Footer logo */
.logo-img-footer {
  opacity: 0.85;
  height: 34px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  margin-left: auto;
}
.nav-links > li {
  position: relative;
}
.nav-links > li > a {
  color: rgba(255,255,255,0.85);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 0.875rem;
  display: block;
  white-space: nowrap;
  transition: color 0.2s;
}
.nav-links > li > a:hover { color: white; }
.arrow { font-size: 0.65rem; margin-left: 2px; }

/* Dropdowns */
.has-dropdown:hover .dropdown { display: flex; }
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  box-shadow: 0 8px 40px rgba(0,0,0,0.15);
  border-top: 3px solid var(--accent);
  padding: 1.5rem;
  gap: 2rem;
  min-width: 220px;
  z-index: 999;
}
.dropdown-col h4 {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.dropdown-col ul li a, .dropdown-simple ul li a {
  color: var(--text);
  font-size: 0.85rem;
  padding: 0.3rem 0;
  display: block;
  transition: color 0.2s;
}
.dropdown-col ul li a:hover, .dropdown-simple ul li a:hover { color: var(--accent); }
.dropdown-simple { flex-direction: column; }
.dropdown-simple ul li { border-bottom: 1px solid var(--gray-light); }
.dropdown-simple ul li:last-child { border: none; }
.dropdown-simple ul li a { padding: 0.5rem 0; }

.hamburger { 
  display: none; 
  background: none; 
  border: none; 
  color: white; 
  font-size: 1.5rem; 
  cursor: pointer; 
  margin-left: auto;
  flex-shrink: 0;
  padding: 0.25rem 0.5rem;
  line-height: 1;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: white;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); }
.btn-outline {
  display: inline-block;
  border: 2px solid rgba(255,255,255,0.7);
  color: white;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s;
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: white; }
.btn-full { width: 100%; text-align: center; border: none; cursor: pointer; font-family: inherit; font-size: 1rem; }

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero:hover .hero-bg { transform: scale(1.0); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(13,27,46,0.75) 0%, rgba(13,27,46,0.5) 50%, rgba(13,27,46,0.8) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 0 2rem;
}
.hero-content h1 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}
.hero-accent { color: #5b9cf6; }
.hero-content p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.85);
  margin-bottom: 2rem;
  font-weight: 300;
}
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.5);
  font-size: 1.5rem;
  animation: bounce 2s infinite;
  z-index: 2;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== WHO BANNER ===== */
.who-banner {
  background: var(--accent);
  color: white;
  padding: 1.5rem 0;
  text-align: center;
}
.who-banner p {
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}
.who-banner strong { font-weight: 700; }

/* ===== SECTIONS ===== */
.section { padding: 5rem 0; }
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header.light h2 { color: white; }
.section-header.light p { color: rgba(255,255,255,0.75); }
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.section-header.light .section-tag { color: rgba(255,255,255,0.6); }
.section-header h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.section-header p {
  color: var(--gray);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ===== SERVICES ===== */
.services-section { background: var(--off-white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-items: stretch;
  gap: 1.5rem;
}
.service-card {
  background: white;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
  border-top: 3px solid transparent;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  border-top-color: var(--accent);
}
.service-icon { font-size: 2rem; margin-bottom: 1rem; }
.service-card h3 { font-size: 1.1rem; font-weight: 600; color: var(--navy); margin-bottom: 0.75rem; }
.service-card p { color: var(--gray); font-size: 0.9rem; line-height: 1.6; margin-bottom: 1rem; }
.card-link { color: var(--accent); font-size: 0.875rem; font-weight: 600; transition: color 0.2s; }
.card-link:hover { color: var(--accent-hover); }

/* ===== JURISDICTIONS ===== */
.jurisdictions-section { background: var(--navy); }
.jurisdictions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}
.jurisdiction-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 1.5rem;
  color: white;
}
.j-region {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.jurisdiction-card ul li {
  padding: 0.35rem 0;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.jurisdiction-card ul li:last-child { border: none; }

/* ===== INDUSTRIES ===== */
.industries-section { background: white; }
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.industry-card {
  position: relative;
  height: 200px;
  border-radius: 8px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  transition: transform 0.3s;
}
.industry-card:hover { transform: scale(1.02); }
.industry-card:hover .ind-overlay { background: rgba(13,27,46,0.5); }
.ind-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,27,46,0.85) 0%, rgba(13,27,46,0.3) 100%);
  transition: background 0.3s;
}
.industry-card h3 {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  color: white;
  font-size: 0.95rem;
  font-weight: 600;
  z-index: 2;
}

/* ===== STATS ===== */
.stats-section {
  background: var(--blue);
  padding: 3rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-num {
  font-size: 2.75rem;
  font-weight: 700;
  color: white;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ===== PROJECTS ===== */
.projects-section { background: var(--off-white); }
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.project-card {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
  background: white;
}
.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}
.project-img { height: 160px; }
.project-info { padding: 1.25rem; }
.project-type {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.project-info h3 { font-size: 1rem; font-weight: 600; color: var(--navy); margin-bottom: 0.25rem; }
.project-info p { font-size: 0.85rem; color: var(--gray); }

/* ===== ABOUT ===== */
.about-section { background: white; }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-text .section-tag { display: block; margin-bottom: 0.75rem; }
.about-text h2 { font-size: clamp(1.75rem, 3vw, 2.25rem); font-weight: 700; color: var(--navy); margin-bottom: 1.25rem; letter-spacing: -0.02em; }
.about-text p { color: var(--gray); line-height: 1.7; margin-bottom: 1rem; }
.about-text .btn-primary { margin-top: 0.5rem; }
.about-img-wrap { border-radius: 12px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.15); }
.about-img { height: 450px; background-size: cover; background-position: center; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--navy); padding: 5rem 0; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.testimonial {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 2rem;
}
.testimonial p {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1rem;
}
.testimonial-author { color: var(--accent); font-size: 0.8rem; font-weight: 600; }

/* ===== CONTACT ===== */
.contact-section { background: var(--off-white); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}
.contact-text .section-tag { display: block; margin-bottom: 0.75rem; }
.contact-text h2 { font-size: clamp(1.75rem, 3vw, 2.25rem); font-weight: 700; color: var(--navy); margin-bottom: 1rem; }
.contact-text p { color: var(--gray); line-height: 1.6; margin-bottom: 2rem; }
.contact-details { display: flex; flex-direction: column; gap: 0.75rem; }
.contact-detail { display: flex; align-items: center; gap: 0.75rem; color: var(--gray); font-size: 0.95rem; }
.contact-detail span { font-size: 1.2rem; }

/* Form */
.contact-form {
  background: white;
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 4px 30px rgba(0,0,0,0.08);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--gray-light);
  border-radius: 6px;
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--text);
  background: white;
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent); }
.form-group textarea { resize: vertical; }
.form-success {
  margin-top: 1rem;
  padding: 0.75rem;
  background: #f0fff4;
  color: #2d7a4f;
  border-radius: 6px;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 500;
}
.form-error {
  margin-top: 1rem;
  padding: 0.75rem;
  background: #fff0f0;
  color: #c0392b;
  border-radius: 6px;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 500;
}

/* ===== FOOTER ===== */
footer {
  background: #060f1e;
  color: white;
  padding: 4rem 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p {
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-top: 1rem;
  max-width: 260px;
}
.footer-links h4 {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1rem;
}
.footer-links ul li { margin-bottom: 0.5rem; }
.footer-links ul li a {
  color: rgba(255,255,255,0.65);
  font-size: 0.875rem;
  transition: color 0.2s;
}
.footer-links ul li a:hover { color: white; }
.footer-bottom {
  padding: 1.25rem 0;
  text-align: center;
}
.footer-bottom p { color: rgba(255,255,255,0.3); font-size: 0.8rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .about-inner { gap: 3rem; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
  .sticky-cta { display: none; }
  .projects-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .about-inner { grid-template-columns: 1fr; }
  .about-img { height: 300px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .jurisdictions-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .jurisdictions-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }

  /* Nav — constrain logo so it never gets clipped */
  .nav-inner { padding: 0 1rem; height: 58px; gap: 0.75rem; overflow: hidden; }
  .logo-img { height: 30px; max-width: 180px; object-fit: contain; }
  .logo { min-width: 0; overflow: hidden; }
}

/* ===== ASANA CTA BLOCK ===== */
.asana-cta-block {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 2rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.asana-desc {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}
.btn-asana {
  font-size: 1.1rem;
  padding: 1.1rem 2rem;
  border-radius: 6px;
  letter-spacing: 0.01em;
}
.asana-note {
  color: var(--gray);
  font-size: 0.825rem;
  margin: 0;
  font-style: italic;
  opacity: 0.8;
}

/* ===== DRAFTING SECTION ===== */
.drafting-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 6rem 0;
  min-height: 480px;
  display: flex;
  align-items: center;
}
.drafting-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 20, 40, 0.62);
}
.drafting-inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-start;
}
.drafting-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 12px;
  padding: 3rem 3.5rem;
  max-width: 560px;
  color: white;
}
.drafting-card .section-tag {
  color: var(--gold);
  background: rgba(199,160,94,0.15);
  border: 1px solid rgba(199,160,94,0.3);
  padding: 0.25rem 0.85rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 1.25rem;
}
.drafting-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.2;
  color: white;
  margin-bottom: 1.25rem;
}
.drafting-card p {
  color: rgba(255,255,255,0.82);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .drafting-section { background-attachment: scroll; padding: 4rem 0; }
  .drafting-card { padding: 2rem; }
  .drafting-card h2 { font-size: 1.8rem; }
}

/* Center last card when odd count */
.services-grid .service-card:last-child:nth-child(3n+1) {
  grid-column: 2 / 3;
}

/* ===== JURISDICTION MAP ===== */
.map-wrapper {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  margin-bottom: 3rem;
}
#jurisdictions-map {
  width: 100%;
  height: 480px;
  background: #0a1428;
}
@media (max-width: 768px) {
  #jurisdictions-map { height: 340px; }
}

/* ===== PHOTO GALLERY ===== */
.gallery-section {
  background: #f4f6f9;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #0d1b2e;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.gallery-item.gallery-wide {
  grid-column: span 2;
  aspect-ratio: 16/7;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.gallery-item:hover img {
  transform: scale(1.04);
}
.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(10,20,40,0.75));
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 1.5rem 1rem 0.75rem;
  letter-spacing: 0.03em;
}
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item.gallery-wide {
    grid-column: span 1;
    aspect-ratio: 4/3;
  }
}

/* ===== CLIENTS SECTION ===== */
.clients-section {
  background: #fff;
  padding: 5rem 0;
}
.clients-section .section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.clients-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2.5rem 3.5rem;
}
.client-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 90px;
  filter: grayscale(100%);
  opacity: 0.65;
  transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}
.client-logo-wrap:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.06);
}
.client-logo-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
@media (max-width: 768px) {
  .clients-grid {
    gap: 2rem;
  }
  .client-logo-wrap {
    width: 120px;
    height: 70px;
  }
}

/* ===== PHOTO STRIP ===== */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 320px;
}
.photo-strip-item {
  background-size: cover;
  background-position: center;
  transition: flex 0.4s ease;
  overflow: hidden;
  position: relative;
}
.photo-strip-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,20,40,0.25);
  transition: background 0.3s ease;
}
.photo-strip-item:hover::after {
  background: rgba(10,20,40,0.05);
}
@media (max-width: 768px) {
  .photo-strip { grid-template-columns: repeat(2,1fr); height: 240px; }
}

/* ===== FLYOVER BANNERS ===== */
.flyover-banner {
  position: relative;
  min-height: 500px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  padding: 6rem 0;
  overflow: hidden;
}
.flyover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,20,40,0.85) 0%, rgba(10,20,40,0.5) 60%, rgba(10,20,40,0.1) 100%);
}
.flyover-right .flyover-overlay {
  background: linear-gradient(270deg, rgba(10,20,40,0.85) 0%, rgba(10,20,40,0.5) 60%, rgba(10,20,40,0.1) 100%);
}
.flyover-content {
  position: relative;
  z-index: 2;
  max-width: 540px;
  margin-left: 8%;
  color: white;
}
.flyover-right .flyover-content {
  margin-left: auto;
  margin-right: 8%;
  text-align: right;
}
.flyover-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #c7a05e;
  margin-bottom: 1rem;
}
.flyover-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: white;
  margin-bottom: 1.25rem;
}
.flyover-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2rem;
}
.btn-outline-white {
  display: inline-block;
  padding: 0.75rem 2rem;
  border: 2px solid white;
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  border-radius: 4px;
  transition: background 0.3s ease, color 0.3s ease;
}
.btn-outline-white:hover {
  background: white;
  color: #0d1b2e;
}
@media (max-width: 768px) {
  .flyover-banner {
    background-attachment: scroll;
    min-height: 400px;
  }
  .flyover-content, .flyover-right .flyover-content {
    margin: 0 1.5rem;
    text-align: left;
  }
  .flyover-overlay, .flyover-right .flyover-overlay {
    background: rgba(10,20,40,0.75);
  }
}

/* ===== VIDEO SECTION ===== */
.video-section {
  background: #0d1b2e;
  padding: 6rem 0;
}
.video-section .section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.video-section .section-tag {
  color: #c7a05e;
}
.video-section h2 {
  color: #ffffff;
}
.video-section p {
  color: rgba(255,255,255,0.7);
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}
.video-card {
  background: #122038;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
}
.video-card-wide {
  grid-column: span 2;
}
.video-label {
  padding: 0.85rem 1.25rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c7a05e;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
}
.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
/* Native video tags inside cards */
.video-card video {
  display: block;
  width: 100%;
  height: 240px;
  object-fit: cover;
}
.video-card-wide video {
  height: 340px;
}
@media (max-width: 900px) {
  .video-grid {
    grid-template-columns: 1fr;
  }
  .video-card-wide {
    grid-column: span 1;
  }
}

/* ── Westfield Century City Section ── */
.wcc-section {
  background: #0a1628;
  padding: 6rem 0;
}
.wcc-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.wcc-img-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.wcc-img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}
.wcc-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin: 0.5rem 0 1.25rem;
  line-height: 1.2;
}
.wcc-content p {
  color: rgba(255,255,255,0.7);
  font-size: 0.97rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}
.wcc-list {
  list-style: none;
  margin: 1.25rem 0 2rem;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}
.wcc-list li {
  color: #c7a05e;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}
/* ── Westfield UTC reversed layout (desktop only) ── */
.wcc-reverse .wcc-inner {
  direction: rtl;
}
.wcc-reverse .wcc-inner > * {
  direction: ltr;
}

@media (max-width: 900px) {
  .wcc-inner {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  .wcc-img-wrap img { height: 280px; }
  .wcc-list { grid-template-columns: 1fr; }
  /* Kill rtl on all responsive widths */
  .wcc-reverse .wcc-inner {
    direction: ltr;
    flex-direction: column;
  }
  .wcc-reverse .wcc-inner > * { direction: ltr; }
  /* Image always on top, content below */
  .wcc-inner .wcc-img-wrap { order: 1; }
  .wcc-inner .wcc-content { order: 2; }
}
.wcc-address {
  font-size: 0.82rem !important;
  color: #c7a05e !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1rem !important;
  margin-top: -0.5rem;
  font-weight: 600;
}

/* ── Century Plaza no-photo placeholder ── */
.wcc-no-photo {
  background: linear-gradient(135deg, #0d1b2e 0%, #1a3a5c 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.wcc-placeholder {
  text-align: center;
}
.wcc-placeholder span {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #c7a05e;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}
.wcc-placeholder p {
  color: rgba(255,255,255,0.5) !important;
  font-size: 0.9rem !important;
  margin: 0 !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Gold button */
.btn-gold {
  display: inline-block;
  background: #c7a05e;
  color: #0d1b2e;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.btn-gold:hover {
  background: #e0b96e;
  transform: translateY(-2px);
  color: #0d1b2e;
}

/* ===== PROJECT BTN GROUP ===== */
.project-btn-group {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.btn-outline-gold {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border: 2px solid #c7a05e;
  color: #c7a05e;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.btn-outline-gold:hover {
  background: #c7a05e;
  color: #0d1b2e;
}

/* ===== FEATURED PROJECT MOBILE ===== */
@media (max-width: 768px) {
  .wcc-section { padding: 3.5rem 0; }
  .wcc-inner { padding: 0 1.25rem; gap: 1.75rem; }
  .wcc-img-wrap img { height: 240px; }
  .wcc-no-photo { min-height: 200px; }
  .wcc-content h2 { font-size: 1.5rem; }
  .project-btn-group { gap: 0.6rem; }
  .btn-outline-gold { padding: 0.65rem 1.25rem; font-size: 0.82rem; }
  /* Always: image top, content below */
  .wcc-reverse .wcc-inner { direction: ltr; }
  .wcc-reverse .wcc-inner .wcc-content { order: 2; }
  .wcc-reverse .wcc-inner .wcc-img-wrap { order: 1; }
  .wcc-reverse .wcc-inner .wcc-content { order: 2; }
  .wcc-reverse .wcc-inner .wcc-img-wrap { order: 1; }
}

@media (max-width: 480px) {
  .wcc-section { padding: 2.5rem 0; }
  .wcc-inner { padding: 0 1rem; gap: 1.5rem; }
  .wcc-img-wrap img { height: 200px; border-radius: 10px; }
  .wcc-no-photo { min-height: 160px; }
  .wcc-content h2 { font-size: 1.35rem; }
  .wcc-content p { font-size: 0.9rem; }
  .wcc-address { font-size: 0.75rem !important; }
  .wcc-list { grid-template-columns: 1fr; gap: 0.5rem; }
  .wcc-list li { font-size: 0.83rem; }
  .project-btn-group {
    flex-direction: column;
    gap: 0.5rem;
  }
  .project-btn-group .btn,
  .project-btn-group .btn-outline-gold {
    width: 100%;
    text-align: center;
    padding: 0.9rem 1rem;
    font-size: 0.9rem;
  }
  .wcc-reverse .wcc-inner { direction: ltr; }
  .wcc-reverse .wcc-inner .wcc-content { order: 2; }
  .wcc-reverse .wcc-inner .wcc-img-wrap { order: 1; }
  .section-tag { font-size: 0.7rem; }
}


