/* =====================================================
   UNC Management — HOA Property Management
   Brand: Emerald Green | Charcoal | White | Gold
   ===================================================== */

/* ---- CSS Custom Properties ---- */
:root {
  --emerald:        #1a5c3a;
  --emerald-dark:   #133f28;
  --emerald-mid:    #236b45;
  --emerald-light:  #2d8655;
  --emerald-pale:   #e8f4ee;
  --gold:           #c9a84c;
  --gold-light:     #dfc06e;
  --gold-pale:      #fdf6e3;
  --charcoal:       #1e1e1e;
  --charcoal-mid:   #2c2c2c;
  --charcoal-soft:  #3d3d3d;
  --gray-dark:      #555555;
  --gray-mid:       #888888;
  --gray-light:     #c4c4c4;
  --gray-pale:      #f4f4f2;
  --white:          #ffffff;
  --off-white:      #fafaf8;

  --font-sans:      'Inter', system-ui, sans-serif;
  --font-serif:     'Playfair Display', Georgia, serif;

  --radius-sm:      6px;
  --radius-md:      12px;
  --radius-lg:      20px;
  --radius-xl:      32px;

  --shadow-sm:      0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:      0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg:      0 10px 40px rgba(0,0,0,0.14);
  --shadow-xl:      0 20px 60px rgba(0,0,0,0.18);

  --transition:     all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: all 0.18s ease;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  padding: 10px 16px;
  background: var(--emerald);
  color: var(--white);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-sm);
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

/* ---- Container ---- */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding { padding: 96px 0; }

/* =====================================================
   TYPOGRAPHY SYSTEM
   ===================================================== */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-label.light { color: var(--gold-light); }

.section-headline {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.18;
  color: var(--charcoal);
  margin-bottom: 20px;
}

.headline-accent { color: var(--emerald); }

.section-subtext {
  font-size: 1.05rem;
  color: var(--gray-dark);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 0;
}

.section-header.centered { text-align: center; }
.section-header.centered .section-subtext { margin: 0 auto; }

.body-text {
  font-size: 1.025rem;
  color: var(--gray-dark);
  line-height: 1.75;
  margin-bottom: 20px;
}

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-align: center;
}

.btn-primary {
  background: var(--emerald);
  color: var(--white);
  border-color: var(--emerald);
}
.btn-primary:hover {
  background: var(--emerald-dark);
  border-color: var(--emerald-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26, 92, 58, 0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.65);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold);
  color: var(--charcoal);
  border-color: var(--gold);
  font-weight: 700;
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.4);
}

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

/* =====================================================
   NAVIGATION
   ===================================================== */
.nav-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition);
  background: transparent;
}

.nav-header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  padding: 12px 0;
}

.nav-header.scrolled .nav-links a { color: var(--charcoal-soft); }
.nav-header.scrolled .nav-links a:hover { color: var(--emerald); }
.nav-header.scrolled .nav-cta {
  background: var(--emerald) !important;
  color: var(--white) !important;
}
.nav-header.scrolled .hamburger span { background: var(--charcoal); }

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  height: 48px;
  width: auto;
  display: block;
  flex-shrink: 0;
  border-radius: 10px;
}
.logo-img--footer {
  height: 54px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.logo-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  transition: var(--transition);
}
.logo-tagline {
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  transition: var(--transition);
}

.nav-header.scrolled .logo-name,
.nav-header.scrolled .logo-tagline { color: var(--charcoal); }

.footer-logo .logo-name { color: var(--white); }
.footer-logo .logo-tagline { color: rgba(255,255,255,0.5); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  transition: var(--transition-fast);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition-fast);
}
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--emerald) !important;
  color: var(--white) !important;
  padding: 9px 22px;
  border-radius: var(--radius-sm);
  font-weight: 600 !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { opacity: 0.9; }

.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-fast);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =====================================================
   HERO SECTION
   ===================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background:
    url('https://images.unsplash.com/photo-1564013799919-ab600027ffc6?w=1600&q=80') center/cover no-repeat;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13, 40, 24, 0.88) 0%,
    rgba(26, 92, 58, 0.75) 50%,
    rgba(13, 40, 24, 0.70) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 100px;
  padding-bottom: 80px;
  max-width: 760px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, 0.18);
  border: 1px solid rgba(201, 168, 76, 0.45);
  color: var(--gold-light);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 22px;
}

.hero-headline .headline-accent {
  color: var(--gold-light);
}

