/* Thunderbird Landscaping - Static Website Styles */
/* Forest Green: #2D5A27, Slate Gray: #1A1A1B */

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

:root {
  --forest-green: #2D5A27;
  --forest-green-light: #3d7a37;
  --forest-green-dark: #1d4a17;
  --slate-gray: #1A1A1B;
  --slate-gray-light: #2a2a2c;
  --slate-gray-dark: #0f0f10;
  --background: #0f172a;
  --background-light: #1e293b;
  --foreground: #f8fafc;
  --foreground-muted: #94a3b8;
  --border-color: rgba(255, 255, 255, 0.1);
  --radius: 0.5rem;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: linear-gradient(to bottom, var(--slate-gray), var(--background));
  color: var(--foreground);
  line-height: 1.6;
  min-height: 100vh;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  cursor: pointer;
  font-family: inherit;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.5rem; }
  h4 { font-size: 1.25rem; }
}

/* ===== UTILITIES ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding {
  padding: 5rem 0;
}

.text-center { text-align: center; }
.text-muted { color: var(--foreground-muted); }
.text-green { color: var(--forest-green); }
.text-white { color: white; }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.gap-4 { gap: 2rem; }

.grid { display: grid; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 992px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ===== GLASSMORPHISM ===== */
.glass {
  background: rgba(26, 26, 27, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--forest-green), var(--forest-green-light));
  color: white;
  box-shadow: 0 4px 15px rgba(45, 90, 39, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45, 90, 39, 0.4);
}

.btn-secondary {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: white;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline-green {
  background: transparent;
  border: 2px solid var(--forest-green);
  color: var(--forest-green);
}

.btn-outline-green:hover {
  background: var(--forest-green);
  color: white;
}

/* ===== HEADER/NAV ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  padding: 1rem 0;
}

.header.scrolled {
  background: rgba(26, 26, 27, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.75rem 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo img {
  height: 48px;
  width: auto;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
}

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

.nav-links a {
  color: var(--foreground-muted);
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--forest-green-light);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--forest-green);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: white;
  padding: 0.5rem;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(26, 26, 27, 0.95);
  backdrop-filter: blur(12px);
  padding: 1rem;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu ul {
  list-style: none;
}

.mobile-menu a {
  display: block;
  padding: 1rem;
  color: var(--foreground);
  border-bottom: 1px solid var(--border-color);
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-menu-btn { display: block; }
  .header .btn-primary { display: none; }
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.hero-bg-image {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.7));
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(45, 90, 39, 0.2);
  border: 1px solid rgba(45, 90, 39, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  color: var(--forest-green-light);
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero h1 span {
  background: linear-gradient(135deg, var(--forest-green), var(--forest-green-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.25rem;
  color: var(--foreground-muted);
  margin-bottom: 2rem;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .hero-bg { grid-template-columns: 1fr; }
  .hero-bg-image:last-child { display: none; }
  .hero h1 { font-size: 2.5rem; }
  .hero p { font-size: 1rem; }
}

/* ===== LEGACY/STATS SECTION ===== */
.legacy-section {
  background: linear-gradient(135deg, var(--slate-gray) 0%, var(--background) 100%);
  position: relative;
}

.legacy-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='https://i.pinimg.com/564x/99/92/53/999253138c7e2cc0e0f0c6320ae0c136.jpg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232D5A27' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat-card {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 1rem;
  transition: all 0.3s ease;
}

.stat-card:hover {
  border-color: var(--forest-green);
  transform: translateY(-5px);
}

.stat-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--forest-green), var(--forest-green-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-icon svg {
  width: 32px;
  height: 32px;
  stroke: white;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--forest-green), var(--forest-green-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  color: var(--foreground-muted);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

@media (max-width: 992px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat-number { font-size: 2.5rem; }
}

/* ===== SERVICES PREVIEW ===== */
.services-preview {
  background: var(--background);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--foreground-muted);
  max-width: 600px;
  margin: 0 auto;
}

.service-card {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  background: var(--slate-gray-light);
  border: 1px solid var(--border-color);
  transition: all 0.4s ease;
  height: 400px;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--forest-green);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-card-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card:hover .service-card-image {
  transform: scale(1.1);
}

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.3) 100%);
}

.service-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
}

