/* ============================================================
   PLANE ESTIMATES — style.css
   ============================================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  --yellow-1: #F2A900;
  --yellow-2: #FFCD11;
  --yellow-3-grad: linear-gradient(to right, #F5B800, #FFD700, #FFCD11, #FFD700, #F5B800);
  --black: #1A1A1A;
  --charcoal: #231F20;
  --dark-gray: #54565A;
  --light-gray: #F5F5F5;
  --white: #FFFFFF;
  --font-heading: 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition: 0.3s ease;
  --shadow: 0 4px 20px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.15);
}

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

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

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--dark-gray);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.15;
  color: var(--charcoal);
}

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

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

.section { padding: 80px 0; }
.section-alt { background: var(--light-gray); }
.section-dark { background: var(--charcoal); }

.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--yellow-1);
  margin-bottom: 12px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 2px;
  border: 2px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.2); }

.btn-primary {
  background: var(--yellow-2);
  color: var(--charcoal);
  border-color: var(--yellow-2);
}
.btn-primary:hover { background: #e6b800; border-color: #e6b800; }

.btn-dark {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
}
.btn-dark:hover { background: #3a3536; border-color: #3a3536; }

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

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

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
  background: var(--charcoal);
  padding: 8px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.85);
}
.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.top-bar a { color: rgba(255,255,255,0.85); transition: color var(--transition); }
.top-bar a:hover { color: var(--yellow-2); }
.top-bar-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.top-bar-item svg { width: 14px; height: 14px; flex-shrink: 0; fill: var(--yellow-1); }
.top-bar-social { display: flex; align-items: center; gap: 12px; }
.top-bar-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  transition: border-color var(--transition), background var(--transition);
}
.top-bar-social a svg { width: 14px; height: 14px; fill: rgba(255,255,255,0.7); transition: fill var(--transition); }
.top-bar-social a:hover { border-color: var(--yellow-2); background: rgba(255,205,17,0.1); }
.top-bar-social a:hover svg { fill: var(--yellow-2); }

/* ============================================================
   YELLOW BAND
   ============================================================ */
.yellow-band {
  height: 8px;
  background: var(--yellow-3-grad);
  flex-shrink: 0;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 0 rgba(0,0,0,0.06);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.12); }

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

.nav-logo { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo-name {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 24px;
  letter-spacing: 0px;
  color: var(--charcoal);
  text-transform: uppercase;
}
.nav-logo-name span { color: var(--yellow-1); }
.nav-logo-tagline {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--dark-gray);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-item { position: relative; }

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: var(--charcoal);
  border-radius: 2px;
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--yellow-1); }

.nav-link svg { width: 12px; height: 12px; transition: transform var(--transition); }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: var(--white);
  border-top: 3px solid var(--yellow-2);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
  z-index: 100;
}
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }

.dropdown a {
  display: block;
  padding: 10px 18px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--charcoal);
  border-left: 3px solid transparent;
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}
.dropdown a:hover { color: var(--yellow-1); border-left-color: var(--yellow-1); background: var(--light-gray); }

.nav-cta { margin-left: 8px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--charcoal);
  padding: 64px 0 56px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -55deg,
    transparent,
    transparent 40px,
    rgba(255,255,255,0.02) 40px,
    rgba(255,255,255,0.02) 80px
  );
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  font-size: clamp(40px, 5vw, 64px);
  color: var(--white);
  margin-top: 16px;
  font-weight: 800;
  letter-spacing: -0.5px;
}
.page-hero h1 span { color: var(--yellow-2); }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.breadcrumb a { color: rgba(255,255,255,0.6); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--yellow-2); }
.breadcrumb span { color: var(--yellow-2); }
.breadcrumb-sep { color: rgba(255,255,255,0.3); }

/* ============================================================
   HERO (Homepage)
   ============================================================ */
.hero {
  background: var(--charcoal);
  padding: 100px 0 90px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -55deg,
    transparent,
    transparent 60px,
    rgba(255,255,255,0.025) 60px,
    rgba(255,255,255,0.025) 120px
  );
}
.hero .container { position: relative; z-index: 1; max-width: 820px; }

