/* ========================================================
   AB Civil Services – styles.css
   Premium Construction Website
   Colour palette: black, charcoal, white, gold/bronze
   ======================================================== */

/* ── 1. CSS VARIABLES ──────────────────────────────────── */
:root {
  --black:        #0a0a0a;
  --charcoal:     #1a1a1a;
  --dark:         #262626;
  --mid:          #3d3d3d;
  --muted:        #888888;
  --light-grey:   #e8e8e8;
  --off-white:    #f7f5f0;
  --white:        #ffffff;

  --gold:         #C9A84C;
  --gold-light:   #dfc06a;
  --gold-dark:    #9e7d2e;
  --gold-alpha:   rgba(201, 168, 76, 0.15);

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --radius-sm:    4px;
  --radius-md:    8px;
  --radius-lg:    16px;

  --shadow-sm:    0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:    0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg:    0 20px 60px rgba(0,0,0,0.18);
  --shadow-gold:  0 8px 32px rgba(201,168,76,0.25);

  --transition:   0.3s ease;
  --transition-slow: 0.6s ease;

  --max-width:    1280px;
  --header-h:     80px;

  --section-pad:  6rem;
}

/* ── 2. RESET ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ── 3. UTILITY ─────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 768px) { .container { padding: 0 2.5rem; } }
@media (min-width: 1200px) { .container { padding: 0 3rem; } }

.section-padding { padding: var(--section-pad) 0; }
.text-center { text-align: center; }
.bg-charcoal { background: var(--charcoal); }
.bg-light { background: var(--off-white); }

.gold-text { color: var(--gold); }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-label.light { color: var(--gold-light); }

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 1rem;
}
.section-title.light { color: var(--white); }

.section-header { margin-bottom: 3.5rem; }
.section-intro {
  max-width: 640px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.05rem;
}
.section-intro.light { color: rgba(255,255,255,0.65); }

/* ── 4. ANIMATIONS ──────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.05); }
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(8px); }
}

.fade-up {
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
}
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── 5. BUTTONS ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), transform var(--transition),
              box-shadow var(--transition);
  white-space: nowrap;
}
.btn:active { transform: scale(0.98); }

.btn-sm  { padding: 0.5rem 1.25rem; font-size: 0.8rem; }
.btn-lg  { padding: 0.9rem 2rem; font-size: 0.9rem; }
.btn-full { width: 100%; }

.btn-gold {
  background: var(--gold);
  color: var(--black);
  padding: 0.75rem 1.75rem;
}
.btn-gold:hover {
  background: var(--gold-light);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
  padding: 0.75rem 1.75rem;
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--charcoal);
  color: var(--white);
  padding: 0.75rem 1.75rem;
}
.btn-dark:hover {
  background: var(--mid);
  transform: translateY(-2px);
}

/* ── 6. HEADER ──────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition),
              height var(--transition);
}
.site-header.scrolled {
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
  height: 68px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 2rem;
}

/* Logo */
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  flex-shrink: 0;
}
.logo-main {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}
.logo-sub {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

/* Nav */
.main-nav { display: none; }
@media (min-width: 1024px) { .main-nav { display: flex; } }

.nav-list {
  display: flex;
  gap: 0.25rem;
}
.nav-link {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover,
.nav-link.active {
  color: var(--gold);
  background: var(--gold-alpha);
}

/* Header contact */
.header-contact {
  display: none;
  align-items: center;
  gap: 1.25rem;
}
@media (min-width: 1024px) { .header-contact { display: flex; } }

.header-phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
  font-weight: 500;
  transition: color var(--transition);
}
.header-phone:hover { color: var(--gold); }

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 6px;
}
@media (min-width: 1024px) { .hamburger { display: none; } }

.hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
  transform-origin: center;
}
.hamburger.open .hamburger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open .hamburger-line:nth-child(2) { opacity: 0; }
.hamburger.open .hamburger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.main-nav.mobile-open {
  display: flex;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: rgba(10,10,10,0.98);
  backdrop-filter: blur(16px);
  padding: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.main-nav.mobile-open .nav-list {
  flex-direction: column;
  gap: 0;
  width: 100%;
}
.main-nav.mobile-open .nav-link {
  font-size: 1rem;
  padding: 0.875rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* ── 7. HERO ────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.65) 60%, rgba(0,0,0,0.8) 100%),
    url('https://images.unsplash.com/photo-1481026469463-66327c86e544?w=1800&q=85&auto=format&fit=crop')
    center/cover no-repeat;
  background-attachment: fixed;
}
@media (max-width: 768px) {
  .hero { background-attachment: scroll; }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, transparent 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: var(--header-h);
  max-width: 860px;
}

