/* ============================================================
   BLACK KNIGHT CONSTRUCTION LLC — Main Stylesheet
   Color Palette: Navy #0a1628 | Gold #c8963e | White #ffffff
   ============================================================ */

/* --- CSS Variables --- */
:root {
  --navy: #0a1628;
  --navy-light: #142238;
  --navy-dark: #060f1c;
  --gold: #c8963e;
  --gold-light: #dbb06a;
  --gold-dark: #a87a2f;
  --white: #ffffff;
  --off-white: #f7f8fa;
  --charcoal: #2c2c2c;
  --gray-text: #5a5a5a;
  --gray-light: #e8eaed;
  --gray-border: #d1d5db;
  --red-error: #d32f2f;
  --green-success: #2e7d32;
  --shadow-sm: 0 2px 8px rgba(10, 22, 40, 0.08);
  --shadow-md: 0 4px 20px rgba(10, 22, 40, 0.12);
  --shadow-lg: 0 8px 40px rgba(10, 22, 40, 0.18);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --transition: 0.3s ease;
  --font-heading: 'DM Serif Display', Georgia, serif;
  --font-body: 'Outfit', 'Segoe UI', sans-serif;
  --max-width: 1200px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul, ol { list-style: none; }
button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
}

/* --- Typography --- */
h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--navy); line-height: 1.25; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); }
p { margin-bottom: 1rem; color: var(--gray-text); }

/* --- Utility Classes --- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-alt { background: var(--off-white); }
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  margin-bottom: 20px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-text);
  max-width: 640px;
  margin: 0 auto 40px;
}
.gold-bar {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 16px auto 24px;
  border-radius: 2px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.5px;
  min-height: 48px;
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
}
.btn-gold:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(200, 150, 62, 0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
  background: var(--navy-dark);
  padding: 8px 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar a {
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
}
.top-bar a:hover { color: var(--gold); }
.top-bar-contact {
  display: flex;
  gap: 20px;
  align-items: center;
}
.top-bar-contact svg {
  width: 14px;
  height: 14px;
  margin-right: 6px;
  vertical-align: middle;
  fill: var(--gold);
}
.top-bar-social {
  display: flex;
  gap: 12px;
  align-items: center;
}
.top-bar-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  transition: all var(--transition);
}
.top-bar-social a:hover {
  background: var(--gold);
  color: var(--white);
}
.top-bar-social svg {
  width: 14px;
  height: 14px;
  fill: var(--white);
}

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.header {
  background: var(--navy);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 120px;
}
.logo {
  display: flex;
  align-items: center;
}
.logo img, .logo svg {
  height: 110px;
  width: auto;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-menu a {
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  letter-spacing: 0.3px;
}
.nav-menu a:hover,
.nav-menu a.active {
  color: var(--gold);
  background: rgba(200, 150, 62, 0.08);
}
.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header-cta .btn {
  padding: 10px 24px;
  font-size: 0.85rem;
  min-height: 40px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  background: none;
  padding: 10px;
  z-index: 1001;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav */
.mobile-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 999;
  opacity: 0;
  transition: opacity var(--transition);
}
.mobile-overlay.active {
  display: block;
  opacity: 1;
}
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100%;
  background: var(--navy);
  z-index: 1000;
  padding: 80px 24px 40px;
  transition: right var(--transition);
  overflow-y: auto;
}
.mobile-nav.active {
  right: 0;
}
.mobile-nav a {
  display: block;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  font-size: 1.05rem;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: all var(--transition);
}
.mobile-nav a:hover,
.mobile-nav a.active { color: var(--gold); }
.mobile-nav .btn {
  margin-top: 24px;
  width: 100%;
  text-align: center;
}

/* ============================================================
   HERO SLIDESHOW
   ============================================================ */
.hero {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: var(--navy-dark);
}
.hero-slide {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  opacity: 0;
  transition: opacity 1s ease;
  display: flex;
  align-items: center;
}
.hero-slide.active { opacity: 1; z-index: 2; }
.hero-slide-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  filter: brightness(0.35);
}
.hero-slide-bg::after {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(10,22,40,0.85) 0%, rgba(10,22,40,0.5) 100%);
}
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 680px;
  padding: 60px 24px;
}
.hero-content .container {
  padding: 0;
}
.hero-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5.5vw, 3.5rem);
  margin-bottom: 20px;
  line-height: 1.15;
}
.hero p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  margin-bottom: 32px;
  line-height: 1.7;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero Dots */
.hero-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 10px;
}
.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}
.hero-dot.active {
  background: var(--gold);
  transform: scale(1.2);
}

/* ============================================================
   INTRO SECTION
   ============================================================ */
