/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: #f5f7fa;
  color: #1a2332;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ===== VARIABLES ===== */
:root {
  --primary: #2a9d5c;
  --primary-dark: #228a4e;
  --primary-light: rgba(42,157,92,0.1);
  --accent: #f59e0b;
  --foreground: #1a2332;
  --foreground-light: #64748b;
  --card: #ffffff;
  --background: #f5f7fa;
  --border: #e2e8f0;
  --radius: 0.75rem;
}

.font-heading { font-family: 'Space Grotesk', system-ui, sans-serif; }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes countUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-float { animation: float 3s ease-in-out infinite; }
.animate-pulse { animation: pulse 2s ease-in-out infinite; }
.animate-bounce { animation: bounce 1.5s ease-in-out infinite; }
.animate-marquee { animation: marquee 30s linear infinite; }

.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: all 1s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: all 1s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ===== LAYOUT ===== */
.container { max-width: 1280px; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

.grid-pattern {
  background-image:
    linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: all 0.5s ease;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border-bottom: 1px solid var(--border);
}
.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 80px;
}
.logo { display: flex; align-items: center; gap: 0.5rem; }
.logo-icon {
  width: 40px; height: 40px; border-radius: 8px;
  background: var(--primary); display: flex; align-items: center; justify-content: center;
}
.logo-icon svg { width: 20px; height: 20px; color: white; }
.logo-text { display: flex; flex-direction: column; }
.logo-brand {
  font-family: 'Space Grotesk', sans-serif; font-size: 1.125rem;
  font-weight: 700; line-height: 1.2; color: white;
  transition: color 0.3s;
}
.navbar.scrolled .logo-brand { color: var(--foreground); }
.logo-sub {
  font-size: 10px; font-weight: 500; letter-spacing: 0.15em;
  text-transform: uppercase; color: white; transition: color 0.3s;
}
.navbar.scrolled .logo-sub { color: var(--primary); }

.nav-links { display: none; align-items: center; gap: 4px; }
@media (min-width: 1024px) { .nav-links { display: flex; } }
.nav-link {
  padding: 0.5rem 1rem; border-radius: 8px; font-size: 0.875rem;
  font-weight: 500; color: rgba(255,255,255,0.8); transition: all 0.3s;
}
.nav-link:hover { color: white; background: rgba(255,255,255,0.1); }
.navbar.scrolled .nav-link { color: var(--foreground); }
.navbar.scrolled .nav-link:hover { color: var(--primary); background: var(--primary-light); }

.nav-actions { display: none; align-items: center; gap: 1rem; }
@media (min-width: 1024px) { .nav-actions { display: flex; } }
.nav-phone {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.875rem; font-weight: 500;
  color: rgba(255,255,255,0.8); transition: color 0.3s;
}
.nav-phone:hover { color: white; }
.navbar.scrolled .nav-phone { color: var(--foreground-light); }
.navbar.scrolled .nav-phone:hover { color: var(--foreground); }
.nav-phone svg { width: 16px; height: 16px; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.625rem 1.25rem; border-radius: 8px; background: var(--primary);
  color: white; font-size: 0.875rem; font-weight: 600;
  box-shadow: 0 4px 14px rgba(42,157,92,0.25); transition: all 0.3s;
}
.btn-primary:hover {
  background: var(--primary-dark); transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(42,157,92,0.3);
}

.mobile-toggle {
  display: flex; padding: 0.5rem; border-radius: 8px;
  background: transparent; color: white; transition: all 0.3s;
}
.navbar.scrolled .mobile-toggle { color: var(--foreground); }
.mobile-toggle:hover { background: rgba(255,255,255,0.1); }
.navbar.scrolled .mobile-toggle:hover { background: var(--primary-light); }
@media (min-width: 1024px) { .mobile-toggle { display: none; } }
.mobile-toggle svg { width: 24px; height: 24px; }