.hero-tagline {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,0.8);
  max-width: 640px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll-arrow {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
  opacity: 0.8;
  animation: scrollBounce 2s ease infinite;
  transition: opacity var(--transition);
}
.hero-scroll-arrow:hover { opacity: 1; }

/* ── 8. TRUST SECTION ───────────────────────────────────── */
.trust-section {
  background: var(--white);
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--light-grey);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media (min-width: 768px) {
  .trust-grid { grid-template-columns: repeat(4, 1fr); }
}

.trust-badge {
  text-align: center;
  padding: 1.5rem 1rem;
}

.trust-icon {
  width: 56px;
  height: 56px;
  background: var(--gold-alpha);
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--gold);
}
.trust-icon svg { width: 24px; height: 24px; }

.trust-badge h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.trust-badge p {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ── 9. ABOUT ───────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
}
@media (min-width: 900px) {
  .about-grid { grid-template-columns: 1fr 1fr; gap: 5rem; }
}

.about-image-wrap { position: relative; }

.about-img-placeholder {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}
.about-img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.about-img-placeholder:hover img { transform: scale(1.04); }

.about-img-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1rem;
  background: var(--gold);
  color: var(--black);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-sm);
  text-align: center;
  box-shadow: var(--shadow-md);
  line-height: 1.2;
}
@media (max-width: 500px) { .about-img-badge { display: none; } }

.badge-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
.badge-text {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-content { padding-bottom: 1rem; }

.about-lead {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.about-content p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.about-checklist {
  margin: 1.75rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.about-checklist li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark);
}
.about-checklist li svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  fill: var(--gold);
}

/* ── 10. SERVICES ───────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }

.service-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  transition: background var(--transition), border-color var(--transition),
              transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.service-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.service-card:hover::before { transform: scaleX(1); }

.service-card-icon {
  width: 52px;
  height: 52px;
  background: var(--gold-alpha);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--gold);
}
.service-card-icon svg { width: 24px; height: 24px; }

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.service-card p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.service-link {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap var(--transition), color var(--transition);
}
.service-link:hover { gap: 0.6rem; color: var(--gold-light); }

/* ── 11. FEATURE / PROCESS ──────────────────────────────── */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 640px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .feature-grid { grid-template-columns: repeat(3, 1fr); } }

.feature-item {
  padding: 2rem;
  border: 1px solid var(--light-grey);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  position: relative;
}
.feature-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--gold);
}

.feature-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--light-grey);
  line-height: 1;
  margin-bottom: 0.75rem;
  transition: color var(--transition);
}
.feature-item:hover .feature-number { color: var(--gold); }

.feature-item h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.feature-item p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.75;
}

/* ── 12. PROJECTS ───────────────────────────────────────── */
.project-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  justify-content: center;
}

.filter-btn {
  padding: 0.5rem 1.25rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1.5px solid var(--light-grey);
  border-radius: 2rem;
  color: var(--muted);
  background: var(--white);
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), box-shadow var(--transition);
}
.filter-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.filter-btn.active {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
@media (min-width: 640px) { .projects-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .projects-grid { grid-template-columns: repeat(3, 1fr); } }

.project-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}
.project-item.hidden { display: none; }

.project-img {
  width: 100%;
  height: 100%;
}
.project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.project-item:hover .project-img img { transform: scale(1.06); }

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity var(--transition);
}
.project-item:hover .project-overlay { opacity: 1; }

.project-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.65rem;
  border-radius: 2rem;
  margin-bottom: 0.5rem;
  width: fit-content;
}

.project-overlay h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--white);
  font-weight: 600;
}

.projects-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius-sm);
  padding: 0.875rem 1.25rem;
  margin-bottom: 2.5rem;
}

/* ── 13. WHY CHOOSE US ──────────────────────────────────── */
.why-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 900px) {
  .why-inner { grid-template-columns: 1fr 1.6fr; gap: 5rem; align-items: center; }
}

.why-content .section-title { margin-bottom: 1rem; }
.why-content p {
  color: var(--muted);
  margin-bottom: 2rem;
  font-size: 1rem;
}

.why-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) { .why-list { grid-template-columns: repeat(2, 1fr); } }

.why-item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid var(--light-grey);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
}
.why-item:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.why-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--gold-alpha);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-top: 2px;
}
.why-icon svg { width: 20px; height: 20px; }

.why-item h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.3rem;
}
.why-item p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ── 14. TESTIMONIALS ───────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }

.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.2;
  position: absolute;
  top: -0.5rem;
  left: 1.5rem;
  line-height: 1;
  pointer-events: none;
}
.testimonial-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(201,168,76,0.4);
  transform: translateY(-4px);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.testimonial-card p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1.25rem;
}