.service-card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--forest-green), var(--forest-green-light));
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.service-card-icon svg {
  width: 28px;
  height: 28px;
  stroke: white;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.service-card p {
  color: var(--foreground-muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.service-card .learn-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--forest-green-light);
  font-weight: 600;
  transition: gap 0.3s ease;
}

.service-card:hover .learn-more {
  gap: 0.75rem;
}

/* ===== BEFORE/AFTER SLIDER ===== */
.before-after-section {
  background: var(--slate-gray);
  position: relative;
}

.slider-container {
  position: relative;
  background: var(--background);
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.slider-content {
  padding: 2rem;
}

.slider-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.slider-image-container {
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.slider-image-label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.5rem 1rem;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.slider-image-label.before {
  background: rgba(239, 68, 68, 0.8);
}

.slider-image-label.after {
  background: rgba(45, 90, 39, 0.8);
}

.slider-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-info {
  text-align: center;
}

.slider-info h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.slider-info p {
  color: var(--foreground-muted);
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.2);
}

.slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--slate-gray-light);
  border: 1px solid var(--border-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.slider-btn:hover {
  background: var(--forest-green);
  border-color: var(--forest-green);
}

.slider-dots {
  display: flex;
  gap: 0.5rem;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--slate-gray-light);
  border: none;
  transition: all 0.3s ease;
}

.slider-dot.active {
  background: var(--forest-green);
  width: 32px;
  border-radius: 6px;
}

@media (max-width: 768px) {
  .slider-images { grid-template-columns: 1fr; }
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--background) 0%, var(--slate-gray) 100%);
  position: relative;
}

.cta-box {
  background: linear-gradient(135deg, rgba(45, 90, 39, 0.1) 0%, rgba(45, 90, 39, 0.05) 100%);
  border: 1px solid rgba(45, 90, 39, 0.2);
  border-radius: 1.5rem;
  padding: 4rem;
  text-align: center;
}

.cta-box h2 {
  margin-bottom: 1rem;
}

.cta-box > p {
  color: var(--foreground-muted);
  max-width: 600px;
  margin: 0 auto 2rem;
}

.cta-features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2rem;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--foreground-muted);
}

.cta-feature svg {
  color: var(--forest-green-light);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .cta-box { padding: 2rem; }
}

/* ===== FOOTER ===== */
.footer {
  background: linear-gradient(to bottom, var(--background), var(--slate-gray-dark));
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border-color);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  color: var(--foreground-muted);
  margin-top: 1rem;
  max-width: 300px;
}

.footer h4 {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: var(--forest-green-light);
}

.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 0.75rem;
}

.footer ul a {
  color: var(--foreground-muted);
  transition: color 0.3s ease;
}

.footer ul a:hover {
  color: var(--forest-green-light);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  color: var(--foreground-muted);
  font-size: 0.875rem;
}

@media (max-width: 992px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ===== PAGE HERO (Inner Pages) ===== */
.page-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.7));
}

.page-hero-content {
  position: relative;
  z-index: 10;
  max-width: 700px;
}

.page-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.page-hero h1 span {
  color: var(--forest-green-light);
}

.page-hero p {
  font-size: 1.25rem;
  color: var(--foreground-muted);
}

@media (max-width: 768px) {
  .page-hero { min-height: 50vh; }
  .page-hero h1 { font-size: 2rem; }
}

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ===== WHY CHOOSE US ===== */
.why-choose-section {
  background: var(--slate-gray);
}

.reason-card {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 1rem;
  text-align: center;
  transition: all 0.3s ease;
}

.reason-card:hover {
  border-color: var(--forest-green);
  background: rgba(45, 90, 39, 0.05);
}

.reason-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--forest-green), var(--forest-green-light));
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reason-icon svg {
  width: 36px;
  height: 36px;
  stroke: white;
}

.reason-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.reason-card p {
  color: var(--foreground-muted);
  font-size: 0.9rem;
}

