/* ─────────────────────────────────────────────
   Creative Coating Systems — style.css
   Design: Premium dark theme, money-green & gold
   (prosperity palette rebrand)
───────────────────────────────────────────── */

/* ── RESET & BASE ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --emerald: #0C0C0C;
  --emerald-mid: #F7F7F7;
  --card-bg: #FFFFFF;
  --card-dark: #161616;
  --green: #E3B341;
  --green-light: #EDC96B;
  --green-glow: rgba(227, 179, 65, 0.14);
  --silver: #A3A3A3;
  --silver-dark: #555555;
  --white: #FFFFFF;
  --ink: #121212;
  --concrete: #B0A090;
  --gold: #E3B341;
  --charcoal: #161616;
  --border: rgba(255, 255, 255, 0.09);
  --border-light: rgba(18, 18, 18, 0.10);
  --blue-light: #E3B341;

  --font-head: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;

  --transition: 0.3s ease;
  --shadow-card: 0 8px 40px rgba(0, 0, 0, 0.45);
  --shadow-glow: 0 12px 40px rgba(227, 179, 65, 0.14);
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--emerald);
  color: var(--silver);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: clip;
}

/* ── TYPOGRAPHY ── */
h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  color: var(--white);
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 900;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
}

h3 {
  font-size: 1.3rem;
  font-weight: 600;
}

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

.gradient-text {
  background: linear-gradient(135deg, #EDC96B, #D4AF37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── LAYOUT ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 100px 0;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  outline: none;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, #EDC96B, #E3B341);
  color: #141414;
  font-weight: 700;
  box-shadow: 0 4px 24px var(--green-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(227, 179, 65, 0.35);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn.full-width {
  width: 100%;
  justify-content: center;
}

/* ── SECTION HEADER ── */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header p {
  max-width: 580px;
  margin: 12px auto 0;
  color: var(--silver);
  font-size: 1.05rem;
}

.section-tag {
  display: inline-block;
  background: transparent;
  border: 1px solid rgba(227, 179, 65, 0.35);
  color: var(--gold);
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

/* ══════════════════════════════════
   TRUST BAR
══════════════════════════════════ */
.trust-bar {
  background: #111111;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 9px 24px;
  text-align: center;
  font-size: 0.8rem;
  font-family: var(--font-head);
  font-weight: 500;
  color: #C9C9C9;
  position: relative;
  z-index: 999;
}

.trust-bar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.trust-divider {
  opacity: 0.3;
}

/* ══════════════════════════════════
   NAVBAR
══════════════════════════════════ */
.navbar {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  background: rgba(12, 12, 12, 0.85);
  transition: background var(--transition), padding var(--transition);
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.96);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px 0;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: 56px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(212, 175, 55,0.25));
  transition: filter var(--transition);
}

.nav-logo:hover .nav-logo-img {
  filter: drop-shadow(0 2px 12px rgba(212, 175, 55,0.4));
}

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

.nav-links a {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 500;
  color: #D4D4D4;
  transition: color var(--transition);
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-cta {
  background: linear-gradient(135deg, #EDC96B, #E3B341);
  color: #141414 !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 700 !important;
  box-shadow: 0 4px 16px var(--green-glow);
  transition: all var(--transition) !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(227, 179, 65, 0.35) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ══════════════════════════════════
   HERO
══════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}

.hero-real-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-real-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.55;
  filter: saturate(0.8);
}

.hero-real-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(12, 12, 12, 0.72) 0%,
      rgba(12, 12, 12, 0.45) 40%,
      rgba(12, 12, 12, 0.88) 100%);
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridDrift 20s linear infinite;
}

@keyframes gridDrift {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(60px);
  }
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
  animation: orbFloat 8s ease-in-out infinite alternate;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #E3B341, transparent);
  top: -100px;
  left: -100px;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--gold), transparent);
  bottom: -80px;
  right: -80px;
  animation-delay: -4s;
}