.mobile-menu {
  display: none; background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px); border-top: 1px solid var(--border);
  padding: 1.5rem 1rem;
}
.mobile-menu.open { display: block; }
@media (min-width: 1024px) { .mobile-menu { display: none !important; } }
.mobile-menu a {
  display: block; padding: 0.75rem 1rem; border-radius: 8px;
  color: var(--foreground); font-weight: 500; transition: all 0.3s;
}
.mobile-menu a:hover { color: var(--primary); background: var(--primary-light); }
.mobile-menu-divider { margin: 1rem 0; border-top: 1px solid var(--border); }
.mobile-cta {
  display: flex; justify-content: center; margin: 0 1rem;
  padding: 0.75rem; border-radius: 8px; background: var(--primary);
  color: white !important; font-weight: 600; text-align: center;
}

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh; display: flex; flex-direction: column;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(26,35,50,0.8), rgba(26,35,50,0.6), rgba(26,35,50,0.9));
}
.hero-floating {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none;
}
.hero-floating .orb1 {
  position: absolute; top: 25%; left: 10%;
  width: 288px; height: 288px; background: rgba(42,157,92,0.1);
  border-radius: 50%; filter: blur(48px);
}
.hero-floating .orb2 {
  position: absolute; bottom: 33%; right: 10%;
  width: 384px; height: 384px; background: rgba(245,158,11,0.1);
  border-radius: 50%; filter: blur(48px);
  animation-delay: 0.3s;
}
.hero-content {
  position: relative; z-index: 10; flex: 1; display: flex; align-items: center;
}
.hero-inner { width: 100%; padding-top: 8rem; padding-bottom: 5rem; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.375rem 1rem; border-radius: 9999px;
  background: rgba(42,157,92,0.15); border: 1px solid rgba(42,157,92,0.25);
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.05em;
  text-transform: uppercase; color: white;
  opacity: 0; animation: fadeInUp 0.8s ease-out forwards;
}
.hero-badge-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--primary);
}
.hero h1 {
  margin-top: 2rem; font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem; font-weight: 700; line-height: 1.1;
  color: white; letter-spacing: -0.02em;
  opacity: 0; animation: fadeInUp 0.8s ease-out 0.1s forwards;
}
@media (min-width: 640px) { .hero h1 { font-size: 3rem; } }
@media (min-width: 768px) { .hero h1 { font-size: 3.75rem; } }
@media (min-width: 1024px) { .hero h1 { font-size: 4.5rem; } }
.hero h1 .gradient-text {
  background: linear-gradient(to right, var(--primary), var(--accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  margin-top: 1.5rem; max-width: 560px; font-size: 1rem;
  color: rgba(255,255,255,0.7); line-height: 1.7;
  opacity: 0; animation: fadeInUp 0.8s ease-out 0.2s forwards;
}
@media (min-width: 640px) { .hero-desc { font-size: 1.125rem; } }
.hero-buttons {
  margin-top: 2.5rem; display: flex; flex-wrap: wrap; gap: 1rem;
  opacity: 0; animation: fadeInUp 0.8s ease-out 0.3s forwards;
}
.hero-btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.875rem 1.75rem; border-radius: 8px; background: var(--primary);
  color: white; font-size: 0.875rem; font-weight: 600;
  box-shadow: 0 8px 25px rgba(42,157,92,0.25); transition: all 0.3s;
}
.hero-btn-primary:hover {
  background: var(--primary-dark); transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(42,157,92,0.3);
}
.hero-btn-primary svg { width: 16px; height: 16px; transition: transform 0.3s; }
.hero-btn-primary:hover svg { transform: translateX(4px); }
.hero-btn-secondary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.875rem 1.75rem; border-radius: 8px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  color: white; font-size: 0.875rem; font-weight: 600;
  backdrop-filter: blur(4px); transition: all 0.3s;
}
.hero-btn-secondary:hover { background: rgba(255,255,255,0.2); transform: translateY(-2px); }