.hero h1 {
  font-size: clamp(48px, 6.5vw, 80px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: -1px;
}
.hero h1 .highlight { color: var(--yellow-2); }

.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 32px;
  max-width: 600px;
  line-height: 1.6;
}

.trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border: 1px solid rgba(255,205,17,0.4);
  border-radius: 2px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--yellow-2);
}
.trust-pill svg { width: 14px; height: 14px; fill: var(--yellow-2); }

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

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--charcoal);
  padding: 48px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 20px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(36px, 4vw, 54px);
  color: var(--yellow-2);
  line-height: 1;
  display: block;
}
.stat-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 6px;
  display: block;
}

/* ============================================================
   TRADES TICKER
   ============================================================ */
.trades-ticker {
  background: var(--charcoal);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  padding: 14px 0;
}
.ticker-track {
  display: flex;
  gap: 0;
  animation: ticker-scroll 30s linear infinite;
  width: max-content;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 32px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  white-space: nowrap;
}
.ticker-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--yellow-2);
  flex-shrink: 0;
}
@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-content h2 {
  font-size: clamp(32px, 4vw, 50px);
  margin-bottom: 20px;
}
.about-content p { color: var(--dark-gray); margin-bottom: 16px; }

.about-mini-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0;
}
.mini-stat {
  background: var(--charcoal);
  padding: 20px;
  border-left: 4px solid var(--yellow-2);
}
.mini-stat-num {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 32px;
  color: var(--yellow-2);
  display: block;
}
.mini-stat-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.about-image-box {
  position: relative;
  background: var(--light-gray);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(0,0,0,0.06);
}
.about-image-box img { width: 100%; height: 100%; object-fit: cover; }
.image-placeholder-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--dark-gray);
  opacity: 0.4;
}
.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: var(--yellow-2);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
}
.about-badge-num {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 28px;
  color: var(--charcoal);
  line-height: 1;
}
.about-badge-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--charcoal);
  text-align: center;
  line-height: 1.2;
}

/* ============================================================
   SERVICES GRID
   ============================================================ */
.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 { font-size: clamp(32px, 4vw, 52px); margin-top: 8px; font-weight: 800; letter-spacing: -0.5px; }
.section-header p { color: var(--dark-gray); max-width: 560px; margin: 12px auto 0; }

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

.service-card {
  background: var(--white);
  padding: 32px 28px;
  border-top: 4px solid transparent;
  box-shadow: var(--shadow);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.service-card:hover {
  border-top-color: var(--yellow-2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.service-icon {
  width: 52px;
  height: 52px;
  background: rgba(242,169,0,0.1);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-icon svg { width: 26px; height: 26px; fill: var(--yellow-1); }
.service-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--charcoal);
}
.service-card p { font-size: 14px; color: var(--dark-gray); margin-bottom: 16px; }
.learn-more {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--yellow-1);
  transition: color var(--transition), gap var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.learn-more:hover { color: var(--charcoal); gap: 10px; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works { background: var(--charcoal); }
.how-it-works .section-header h2 { color: var(--white); }
.how-it-works .section-header p { color: rgba(255,255,255,0.6); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}
.step-item {
  padding: 32px;
  border: 1px solid rgba(255,255,255,0.08);
  position: relative;
}
.step-number {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 80px;
  color: var(--yellow-2);
  opacity: 0.15;
  position: absolute;
  top: 16px;
  right: 24px;
  line-height: 1;
}
.step-num-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--yellow-2);
  color: var(--charcoal);
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 18px;
  border-radius: 50%;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.step-item h4 {
  font-size: 20px;
  color: var(--white);
  margin-bottom: 10px;
}
.step-item p { color: rgba(255,255,255,0.6); font-size: 14px; }

.how-it-works .section-cta { text-align: center; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-icon {
  width: 48px;
  height: 48px;
  background: var(--yellow-2);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.why-icon svg { width: 24px; height: 24px; fill: var(--charcoal); }
.why-text h4 { font-size: 18px; margin-bottom: 6px; color: var(--charcoal); }
.why-text p { font-size: 14px; color: var(--dark-gray); margin: 0; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--light-gray); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--yellow-2);
}
.stars { display: flex; gap: 4px; margin-bottom: 16px; }
.stars svg { width: 16px; height: 16px; fill: var(--yellow-1); }
.testimonial-quote {
  font-style: italic;
  font-size: 15px;
  color: var(--dark-gray);
  margin-bottom: 20px;
  line-height: 1.7;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 18px;
  color: var(--yellow-2);
  flex-shrink: 0;
}
.author-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  color: var(--charcoal);
}
.author-role { font-size: 13px; color: var(--dark-gray); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.faq-left h2 { font-size: clamp(28px, 3.5vw, 44px); margin: 12px 0 16px; }
.faq-left p { color: var(--dark-gray); margin-bottom: 28px; }

.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 2px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--charcoal);
  background: var(--white);
  transition: background var(--transition);
  cursor: pointer;
}
.faq-question:hover { background: var(--light-gray); }
.faq-question.active { background: var(--charcoal); color: var(--white); }