@keyframes orbFloat {
  from {
    transform: translate(0, 0) scale(1);
  }

  to {
    transform: translate(30px, 20px) scale(1.05);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.hero-badge {
  display: inline-block;
  background: rgba(227, 179, 65, 0.08);
  border: 1px solid rgba(227, 179, 65, 0.35);
  color: var(--gold);
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 28px;
  letter-spacing: 0.05em;
}

.hero-title {
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: #D1D1D1;
  max-width: 600px;
  margin: 0 auto 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-num {
  display: block;
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.stat-suffix {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
}

.stat-label {
  display: block;
  font-size: 0.8rem;
  color: var(--silver);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: var(--border);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.hero-scroll-hint span {
  font-size: 0.75rem;
  color: var(--silver);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.7;
}

.scroll-arrow {
  width: 24px;
  height: 24px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
  animation: scrollBounce 1.5s ease-in-out infinite;
}

@keyframes scrollBounce {

  0%,
  100% {
    transform: rotate(45deg) translate(0, 0);
    opacity: 1;
  }

  50% {
    transform: rotate(45deg) translate(4px, 4px);
    opacity: 0.5;
  }
}

/* ══════════════════════════════════
   SERVICES
══════════════════════════════════ */
.services {
  background: var(--emerald-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.service-card {
  position: relative;
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  cursor: pointer;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(227, 179, 65, 0.05), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(227, 179, 65, 0.55);
  box-shadow: var(--shadow-glow);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card.featured {
  border-color: rgba(227, 179, 65, 0.55);
  background: linear-gradient(135deg, rgba(227, 179, 65, 0.06), var(--card-bg));
}

/* Service card image */
.service-card-img {
  width: calc(100% + 64px);
  margin: -36px -32px 24px -32px;
  height: 240px;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  position: relative;
}

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

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

.service-card-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30px;
  background: linear-gradient(to bottom, transparent, var(--card-bg));
}

.service-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #EDC96B, #E3B341);
  color: #141414;
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
}

.service-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  display: block;
}

.service-card h3 {
  margin-bottom: 10px;
}

.service-card p {
  color: var(--silver-dark);
  font-size: 0.95rem;
  line-height: 1.6;
}

.service-arrow {
  display: block;
  margin-top: 20px;
  color: #B8860B;
  font-size: 1.3rem;
  font-family: var(--font-head);
  font-weight: 700;
  transition: transform var(--transition);
}

.service-card:hover .service-arrow {
  transform: translateX(6px);
}

/* ══════════════════════════════════
   PROJECTS
══════════════════════════════════ */
.projects-filter {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 9px 22px;
  border-radius: 50px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--silver);
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: linear-gradient(135deg, #EDC96B, #E3B341);
  color: #141414;
  border-color: transparent;
  box-shadow: 0 4px 16px var(--green-glow);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
}

.project-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--card-dark);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.project-image {
  width: 100%;
  height: 300px;
  position: relative;
  overflow: hidden;
  background: #1E1E1E;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.5s ease;
  display: block;
}

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

.project-info {
  padding: 24px;
}

.project-tag {
  display: inline-block;
  background: var(--green-glow);
  border: 1px solid rgba(22, 163, 74,0.35);
  color: var(--green);
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.project-info h3 {
  margin-bottom: 6px;
  font-size: 1.1rem;
}

.project-info p {
  color: var(--silver);
  font-size: 0.9rem;
}

/* ══════════════════════════════════
   VIDEO SHOWCASE
══════════════════════════════════ */
.video-showcase {
  background: var(--emerald);
  border-top: 1px solid var(--border);
}

.video-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 12px 48px rgba(15, 31, 22, 0.14);
  aspect-ratio: 16 / 9;
  max-height: 600px;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-overlay-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, var(--emerald), transparent);
  pointer-events: none;
}

/* ══════════════════════════════════
   ABOUT
══════════════════════════════════ */
.about {
  background: var(--emerald-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-block {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}

.about-slideshow {
  width: 100%;
  height: 460px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #E8E8E8;
  position: relative;
}

.about-slideshow .slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.about-slideshow .slide.active {
  opacity: 1;
}

.about-badge-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, #EDC96B, #E3B341);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(227, 179, 65, 0.30);
}

.about-badge-num {
  display: block;
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  color: #141414;
  line-height: 1;
}

.about-badge-label {
  display: block;
  font-size: 0.75rem;
  color: rgba(20, 20, 20, 0.75);
  margin-top: 4px;
  font-weight: 600;
}

.about-text .section-tag {
  display: inline-block;
  margin-bottom: 16px;
}

.about-text h2 {
  margin-bottom: 20px;
}

.about-text p {
  color: var(--silver-dark);
  margin-bottom: 16px;
}

.about-checks {
  list-style: none;
  margin: 24px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-checks li {
  font-family: var(--font-head);
  font-weight: 500;
  color: var(--ink);
  font-size: 0.95rem;
}

/* ══════════════════════════════════
   TESTIMONIALS
══════════════════════════════════ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--card-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: border-color var(--transition), transform var(--transition);
}

.testimonial-card:hover {
  border-color: rgba(227, 179, 65, 0.40);
  transform: translateY(-4px);
}

.stars {
  color: #FFB800;
  font-size: 1.1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-card>p {
  color: var(--silver);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #EDC96B, #E3B341);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  color: #141414;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.95rem;
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--silver);
}

/* ══════════════════════════════════
   FAQ
══════════════════════════════════ */
.faq {
  background: var(--emerald-mid);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(460px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  transition: border-color var(--transition);
}

.faq-item:hover {
  border-color: rgba(227, 179, 65, 0.50);
}

.faq-q {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
  font-family: var(--font-head);
  line-height: 1.4;
}

.faq-a {
  font-size: 0.92rem;
  color: var(--silver-dark);
  line-height: 1.75;
  margin: 0;
}

@media (max-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .trust-bar {
    font-size: 0.72rem;
    gap: 8px;
  }
}

/* ══════════════════════════════════
   CONTACT
══════════════════════════════════ */
.contact {
  background: var(--emerald-mid);
  border-top: 1px solid var(--border);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact-info .section-tag {
  display: inline-block;
  margin-bottom: 16px;
}

.contact-info h2 {
  margin-bottom: 16px;
}

.contact-info>p {
  color: var(--silver-dark);
  margin-bottom: 32px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--silver-dark);
}

.contact-item span {
  color: var(--ink);
  font-family: var(--font-head);
  font-weight: 500;
}

/* Form */
.contact-form {
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.form-group label {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: #F5F5F5;
  border: 1px solid rgba(18, 18, 18, 0.14);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(75, 85, 99, 0.5);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px var(--green-glow);
}

.form-group select option {
  background: var(--white);
  color: var(--ink);
}

.form-disclaimer {
  text-align: center;
  font-size: 0.8rem;
  color: var(--silver-dark);
  opacity: 0.75;
  margin-top: 12px;
}

/* ══════════════════════════════════
   SERVICE AREAS
══════════════════════════════════ */
.areas {
  background: var(--emerald);
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.area-item {
  background: var(--card-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 28px;
  transition: border-color var(--transition);
}

.area-item:hover {
  border-color: rgba(227, 179, 65, 0.40);
}

.area-item h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 10px;
}

.area-item p {
  font-size: 0.9rem;
  color: var(--silver);
  line-height: 1.65;
  margin: 0;
}

.areas-note {
  text-align: center;
  margin-top: 36px;
  font-size: 0.92rem;
  color: var(--silver);
  opacity: 0.75;
}

.areas-note a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
.footer {
  background: #080808;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 64px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-logo-img {
  height: 64px;
  width: auto;
  object-fit: contain;
  margin-bottom: 8px;
  filter: drop-shadow(0 2px 8px rgba(212, 175, 55,0.2));
}

.footer-brand p {
  color: #C3D4C8;
  opacity: 0.6;
  font-size: 0.9rem;
  margin-top: 12px;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 4px;
}

.footer-links a {
  color: #C3D4C8;
  font-size: 0.9rem;
  opacity: 0.7;
  transition: opacity var(--transition);
}

.footer-links a:hover {
  opacity: 1;
  color: #E3B341;
}

.footer-contact p {
  color: #C3D4C8;
  font-size: 0.9rem;
  opacity: 0.7;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 20px 24px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: #C3D4C8;
  opacity: 0.6;
}

/* ══════════════════════════════════
   ANIMATIONS — Reveal on Scroll
══════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 900px) {

  .about-inner,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  section {
    padding: 72px 0;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(20px);
    align-items: center;
    justify-content: center;
    gap: 32px;
    font-size: 1.2rem;
  }

  .nav-links.open {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .hero-stats {
    gap: 24px;
  }

  .stat-divider {
    display: none;
  }

  .hero-scroll-hint {
    position: static;
    transform: none;
    margin-top: 36px;
  }

  .services-grid,
  .projects-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }
}
/* ═══════════ CREATIVE COATING SYSTEMS — REBRAND ADDITIONS ═══════════ */

/* Text wordmark (replaces old logo image) */
.nav-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  text-decoration: none;
}
.wordmark-main {
  font-family: var(--font-head, 'Outfit', sans-serif);
  font-weight: 900;
  font-size: 1.35rem;
  letter-spacing: 0.22em;
  color: var(--white);
}
.wordmark-accent {
  font-family: var(--font-head, 'Outfit', sans-serif);
  font-weight: 600;
  font-size: 0.62rem;
  letter-spacing: 0.38em;
  background: linear-gradient(90deg, var(--green-light), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.footer-wordmark { margin-bottom: 10px; }
.footer-wordmark .wordmark-main { font-size: 1.15rem; }

/* Gold gradient headline accent — the "finishes" side of the brand */
.gradient-text-gold {
  background: linear-gradient(135deg, #E8C97A, var(--gold), #9A7B2E);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Gold badge for new services */
.service-badge.badge-gold {
  background: linear-gradient(135deg, #E8C97A, var(--gold));
  color: #1C1608;
}

/* CSS-crafted textures for new service cards (replace with real job photos ASAP) */
.service-tex {
  width: 100%;
  height: 100%;
  display: block;
  transition: transform 0.5s ease;
}
.service-card:hover .service-tex { transform: scale(1.06); }

/* Epoxy — deep glossy floor with metallic flake shimmer */
.tex-epoxy {
  background:
    radial-gradient(ellipse 120% 60% at 50% 0%, rgba(255,255,255,0.18), transparent 55%),
    radial-gradient(circle at 20% 70%, rgba(74,222,128,0.35), transparent 45%),
    radial-gradient(circle at 78% 45%, rgba(22,163,74,0.3), transparent 50%),
    repeating-radial-gradient(circle at 35% 55%, rgba(255,255,255,0.05) 0 1px, transparent 1px 9px),
    linear-gradient(160deg, #0c2918 0%, #124e2b 45%, #0a301b 100%);
}

/* Venetian plaster — warm marble sheen, hand-trowelled movement */
.tex-venetian {
  background:
    linear-gradient(115deg, transparent 38%, rgba(255,255,255,0.14) 46%, transparent 55%),
    radial-gradient(ellipse 80% 100% at 15% 20%, rgba(201,168,76,0.28), transparent 60%),
    radial-gradient(ellipse 90% 70% at 85% 80%, rgba(176,160,144,0.3), transparent 55%),
    repeating-linear-gradient(105deg, rgba(255,255,255,0.03) 0 3px, transparent 3px 14px),
    linear-gradient(135deg, #2a2318 0%, #3d3424 40%, #241d12 100%);
  background-color: #2a2318;
}

/* Microcement — seamless matte concrete, subtle mottling */
.tex-micro {
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.06), transparent 40%),
    radial-gradient(circle at 70% 65%, rgba(0,0,0,0.22), transparent 45%),
    radial-gradient(circle at 55% 85%, rgba(255,255,255,0.05), transparent 35%),
    repeating-radial-gradient(circle at 60% 40%, rgba(255,255,255,0.02) 0 2px, transparent 2px 7px),
    linear-gradient(150deg, #565c66 0%, #464c55 50%, #3c414a 100%);
}

/* ═══════════ CINEMATIC MODULES ═══════════ */

/* ── Kinetic Marquee (scroll-reactive service strip) ── */
.marquee-band {
  background: #111111;
  padding: 22px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  will-change: transform;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-right: 28px;
  flex-shrink: 0;
}

.marquee-content span {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #EAEAEA;
}

.marquee-content .marquee-dot {
  color: #E3B341;
  font-size: 0.8rem;
}

/* ── Cursor Glow (desktop only) ── */
.cursor-glow {
  display: none;
}

@media (hover: hover) and (pointer: fine) {
  .cursor-glow {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(227, 179, 65, 0.06), transparent 65%);
    pointer-events: none;
    z-index: 1;
  }

  /* ── Spotlight Border Cards (cursor-tracking glow) ── */
  .service-card::after,
  .project-card::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--radius-lg);
    background: radial-gradient(circle 220px at var(--mx, 50%) var(--my, 50%), rgba(227, 179, 65, 0.12), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(.16, 1, .3, 1);
    pointer-events: none;
  }

  .project-card {
    position: relative;
  }

  .service-card:hover::after,
  .project-card:hover::after {
    opacity: 1;
  }

  /* 3D tilt takes over transform on hover via JS */
  .service-card,
  .btn-primary,
  .nav-cta {
    transition: transform 0.4s cubic-bezier(.16, 1, .3, 1), border-color var(--transition), box-shadow var(--transition), background var(--transition);
  }
}

/* ── Mobile: swipe carousels for Services + Projects ── */
@media (max-width: 640px) {

  .services-grid,
  .projects-grid {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding: 4px 8px 24px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .services-grid::-webkit-scrollbar,
  .projects-grid::-webkit-scrollbar {
    display: none;
  }

  .services-grid .service-card,
  .projects-grid .project-card {
    flex: 0 0 86%;
    scroll-snap-align: center;
  }

  .swipe-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-head);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 20px;
  }

  .swipe-hint svg {
    animation: swipeNudge 1.6s ease-in-out infinite;
  }

  @keyframes swipeNudge {

    0%,
    100% {
      transform: translateX(0);
      opacity: 1;
    }

    50% {
      transform: translateX(6px);
      opacity: 0.5;
    }
  }
}

@media (min-width: 641px) {
  .swipe-hint {
    display: none;
  }
}

/* ═══════════ ARCHISEAL-STYLE LIGHT SECTION OVERRIDES ═══════════ */

.services h2,
.services h3,
.about h2,
.faq h2,
.contact h2 {
  color: var(--ink);
}

.services .section-header p,
.faq .section-header p {
  color: var(--silver-dark);
}

/* ── Navbar Call Button ── */
.nav-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border: 1px solid rgba(227, 179, 65, 0.55);
  border-radius: 50px;
  color: var(--gold);
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: all 0.4s cubic-bezier(.16, 1, .3, 1);
}

.nav-call:hover {
  background: var(--gold);
  color: #141414;
  border-color: var(--gold);
}

@media (max-width: 640px) {
  .nav-inner {
    gap: 12px;
  }

  .nav-call {
    margin-left: auto;
    padding: 8px 14px;
    font-size: 0.85rem;
  }
}

/* ── Quote Drawer ── */
.quote-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(.16, 1, .3, 1);
  z-index: 1900;
}

.quote-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.quote-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100dvh;
  width: min(430px, 100vw);
  background: #141414;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 2000;
  padding: 60px 36px 36px;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.5s cubic-bezier(.16, 1, .3, 1), visibility 0s 0.5s;
  overflow-y: auto;
}

.quote-drawer.open {
  transform: translateX(0);
  visibility: visible;
  transition: transform 0.5s cubic-bezier(.16, 1, .3, 1);
}

.quote-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  color: #A3A3A3;
  cursor: pointer;
  padding: 6px;
  transition: color var(--transition);
}

.quote-close:hover {
  color: var(--white);
}

.quote-title {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.quote-sub {
  color: #A3A3A3;
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 28px;
}

.quote-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

.quote-group label {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
}

.quote-req {
  color: var(--gold);
}

.quote-opt {
  color: #8A8A8A;
  font-weight: 400;
}

.quote-group input {
  background: #1E1E1E;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.quote-group input::placeholder {
  color: rgba(255, 255, 255, 0.30);
}

.quote-group input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(227, 179, 65, 0.15);
}

.quote-submit {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #EDC96B, #E3B341);
  color: #141414;
  border: none;
  border-radius: 50px;
  padding: 14px 32px;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  margin-top: 8px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.quote-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(227, 179, 65, 0.30);
}

.quote-note {
  text-align: center;
  font-size: 0.8rem;
  color: #8A8A8A;
  margin-top: 14px;
}