.hero-subheadline {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-trust-bar {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  gap: 0;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  padding: 14px 24px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
  padding: 0 20px;
}
.trust-item:first-child { padding-left: 0; }
.trust-item:last-child { padding-right: 0; }

.trust-icon {
  color: var(--gold-light);
  font-weight: 700;
  font-size: 1rem;
}

.trust-divider {
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,0.2);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold-light);
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 0.7; }
  50% { transform: translateY(10px); opacity: 1; }
}

/* =====================================================
   STATS BAR
   ===================================================== */
.stats-bar {
  background: var(--emerald);
  padding: 36px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 0 24px;
}
.stat-number {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.2);
}

/* =====================================================
   ABOUT SECTION
   ===================================================== */
.about {
  background: var(--off-white);
}

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

.about-image-col { position: relative; }

.about-image-wrapper {
  position: relative;
  padding-bottom: 48px;
  padding-right: 48px;
}

.about-image {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  z-index: 2;
  background: url('/images/house-painter-spray-painting-a-deck-of-a-home-2026-01-05-00-26-37-utc.jpg') center/cover no-repeat;
  box-shadow: var(--shadow-xl);
}

.about-image-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  aspect-ratio: 1/1;
  background: var(--emerald-pale);
  border-radius: var(--radius-lg);
  z-index: 1;
}

.about-badge-card {
  position: absolute;
  bottom: 40px;
  left: -24px;
  z-index: 3;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--emerald);
}
.badge-icon { font-size: 1.6rem; }
.badge-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.badge-text strong {
  font-size: 0.9rem;
  color: var(--charcoal);
  font-weight: 700;
}
.badge-text span {
  font-size: 0.75rem;
  color: var(--gray-mid);
}

.about-content-col { padding-left: 16px; }

.about-values {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 28px 0 32px;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
}
.value-item:hover {
  border-color: var(--emerald);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.value-icon {
  width: 38px;
  height: 38px;
  background: var(--emerald-pale);
  color: var(--emerald);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.value-item strong {
  display: block;
  font-size: 0.92rem;
  color: var(--charcoal);
  margin-bottom: 2px;
  font-weight: 600;
}
.value-item p {
  font-size: 0.85rem;
  color: var(--gray-dark);
  line-height: 1.5;
  margin: 0;
}

/* =====================================================
   SERVICES SECTION
   ===================================================== */
.services {
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.service-card {
  background: var(--off-white);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--emerald);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s ease;
}
.service-card:hover {
  border-color: var(--emerald);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.service-card:hover::before { transform: scaleY(1); }

.service-card.featured {
  background: var(--emerald);
  border-color: var(--emerald);
  color: var(--white);
}
.service-card.featured::before { background: var(--gold); }
.service-card.featured .service-title { color: var(--white); }
.service-card.featured .service-desc { color: rgba(255,255,255,0.85); }
.service-card.featured .service-icon { stroke: rgba(255,255,255,0.9); }
.service-card.featured .service-icon-wrap { background: rgba(255,255,255,0.15); }
.service-card.featured .service-list li { color: rgba(255,255,255,0.9); }
.service-card.featured .service-list li::before { color: var(--gold-light); }

.service-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}

.service-icon-wrap {
  width: 48px;
  height: 48px;
  background: var(--emerald-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-card.featured .service-icon-wrap {
  background: rgba(255,255,255,0.15);
}
.service-icon {
  width: 28px;
  height: 28px;
  stroke: var(--emerald);
}

.service-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0;
  line-height: 1.25;
}

.service-desc {
  font-size: 0.9rem;
  color: var(--gray-dark);
  line-height: 1.65;
  margin-bottom: 20px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-list li {
  font-size: 0.875rem;
  color: var(--charcoal-soft);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.45;
}
.service-list li::before {
  content: '→';
  color: var(--emerald);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0;
  font-size: 0.85rem;
}

/* =====================================================
   WHY US SECTION
   ===================================================== */
.why-us {
  background: var(--gray-pale);
}

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

.why-us-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
}

.why-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.why-item:last-child { border-bottom: none; }

.why-check {
  width: 30px;
  height: 30px;
  background: var(--emerald);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.why-text strong {
  display: block;
  font-size: 0.95rem;
  color: var(--charcoal);
  margin-bottom: 3px;
  font-weight: 600;
}
.why-text p {
  font-size: 0.875rem;
  color: var(--gray-dark);
  line-height: 1.55;
  margin: 0;
}

.why-us-visual { position: relative; }

.why-visual-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
}

.why-img-bg {
  width: 100%;
  height: 100%;
  background: url('https://images.unsplash.com/photo-1570129477492-45c003edd2be?w=800&q=80') center/cover no-repeat;
}

.why-overlay-card {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(13,40,24,0.97) 0%, rgba(13,40,24,0.75) 70%, transparent 100%);
  padding: 40px 32px 36px;
}

.overlay-stat {
  margin-bottom: 16px;
}
.overlay-num {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--gold-light);
  font-weight: 700;
  line-height: 1;
}
.overlay-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.overlay-text {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: rgba(255,255,255,0.9);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 12px;
}
.overlay-sig {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  font-style: normal;
}

/* =====================================================
   SERVICE AREA SECTION
   ===================================================== */
.service-area {
  background: var(--white);
}

.area-hero-img {
  width: 100%;
  height: 420px;
  border-radius: 20px;
  background-image: url('https://images.pexels.com/photos/1546168/pexels-photo-1546168.jpeg?auto=compress&cs=tinysrgb&w=1600&q=80');
  background-size: cover;
  background-position: center 40%;
  margin-bottom: 52px;
  overflow: hidden;
}

.area-note {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin-top: 36px;
  padding: 18px 24px;
  background: var(--emerald-pale);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  color: var(--emerald-dark);
  font-weight: 500;
}
.area-note svg { color: var(--emerald); flex-shrink: 0; }
.area-note a {
  color: var(--emerald);
  font-weight: 600;
  text-decoration: underline;
}

/* =====================================================
   TESTIMONIALS SECTION
   ===================================================== */
.testimonials {
  background: var(--charcoal);
}

.testimonials .section-label { color: var(--gold-light); }
.testimonials .section-headline { color: var(--white); }
.testimonials .headline-accent { color: var(--gold-light); }

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

.testimonial-card {
  background: var(--charcoal-mid);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  position: relative;
  transition: var(--transition);
}
.testimonial-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
}