.intro { padding: 80px 0; }
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.intro-text h2 { margin-bottom: 8px; }
.intro-text .gold-bar { margin: 16px 0 24px; }
.intro-text p {
  font-size: 1.05rem;
  line-height: 1.8;
}
.intro-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.stat-card {
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
  border: 1px solid var(--gray-light);
  transition: all var(--transition);
}
.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.stat-number {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================================
   SERVICES PREVIEW (Homepage)
   ============================================================ */
.services-preview { background: var(--off-white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid var(--gray-light);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-card-img {
  height: 220px;
  background: var(--navy-light);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.service-card-img svg {
  width: 64px;
  height: 64px;
  fill: var(--gold);
  opacity: 0.6;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-card-body {
  padding: 28px 24px;
}
.service-card-body h3 {
  margin-bottom: 12px;
  font-size: 1.3rem;
}
.service-card-body p {
  font-size: 0.95rem;
  margin-bottom: 16px;
}
.service-link {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-link:hover { gap: 10px; }
.service-link svg {
  width: 16px;
  height: 16px;
  fill: var(--gold);
  transition: all var(--transition);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--navy); padding: 80px 0; }
.testimonials .section-label { color: var(--gold); }
.testimonials .section-title { color: var(--white); }
.testimonials .section-subtitle { color: rgba(255,255,255,0.6); }
.testimonial-carousel {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}
.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}
.testimonial-card {
  min-width: calc(100% / 3);
  padding: 0 12px;
}
.testimonial-inner {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 32px;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.testimonial-stars {
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 20px;
  letter-spacing: 4px;
}
.testimonial-inner p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px;
}
.testimonial-author {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.95rem;
}
.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}
.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}
.testimonial-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* ============================================================
   AREAS SERVED
   ============================================================ */
.areas-served { background: var(--off-white); }
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}
.area-tag {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  text-align: center;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--navy);
  transition: all var(--transition);
}
.area-tag:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 60px 0;
  text-align: center;
}
.cta-section h2 { color: var(--white); margin-bottom: 12px; }
.cta-section p { color: rgba(255,255,255,0.7); margin-bottom: 28px; font-size: 1.05rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy-dark);
  padding: 60px 0 0;
  color: rgba(255,255,255,0.7);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand img, .footer-brand svg {
  height: 110px;
  margin-bottom: 16px;
}
.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  line-height: 1.7;
}
.footer h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}
.footer-links a {
  display: block;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  padding: 6px 0;
  transition: all var(--transition);
}
.footer-links a:hover {
  color: var(--gold);
  padding-left: 4px;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.9rem;
}
.footer-contact-item svg {
  width: 18px;
  height: 18px;
  fill: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-contact-item a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  transition: all var(--transition);
}
.footer-social a:hover {
  background: var(--gold);
}
.footer-social svg {
  width: 16px;
  height: 16px;
  fill: var(--white);
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.page-hero {
  background: var(--navy);
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(200,150,62,0.05) 0%, transparent 50%);
}
.page-hero .section-label { color: var(--gold); }
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.65); font-size: 1.05rem; }

.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 60px 0;
  border-bottom: 1px solid var(--gray-light);
}
.service-detail:last-child { border-bottom: none; }
.service-detail.reverse { direction: rtl; }
.service-detail.reverse > * { direction: ltr; }
.service-detail-img {
  height: 360px;
  background: var(--navy-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-detail-img svg {
  width: 80px;
  height: 80px;
  fill: var(--gold);
  opacity: 0.5;
}
.service-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-detail-text h2 { margin-bottom: 8px; }
.service-detail-text .gold-bar { margin: 16px 0 24px; }
.service-detail-text p { font-size: 1.05rem; line-height: 1.8; }

/* ============================================================
   PROJECTS PAGE
   ============================================================ */
.project-types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}
.project-type-card {
  background: var(--off-white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  font-weight: 500;
  color: var(--navy);
  transition: all var(--transition);
}
.project-type-card:hover {
  border-color: var(--gold);
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.project-type-card svg {
  width: 40px;
  height: 40px;
  fill: var(--gold);
  margin-bottom: 12px;
}

.gallery-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.gallery-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  background: var(--white);
  border: 1px solid var(--gray-light);
}
.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.gallery-card-img {
  height: 240px;
  background: var(--navy-light);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.gallery-card-img::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(transparent, rgba(10,22,40,0.5));
}
.gallery-card-img svg {
  width: 64px;
  height: 64px;
  fill: var(--gold);
  opacity: 0.5;
}
.gallery-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-card-body {
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.gallery-card-body h3 { margin: 0; font-size: 1.2rem; }

/* Sub-gallery */
.sub-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.sub-gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 280px;
  background: var(--navy-light);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.sub-gallery-item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-md);
}
.sub-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sub-gallery-item svg {
  width: 48px;
  height: 48px;
  fill: var(--gold);
  opacity: 0.4;
}
.sub-gallery-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px;
  background: linear-gradient(transparent, rgba(10,22,40,0.8));
  color: var(--white);
  font-weight: 500;
  font-size: 0.9rem;
}

/* ============================================================
   CLIENTS PAGE
   ============================================================ */
.clients-section .container { max-width: 1000px; }
.client-category {
  margin-bottom: 48px;
}
.client-category h3 {
  font-size: 1.2rem;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}