.hero-scroll {
  margin-top: 4rem; display: inline-flex; flex-direction: column;
  align-items: center; gap: 0.5rem; color: rgba(255,255,255,0.5);
  transition: color 0.3s;
  opacity: 0; animation: fadeInUp 0.8s ease-out 0.5s forwards;
}
.hero-scroll:hover { color: rgba(255,255,255,0.8); }
.hero-scroll span { font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; }
.hero-scroll svg { width: 16px; height: 16px; }

/* Marquee */
.marquee-bar {
  position: relative; z-index: 10;
  border-top: 1px solid rgba(255,255,255,0.1);
  background: rgba(26,35,50,0.3); backdrop-filter: blur(4px);
}
.marquee-track { overflow: hidden; padding: 1rem 0; }
.marquee-content { display: flex; white-space: nowrap; }
.marquee-item {
  display: flex; align-items: center; gap: 0.75rem;
  margin: 0 1.5rem; font-size: 0.875rem; font-weight: 500;
  color: rgba(255,255,255,0.5);
}
.marquee-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(42,157,92,0.6); flex-shrink: 0;
}

/* Stats */
.stats-bar {
  position: relative; z-index: 10;
  background: rgba(255,255,255,0.05); backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-item {
  display: flex; flex-direction: column; align-items: center;
  padding: 1.5rem 1rem; border-right: 1px solid rgba(255,255,255,0.1);
  opacity: 0; transform: translateY(20px);
}
.stat-item:last-child { border-right: none; }
@media (min-width: 768px) { .stat-item { padding: 2rem 1rem; } }
.stat-item.visible { opacity: 1; transform: translateY(0); transition: all 0.6s ease-out; }
.stat-number {
  font-family: 'Space Grotesk', sans-serif; font-size: 1.875rem;
  font-weight: 700; color: var(--primary);
}
@media (min-width: 768px) { .stat-number { font-size: 2.25rem; } }
.stat-label { margin-top: 0.25rem; font-size: 0.75rem; color: rgba(255,255,255,0.6); }
@media (min-width: 640px) { .stat-label { font-size: 0.875rem; } }

/* ===== SERVICES ===== */
.services { padding: 6rem 0; background: var(--background); }
@media (min-width: 768px) { .services { padding: 8rem 0; } }
.section-header { text-align: center; max-width: 640px; margin: 0 auto; }
.section-tag {
  display: inline-block; font-size: 0.875rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--primary); margin-bottom: 0.75rem;
}
.section-title {
  font-family: 'Space Grotesk', sans-serif; font-size: 1.875rem;
  font-weight: 700; color: var(--foreground);
}
@media (min-width: 768px) { .section-title { font-size: 2.25rem; } }
@media (min-width: 1024px) { .section-title { font-size: 3rem; } }
.section-desc { margin-top: 1rem; color: var(--foreground-light); line-height: 1.7; }

.services-grid {
  margin-top: 4rem; display: grid; gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }

.service-card {
  position: relative; border-radius: 1rem; background: var(--card);
  border: 1px solid var(--border); overflow: hidden; transition: all 0.5s;
}
.service-card:hover {
  box-shadow: 0 20px 40px rgba(42,157,92,0.08);
  transform: translateY(-4px);
}
.service-card-img { position: relative; height: 192px; overflow: hidden; }
.service-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s;
}
.service-card:hover .service-card-img img { transform: scale(1.1); }
.service-card-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,35,50,0.8), transparent);
}
.service-card-header {
  position: absolute; bottom: 1rem; left: 1rem; z-index: 2;
  display: flex; align-items: center; gap: 0.75rem;
}
.service-icon {
  width: 40px; height: 40px; border-radius: 8px;
  background: rgba(42,157,92,0.9); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
}
.service-icon svg { width: 20px; height: 20px; color: white; }
.service-card-header h3 {
  font-family: 'Space Grotesk', sans-serif; font-size: 1.125rem;
  font-weight: 700; color: white;
}
.service-card-body { padding: 1.5rem; }
.service-card-body p { font-size: 0.875rem; color: var(--foreground-light); line-height: 1.7; }
.service-tags { margin-top: 1rem; display: flex; flex-wrap: wrap; gap: 0.5rem; }
.service-tag {
  font-size: 0.75rem; font-weight: 500; padding: 0.25rem 0.75rem;
  border-radius: 9999px; background: var(--primary-light);
  color: var(--primary); border: 1px solid rgba(42,157,92,0.1);
}
.service-link {
  margin-top: 1.25rem; padding-top: 1rem; border-top: 1px solid var(--border);
  display: flex;
}
.service-link a {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.875rem; font-weight: 600; color: var(--primary);
  transition: color 0.3s;
}
.service-link a:hover { color: var(--primary-dark); }
.service-link svg { width: 16px; height: 16px; transition: transform 0.3s; }
.service-link a:hover svg { transform: translateX(4px); }

