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

:root {
  --yellow: #fbbf24;
  --yellow-dark: #f59e0b;
  --blue: #1d4ed8;
  --blue-mid: #2563eb;
  --blue-light: #3b82f6;
  --dark: #0f172a;
  --dark-2: #1e293b;
  --dark-3: #334155;
  --mid: #64748b;
  --light: #f1f5f9;
  --white: #ffffff;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.12);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.2);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--white);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

/* ========== EMERGENCY BAR ========== */
.emergency-bar {
  background: #dc2626;
  color: var(--white);
  text-align: center;
  padding: 10px 20px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.emergency-bar a {
  color: var(--yellow);
  font-weight: 700;
  font-size: 1rem;
}

.pulse-dot {
  width: 8px; height: 8px;
  background: var(--yellow);
  border-radius: 50%;
  display: inline-block;
  animation: pulse 1.5s infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

/* ========== NAVBAR ========== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 23, 42, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: all 0.3s;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}

.nav-logo img {
  height: 95px;
  width: auto;
  filter: drop-shadow(0 0 8px rgba(251,191,36,0.5));
  transition: filter 0.3s;
  mix-blend-mode: normal;
}

.nav-logo img:hover {
  filter: drop-shadow(0 0 16px rgba(251,191,36,0.9));
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  font-weight: 800;
  font-size: 1.05rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.nav-logo-text small {
  font-size: 0.75rem;
  font-weight: 600;
  color: #fbbf24;
  letter-spacing: 0.1em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.2s;
}

.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.08); }

.nav-cta {
  background: var(--yellow) !important;
  color: var(--dark) !important;
  font-weight: 700 !important;
  padding: 10px 20px !important;
}

.nav-cta:hover { background: var(--yellow-dark) !important; transform: translateY(-1px); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.25s;
  border: 2px solid transparent;
  text-decoration: none;
}

.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-primary {
  background: var(--yellow);
  color: var(--dark);
}
.btn-primary:hover { background: var(--yellow-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(251,191,36,0.35); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

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

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(135deg, rgba(15,23,42,0.96) 0%, rgba(29,78,216,0.85) 50%, rgba(15,23,42,0.96) 100%),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60"><rect width="60" height="60" fill="%230f172a"/><path d="M0 30h60M30 0v60" stroke="%231e293b" stroke-width="1"/></svg>');
  overflow: hidden;
  padding: 120px 24px 100px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 30% 40%, rgba(29,78,216,0.3) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 70% 60%, rgba(251,191,36,0.08) 0%, transparent 50%);
  pointer-events: none;
}

.hero-overlay { display: none; }

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

/* Hero Logo Glow */
.hero-logo-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 32px;
  animation: logoFloat 4s ease-in-out infinite;
}

.hero-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 420px;
  height: 420px;
  background: radial-gradient(ellipse, rgba(245,158,11,0.25) 0%, rgba(251,191,36,0.1) 40%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: glowPulse 3s ease-in-out infinite;
}

.hero-logo {
  position: relative;
  z-index: 2;
  width: clamp(340px, 46vw, 580px);
  height: auto;
  filter:
    drop-shadow(0 0 8px rgba(251,191,36,0.5))
    drop-shadow(0 0 20px rgba(245,158,11,0.3));
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.85; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.08); }
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0); filter: drop-shadow(0 0 18px rgba(251,191,36,0.9)) drop-shadow(0 0 40px rgba(245,158,11,0.65)) drop-shadow(0 0 80px rgba(245,158,11,0.35)); }
  50% { transform: translateY(-8px); filter: drop-shadow(0 0 24px rgba(251,191,36,1)) drop-shadow(0 0 60px rgba(245,158,11,0.8)) drop-shadow(0 0 100px rgba(245,158,11,0.45)); }
}

.hero-badge {
  display: inline-block;
  background: rgba(251,191,36,0.15);
  border: 1px solid rgba(251,191,36,0.4);
  color: var(--yellow);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.hero h1 .highlight { color: var(--yellow); }

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-sub strong { color: var(--white); }

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat strong {
  font-family: 'Oswald', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--yellow);
  line-height: 1;
}

.stat span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid rgba(255,255,255,0.3);
  border-bottom: 2px solid rgba(255,255,255,0.3);
  transform: rotate(45deg);
  animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.4; }
  50% { transform: rotate(45deg) translateY(4px); opacity: 0.8; }
}

