/* ==========================================================================
   VJ Enterprises — stylesheet
   ========================================================================== */

:root {
  --navy: #0C3B66;
  --navy-dark: #082744;
  --gold: #C79A3C;
  --gold-light: #E0BE6E;
  --white: #FFFFFF;
  --gray-mid: #5B6472;
  --gray-muted: #8A8F98;
  --gray-border: #D9D9D3;
  --off-white: #F7F6F3;

  --font-head: "Playfair Display", Georgia, serif;
  --font-body: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1180px;
  --radius: 6px;
  --shadow-sm: 0 2px 10px rgba(12, 59, 102, 0.08);
  --shadow-md: 0 8px 30px rgba(12, 59, 102, 0.14);
  --transition: 0.3s ease;
}

/* -------------------------------------------------------------------- */
/* Reset & base                                                         */
/* -------------------------------------------------------------------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

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

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

ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}

h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.3rem; }

p { color: var(--gray-mid); }

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

section { padding: 96px 0; }

.section-tag {
  display: inline-block;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 14px;
}

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

.section-head p { margin-top: 14px; font-size: 1.05rem; }

.divider {
  width: 64px;
  height: 3px;
  background: var(--gold);
  margin: 18px auto 0;
  border-radius: 2px;
}

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

html.js .reveal .divider {
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.25s;
}
html.js .reveal.in-view .divider { transform: scaleX(1); }

/* -------------------------------------------------------------------- */
/* Buttons                                                              */
/* -------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--gold);
  color: var(--navy-dark);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--gold-light); box-shadow: var(--shadow-md); }

.btn-outline {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); }

.btn-outline-navy {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }

.btn-block { width: 100%; }

/* -------------------------------------------------------------------- */
/* Header / Nav                                                         */
/* -------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  background: rgba(12, 59, 102, 0.0);
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  padding: 18px 0;
}

.site-header.scrolled {
  background: var(--navy);
  box-shadow: var(--shadow-md);
  padding: 10px 0;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--white);
}

.brand img { height: 62px; width: auto; transition: height var(--transition); }
.site-header.scrolled .brand img { height: 52px; }

.brand-name {
  color: var(--gold);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: 0.01em;
  line-height: 1;
  text-shadow: 0 1px 12px rgba(199, 154, 60, 0.35);
}

@media (max-width: 480px) {
  .brand-name { font-size: 1.1rem; }
}
@media (max-width: 360px) {
  .brand-name { display: none; }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a:not(.btn) {
  color: var(--white);
  font-weight: 600;
  font-size: 0.92rem;
  position: relative;
  padding: 4px 0;
}

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

.nav-links a:not(.btn):hover::after { width: 100%; }

.nav-links a:not(.btn).active { color: var(--gold-light); }
.nav-links a:not(.btn).active::after { width: 100%; }

.footer-col a.active { color: var(--gold-light); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 600;
}
.nav-toggle span {
  width: 26px; height: 2px; background: var(--white); border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* -------------------------------------------------------------------- */
/* Sub-page header band                                                 */
/* -------------------------------------------------------------------- */
.page-header {
  background: linear-gradient(155deg, var(--navy-dark) 0%, var(--navy) 65%, #124a80 100%);
  padding: 160px 0 56px;
  text-align: center;
}
.page-header .section-tag { color: var(--gold-light); }
.page-header h1 { color: var(--white); margin: 0; }

/* -------------------------------------------------------------------- */
/* Hero                                                                 */
/* -------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(155deg, var(--navy-dark) 0%, var(--navy) 55%, #124a80 100%);
  overflow: hidden;
  padding-top: 90px;
}

.hero-bg-photo {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-bg-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

/* Navy duotone treatment over the site photo, per brand guidelines */
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(155deg, rgba(8,39,68,0.94) 0%, rgba(12,59,102,0.88) 55%, rgba(18,74,128,0.75) 100%),
    linear-gradient(to top, rgba(8,39,68,0.95) 0%, rgba(8,39,68,0.15) 55%);
  mix-blend-mode: normal;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.hero-content .eyebrow {
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  font-size: 0.82rem;
  margin-bottom: 18px;
  display: block;
}

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

.hero-content .subhead {
  color: rgba(255,255,255,0.82);
  font-size: 1.15rem;
  max-width: 560px;
  margin: 22px 0 36px;
}

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

.hero-badge-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(6px);
  border-radius: var(--radius);
  padding: 28px;
  color: var(--white);
}