.faq-icon {
  width: 28px;
  height: 28px;
  background: var(--yellow-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-icon svg { width: 14px; height: 14px; fill: var(--charcoal); }
.faq-question.active .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-answer.open { max-height: 400px; }
.faq-answer-inner {
  padding: 16px 20px 20px;
  font-size: 15px;
  color: var(--dark-gray);
  line-height: 1.7;
  border-top: 1px solid rgba(0,0,0,0.06);
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--yellow-2);
  padding: 64px 0;
}
.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.cta-banner h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--charcoal);
  margin-bottom: 8px;
}
.cta-banner p { color: var(--charcoal); opacity: 0.75; font-size: 16px; margin: 0; }
.cta-banner-btns { display: flex; gap: 16px; flex-wrap: wrap; flex-shrink: 0; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--black); padding: 72px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-logo-name {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 24px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-logo-name span { color: var(--yellow-1); }
.footer-tagline {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 16px;
}
.footer-desc { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 20px; }
.footer-contact-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}
.footer-contact-item svg { width: 14px; height: 14px; fill: var(--yellow-1); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--yellow-2); }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transition), background var(--transition);
}
.footer-social a svg { width: 16px; height: 16px; fill: rgba(255,255,255,0.6); transition: fill var(--transition); }
.footer-social a:hover { border-color: var(--yellow-2); background: rgba(255,205,17,0.1); }
.footer-social a:hover svg { fill: var(--yellow-2); }

.footer-col h4 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--yellow-1);
  display: inline-block;
}
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition), padding-left var(--transition);
}
.footer-links a:hover { color: var(--yellow-2); padding-left: 6px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.4); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 13px; color: rgba(255,255,255,0.4); transition: color var(--transition); }
.footer-legal a:hover { color: var(--yellow-2); }

/* ============================================================
   TWO-COL CONTENT + SIDEBAR LAYOUT
   ============================================================ */
.content-sidebar {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}
.sidebar { display: flex; flex-direction: column; gap: 24px; }
.sidebar-sticky { position: sticky; top: 88px; }

.sidebar-box {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: var(--shadow);
}
.sidebar-box-header {
  background: var(--charcoal);
  padding: 16px 20px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  border-left: 4px solid var(--yellow-2);
}
.sidebar-box-body { padding: 20px; }
.quote-box-contact { display: flex; flex-direction: column; gap: 16px; }
.quote-contact-item { display: flex; align-items: flex-start; gap: 12px; }
.quote-contact-item svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; fill: var(--yellow-1); }
.quote-contact-item .quote-contact-label { display: block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--gray); margin-bottom: 2px; }
.quote-contact-item a, .quote-contact-item span { font-size: 14px; color: var(--charcoal); line-height: 1.4; }
.sidebar-nav-links { display: flex; flex-direction: column; gap: 0; }
.sidebar-nav-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--dark-gray);
  transition: color var(--transition), padding-left var(--transition);
}
.sidebar-nav-links a:last-child { border-bottom: none; }
.sidebar-nav-links a:hover, .sidebar-nav-links a.active { color: var(--yellow-1); padding-left: 4px; }
.sidebar-nav-links a.active { font-weight: 700; }
.sidebar-nav-links a svg { width: 12px; height: 12px; fill: currentColor; }