/* ===== ABOUT ===== */
.about { padding: 6rem 0; background: var(--card); overflow: hidden; position: relative; }
@media (min-width: 768px) { .about { padding: 8rem 0; } }
.about-deco {
  position: absolute; top: 0; right: 0; width: 33%; height: 100%;
  background: linear-gradient(to left, rgba(42,157,92,0.03), transparent);
  pointer-events: none;
}
.about-grid { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }
.about-image { position: relative; }
.about-image-main {
  border-radius: 1rem; overflow: hidden; box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}
.about-image-main img { width: 100%; height: 450px; object-fit: cover; }
.about-image-main::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,35,50,0.3), transparent);
}
.about-float-card {
  position: absolute; bottom: -24px; right: -24px;
  background: var(--card); border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1); border: 1px solid var(--border);
  padding: 1.25rem; display: flex; align-items: center; gap: 0.75rem;
}
@media (min-width: 768px) { .about-float-card { right: 2rem; } }
.about-float-icon {
  width: 48px; height: 48px; border-radius: 8px; background: var(--primary-light);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.about-float-icon svg { width: 24px; height: 24px; color: var(--primary); }
.about-float-number {
  font-family: 'Space Grotesk', sans-serif; font-size: 1.5rem;
  font-weight: 700; color: var(--foreground);
}
.about-float-label { font-size: 0.75rem; color: var(--foreground-light); }

.about-content h2 {
  font-family: 'Space Grotesk', sans-serif; font-size: 1.875rem;
  font-weight: 700; color: var(--foreground);
}
@media (min-width: 768px) { .about-content h2 { font-size: 2.25rem; } }
.about-content p { margin-top: 1.5rem; color: var(--foreground-light); line-height: 1.7; }
.about-content p + p { margin-top: 1rem; }

.about-highlights { margin-top: 2rem; display: grid; gap: 1rem; }
.highlight-item {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1rem; border-radius: 12px;
  background: rgba(245,247,250,0.6); border: 1px solid rgba(226,232,240,0.5);
  transition: background 0.3s;
}
.highlight-item:hover { background: var(--background); }
.highlight-icon {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 8px;
  background: var(--primary-light); display: flex; align-items: center;
  justify-content: center;
}
.highlight-icon svg { width: 20px; height: 20px; color: var(--primary); }
.highlight-item h4 { font-weight: 600; color: var(--foreground); }
.highlight-item p { font-size: 0.875rem; color: var(--foreground-light); margin-top: 0.25rem; }

/* ===== PROJECTS ===== */
.projects { padding: 6rem 0; background: var(--background); overflow: hidden; }
@media (min-width: 768px) { .projects { padding: 8rem 0; } }
.projects-grid {
  margin-top: 4rem; display: grid; gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .projects-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }

.project-card { position: relative; border-radius: 1rem; overflow: hidden; cursor: pointer; }
.project-card-inner { position: relative; height: 320px; overflow: hidden; }
@media (min-width: 768px) { .project-card-inner { height: 384px; } }
.project-card-inner img {
  width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s;
}
.project-card:hover .project-card-inner img { transform: scale(1.1); }
.project-card-inner::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,35,50,0.9), rgba(26,35,50,0.3), transparent);
}
.project-badge {
  position: absolute; top: 1rem; left: 1rem; z-index: 2;
  padding: 0.25rem 0.75rem; border-radius: 9999px;
  background: rgba(42,157,92,0.9); backdrop-filter: blur(4px);
  font-size: 0.75rem; font-weight: 600; color: white;
}
.project-expand {
  position: absolute; top: 1rem; right: 1rem; z-index: 2;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.2); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
}
.project-card:hover .project-expand { opacity: 1; }
.project-expand svg { width: 16px; height: 16px; color: white; }
.project-info {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  padding: 1.5rem; transform: translateY(8px);
  transition: transform 0.5s;
}
.project-card:hover .project-info { transform: translateY(0); }
.project-info h3 {
  font-family: 'Space Grotesk', sans-serif; font-size: 1.25rem;
  font-weight: 700; color: white;
}
.project-location {
  display: flex; align-items: center; gap: 0.375rem;
  margin-top: 0.5rem; font-size: 0.875rem; color: rgba(255,255,255,0.7);
}
.project-location svg { width: 14px; height: 14px; }
.project-desc {
  margin-top: 0.5rem; font-size: 0.875rem; color: rgba(255,255,255,0.6);
  line-height: 1.6; opacity: 0; transition: opacity 0.5s 0.1s;
}
.project-card:hover .project-desc { opacity: 1; }

