/* ============================================================
   ROOT & TOKENS
   ============================================================ */
:root {
  --orange:       #f97316;
  --orange-deep:  #ea580c;
  --orange-light: #fed7aa;
  --amber:        #f59e0b;
  --dark:         #0f0f0f;
  --dark-2:       #1a1a1a;
  --dark-3:       #242424;
  --dark-4:       #2e2e2e;
  --mid:          #404040;
  --light:        #f5f5f5;
  --white:        #ffffff;
  --text-muted:   #9ca3af;
  --green:        #22c55e;

  --gradient-main: linear-gradient(135deg, var(--orange-deep) 0%, var(--amber) 100%);
  --gradient-dark: linear-gradient(135deg, #0f0f0f 0%, #1e140a 100%);
  --shadow-orange: 0 8px 32px rgba(249, 115, 22, 0.35);
  --shadow-card:   0 4px 24px rgba(0,0,0,0.35);
  --radius:        16px;
  --radius-sm:     8px;
  --radius-lg:     24px;
  --transition:    all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-sans:     'Inter', system-ui, sans-serif;
  --font-display:  'Barlow Condensed', system-ui, sans-serif;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--dark);
  color: var(--light);
  line-height: 1.65;
  overflow-x: hidden;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 100px 0; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes pulse-ring {
  0%   { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(249,115,22,0.6); }
  70%  { transform: scale(1);   box-shadow: 0 0 0 16px rgba(249,115,22,0); }
  100% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(249,115,22,0); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(8px); }
}
@keyframes badgePulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.5; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes toastSlide {
  from { transform: translateY(80px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

.animate-fadeInUp { animation: fadeInUp 0.75s ease both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.25s; }
.delay-3 { animation-delay: 0.4s; }
.delay-4 { animation-delay: 0.55s; }
.delay-5 { animation-delay: 0.7s; }

/* Scroll-triggered reveal */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-main);
  color: var(--white);
  box-shadow: var(--shadow-orange);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(249,115,22,0.5);
}
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--orange);
  transform: translateY(-3px);
}

.btn.large { padding: 20px 48px; font-size: 1.15rem; }
.btn.full-width { width: 100%; justify-content: center; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: background 0.4s ease, padding 0.4s ease, backdrop-filter 0.4s ease;
}
.navbar.scrolled {
  background: rgba(15,15,15,0.95);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  border-bottom: 1px solid rgba(249,115,22,0.2);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--white);
  flex-shrink: 0;
}
.nav-logo .logo-icon { font-size: 1.5rem; }
.nav-logo strong { color: var(--orange); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.nav-link {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  transition: var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 20px; height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transition: transform 0.3s ease;
}
.nav-link:hover, .nav-link.active {
  color: var(--white);
  background: rgba(249,115,22,0.1);
}
.nav-link.active::after, .nav-link:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--gradient-main);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 700;
  transition: var(--transition);
  box-shadow: var(--shadow-orange);
  flex-shrink: 0;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(249,115,22,0.5);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  object-fit: cover;
  width: 100%; height: 100%;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero:hover .hero-bg-img { transform: scale(1); }

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(10,5,0,0.90) 0%,
    rgba(30,14,0,0.80) 50%,
    rgba(10,5,0,0.70) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 140px 24px 100px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(249,115,22,0.15);
  border: 1px solid rgba(249,115,22,0.4);
  color: var(--orange-light);
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}
.badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange);
  animation: badgePulse 1.5s ease infinite;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 24px;
  text-shadow: 0 4px 24px rgba(0,0,0,0.5);
}

.title-accent {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 24px 32px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat strong { display: block; font-size: 1.75rem; font-weight: 800; color: var(--orange); }
.stat small { font-size: 0.78rem; color: rgba(255,255,255,0.65); text-transform: uppercase; letter-spacing: 0.06em; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.2); }

.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  animation: fadeIn 1s ease 1.5s both;
}
.scroll-arrow {
  width: 20px; height: 20px;
  border-right: 2px solid rgba(255,255,255,0.4);
  border-bottom: 2px solid rgba(255,255,255,0.4);
  transform: rotate(45deg);
  animation: scrollBounce 1.5s ease infinite;
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--dark-2);
  border-top: 1px solid rgba(249,115,22,0.2);
  border-bottom: 1px solid rgba(249,115,22,0.2);
  padding: 20px 0;
  overflow: hidden;
}

.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  white-space: nowrap;
}
.trust-icon { font-size: 1.25rem; }

/* ============================================================
   ALERT BANNER
   ============================================================ */