.client-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 24px;
}
.client-list li {
  padding: 8px 0;
  font-size: 0.95rem;
  color: var(--gray-text);
  display: flex;
  align-items: center;
  gap: 8px;
}
.client-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-section {
  padding: 60px 0;
  border-bottom: 1px solid var(--gray-light);
}
.about-section:last-of-type { border-bottom: none; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.about-grid.reverse { direction: rtl; }
.about-grid.reverse > * { direction: ltr; }
.about-icon-box {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gray-light);
}
.about-icon-box svg {
  width: 100px;
  height: 100px;
  fill: var(--gold);
  opacity: 0.3;
}
.about-icon-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.about-text h2 { margin-bottom: 8px; }
.about-text .gold-bar { margin: 16px 0 24px; }
.about-text p { font-size: 1.05rem; line-height: 1.8; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 48px;
  align-items: start;
}
.contact-form-wrapper {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.contact-form-wrapper h2 { margin-bottom: 8px; }
.contact-form-wrapper .form-intro {
  color: var(--gray-text);
  margin-bottom: 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
}
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-group label .required { color: var(--red-error); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--charcoal);
  transition: border-color var(--transition), box-shadow var(--transition);
  min-height: 48px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 150, 62, 0.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group input.error,
.form-group select.error,
.form-group textarea.error { border-color: var(--red-error); }
.form-error-msg {
  font-size: 0.8rem;
  color: var(--red-error);
  margin-top: 4px;
  display: none;
}

.radio-group {
  display: flex;
  gap: 24px;
  padding-top: 6px;
}
.radio-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
  cursor: pointer;
}
.radio-group input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: var(--gold);
  min-height: auto;
}

/* Honeypot */
.form-hp { position: absolute; left: -9999px; opacity: 0; height: 0; }

.recaptcha-wrapper {
  margin: 20px 0;
}
.form-submit {
  margin-top: 8px;
}
.form-submit .btn {
  width: 100%;
  padding: 16px;
  font-size: 1rem;
}

/* Contact Sidebar */
.contact-sidebar { display: flex; flex-direction: column; gap: 24px; }
.sidebar-card {
  background: var(--off-white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-md);
  padding: 28px;
}
.sidebar-card h3 {
  font-size: 1.1rem;
  margin-bottom: 16px;
}
.sidebar-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}
.sidebar-contact-item svg {
  width: 20px;
  height: 20px;
  fill: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.sidebar-contact-item a:hover { color: var(--gold); }

.urgent-card {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border: none;
  text-align: center;
}
.urgent-card h3 { color: var(--white); }
.urgent-card p { color: rgba(255,255,255,0.7); }
.urgent-card .phone-big {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--gold);
  display: block;
  margin: 12px 0;
}

.trust-card ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-weight: 500;
  color: var(--navy);
  font-size: 0.95rem;
}
.trust-card ul li svg {
  width: 20px;
  height: 20px;
  fill: var(--gold);
  flex-shrink: 0;
}

/* ============================================================
   THANK YOU PAGE
   ============================================================ */
.thankyou-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
}
.thankyou-content {
  max-width: 560px;
}
.thankyou-icon {
  width: 80px;
  height: 80px;
  background: var(--off-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  border: 2px solid var(--gold);
}
.thankyou-icon svg {
  width: 40px;
  height: 40px;
  fill: var(--gold);
}
.thankyou-content h1 { margin-bottom: 16px; }
.thankyou-content p { font-size: 1.05rem; margin-bottom: 8px; }
.thankyou-content .btn { margin-top: 24px; }

/* ============================================================
   CONFETTI CANVAS
   ============================================================ */
#confetti-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
}

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 1024px) {
  .intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .service-detail { grid-template-columns: 1fr; gap: 32px; }
  .service-detail.reverse { direction: ltr; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-grid.reverse { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; }
  .project-types-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-cards { grid-template-columns: repeat(2, 1fr); }
  .sub-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 768px) {
  .top-bar-contact span:nth-child(2) { display: none; }
  .nav-menu, .header-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: block; }

  .hero { min-height: 480px; }
  .hero h1 { font-size: clamp(1.8rem, 6vw, 2.4rem); }
  .hero p { font-size: 1rem; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; }
  .hero-dots { bottom: 20px; }

  .section { padding: 60px 0; }
  .intro-stats { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .project-types-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-cards { grid-template-columns: 1fr; }
  .sub-gallery-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .client-list { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrapper { padding: 24px; }
  .testimonial-inner { padding: 28px 20px; }
  .testimonial-card { min-width: 100%; padding: 0 12px; }
  .service-detail-img { height: 260px; }
  .about-icon-box { height: 200px; }
  .about-icon-box svg { width: 60px; height: 60px; }
  .radio-group { flex-direction: column; gap: 12px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .top-bar { display: none; }
  .hero { min-height: 420px; }
  .hero-content { padding: 40px 16px; }
  .intro-stats { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr 1fr; }
  .client-list { grid-template-columns: 1fr; }
  .project-types-grid { grid-template-columns: 1fr 1fr; }
  .stat-card { padding: 20px 16px; }
  .sub-gallery-item { height: 220px; }
}

@media (max-width: 375px) {
  body { font-size: 15px; }
  .hero { min-height: 380px; }
  .btn { padding: 12px 24px; font-size: 0.9rem; }
}