.quote-mark {
  font-family: Georgia, serif;
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.6;
  line-height: 1;
  margin-bottom: -12px;
}

.testimonial-text {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
}

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

.author-avatar {
  width: 44px;
  height: 44px;
  background: var(--emerald);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.author-info strong {
  display: block;
  font-size: 0.9rem;
  color: var(--white);
  font-weight: 600;
}
.author-info span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
}

/* =====================================================
   CTA SECTION
   ===================================================== */
.cta-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background: url('https://images.unsplash.com/photo-1486325212027-8081e485255e?w=1400&q=80') center/cover no-repeat;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,40,24,0.93) 0%, rgba(26,92,58,0.88) 100%);
}
.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.cta-headline {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}
.cta-subtext {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

/* =====================================================
   CONTACT SECTION
   ===================================================== */
.contact {
  background: var(--off-white);
}

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

.contact-details {
  margin: 28px 0 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.contact-icon {
  width: 42px;
  height: 42px;
  background: var(--emerald-pale);
  color: var(--emerald);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-item strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 3px;
}
.contact-detail-item a,
.contact-detail-item span {
  font-size: 0.95rem;
  color: var(--charcoal);
  font-weight: 500;
}
.contact-detail-item a:hover { color: var(--emerald); }

.contact-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.contact-keywords span {
  font-size: 0.72rem;
  background: var(--emerald-pale);
  color: var(--emerald);
  padding: 5px 12px;
  border-radius: 100px;
  font-weight: 500;
}

/* ---- Contact Form ---- */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 44px 40px;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(0,0,0,0.06);
}

.form-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 28px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-group.full-width { grid-column: 1 / -1; }

label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--charcoal-soft);
  letter-spacing: 0.03em;
}
.required { color: var(--emerald); }

input, select, textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #e0e0e0;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--charcoal);
  background: var(--off-white);
  transition: var(--transition-fast);
  outline: none;
  appearance: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--emerald);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(26, 92, 58, 0.1);
}

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23555' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

textarea { resize: vertical; min-height: 120px; }

.form-disclaimer {
  text-align: center;
  font-size: 0.78rem;
  color: var(--gray-mid);
  margin-top: 14px;
}

/* Form Success State */
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success.show { display: block; }
.contact-form.hide { display: none; }