.testimonial-card footer {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1rem;
}
.testimonial-card footer strong {
  display: block;
  color: var(--white);
  font-size: 0.9rem;
}
.testimonial-card footer span {
  font-size: 0.78rem;
  color: var(--gold);
  font-style: normal;
}

.placeholder-note {
  font-size: 0.8rem !important;
  color: rgba(255,200,50,0.7) !important;
  margin-top: 0.5rem;
}

/* ── 15. CONTACT ────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: start;
}
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1.2fr; } }

.contact-info .section-title { margin-bottom: 1rem; }
.contact-info > p {
  color: var(--muted);
  margin-bottom: 2rem;
  font-size: 1rem;
}

.contact-details { display: flex; flex-direction: column; gap: 1.25rem; }

.contact-detail-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-detail-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--gold-alpha);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-top: 2px;
}
.contact-detail-icon svg { width: 20px; height: 20px; }

.contact-detail-item strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 0.2rem;
}
.contact-detail-item a,
.contact-detail-item span {
  display: block;
  font-size: 0.9rem;
  color: var(--muted);
  transition: color var(--transition);
}
.contact-detail-item a:hover { color: var(--gold); }

.placeholder-inline {
  font-size: 0.72rem !important;
  color: #e69a00 !important;
  font-style: italic;
}

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--light-grey);
}

.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 500px) { .form-row { grid-template-columns: repeat(2, 1fr); } }

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--dark);
}
.required { color: var(--gold); }

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--light-grey);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--dark);
  background: var(--off-white);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px var(--gold-alpha);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23888' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px;
  padding-right: 2.5rem;
}

.form-privacy {
  font-size: 0.75rem;
  color: var(--muted);
  text-align: center;
}

.form-success {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(201,168,76,0.1);
  border: 1.5px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold-dark);
}
.form-success svg { width: 20px; height: 20px; fill: var(--gold); flex-shrink: 0; }
.form-success[hidden] { display: none; }

/* ── 16. FOOTER ─────────────────────────────────────────── */
.site-footer { background: var(--black); color: rgba(255,255,255,0.65); }

.footer-top { padding: 5rem 0 3.5rem; border-bottom: 1px solid rgba(255,255,255,0.07); }

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1.2fr 1.2fr 1.6fr; } }

.footer-logo {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.2rem;
}
.footer-logo-sub {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}
.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.social-link:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.footer-heading {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.footer-nav ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-nav a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition), padding-left var(--transition);
}
.footer-nav a:hover { color: var(--gold); padding-left: 4px; }

.footer-contact-info ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-contact-info li {
  font-size: 0.85rem;
  line-height: 1.5;
}
.footer-contact-info strong {
  display: block;
  color: rgba(255,255,255,0.5);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.1rem;
}
.footer-contact-info a {
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
}
.footer-contact-info a:hover { color: var(--gold); }
.footer-contact-info span { color: rgba(255,255,255,0.55); }

.footer-bottom {
  padding: 1.5rem 0;
}
.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}
@media (min-width: 640px) {
  .footer-bottom-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-legal { display: flex; gap: 1rem; align-items: center; }
.footer-legal a {
  color: rgba(255,255,255,0.35);
  font-size: 0.8rem;
  transition: color var(--transition);
}
.footer-legal a:hover { color: var(--gold); }
.footer-legal span { color: rgba(255,255,255,0.15); }

/* ── 17. BACK TO TOP ────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  width: 48px;
  height: 48px;
  background: var(--gold);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold);
  transition: background var(--transition), transform var(--transition), opacity var(--transition);
  opacity: 0;
  pointer-events: none;
}
.back-to-top:not([hidden]) {
  opacity: 1;
  pointer-events: auto;
}
.back-to-top:hover {
  background: var(--gold-light);
  transform: translateY(-4px);
}
.back-to-top[hidden] { display: flex; opacity: 0; pointer-events: none; }

/* ── 18. RESPONSIVE OVERRIDES ───────────────────────────── */
@media (max-width: 639px) {
  :root { --section-pad: 4rem; }

  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas .btn { width: 100%; max-width: 300px; justify-content: center; }

  .about-grid { gap: 4rem; }
  .about-img-badge { right: 0; bottom: -1rem; }

  .contact-form-wrap { padding: 1.75rem; }

  .back-to-top { bottom: 1rem; right: 1rem; width: 44px; height: 44px; }
}

/* ── 19. PRINT ──────────────────────────────────────────── */
@media print {
  .site-header, .hero-scroll-arrow, .back-to-top { display: none !important; }
  .hero { min-height: auto; background: none; color: var(--black); }
  .hero-headline, .hero-sub { color: var(--black); }
}

/* ── 20. REDUCED MOTION ─────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