.alert-banner {
  background: linear-gradient(90deg, #7c2d12 0%, #92400e 50%, #7c2d12 100%);
  padding: 18px 0;
}
.alert-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  text-align: center;
  position: relative;
}
.alert-inner p {
  font-size: 0.95rem;
  color: var(--orange-light);
  line-height: 1.5;
}
.alert-btn {
  display: inline-block;
  background: var(--white);
  color: #7c2d12;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.9rem;
  transition: var(--transition);
  flex-shrink: 0;
}
.alert-btn:hover {
  background: var(--orange);
  color: var(--white);
  transform: scale(1.05);
}
.alert-pulse {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--orange-light);
  animation: badgePulse 1.2s ease infinite;
  flex-shrink: 0;
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}
.section-tag {
  display: inline-block;
  background: rgba(249,115,22,0.15);
  border: 1px solid rgba(249,115,22,0.35);
  color: var(--orange);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 16px;
}
.section-sub {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.75;
}
.section-title.left, .section-sub.left { text-align: left; }

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--dark); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--dark-2);
  border: 1px solid var(--dark-4);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  border-color: var(--orange);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(249,115,22,0.2);
}

.service-card-img {
  height: 200px;
  position: relative;
  overflow: hidden;
}
.service-card-img img {
  transition: transform 0.5s ease;
  height: 100%;
}
.service-card:hover .service-card-img img { transform: scale(1.08); }

.service-overlay {
  position: absolute;
  top: 14px; right: 14px;
}
.service-tag {
  background: var(--orange);
  color: var(--white);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
}

.service-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-icon { font-size: 2rem; margin-bottom: 12px; }
.service-card-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.service-card-body p {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 16px;
}
.service-list {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.service-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.75);
}
.service-list li::before {
  content: '✓';
  color: var(--orange);
  font-weight: 800;
  flex-shrink: 0;
}
.service-cta {
  display: inline-block;
  color: var(--orange);
  font-weight: 700;
  font-size: 0.875rem;
  transition: var(--transition);
  margin-top: auto;
}
.service-cta:hover { color: var(--amber); letter-spacing: 0.02em; }

/* ============================================================
   WHY US
   ============================================================ */
.why-us {
  background: var(--dark-2);
  border-top: 1px solid var(--dark-4);
  border-bottom: 1px solid var(--dark-4);
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.img-stack {
  position: relative;
}
.img-main {
  border-radius: var(--radius-lg);
  height: 520px;
  object-fit: cover;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
}

.img-card-float {
  position: absolute;
  bottom: 24px; right: -24px;
  background: rgba(15,15,15,0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(249,115,22,0.3);
  border-radius: var(--radius);
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-card);
  animation: float 3s ease infinite;
}
.float-icon { font-size: 2rem; }
.img-card-float strong { display: block; font-size: 1.25rem; font-weight: 800; color: var(--orange); }
.img-card-float small { color: var(--text-muted); font-size: 0.78rem; }

.features-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 32px;
}
.feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.feature-icon-wrap {
  font-size: 1.5rem;
  width: 52px; height: 52px;
  border-radius: 12px;
  background: rgba(249,115,22,0.12);
  border: 1px solid rgba(249,115,22,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}
.feature-item:hover .feature-icon-wrap {
  background: rgba(249,115,22,0.25);
  transform: scale(1.1);
}
.feature-item h4 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.feature-item p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; }

/* ============================================================
   PROCESS
   ============================================================ */
.process { background: var(--dark); }

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
}

.process-step {
  flex: 1;
  text-align: center;
  padding: 0 20px;
  position: relative;
}

.step-number {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 900;
  color: rgba(249,115,22,0.1);
  line-height: 1;
  margin-bottom: -10px;
  letter-spacing: -0.04em;
}
.step-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: inline-block;
  background: rgba(249,115,22,0.12);
  border: 1px solid rgba(249,115,22,0.25);
  width: 72px; height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: var(--transition);
}
.process-step:hover .step-icon {
  background: var(--orange);
  transform: scale(1.1);
}
.process-step h3 { font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.process-step p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; }

.process-connector {
  flex-shrink: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--amber));
  margin-top: 90px;
  position: relative;
}
.process-connector::after {
  content: '▶';
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--amber);
  font-size: 0.75rem;
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews { background: var(--dark-2); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--dark-3);
  border: 1px solid var(--dark-4);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.review-card::before {
  content: '"';
  position: absolute;
  top: -10px; right: 20px;
  font-size: 8rem;
  font-family: Georgia, serif;
  color: rgba(249,115,22,0.07);
  line-height: 1;
  pointer-events: none;
}
.review-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.review-card.featured {
  border-color: rgba(249,115,22,0.4);
  background: linear-gradient(135deg, var(--dark-3) 0%, rgba(249,115,22,0.06) 100%);
}

.review-stars { font-size: 1.1rem; margin-bottom: 16px; }
.review-text {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}
.reviewer { display: flex; align-items: center; gap: 14px; }
.reviewer-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gradient-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.875rem;
  color: var(--white);
  flex-shrink: 0;
}
.reviewer strong { display: block; font-size: 0.9rem; color: var(--white); }
.reviewer small { font-size: 0.78rem; color: var(--text-muted); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
.cta-bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cta-bg-img img { object-fit: cover; width: 100%; height: 100%; }
.cta-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(120,30,0,0.88) 0%, rgba(30,14,0,0.92) 100%);
}
.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.2;
}
.cta-content p { color: rgba(255,255,255,0.8); font-size: 1.05rem; margin-bottom: 36px; line-height: 1.7; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--dark); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 20px; }