.quote-box { background: var(--charcoal); padding: 28px; }
.quote-box h4 {
  font-size: 20px;
  color: var(--white);
  margin-bottom: 16px;
}
.quote-box-contact { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
.quote-box-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
}
.quote-box-item svg { width: 16px; height: 16px; fill: var(--yellow-1); flex-shrink: 0; }
.quote-box-item a { color: rgba(255,255,255,0.7); transition: color var(--transition); }
.quote-box-item a:hover { color: var(--yellow-2); }

/* ============================================================
   CONTENT PAGE STYLES
   ============================================================ */
.content-body h2 { font-size: clamp(26px, 3vw, 38px); margin-bottom: 16px; color: var(--charcoal); }
.content-body p { color: var(--dark-gray); margin-bottom: 16px; }

.included-section, .needs-section { margin: 36px 0; }
.included-section h3, .needs-section h3 {
  font-size: 22px;
  color: var(--charcoal);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--yellow-2);
  display: inline-block;
}

.checklist { display: flex; flex-direction: column; gap: 10px; }
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--dark-gray);
}
.checklist li::before {
  content: '';
  width: 20px;
  height: 20px;
  background: var(--yellow-2);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z' fill='%23231F20'/%3E%3C/svg%3E");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: center;
}

.related-services {
  margin: 36px 0;
  padding: 24px;
  background: var(--light-gray);
  border-left: 4px solid var(--yellow-2);
}
.related-services h3 { font-size: 18px; margin-bottom: 12px; }
.related-links { display: flex; gap: 16px; flex-wrap: wrap; }
.related-links a {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--yellow-1);
  transition: color var(--transition);
}
.related-links a:hover { color: var(--charcoal); }

/* Process Steps (service/trade pages) */
.process-section { background: var(--light-gray); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.process-step { text-align: center; padding: 32px 20px; }
.process-step-num {
  width: 56px;
  height: 56px;
  background: var(--yellow-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 24px;
  color: var(--charcoal);
}
.process-step h4 { font-size: 18px; margin-bottom: 8px; }
.process-step p { font-size: 14px; color: var(--dark-gray); }

/* ============================================================
   CONTACT & GET QUOTE FORMS
   ============================================================ */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--charcoal);
}
.form-control {
  padding: 12px 16px;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}
.form-control:focus { border-color: var(--yellow-2); box-shadow: 0 0 0 3px rgba(255,205,17,0.2); }
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control { cursor: pointer; }

.contact-info-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: var(--shadow);
}
.contact-card-icon {
  width: 48px;
  height: 48px;
  background: var(--yellow-2);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-card-icon svg { width: 22px; height: 22px; fill: var(--charcoal); }
.contact-card h4 { font-size: 16px; margin-bottom: 4px; }
.contact-card p, .contact-card a { font-size: 14px; color: var(--dark-gray); margin: 0; }
.contact-card a:hover { color: var(--yellow-1); }

.map-placeholder {
  background: var(--light-gray);
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(0,0,0,0.06);
  margin-top: 24px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--dark-gray);
  opacity: 0.5;
}

/* ============================================================
   PROJECTS PAGE
   ============================================================ */
.filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 10px 22px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 2px solid var(--charcoal);
  color: var(--charcoal);
  background: transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--yellow-2);
  border-color: var(--yellow-2);
  color: var(--charcoal);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.project-card { position: relative; overflow: hidden; cursor: pointer; }