.hero-badge-card ul { margin-top: 16px; display: grid; gap: 12px; }
.hero-badge-card li { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 0.95rem; }
.hero-badge-card li svg { flex-shrink: 0; color: var(--gold); }

.scroll-cue {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.65);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: bob 2.2s ease-in-out infinite;
}
@keyframes bob { 0%,100%{ transform: translate(-50%,0);} 50%{ transform: translate(-50%,8px);} }

/* -------------------------------------------------------------------- */
/* Trust bar / Counters                                                 */
/* -------------------------------------------------------------------- */
.trust-bar {
  background: var(--navy-dark);
  padding: 56px 0;
}

.counters {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.counter-item .num {
  font-family: var(--font-head);
  color: var(--gold);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1;
}

.counter-item .label {
  color: rgba(255,255,255,0.82);
  margin-top: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.counter-note {
  text-align: center;
  color: rgba(255,255,255,0.45);
  font-size: 0.75rem;
  margin-top: 32px;
}

/* -------------------------------------------------------------------- */
/* About                                                                */
/* -------------------------------------------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.about-copy p { margin-bottom: 18px; font-size: 1.02rem; }
.about-copy .tagline {
  font-family: var(--font-head);
  color: var(--navy);
  font-size: 1.25rem;
  font-style: italic;
  margin: 24px 0;
  padding-left: 18px;
  border-left: 3px solid var(--gold);
}

.about-photo {
  margin-top: 28px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.about-photo img { width: 100%; height: auto; display: block; }

.about-photo figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 14px 18px;
  background: linear-gradient(to top, rgba(8,39,68,0.85), transparent);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
}

.about-panels { display: grid; gap: 22px; }

.panel {
  background: var(--off-white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  padding: 28px;
}

.panel h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--navy);
}
.panel h3 svg { color: var(--gold); flex-shrink: 0; }

.panel.mission ul { display: grid; gap: 10px; margin-top: 6px; }
.panel.mission li {
  display: flex; gap: 10px; align-items: flex-start;
  color: var(--gray-mid); font-size: 0.96rem;
}
.panel.mission li svg { color: var(--gold); flex-shrink: 0; margin-top: 3px; }

/* -------------------------------------------------------------------- */
/* Services                                                             */
/* -------------------------------------------------------------------- */
.services-section { background: var(--off-white); }

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

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 0 28px 34px;
  border: 1px solid var(--gray-border);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.service-card-img {
  margin: 0 -28px 0;
  height: 160px;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card-img img { transform: scale(1.06); }

.service-icon {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  margin: -29px 0 20px;
  color: var(--gold);
  border: 4px solid var(--white);
  position: relative;
  z-index: 1;
}

.service-card h3 { margin-bottom: 10px; }
.service-card p { font-size: 0.95rem; }
.service-card-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold);
}
.service-card-link:hover { color: var(--gold-light); }

/* -------------------------------------------------------------------- */
/* Fleet                                                                */
/* -------------------------------------------------------------------- */
.fleet-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

table.fleet-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
  background: var(--white);
}

.fleet-table thead th {
  background: var(--navy);
  color: var(--white);
  text-align: left;
  padding: 16px 20px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
}

.fleet-table tbody td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--gray-border);
  font-size: 0.95rem;
  color: var(--navy-dark);
}

.fleet-table tbody tr:last-child td { border-bottom: none; }
.fleet-table tbody tr:nth-child(even) { background: var(--off-white); }

.fleet-table td.qty { font-weight: 700; color: var(--navy); text-align: center; }