/* ===== CTA BANNER ===== */
.cta { position: relative; padding: 5rem 0; overflow: hidden; }
@media (min-width: 768px) { .cta { padding: 7rem 0; } }
.cta-bg { position: absolute; inset: 0; }
.cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(42,157,92,0.9), rgba(42,157,92,0.8));
}
.cta-circles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.cta-circles .c1 {
  position: absolute; top: -96px; right: -96px;
  width: 384px; height: 384px; border-radius: 50%;
  background: rgba(255,255,255,0.05);
}
.cta-circles .c2 {
  position: absolute; bottom: -96px; left: -96px;
  width: 384px; height: 384px; border-radius: 50%;
  background: rgba(255,255,255,0.05);
}
.cta-content {
  position: relative; z-index: 10; max-width: 800px; margin: 0 auto; text-align: center;
}
.cta-content h2 {
  font-family: 'Space Grotesk', sans-serif; font-size: 1.875rem;
  font-weight: 700; color: white;
}
@media (min-width: 768px) { .cta-content h2 { font-size: 2.25rem; } }
@media (min-width: 1024px) { .cta-content h2 { font-size: 3rem; } }
.cta-content p {
  margin-top: 1.5rem; color: rgba(255,255,255,0.8);
  font-size: 1.125rem; line-height: 1.7; max-width: 640px; margin-left: auto; margin-right: auto;
}
.cta-buttons {
  margin-top: 2.5rem; display: flex; flex-direction: column;
  align-items: center; gap: 1rem;
}
@media (min-width: 640px) { .cta-buttons { flex-direction: row; justify-content: center; } }
.cta-btn-white {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 1rem 2rem; border-radius: 8px; background: white;
  color: var(--primary); font-size: 0.875rem; font-weight: 700;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15); transition: all 0.3s;
}
.cta-btn-white:hover { background: rgba(255,255,255,0.9); transform: translateY(-2px); box-shadow: 0 12px 35px rgba(0,0,0,0.2); }
.cta-btn-white svg { width: 16px; height: 16px; transition: transform 0.3s; }
.cta-btn-white:hover svg { transform: translateX(4px); }
.cta-btn-outline {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 1rem 2rem; border-radius: 8px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.25);
  color: white; font-size: 0.875rem; font-weight: 600;
  backdrop-filter: blur(4px); transition: all 0.3s;
}
.cta-btn-outline:hover { background: rgba(255,255,255,0.2); }
.cta-btn-outline svg { width: 16px; height: 16px; }

