/* ===== VARIABLES & RESET ===== */
:root {
  /* Dark palette (hero / cta / footer) */
  --dark: #0b1120;
  --dark-light: #0f1729;
  --dark-card: #141e36;

  /* Light palette (main content) */
  --light: #ffffff;
  --light-alt: #f6f8fc;
  --light-card: #ffffff;
  --light-border: #e6eaf2;

  /* Text */
  --text: #0f172a;
  --text-soft: #475569;
  --text-muted: #64748b;

  /* Brand */
  --red: #e63946;
  --red-dark: #c1121f;
  --red-glow: rgba(230, 57, 70, 0.25);
  --red-subtle: rgba(230, 57, 70, 0.08);
  --blue: #1d3557;
  --blue-light: #264b7a;
  --white: #ffffff;
  --gray: #94a3b8;
  --gray-light: #cbd5e1;
  --gold: #fbbf24;

  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
  --shadow: 0 8px 28px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 25px 60px rgba(15, 23, 42, 0.12);
  --shadow-dark: 0 25px 60px rgba(0,0,0,0.4);
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.2s ease;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--light);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul { list-style: none; }

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

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.4rem); }

.section-title {
  text-align: center;
  margin-bottom: 64px;
}

.section-title .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red-subtle);
  border: 1px solid rgba(230, 57, 70, 0.2);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--red);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.section-title h2 {
  margin-bottom: 16px;
}

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

/* Dark sections override the section-title text */
.section-dark .section-title p { color: var(--gray); }
.section-dark { background: var(--dark); color: var(--white); }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }

.highlight { color: var(--red); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 34px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
  letter-spacing: 0.01em;
}

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

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 24px var(--red-glow);
}

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(230, 57, 70, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.05);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--red);
  font-weight: 700;
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.25);
}

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

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

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(11, 17, 32, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 12px 0;
  box-shadow: 0 1px 0 rgba(255,255,255,0.04), 0 8px 40px rgba(0,0,0,0.3);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.nav-logo img {
  height: 44px;
  width: auto;
}

.nav-logo span { color: var(--red); }

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

.nav-links a {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--gray);
  position: relative;
  letter-spacing: 0.01em;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: var(--transition);
  border-radius: 1px;
}

.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 16px var(--red-glow);
  transition: var(--transition);
  flex-shrink: 0;
}

.nav-cta:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px var(--red-glow);
}

.nav-cta svg { width: 16px; height: 16px; }

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

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 2px;
  transform-origin: center;
}

.nav-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

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

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(11, 17, 32, 0.92) 0%,
    rgba(11, 17, 32, 0.75) 40%,
    rgba(11, 17, 32, 0.6) 100%
  );
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero-content { max-width: 600px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(230, 57, 70, 0.12);
  border: 1px solid rgba(230, 57, 70, 0.25);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.82rem;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}

.hero-badge .pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  animation: dot-pulse 2s ease-in-out infinite;
  box-shadow: 0 0 8px var(--red);
}

@keyframes dot-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--red); }
  50% { opacity: 0.4; box-shadow: 0 0 2px var(--red); }
}

.hero, .hero h1, .hero h2, .hero h3 { color: var(--white); }
.hero h1 { margin-bottom: 20px; }

.hero-desc {
  color: var(--gray-light);
  font-size: 1.1rem;
  margin-bottom: 36px;
  max-width: 480px;
  line-height: 1.75;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-trust {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.trust-item .trust-icon {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-item .trust-icon svg { width: 20px; height: 20px; color: var(--red); }

.trust-item span {
  font-size: 0.85rem;
  color: var(--gray);
  font-weight: 500;
}

.trust-item strong {
  display: block;
  font-size: 0.95rem;
  color: var(--white);
}

/* Hero visual */
.hero-visual {
  position: relative;
}

.hero-card-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow-lg);
  position: relative;
}

.hero-card-main img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.hero-card-main .overlay-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 28px 24px;
  background: linear-gradient(to top, rgba(11,17,32,0.95) 0%, transparent 100%);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.stat-item { text-align: center; }

.stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  display: block;
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--gray);
  margin-top: 4px;
}