.fleet-note {
  margin-top: 20px;
  padding: 16px 20px;
  background: #FBF4E3;
  border: 1px solid var(--gold-light);
  border-radius: var(--radius);
  color: var(--navy-dark);
  font-size: 0.9rem;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.fleet-note svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }

/* -------------------------------------------------------------------- */
/* Projects                                                             */
/* -------------------------------------------------------------------- */
.projects-section { background: var(--off-white); }

.projects-group { margin-bottom: 40px; }
.projects-group:last-of-type { margin-bottom: 0; }

.projects-group-title {
  font-family: var(--font-head);
  color: var(--navy);
  font-size: 1.2rem;
  margin: 0 0 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--gray-border);
}

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

.project-card .pc-right {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.pc-value {
  color: var(--gold-dark, var(--gold));
  font-weight: 700;
  font-size: 0.85rem;
  white-space: nowrap;
}

.project-card {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  padding: 24px 26px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.project-card:hover { box-shadow: var(--shadow-md); transform: translateY(-5px); border-color: var(--gold); }

.project-card .pc-client { font-family: var(--font-head); color: var(--navy); font-size: 1.05rem; margin-bottom: 4px; }
.project-card .pc-site { color: var(--gray-mid); font-size: 0.9rem; }

.project-tag {
  flex-shrink: 0;
  background: var(--navy);
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 6px 12px;
  border-radius: 999px;
  white-space: nowrap;
}

.project-card-placeholder {
  border-style: dashed;
  background: var(--gray-light, #f7f6f3);
}
.project-card-placeholder .pc-client { color: var(--gray-mid); font-style: italic; }
.project-card .project-tag.pending-tag {
  background: none;
  color: var(--gray-mid);
  border: 1px solid var(--gray-border);
}
.project-card .project-tag.ongoing-tag {
  background: var(--gold);
  color: var(--navy-dark);
}

.projects-footnote {
  text-align: center;
  color: var(--gray-muted);
  font-size: 0.85rem;
  margin-top: 32px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* -------------------------------------------------------------------- */
/* Section banner photo (Fleet, Projects)                              */
/* -------------------------------------------------------------------- */
.section-banner {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 16 / 8;
}

.section-banner img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; display: block; }

/* -------------------------------------------------------------------- */
/* Clients                                                              */
/* -------------------------------------------------------------------- */
.team-photo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 40px;
}

.team-photo-wide { max-height: 360px; }

.team-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

.team-photo figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 14px 18px;
  background: linear-gradient(to top, rgba(8,39,68,0.85), transparent);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 18px;
}

.client-badge {
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  padding: 26px 14px;
  text-align: center;
  font-weight: 700;
  color: var(--navy);
  font-family: var(--font-head);
  font-size: 1rem;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.client-badge:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); transform: translateY(-3px); }

.client-logos-strip {
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  margin-bottom: 32px;
}
.client-logos-strip img { width: 100%; height: auto; display: block; }

/* -------------------------------------------------------------------- */
/* Testimonials                                                        */
/* -------------------------------------------------------------------- */
.testimonials-section {
  position: relative;
  background: var(--navy);
  overflow: hidden;
}
.testimonials-section .container { position: relative; z-index: 1; }
.testimonials-section .section-tag { color: var(--gold-light); }
.testimonials-section .section-head h2 { color: var(--white); }
.testimonials-section .section-head p { color: rgba(255,255,255,0.7); }

.testimonials-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.testimonials-bg img { width: 100%; height: 100%; object-fit: cover; }
.testimonials-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(155deg, rgba(8,39,68,0.93) 0%, rgba(12,59,102,0.92) 100%);
}

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

.testimonial-card {
  background: rgba(255,255,255,0.06);
  border: 1px dashed rgba(255,255,255,0.3);
  border-radius: var(--radius);
  padding: 30px 26px;
  color: rgba(255,255,255,0.85);
  transition: transform var(--transition), background var(--transition), border-color var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,0.1);
  border-color: var(--gold);
}