.success-icon {
  width: 64px;
  height: 64px;
  background: var(--emerald);
  color: var(--white);
  font-size: 1.8rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.form-success h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--charcoal);
  margin-bottom: 10px;
}
.form-success p {
  font-size: 0.95rem;
  color: var(--gray-dark);
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  background: var(--charcoal);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  margin-bottom: 20px;
}

.footer-contact-quick {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-contact-quick a {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.7);
  transition: var(--transition-fast);
}
.footer-contact-quick a:hover { color: var(--gold-light); }

.footer-links-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-links-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links-col a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: var(--transition-fast);
}
.footer-links-col a:hover { color: var(--gold-light); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  transition: var(--transition-fast);
}
.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

/* =====================================================
   FLOATING CTA
   ===================================================== */
.floating-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  background: var(--emerald);
  color: var(--white);
  padding: 14px 22px;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 28px rgba(26,92,58,0.45);
  transition: var(--transition);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
}
.floating-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.floating-cta:hover {
  background: var(--emerald-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(26,92,58,0.55);
}

/* =====================================================
   SCROLL ANIMATIONS
   ===================================================== */
[data-animate],
[data-animate-left],
[data-animate-right] {
  opacity: 0;
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
[data-animate] { transform: translateY(28px); }
[data-animate-left] { transform: translateX(-40px); }
[data-animate-right] { transform: translateX(40px); }

[data-animate].in-view,
[data-animate-left].in-view,
[data-animate-right].in-view {
  opacity: 1;
  transform: translate(0, 0);
}

/* Stagger delays for grid items */
.services-grid .service-card:nth-child(1) { transition-delay: 0ms; }
.services-grid .service-card:nth-child(2) { transition-delay: 100ms; }
.services-grid .service-card:nth-child(3) { transition-delay: 200ms; }
.services-grid .service-card:nth-child(4) { transition-delay: 300ms; }

.why-us-list .why-item:nth-child(1) { transition-delay: 0ms; }
.why-us-list .why-item:nth-child(2) { transition-delay: 60ms; }
.why-us-list .why-item:nth-child(3) { transition-delay: 120ms; }
.why-us-list .why-item:nth-child(4) { transition-delay: 180ms; }
.why-us-list .why-item:nth-child(5) { transition-delay: 240ms; }
.why-us-list .why-item:nth-child(6) { transition-delay: 300ms; }


.testimonials-grid .testimonial-card:nth-child(1) { transition-delay: 0ms; }
.testimonials-grid .testimonial-card:nth-child(2) { transition-delay: 100ms; }
.testimonials-grid .testimonial-card:nth-child(3) { transition-delay: 200ms; }

/* =====================================================
   RESPONSIVE — TABLET
   ===================================================== */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-image-wrapper { max-width: 560px; margin: 0 auto; }
  .about-content-col { padding-left: 0; }

  .why-us-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-us-visual { order: -1; max-width: 520px; margin: 0 auto; }
  .why-visual-card { aspect-ratio: 16/9; }

  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 0; }
  .stat-divider:nth-child(4) { display: none; }
  .stats-grid { display: grid; grid-template-columns: 1fr auto 1fr; }
}

@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 560px; margin-left: auto; margin-right: auto; }
  .area-hero-img { height: 300px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

/* =====================================================
   RESPONSIVE — MOBILE
   ===================================================== */
@media (max-width: 768px) {
  .section-padding { padding: 64px 0; }

  /* Nav */
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13, 40, 24, 0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    z-index: 998;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    font-size: 1.2rem;
    color: var(--white) !important;
  }
  .nav-cta {
    font-size: 1rem !important;
    padding: 12px 32px !important;
    margin-top: 8px;
  }
  .hamburger { z-index: 999; }

  /* Hero */
  .hero-trust-bar { flex-direction: column; align-items: flex-start; gap: 10px; }
  .trust-divider { width: 40px; height: 1px; }
  .trust-item { padding: 0; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  /* Stats */
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 24px;
  }
  .stat-divider { display: none; }

  /* About image */
  .about-badge-card { left: 8px; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }

  /* Area */
  .area-hero-img { height: 240px; border-radius: 14px; }

  /* Form */
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }

  /* Floating CTA */
  .floating-cta { bottom: 16px; right: 16px; padding: 12px 18px; font-size: 0.82rem; }
}

@media (max-width: 480px) {
  .area-hero-img { height: 200px; border-radius: 10px; }
  .about-image-wrapper { padding-right: 24px; padding-bottom: 24px; }
  .about-image-accent { display: none; }
}