/* ========== TRUST BAR ========== */
.trust-bar {
  background: var(--dark-2);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 20px 24px;
}

.trust-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
}

.trust-item svg { width: 16px; height: 16px; color: var(--yellow); flex-shrink: 0; }

/* ========== SECTION HEADERS ========== */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header.light h2,
.section-header.light p { color: var(--white); }

.section-header.light p { color: rgba(255,255,255,0.7); }

.section-tag {
  display: inline-block;
  background: rgba(29,78,216,0.1);
  color: var(--blue-light);
  border: 1px solid rgba(59,130,246,0.25);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-header h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}

.section-header p {
  color: var(--mid);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

/* ========== SERVICES ========== */
.services {
  padding: 100px 0;
  background: var(--dark);
}

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid rgba(0,0,0,0.06);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  opacity: 0;
  transition: opacity 0.3s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(59,130,246,0.2);
}

.service-card:hover::before { opacity: 1; }

.service-card.featured {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  border-color: rgba(251,191,36,0.2);
}

.service-card.featured::before {
  background: linear-gradient(90deg, var(--yellow), var(--yellow-dark));
  opacity: 1;
}

.service-card.featured h3 { color: var(--white); }
.service-card.featured p { color: rgba(255,255,255,0.7); }

.service-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
}

.service-icon svg { width: 56px; height: 56px; }

.service-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
  color: var(--dark);
}

.service-card p {
  color: var(--mid);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 16px;
}

.service-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.service-tags span {
  background: rgba(59,130,246,0.08);
  color: var(--blue-light);
  border: 1px solid rgba(59,130,246,0.2);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
}

.service-card.featured .service-tags span {
  background: rgba(251,191,36,0.1);
  color: var(--yellow);
  border-color: rgba(251,191,36,0.25);
}

/* ========== GALLERY ========== */
.gallery {
  padding: 100px 0;
  background: var(--dark);
}

.gallery .section-header { margin-bottom: 56px; }
.gallery .section-tag { background: rgba(251,191,36,0.1); color: var(--yellow); border-color: rgba(251,191,36,0.2); }
.gallery .section-header h2 { color: var(--white); }
.gallery .section-header p { color: rgba(255,255,255,0.55); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 12px;
}

/* Make items 1, 6 span 2 columns for visual interest */
.gallery-item:nth-child(1),
.gallery-item:nth-child(6) {
  grid-column: span 2;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  aspect-ratio: 1 / 1;
  background: var(--dark-2);
}

.gallery-item:nth-child(1),
.gallery-item:nth-child(6) {
  aspect-ratio: 2 / 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
  display: block;
}

.gallery-item:hover img { transform: scale(1.06); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay span {
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  background: rgba(251,191,36,0.85);
  color: var(--dark);
  padding: 4px 10px;
  border-radius: 6px;
}

/* LIGHTBOX */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.92);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  cursor: zoom-out;
}

.lightbox.open { display: flex; }

.lightbox img {
  max-width: min(90vw, 900px);
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgba(0,0,0,0.7);
  cursor: default;
}

#lightboxCaption {
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.lightbox-close {
  position: absolute;
  top: 20px; right: 24px;
  background: rgba(255,255,255,0.1);
  border: none;
  color: var(--white);
  font-size: 1.4rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: none;
  color: var(--white);
  font-size: 2.5rem;
  width: 52px; height: 52px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
  line-height: 1;
}
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(251,191,36,0.3); }

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(6) {
    grid-column: span 2;
    aspect-ratio: 16 / 9;
  }
  .gallery-item { aspect-ratio: 1 / 1; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item,
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(6) {
    grid-column: span 1;
    aspect-ratio: 4 / 3;
  }
}

/* ========== WHY US ========== */
.why-us {
  padding: 60px 0;
  background: var(--dark);
}

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

.why-full {
  text-align: center;
}

.why-full h2 { color: var(--white); }
.why-full p { color: rgba(255,255,255,0.7); }

.why-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 48px;
  text-align: left;
}

.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.why-card strong {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
}

.why-card span {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  line-height: 1.5;
}

.why-image {
  position: relative;
  margin-top: 0;
}