.testimonial-card .quote-mark { color: var(--gold); font-size: 2.4rem; font-family: var(--font-head); line-height: 1; }
.testimonial-card p.quote { margin: 14px 0 20px; font-style: italic; font-size: 0.98rem; color: rgba(255,255,255,0.75); }
.testimonial-card .who { font-weight: 700; color: var(--white); font-size: 0.92rem; }
.testimonial-card .who span { display: block; font-weight: 400; color: rgba(255,255,255,0.55); font-size: 0.82rem; margin-top: 2px; }
.testimonial-card .pending-tag {
  display: inline-block; margin-top: 14px; font-size: 0.72rem; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--gold-light); font-weight: 700;
}

/* -------------------------------------------------------------------- */
/* FAQ                                                                  */
/* -------------------------------------------------------------------- */
.faq-list { max-width: 780px; margin: 0 auto; display: grid; gap: 14px; }

.faq-item {
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
}

.faq-question .icon {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  transition: transform var(--transition);
  font-size: 1.1rem;
  line-height: 1;
}

.faq-item.open .faq-question .icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding var(--transition);
  padding: 0 24px;
}

.faq-item.open .faq-answer { padding: 0 24px 22px; }

.faq-answer p { font-size: 0.95rem; }

/* -------------------------------------------------------------------- */
/* CTA banner                                                           */
/* -------------------------------------------------------------------- */
.cta-banner {
  position: relative;
  padding: 90px 0;
  overflow: hidden;
  text-align: center;
}

.cta-bg { position: absolute; inset: 0; z-index: 0; }
.cta-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.cta-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(155deg, rgba(8,39,68,0.92) 0%, rgba(12,59,102,0.85) 100%);
}

.cta-banner-content { position: relative; z-index: 1; }
.cta-banner-content h2 { color: var(--white); }
.cta-banner-content p {
  color: rgba(255,255,255,0.82);
  max-width: 560px;
  margin: 16px auto 30px;
  font-size: 1.05rem;
}
.cta-banner-content .hero-ctas { justify-content: center; }

/* -------------------------------------------------------------------- */
/* Contact                                                              */
/* -------------------------------------------------------------------- */
.contact-section { background: var(--off-white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}

.form-row { display: grid; gap: 8px; margin-bottom: 20px; }
.form-row label { font-weight: 600; font-size: 0.88rem; color: var(--navy); }

.form-row input,
.form-row textarea {
  padding: 13px 16px;
  border: 1px solid var(--gray-border);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--navy-dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(199, 154, 60, 0.18);
}

.form-note { font-size: 0.8rem; color: var(--gray-muted); margin-top: 14px; text-align: center; }
.form-status { margin-top: 14px; font-size: 0.9rem; font-weight: 600; display: none; }
.form-status.success { color: #2E7D4F; display: block; }
.form-status.error { color: #B3261E; display: block; }

.contact-info-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  margin-bottom: 24px;
}

.contact-info-card h3 { color: var(--white); margin-bottom: 20px; }

.info-row { display: flex; gap: 14px; margin-bottom: 18px; align-items: flex-start; }
.info-row:last-child { margin-bottom: 0; }
.info-row svg { color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.info-row .label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.05em; color: rgba(255,255,255,0.55); margin-bottom: 3px; }
.info-row .value { font-weight: 600; font-size: 0.96rem; }
.info-row .value small { display: block; font-weight: 400; color: rgba(255,255,255,0.6); font-size: 0.82rem; margin-top: 2px; }

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-border);
  box-shadow: var(--shadow-sm);
}
.map-wrap iframe { width: 100%; height: 280px; border: 0; display: block; }

/* -------------------------------------------------------------------- */
/* Footer                                                               */
/* -------------------------------------------------------------------- */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-brand img { height: 58px; }
.footer-brand span { font-family: var(--font-head); font-weight: 700; color: var(--white); font-size: 1.1rem; }