.project-img {
  background: var(--charcoal);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.project-img img { width: 100%; height: 100%; object-fit: cover; }
.project-placeholder {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.project-overlay {
  position: absolute;
  inset: 0;
  background: rgba(35,31,32,0.9);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  transition: opacity var(--transition);
}
.project-card:hover .project-overlay { opacity: 1; }
.project-overlay h3 { font-size: 20px; color: var(--white); text-align: center; padding: 0 16px; }
.trade-badge {
  padding: 6px 14px;
  background: var(--yellow-2);
  color: var(--charcoal);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 2px;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.mission-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.mission-stat {
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.mission-stat:nth-child(1) { background: var(--charcoal); }
.mission-stat:nth-child(2) { background: var(--yellow-2); }
.mission-stat:nth-child(3) { background: var(--yellow-2); }
.mission-stat:nth-child(4) { background: var(--charcoal); }
.mission-stat-num {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 48px;
  line-height: 1;
}
.mission-stat:nth-child(odd) .mission-stat-num { color: var(--yellow-2); }
.mission-stat:nth-child(even) .mission-stat-num { color: var(--charcoal); }
.mission-stat-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 8px;
}
.mission-stat:nth-child(odd) .mission-stat-label { color: rgba(255,255,255,0.6); }
.mission-stat:nth-child(even) .mission-stat-label { color: var(--charcoal); opacity: 0.7; }

.commitment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.commitment-card {
  padding: 32px 24px;
  text-align: center;
  border-top: 4px solid var(--yellow-2);
  box-shadow: var(--shadow);
  background: var(--white);
}
.commitment-icon {
  width: 64px;
  height: 64px;
  background: rgba(242,169,0,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.commitment-icon svg { width: 30px; height: 30px; fill: var(--yellow-1); }
.commitment-card h3 { font-size: 20px; margin-bottom: 10px; }
.commitment-card p { font-size: 14px; color: var(--dark-gray); }

/* ============================================================
   SITEMAP PAGE
   ============================================================ */
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.sitemap-col h3 {
  font-size: 18px;
  color: var(--charcoal);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--yellow-2);
}
.sitemap-col ul { display: flex; flex-direction: column; gap: 8px; }
.sitemap-col ul li a {
  font-size: 15px;
  color: var(--dark-gray);
  transition: color var(--transition), padding-left var(--transition);
  display: block;
}
.sitemap-col ul li a:hover { color: var(--yellow-1); padding-left: 6px; }

/* ============================================================
   PRIVACY / TERMS
   ============================================================ */
.legal-content { max-width: 800px; margin: 0 auto; }
.legal-content h2 { font-size: 28px; margin: 40px 0 12px; color: var(--charcoal); }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { color: var(--dark-gray); margin-bottom: 14px; }
.legal-content ul { margin: 12px 0 14px 20px; display: flex; flex-direction: column; gap: 8px; }
.legal-content ul li { color: var(--dark-gray); list-style: disc; }

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

  /* Top Bar */
  .top-bar-right { display: none; }

  /* Navbar */
  .hamburger { display: flex; }
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px 0;
    z-index: 999;
  }
  .nav-menu.open { display: flex; }
  .nav-link { padding: 14px 24px; border-bottom: 1px solid rgba(0,0,0,0.06); }
  .nav-item:last-child .nav-link { border-bottom: none; }
  .nav-cta { padding: 16px 24px; }

  .dropdown {
    position: static;
    box-shadow: none;
    border-top: none;
    border-left: 4px solid var(--yellow-2);
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    margin-left: 24px;
  }
  .nav-item.dropdown-open .dropdown { display: block; }

  /* Hero */
  .hero { padding: 64px 0; }
  .hero h1 { font-size: 36px; }
  .trust-pills { gap: 8px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { text-align: center; justify-content: center; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item { border-bottom: 1px solid rgba(255,255,255,0.1); }
  .stat-item:nth-child(3), .stat-item:nth-child(4) { border-bottom: none; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-badge { bottom: -16px; right: -8px; }

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

  /* Steps */
  .steps-grid { grid-template-columns: 1fr; }

  /* Why */
  .why-grid { grid-template-columns: 1fr; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; }

  /* FAQ */
  .faq-grid { grid-template-columns: 1fr; gap: 32px; }

  /* CTA Banner */
  .cta-banner-inner { flex-direction: column; text-align: center; }
  .cta-banner-btns { justify-content: center; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom .container { flex-direction: column; text-align: center; }

  /* Content + Sidebar */
  .content-sidebar { grid-template-columns: 1fr; }
  .sidebar-sticky { position: static; }

  /* Process */
  .process-steps { grid-template-columns: repeat(2, 1fr); }

  /* Projects */
  .projects-grid { grid-template-columns: 1fr; }

  /* Mission Stats */
  .mission-stats { grid-template-columns: 1fr; }

  /* Commitment */
  .commitment-grid { grid-template-columns: 1fr; }

  /* Sitemap */
  .sitemap-grid { grid-template-columns: 1fr; }

  /* Form */
  .form-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .process-steps { grid-template-columns: 1fr; }
  .about-mini-stats { grid-template-columns: 1fr; }
}