.contact-card {
  background: var(--dark-2);
  border: 1px solid var(--dark-4);
  border-radius: var(--radius);
  padding: 24px;
  transition: var(--transition);
}
.contact-card:hover { border-color: rgba(249,115,22,0.4); transform: translateX(4px); }
.contact-icon { font-size: 1.75rem; margin-bottom: 10px; }
.contact-card h3 { font-size: 0.875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--orange); margin-bottom: 8px; }
.contact-card p { color: rgba(255,255,255,0.75); font-size: 0.9rem; line-height: 1.7; }
.contact-link { font-size: 1.1rem; font-weight: 700; color: var(--white); transition: var(--transition); }
.contact-link:hover { color: var(--orange); }
.contact-card small { display: block; color: var(--text-muted); font-size: 0.78rem; margin-top: 4px; }

/* Contact Form */
.contact-form-wrap {
  background: var(--dark-2);
  border: 1px solid var(--dark-4);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.contact-form h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 28px;
}
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--dark-3);
  border: 1px solid var(--dark-4);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  color: var(--white);
  font-size: 0.9rem;
  font-family: var(--font-sans);
  transition: var(--transition);
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  background: rgba(249,115,22,0.05);
  box-shadow: 0 0 0 3px rgba(249,115,22,0.12);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-note { text-align: center; color: var(--text-muted); font-size: 0.78rem; margin-top: 12px; }

/* Map */
.map-wrap {
  margin-top: 56px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 380px;
  border: 1px solid var(--dark-4);
}
.map-wrap iframe { width: 100%; height: 100%; border: none; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark-2);
  border-top: 1px solid var(--dark-4);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--dark-4);
}

.footer-brand { display: flex; flex-direction: column; gap: 14px; }
.logo-icon { font-size: 1.5rem; }
.footer-logo-text { font-size: 1.25rem; font-weight: 700; color: var(--white); }
.footer-logo-text strong { color: var(--orange); }
.footer-brand p { color: var(--text-muted); font-size: 0.875rem; line-height: 1.7; }
.footer-phone { display: inline-block; color: var(--orange); font-weight: 800; font-size: 1.1rem; transition: var(--transition); }
.footer-phone:hover { color: var(--amber); }

.footer-links h4 {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 18px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: var(--text-muted);
  font-size: 0.875rem;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--orange); transform: translateX(4px); display: inline-block; }

.footer-contact h4 {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 18px;
}
.footer-contact p { color: var(--text-muted); font-size: 0.875rem; line-height: 1.75; margin-bottom: 10px; }
.footer-contact a { color: var(--orange); font-weight: 600; }

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { color: var(--text-muted); font-size: 0.8rem; }
.footer-badges { display: flex; gap: 12px; flex-wrap: wrap; }
.footer-badge {
  background: var(--dark-3);
  border: 1px solid var(--dark-4);
  color: var(--text-muted);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* ============================================================
   FLOATING CALL BUTTON
   ============================================================ */
.float-cta {
  position: fixed;
  bottom: 32px; right: 32px;
  z-index: 900;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--gradient-main);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: var(--shadow-orange);
  transition: var(--transition);
  animation: pulse-ring 2s ease infinite;
  text-decoration: none;
}
.float-cta:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(249,115,22,0.6);
}
.float-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(249,115,22,0.4);
  animation: pulse-ring 2s ease infinite;
}

/* ============================================================
   TOAST NOTIFICATION
   ============================================================ */
.toast {
  position: fixed;
  bottom: 32px; left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--dark-2);
  border: 1px solid var(--green);
  color: var(--white);
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.875rem;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-us-grid { grid-template-columns: 1fr; gap: 48px; }
  .img-main { height: 360px; }
  .img-card-float { right: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { 
    flex-direction: column; 
    align-items: center;
    gap: 24px;
  }
  .process-connector { 
    width: 2px; 
    height: 40px; 
    margin-top: 0; 
    background: linear-gradient(180deg, var(--orange), var(--amber));
  }
  .process-connector::after {
    content: '▼';
    right: 50%;
    top: auto;
    bottom: -12px;
    transform: translateX(50%);
  }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }

  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 100vh;
    background: rgba(10,5,0,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    z-index: -1;
    padding: 80px 24px 40px;
  }
  .nav-links.open { display: flex; }
  .nav-link { font-size: 1.25rem; padding: 14px 24px; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }

  .services-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .hero-stats { gap: 16px; padding: 20px; }
  .stat-divider { display: none; }

  .trust-items { gap: 20px; justify-content: flex-start; padding: 0 8px; }

  .float-cta { bottom: 20px; right: 20px; width: 52px; height: 52px; font-size: 1.25rem; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .hero-content { padding-bottom: 80px; }
}