.why-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.why-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--yellow);
  color: var(--dark);
  border-radius: var(--radius);
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow);
}

.badge-number {
  font-family: 'Oswald', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.badge-text {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.3;
  margin-top: 4px;
}

.why-content .section-tag { display: inline-block; margin-bottom: 16px; }

.why-content h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
  color: var(--dark);
}

.why-intro {
  color: var(--mid);
  font-size: 1.05rem;
  margin-bottom: 36px;
  line-height: 1.7;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.check-icon {
  width: 28px;
  height: 28px;
  background: rgba(29,78,216,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.check-icon svg { width: 14px; height: 14px; color: var(--blue-mid); }

.why-list strong {
  display: block;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 3px;
}

.why-list span {
  font-size: 0.9rem;
  color: var(--mid);
}

/* ========== CLIENTS ========== */
.clients {
  padding: 80px 0;
  background: var(--dark);
}

.clients .section-header { margin-bottom: 48px; }
.clients .section-tag { background: rgba(251,191,36,0.1); color: var(--yellow); border-color: rgba(251,191,36,0.2); }
.clients .section-header h2 { color: var(--white); }

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
}

.client-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: all 0.3s;
}

.client-card:hover {
  border-color: rgba(251,191,36,0.25);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.client-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.client-card h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 8px;
}

.client-card p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

/* ========== PRICING ========== */
.pricing {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--dark) 0%, #0d1f42 100%);
  position: relative;
}

.pricing::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(29,78,216,0.2) 0%, transparent 60%);
  pointer-events: none;
}

.pricing .container { position: relative; z-index: 1; }

.pricing-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--dark-2);
  min-width: 560px;
}

.pricing-table thead tr {
  background: linear-gradient(90deg, var(--blue), var(--blue-mid));
}

.pricing-table th {
  padding: 18px 28px;
  text-align: left;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
}

.pricing-table td {
  padding: 20px 28px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: var(--white);
  vertical-align: top;
}

.pricing-table td strong {
  display: block;
  font-weight: 600;
  font-size: 0.97rem;
  margin-bottom: 3px;
}

.pricing-table td span {
  display: block;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}

.pricing-table td:last-child strong { color: var(--yellow); }

.pricing-table tbody tr:last-child td { border-bottom: none; }

.pricing-table tbody tr:hover { background: rgba(255,255,255,0.03); }

.highlight-row { background: rgba(251,191,36,0.05) !important; }
.highlight-row td:first-child { border-left: 3px solid var(--yellow); }
.hire-row td { background: rgba(251,191,36,0.07); color: #fbbf24; font-size: 1rem; font-weight: 600; text-align: center; border-top: 2px solid rgba(251,191,36,0.3); font-style: normal; padding: 14px 24px; }

.pricing-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(59,130,246,0.1);
  border: 1px solid rgba(59,130,246,0.2);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-top: 32px;
  color: rgba(255,255,255,0.8);
  font-size: 0.92rem;
}

.pricing-note svg { width: 20px; height: 20px; color: var(--blue-light); flex-shrink: 0; margin-top: 2px; }
.pricing-note a { color: var(--yellow); font-weight: 600; }

/* ========== AREAS ========== */
.areas {
  padding: 100px 0;
  background: var(--dark);
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
}

.area-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 16px 20px;
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--white);
  transition: all 0.25s;
  position: relative;
}

.area-item::before {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  width: 6px; height: 6px;
  background: var(--blue-light);
  border-radius: 50%;
  transform: translate(-50%, calc(-50% - 16px));
  opacity: 0;
  transition: opacity 0.25s;
}

.area-item:hover {
  border-color: var(--blue-light);
  color: var(--blue-mid);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

/* ========== CONTACT ========== */
.contact {
  padding: 100px 0;
  background: var(--dark);
}

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

.contact-info .section-tag { display: inline-block; margin-bottom: 16px; }

.contact-info h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 16px;
}

.contact-info > p {
  color: var(--mid);
  font-size: 1.05rem;
  margin-bottom: 40px;
  line-height: 1.7;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.05);
  transition: all 0.25s;
}

.contact-method:hover {
  border-color: var(--yellow);
  background: rgba(251,191,36,0.07);
  transform: translateX(4px);
}