/* ===== SERVICE DETAIL PAGE ===== */
.service-detail-section {
  background: var(--background);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.service-detail-image {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.service-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-features-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature-item-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: linear-gradient(135deg, var(--forest-green), var(--forest-green-light));
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-item-icon svg {
  width: 24px;
  height: 24px;
  stroke: white;
}

.feature-item h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.feature-item p {
  color: var(--foreground-muted);
  font-size: 0.875rem;
}

@media (max-width: 992px) {
  .service-detail-grid { grid-template-columns: 1fr; }
  .service-features-list { grid-template-columns: 1fr; }
}

/* ===== PROCESS SECTION ===== */
.process-section {
  background: var(--slate-gray);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.process-line {
  position: absolute;
  top: 60px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--forest-green), var(--forest-green-light));
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--forest-green), var(--forest-green-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 10;
}

.process-step-icon svg {
  width: 36px;
  height: 36px;
  stroke: white;
}

.process-step-number {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 32px;
  height: 32px;
  background: var(--slate-gray);
  border: 2px solid var(--forest-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
}

.process-step h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.process-step p {
  color: var(--foreground-muted);
  font-size: 0.875rem;
}

@media (max-width: 992px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-line { display: none; }
}

@media (max-width: 576px) {
  .process-grid { grid-template-columns: 1fr; }
}

/* ===== ABOUT PAGE ===== */
.about-story-section {
  background: var(--background);
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-story-image {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
}

.timeline {
  margin-top: 2rem;
  border-left: 2px solid var(--forest-green);
  padding-left: 2rem;
}

.timeline-item {
  position: relative;
  margin-bottom: 2rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.5rem;
  top: 0;
  width: 16px;
  height: 16px;
  background: var(--forest-green);
  border-radius: 50%;
}

.timeline-year {
  color: var(--forest-green-light);
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.timeline-item h4 {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.timeline-item p {
  color: var(--foreground-muted);
  font-size: 0.875rem;
}

@media (max-width: 992px) {
  .about-story-grid { grid-template-columns: 1fr; }
}

/* ===== VALUES SECTION ===== */
.values-section {
  background: var(--slate-gray);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.value-card {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 1rem;
  text-align: center;
  transition: all 0.3s ease;
}

.value-card:hover {
  border-color: var(--forest-green);
  transform: translateY(-5px);
}

.value-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--forest-green), var(--forest-green-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-icon svg {
  width: 32px;
  height: 32px;
  stroke: white;
}

.value-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.value-card p {
  color: var(--foreground-muted);
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .values-grid { grid-template-columns: 1fr; }
}

/* ===== QUOTE FORM ===== */
.quote-section {
  background: var(--background);
  min-height: 100vh;
  padding-top: 120px;
}

.quote-container {
  max-width: 800px;
  margin: 0 auto;
}

.quote-header {
  text-align: center;
  margin-bottom: 3rem;
}

.quote-header h1 {
  margin-bottom: 1rem;
}

.quote-header p {
  color: var(--foreground-muted);
}

.form-progress {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
  gap: 1rem;
}

.progress-step {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.progress-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--slate-gray-light);
  border: 2px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.progress-step.active .progress-number,
.progress-step.completed .progress-number {
  background: var(--forest-green);
  border-color: var(--forest-green);
}

.progress-step.completed .progress-number {
  background: var(--forest-green-light);
}

.progress-label {
  color: var(--foreground-muted);
  font-size: 0.875rem;
  display: none;
}

@media (min-width: 768px) {
  .progress-label { display: block; }
}

.progress-connector {
  width: 40px;
  height: 2px;
  background: var(--border-color);
}

.progress-step.completed + .progress-connector {
  background: var(--forest-green);
}

.form-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 1rem;
  padding: 2rem;
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
}

.form-step h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.form-step > p {
  color: var(--foreground-muted);
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

@media (max-width: 576px) {
  .form-row { grid-template-columns: 1fr; }
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  background: var(--slate-gray-light);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  color: var(--foreground);
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--forest-green);
  box-shadow: 0 0 0 3px rgba(45, 90, 39, 0.2);
}

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

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
}

.radio-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (max-width: 576px) {
  .radio-group { grid-template-columns: 1fr; }
}

.radio-option {
  position: relative;
}

.radio-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.radio-option label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--slate-gray-light);
  border: 2px solid var(--border-color);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.3s ease;
}

.radio-option input:checked + label {
  border-color: var(--forest-green);
  background: rgba(45, 90, 39, 0.1);
}

.radio-check {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 2px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.radio-option input:checked + label .radio-check {
  border-color: var(--forest-green);
  background: var(--forest-green);
}

.radio-option input:checked + label .radio-check::after {
  content: '';
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
}

.checkbox-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (max-width: 576px) {
  .checkbox-group { grid-template-columns: 1fr; }
}

.checkbox-option {
  position: relative;
}

.checkbox-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.checkbox-option label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--slate-gray-light);
  border: 2px solid var(--border-color);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.3s ease;
}

.checkbox-option input:checked + label {
  border-color: var(--forest-green);
  background: rgba(45, 90, 39, 0.1);
}

.checkbox-check {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 2px solid var(--border-color);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.checkbox-option input:checked + label .checkbox-check {
  border-color: var(--forest-green);
  background: var(--forest-green);
}

.checkbox-option input:checked + label .checkbox-check svg {
  display: block;
}

.checkbox-check svg {
  display: none;
  width: 14px;
  height: 14px;
  stroke: white;
}

.form-buttons {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
}

.form-buttons .btn {
  flex: 1;
}

.form-success {
  display: none;
  text-align: center;
  padding: 3rem;
}

.form-success.active {
  display: block;
}

.success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--forest-green), var(--forest-green-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-icon svg {
  width: 40px;
  height: 40px;
  stroke: white;
}

.form-success h2 {
  margin-bottom: 1rem;
}

.form-success p {
  color: var(--foreground-muted);
  margin-bottom: 2rem;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }
.animate-delay-5 { transition-delay: 0.5s; }
.animate-delay-6 { transition-delay: 0.6s; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--slate-gray);
}

::-webkit-scrollbar-thumb {
  background: var(--forest-green);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--forest-green-light);
}