/* ===== CONTACT ===== */
.contact { padding: 6rem 0; background: var(--card); }
@media (min-width: 768px) { .contact { padding: 8rem 0; } }
.contact-grid { margin-top: 4rem; display: grid; gap: 2.5rem; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 2fr 3fr; gap: 4rem; } }

.contact-info-grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 640px) and (max-width: 1023px) { .contact-info-grid { grid-template-columns: repeat(2, 1fr); } }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-item-icon {
  flex-shrink: 0; width: 48px; height: 48px; border-radius: 12px;
  background: var(--primary-light); display: flex; align-items: center;
  justify-content: center;
}
.contact-item-icon svg { width: 20px; height: 20px; color: var(--primary); }
.contact-item h4 { font-weight: 600; color: var(--foreground); }
.contact-item p { font-size: 0.875rem; color: var(--foreground-light); margin-top: 0.25rem; }

.contact-map {
  margin-top: 2rem; border-radius: 12px; overflow: hidden;
  border: 1px solid var(--border); height: 192px; background: var(--background);
  display: flex; align-items: center; justify-content: center;
}
.contact-map svg { width: 32px; height: 32px; color: var(--foreground-light); opacity: 0.5; }
.contact-map p { font-size: 0.875rem; color: var(--foreground-light); margin-top: 0.5rem; }

.contact-form {
  border-radius: 1rem; background: var(--background); border: 1px solid var(--border);
  padding: 1.5rem; box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
@media (min-width: 768px) { .contact-form { padding: 2rem; } }
.form-grid { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .form-grid { grid-template-columns: repeat(2, 1fr); } }
.form-group label {
  display: block; font-size: 0.875rem; font-weight: 500;
  color: var(--foreground); margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 0.75rem 1rem; border-radius: 8px;
  border: 1px solid var(--border); background: var(--card);
  font-size: 0.875rem; color: var(--foreground); outline: none;
  transition: all 0.3s;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--foreground-light); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(42,157,92,0.1);
}
.form-group textarea { resize: none; }
.form-full { grid-column: 1 / -1; }
.form-submit { grid-column: 1 / -1; margin-top: 0.5rem; }
.form-submit button {
  width: 100%; display: inline-flex; align-items: center; justify-content: center;
  gap: 0.5rem; padding: 1rem 2rem; border-radius: 8px; background: var(--primary);
  color: white; font-size: 0.875rem; font-weight: 700;
  box-shadow: 0 4px 14px rgba(42,157,92,0.25); transition: all 0.3s;
}
.form-submit button:hover {
  background: var(--primary-dark); transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(42,157,92,0.3);
}
.form-submit button svg { width: 16px; height: 16px; }
.form-submit button.submitted {
  background: var(--primary-dark); opacity: 0.8; cursor: not-allowed;
}

/* ===== FOOTER ===== */
.footer { background: var(--foreground); color: white; }
.footer-main {
  padding: 4rem 0; display: grid; gap: 3rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .footer-main { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-main { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-brand p {
  margin-top: 1rem; color: rgba(255,255,255,0.6); font-size: 0.875rem;
  line-height: 1.7; max-width: 380px;
}
.footer-contacts { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-contacts a, .footer-contacts span {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.875rem; color: rgba(255,255,255,0.6); transition: color 0.3s;
}
.footer-contacts a:hover { color: var(--primary); }
.footer-contacts svg { width: 16px; height: 16px; flex-shrink: 0; }

.footer-links h4 {
  font-family: 'Space Grotesk', sans-serif; font-weight: 600;
  color: white; margin-bottom: 1rem;
}
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 0.625rem; }
.footer-links li a {
  font-size: 0.875rem; color: rgba(255,255,255,0.5); transition: color 0.3s;
}
.footer-links li a:hover { color: var(--primary); }

.footer-bottom {
  padding: 1.5rem 0; border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; flex-direction: column; align-items: center;
  justify-content: space-between; gap: 1rem;
}
@media (min-width: 640px) { .footer-bottom { flex-direction: row; } }
.footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.4); }