.method-icon {
  width: 52px; height: 52px;
  background: rgba(251,191,36,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.method-icon svg { width: 24px; height: 24px; color: var(--yellow); }
.method-icon.phone-icon { background: rgba(251,191,36,0.15); }
.method-icon.phone-icon svg { color: var(--yellow); }

.contact-method strong {
  display: block;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 3px;
}

.contact-method span {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
}

.emergency-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, rgba(220,38,38,0.06), rgba(220,38,38,0.02));
  border: 1px solid rgba(220,38,38,0.2);
  border-radius: var(--radius);
  padding: 20px 24px;
}

.emergency-pulse {
  width: 14px; height: 14px;
  background: #dc2626;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 1.5s infinite;
  box-shadow: 0 0 0 0 rgba(220,38,38,0.4);
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(220,38,38,0.5); }
  70% { box-shadow: 0 0 0 10px rgba(220,38,38,0); }
  100% { box-shadow: 0 0 0 0 rgba(220,38,38,0); }
}

.emergency-cta strong {
  display: block;
  font-weight: 700;
  color: #dc2626;
  margin-bottom: 4px;
}

.emergency-cta span { font-size: 0.875rem; color: var(--mid); }

/* FORM */
.contact-form-wrap {
  background: var(--dark-2);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid rgba(255,255,255,0.07);
}

.contact-form h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 28px;
}

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

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--white);
  background: rgba(255,255,255,0.06);
  transition: border-color 0.2s;
  outline: none;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-mid);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}

.form-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--mid);
  margin-top: 12px;
}

.form-note a { color: var(--blue-mid); font-weight: 600; }

/* ========== FOOTER ========== */
.footer {
  background: var(--dark);
  padding: 80px 0 0;
  color: rgba(255,255,255,0.7);
}

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

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

.footer-brand img {
  height: 90px;
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  font-weight: 800;
  font-size: 1.2rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.footer-logo-text small {
  font-size: 0.85rem;
  font-weight: 600;
  color: #fbbf24;
  letter-spacing: 0.1em;
}

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.5);
}

.footer-phone {
  display: inline-block;
  color: var(--yellow);
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.footer-links h4,
.footer-contact h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links li,
.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--yellow); }

.footer-contact p {
  font-size: 0.875rem;
  margin-bottom: 8px;
}

.footer-contact a { color: var(--yellow); }

.footer-bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

/* ========== STICKY CALL ========== */
.sticky-call {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  display: none;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  color: var(--dark);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 14px 22px;
  border-radius: 100px;
  box-shadow: 0 8px 32px rgba(251,191,36,0.45);
  animation: floatIn 0.5s ease forwards;
  transition: transform 0.2s, box-shadow 0.2s;
}

.sticky-call svg { width: 18px; height: 18px; }

.sticky-call:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(251,191,36,0.55);
}

@keyframes floatIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ========== FORM SUCCESS ========== */
.form-success {
  text-align: center;
  padding: 40px 20px;
}

.form-success .success-icon {
  width: 64px; height: 64px;
  background: rgba(34,197,94,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.form-success .success-icon svg { width: 32px; height: 32px; color: #22c55e; }
.form-success h3 { font-family: 'Oswald', sans-serif; font-size: 1.5rem; margin-bottom: 12px; color: var(--dark); }
.form-success p { color: var(--mid); }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-image { max-width: 100%; }
  .why-badge { bottom: -16px; right: 16px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--dark);
    flex-direction: column;
    padding: 20px;
    gap: 4px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .nav-links a { width: 100%; text-align: center; padding: 12px; }

  .hero { min-height: 80vh; }
  .hero-glow { width: 320px; height: 320px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-stats { gap: 20px; }

  .services { padding: 70px 0; }
  .services-grid { grid-template-columns: 1fr; }

  .why-us { padding: 70px 0; }
  .clients-grid { grid-template-columns: repeat(2, 1fr); }

  .pricing { padding: 70px 0; }
  .contact { padding: 70px 0; }

  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 24px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  .sticky-call { display: flex; }

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

  .trust-container { gap: 20px; }
  .trust-item { font-size: 0.8rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero { padding: 100px 16px 80px; }
  .hero h1 { font-size: 2.2rem; }
  .section-header { margin-bottom: 40px; }
  .clients-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr; }
}