.hero-floating {
  position: absolute;
  top: -16px;
  right: -16px;
  background: var(--red);
  color: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 8px 30px var(--red-glow);
  animation: float 4s ease-in-out infinite;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.hero-floating svg { width: 18px; height: 18px; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ===== SECTIONS BASE ===== */
section { padding: 100px 0; }

.section-alt { background: var(--light-alt); }

/* ===== VALUES ===== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-card {
  text-align: center;
  padding: 44px 28px 40px;
  background: var(--light-card);
  border: 1px solid var(--light-border);
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

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

.value-card:hover {
  transform: translateY(-6px);
  border-color: rgba(230, 57, 70, 0.2);
  box-shadow: var(--shadow-lg);
}

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

.value-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 22px;
  background: var(--red-subtle);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-icon svg { width: 30px; height: 30px; color: var(--red); }

.value-card h3 { margin-bottom: 10px; color: var(--text); }

.value-card p {
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* ===== SERVICES WITH IMAGES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--light-card);
  border: 1px solid var(--light-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(230, 57, 70, 0.2);
  box-shadow: var(--shadow-lg);
}

.service-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card-img img {
  transform: scale(1.08);
}

.service-card-img .service-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--red);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.service-card-body {
  padding: 28px 24px 32px;
}

.service-card-body h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
  color: var(--text);
}

.service-card-body > p {
  color: var(--text-soft);
  font-size: 0.9rem;
  margin-bottom: 20px;
  line-height: 1.65;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-soft);
  font-size: 0.88rem;
  line-height: 1.4;
}

.service-list li svg {
  width: 16px;
  height: 16px;
  color: var(--red);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ===== ABOUT / DESCRIPTION ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.about-image .experience-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--red);
  color: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius);
  box-shadow: 0 8px 24px var(--red-glow);
}

.experience-badge .number {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.experience-badge .label {
  font-size: 0.8rem;
  opacity: 0.9;
}

.about-content .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red-subtle);
  border: 1px solid rgba(230, 57, 70, 0.2);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--red);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.about-content h2 {
  margin-bottom: 20px;
  color: var(--text);
}

.about-content > p {
  color: var(--text-soft);
  margin-bottom: 16px;
  font-size: 0.98rem;
  line-height: 1.75;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--light-card);
  border: 1px solid var(--light-border);
  border-radius: var(--radius-sm);
  color: var(--text);
  box-shadow: var(--shadow-sm);
}

.about-feature svg {
  width: 20px;
  height: 20px;
  color: var(--red);
  flex-shrink: 0;
}

.about-feature span {
  font-size: 0.9rem;
  font-weight: 500;
}

/* ===== GALLERY / REALISATIONS ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

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

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

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

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,17,32,0.7) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
}

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

.gallery-item span {
  position: absolute;
  bottom: 16px;
  left: 16px;
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 1;
  opacity: 0;
  transform: translateY(8px);
  transition: var(--transition);
}

.gallery-item:hover span {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item.tall { grid-row: span 2; aspect-ratio: auto; }

/* ===== ZONES ===== */
.zones-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.zone-card {
  background: var(--light-card);
  border: 1px solid var(--light-border);
  border-radius: var(--radius);
  padding: 32px 24px 28px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.zone-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.zone-card:hover { transform: translateY(-6px); border-color: rgba(230,57,70,0.2); box-shadow: var(--shadow-lg); }
.zone-card:hover::after { transform: scaleX(1); }

.zone-card svg {
  width: 32px;
  height: 32px;
  color: var(--red);
  margin-bottom: 16px;
}

.zone-card h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  color: var(--text);
}

.zone-card p {
  color: var(--text-soft);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.zone-card .zone-link {
  color: var(--red);
  font-weight: 600;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.zone-card .zone-link svg { width: 14px; height: 14px; margin: 0; }
.zone-card .zone-link:hover { gap: 8px; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--light-card);
  border: 1px solid var(--light-border);
  border-radius: var(--radius);
  padding: 36px 32px;
  position: relative;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.testimonial-card:hover {
  border-color: rgba(230,57,70,0.2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.95rem;
  margin-bottom: 16px;
  letter-spacing: 3px;
}

.testimonial-card blockquote {
  color: var(--text-soft);
  font-size: 0.95rem;
  font-style: italic;
  margin-bottom: 24px;
  line-height: 1.75;
  position: relative;
  padding-left: 20px;
  border-left: 3px solid rgba(230,57,70,0.4);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--red), var(--blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
  color: var(--white);
}

.testimonial-author strong {
  display: block;
  font-size: 0.92rem;
  color: var(--text);
}

.testimonial-author span {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* ===== CTA SECTION ===== */
.cta-section { padding: 80px 0; }

.cta-box {
  border-radius: var(--radius-lg);
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.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(135deg, rgba(230,57,70,0.92) 0%, rgba(193,18,31,0.92) 100%);
}

.cta-box h2, .cta-box p, .cta-buttons {
  position: relative;
  z-index: 1;
}

.cta-box h2 { margin-bottom: 14px; }

.cta-box p {
  font-size: 1.1rem;
  opacity: 0.92;
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 24px;
  background: var(--light-card);
  border: 1px solid var(--light-border);
  border-radius: var(--radius);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.contact-item:hover { border-color: rgba(230,57,70,0.25); box-shadow: var(--shadow); }

.contact-item .icon-box {
  width: 48px;
  height: 48px;
  background: var(--red-subtle);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item .icon-box svg { width: 22px; height: 22px; color: var(--red); }

.contact-item h4 {
  font-size: 0.92rem;
  margin-bottom: 3px;
  font-weight: 600;
  color: var(--text);
}

.contact-item p { color: var(--text-soft); font-size: 0.9rem; }

.contact-item a { color: var(--red); font-weight: 600; }
.contact-item a:hover { text-decoration: underline; }

.contact-form-wrapper {
  background: var(--light-card);
  border: 1px solid var(--light-border);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-soft);
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 13px 16px;
  background: var(--light-alt);
  border: 1px solid var(--light-border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 0.95rem;
  font-family: inherit;
  transition: var(--transition);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #94a3b8;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px var(--red-glow);
  background: var(--white);
}

.form-group select option { background: var(--white); color: var(--text); }

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

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

/* ===== MAP ===== */
.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--light-border);
  margin-top: 40px;
  height: 320px;
  box-shadow: var(--shadow-sm);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: var(--white);
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 64px 0 28px;
}

.footer .nav-logo { color: var(--white); }

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand p {
  color: var(--gray);
  margin: 16px 0;
  font-size: 0.9rem;
  max-width: 280px;
  line-height: 1.65;
}

.footer h4 {
  font-size: 0.95rem;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}

.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--red);
  border-radius: 1px;
}

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

.footer-links a {
  color: var(--gray);
  font-size: 0.88rem;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--red);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.04);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p, .footer-bottom a {
  color: var(--gray);
  font-size: 0.82rem;
}

.footer-bottom a:hover { color: var(--red); }

/* ===== FLOATING PHONE (mobile) ===== */
.floating-phone {
  display: none;
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  background: var(--red);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 32px rgba(230,57,70,0.5);
  transition: var(--transition);
}

.floating-phone svg { width: 20px; height: 20px; }

.floating-phone:hover {
  transform: translateX(-50%) translateY(-2px);
  box-shadow: 0 12px 40px rgba(230,57,70,0.6);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--white);
  border: 1px solid var(--light-border);
  color: var(--text);
  border-radius: 12px;
  font-size: 1rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
}

.back-to-top:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  transform: translateY(-3px);
}

.back-to-top.visible { opacity: 1; visibility: visible; }

/* ===== SCROLL ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }

/* ===== RESPONSIVE ===== */

/* Tablet landscape */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-content { max-width: 100%; }
  .hero-desc { margin: 0 auto 36px; }
  .hero-buttons { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-visual { max-width: 480px; margin: 0 auto; }
  .hero-floating { display: none; }

  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image { order: -1; }
  .about-image img { height: 360px; }

  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-item.tall { grid-row: span 1; aspect-ratio: 1; }

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

/* Tablet portrait */
@media (max-width: 768px) {
  section { padding: 72px 0; }

  .nav-links { display: none; }
  .nav-cta.desktop-only { display: none; }
  .nav-toggle { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(11, 17, 32, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 20px 24px 28px;
    gap: 4px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  }

  .nav-links.open a {
    padding: 12px 0;
    font-size: 1rem;
    color: var(--gray-light);
    border-bottom: 1px solid rgba(255,255,255,0.04);
  }

  .nav-links.open a:last-child { border-bottom: none; }
  .nav-links.open a::after { display: none; }

  .nav-links.open .mobile-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--red);
    color: var(--white);
    padding: 14px;
    border-radius: 50px;
    margin-top: 12px;
    font-weight: 700;
    border-bottom: none;
  }

  .values-grid { grid-template-columns: 1fr; gap: 16px; }
  .value-card { padding: 32px 24px; }

  .services-grid { grid-template-columns: 1fr; }
  .service-card-img { height: 200px; }

  .about-image img { height: 300px; }
  .about-features { grid-template-columns: 1fr; }

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

  .testimonials-grid { grid-template-columns: 1fr; }
  .zones-grid { grid-template-columns: 1fr 1fr; }

  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .cta-box { padding: 52px 28px; }

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

  .floating-phone { display: flex; }
  .back-to-top { bottom: 88px; }
}

/* Mobile */
@media (max-width: 480px) {
  .container { padding: 0 16px; }

  .hero { padding: 90px 0 40px; min-height: auto; }
  .hero h1 { font-size: 2rem; }
  .hero-buttons { flex-direction: column; width: 100%; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .hero-trust { flex-direction: column; gap: 16px; align-items: center; }
  .hero-card-main img { height: 260px; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .stat-number { font-size: 1.4rem; }

  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .zones-grid { grid-template-columns: 1fr; }

  .contact-form-wrapper { padding: 24px 20px; }

  .section-title { margin-bottom: 40px; }

  .cta-box { padding: 40px 20px; }
  .cta-box h2 { font-size: 1.5rem; }
}