.footer-col h4 { color: var(--white); font-family: var(--font-body); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 18px; }
.footer-col ul { display: grid; gap: 10px; }
.footer-col a { font-size: 0.92rem; transition: color var(--transition); }
.footer-col a:hover { color: var(--gold-light); }

.footer-socials { display: flex; gap: 12px; margin-top: 18px; }
.footer-socials a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  transition: border-color var(--transition), background var(--transition);
}
.footer-socials a:hover { border-color: var(--gold); background: rgba(199,154,60,0.15); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}

.footer-bottom a {
  color: rgba(255,255,255,0.7);
  font-weight: 600;
  transition: color var(--transition);
}
.footer-bottom a:hover { color: var(--gold-light); }

/* -------------------------------------------------------------------- */
/* WhatsApp floating button                                             */
/* -------------------------------------------------------------------- */
.whatsapp-fab {
  position: fixed;
  bottom: 26px; right: 26px;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  z-index: 400;
  transition: transform var(--transition);
  animation: pulse-wa 2.8s ease-in-out infinite;
}
.whatsapp-fab:hover { transform: scale(1.08); }
@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 6px 20px rgba(0,0,0,0.25), 0 0 0 0 rgba(37,211,102,0.5); }
  50% { box-shadow: 0 6px 20px rgba(0,0,0,0.25), 0 0 0 10px rgba(37,211,102,0); }
}

/* -------------------------------------------------------------------- */
/* Scroll reveal utility                                                */
/* -------------------------------------------------------------------- */
.reveal { opacity: 1; transform: none; }

html.js .reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
html.js .reveal.in-view { opacity: 1; transform: translateY(0); }

/* Zoom-in variant — used on photos/images for a more premium, deliberate entrance */
html.js .reveal-zoom {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
html.js .reveal-zoom.in-view { opacity: 1; transform: scale(1); }

/* Slide-from-left / slide-from-right — used on alternating two-column layouts */
html.js .reveal-left {
  opacity: 0;
  transform: translateX(-48px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}
html.js .reveal-left.in-view { opacity: 1; transform: translateX(0); }

html.js .reveal-right {
  opacity: 0;
  transform: translateX(48px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}
html.js .reveal-right.in-view { opacity: 1; transform: translateX(0); }

.reveal-stagger > * { transition-delay: calc(var(--i, 0) * 100ms); }

/* -------------------------------------------------------------------- */
/* Load-in entrance animations (above-the-fold — plays immediately,     */
/* not scroll-triggered)                                                */
/* -------------------------------------------------------------------- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

html.js .load-in {
  opacity: 0;
  animation: fadeInUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
html.js .load-in-delay-1 { animation-delay: 0.15s; }
html.js .load-in-delay-2 { animation-delay: 0.3s; }
html.js .load-in-delay-3 { animation-delay: 0.45s; }

html.js .site-header {
  opacity: 0;
  animation: fadeIn 0.6s ease forwards;
}

/* Slow, subtle Ken Burns zoom on full-bleed background photos */
@keyframes kenBurns {
  from { transform: scale(1); }
  to { transform: scale(1.09); }
}
.hero-bg-photo img,
.cta-bg img,
.testimonials-bg img {
  animation: kenBurns 22s ease-in-out infinite alternate;
}

/* -------------------------------------------------------------------- */
/* Responsive                                                           */
/* -------------------------------------------------------------------- */
@media (max-width: 980px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-badge-card { order: -1; }
  .about-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .projects-grid { grid-template-columns: 1fr; }
  .team-photo-wide { max-height: 280px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .counters { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}

@media (max-width: 980px) {
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(320px, 80vw);
    background: var(--navy-dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 32px;
    gap: 26px;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    box-shadow: -10px 0 30px rgba(0,0,0,0.3);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-toggle { display: flex; }
}

@media (max-width: 760px) {
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .section-banner { aspect-ratio: 4 / 3; }
  section { padding: 68px 0; }
  .hero { padding-top: 100px; }
  .page-header { padding: 120px 0 40px; }
}

@media (max-width: 500px) {
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; }
}
