/* ===== Luxea Solutions - Black & Gold Theme ===== */
:root {
  --black: #0a0a0a;
  --black-soft: #121212;
  --black-card: #1a1a1a;
  --gold: #d4af37;
  --gold-light: #f0d77b;
  --gold-dark: #b8962e;
  --gold-glow: rgba(212, 175, 55, 0.35);
  --text: #f5f5f5;
  --text-muted: #a0a0a0;
  --border: rgba(212, 175, 55, 0.18);
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 20px 50px rgba(0,0,0,0.5);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--black);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* ===== Ambient background animation (more visible) ===== */
.bg-ambient {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
  animation: orbDrift ease-in-out infinite;
}

.bg-orb.o1 {
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.65) 0%, transparent 68%);
  top: -12%;
  left: -10%;
  animation-duration: 14s;
}

.bg-orb.o2 {
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(184, 150, 46, 0.55) 0%, transparent 68%);
  bottom: 0%;
  right: -8%;
  animation-duration: 18s;
  animation-delay: -3s;
}

.bg-orb.o3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(240, 215, 123, 0.5) 0%, transparent 68%);
  top: 38%;
  left: 32%;
  animation-duration: 20s;
  animation-delay: -7s;
}

.bg-orb.o4 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.4) 0%, transparent 70%);
  top: 70%;
  left: 10%;
  animation-duration: 16s;
  animation-delay: -5s;
}

@keyframes orbDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(70px, -55px) scale(1.15); }
  50% { transform: translate(-50px, 45px) scale(0.9); }
  75% { transform: translate(40px, 25px) scale(1.08); }
}

/* Floating particles across the whole page */
.bg-particles {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.bg-particle {
  position: absolute;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
  animation: bgFloat linear infinite;
}

@keyframes bgFloat {
  0% {
    transform: translateY(105vh) translateX(0) scale(0.5);
    opacity: 0;
  }
  8% { opacity: 0.85; }
  40% { opacity: 0.6; }
  85% { opacity: 0.35; }
  100% {
    transform: translateY(-8vh) translateX(50px) scale(1.15);
    opacity: 0;
  }
}

/* Keep main sections above ambient layers */
.hero,
.services,
.why-us,
.quote-section,
.contact,
.footer {
  position: relative;
  z-index: 1;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
}

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

.gold { color: var(--gold); }

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #0a0a0a;
  box-shadow: 0 8px 24px var(--gold-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px var(--gold-glow);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.btn-outline {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: #0a0a0a;
}

.btn-outline-light {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.3);
  color: #fff;
}

.btn-outline-light:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.1);
}

.btn-large {
  padding: 18px 40px;
  font-size: 1.05rem;
  width: 100%;
  max-width: 360px;
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
  width: 100%;
  margin-bottom: 12px;
}

.btn-whatsapp:hover {
  background: #1ebe57;
  transform: translateY(-2px);
}

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

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.25rem;
}

.logo-icon { font-size: 1.5rem; }
.logo-text span { color: var(--gold); }

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

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
}

.nav-links a:hover { color: var(--gold); }

.btn-nav {
  background: var(--gold) !important;
  color: #0a0a0a !important;
  padding: 10px 22px !important;
  border-radius: 50px !important;
}

.btn-nav:hover {
  background: var(--gold-light) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
  transform-origin: center;
}

body.menu-open {
  overflow: hidden;
}

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

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

.gold-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.4;
  animation: particleFloat linear infinite;
}

@keyframes particleFloat {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 0.5; }
  90% { opacity: 0.3; }
  100% { transform: translateY(-20vh) scale(1); opacity: 0; }
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

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

/* Hero Photo */
.hero-photo {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 40px var(--gold-glow);
}

.hero-photo .van-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hero-photo:hover .van-img {
  transform: scale(1.03);
}

.photo-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(10, 10, 10, 0.85);
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.badge {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--gold);
  margin-bottom: 24px;
  font-weight: 500;
}

.hero-title {
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  margin-bottom: 20px;
  letter-spacing: 0;
  line-height: 1.15;
  display: flex;
  flex-direction: column;
  gap: 0.08em;
}

.hero-title .title-line {
  display: block;
  white-space: nowrap;
  font-size: inherit;
}

/* Individual letters */
.hero-title .letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(28px);
  animation: letterIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  margin: 0;
  padding: 0;
  letter-spacing: -0.03em;
}

.hero-title .letter.space {
  width: 0.32em;
  min-width: 0.32em;
}

/* Continuous shimmer / glow while viewing */
.hero-title .letter {
  animation:
    letterIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards,
    letterGlow 3.2s ease-in-out infinite;
  animation-delay: var(--d, 0s), calc(var(--d, 0s) + 0.9s);
}

.hero-title .gold-line .letter {
  color: var(--gold);
  text-shadow: 0 0 18px rgba(212, 175, 55, 0.35);
  animation-name: letterIn, letterGlowGold;
}

@keyframes letterIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes letterGlow {
  0%, 100% {
    text-shadow: 0 0 0 transparent;
    color: #f5f5f5;
  }
  50% {
    text-shadow: 0 0 14px rgba(255, 255, 255, 0.35);
    color: #ffffff;
  }
}

@keyframes letterGlowGold {
  0%, 100% {
    text-shadow: 0 0 12px rgba(212, 175, 55, 0.25);
    color: var(--gold);
  }
  50% {
    text-shadow: 0 0 28px rgba(212, 175, 55, 0.75), 0 0 48px rgba(212, 175, 55, 0.3);
    color: var(--gold-light);
  }
}

.hero-sub {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 520px;
}

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

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ===== Services ===== */
.services {
  padding: 100px 0;
  background: transparent;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0 0 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: var(--transition);
  z-index: 2;
}

.service-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 30px var(--gold-glow);
}

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

.service-img-wrap {
  width: 100%;
  height: 180px;
  overflow: hidden;
  margin-bottom: 20px;
  background: #111;
}

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

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

.service-card h3,
.service-card > p,
.service-card .service-list,
.service-card .service-link {
  padding-left: 24px;
  padding-right: 24px;
}

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

.service-card > p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.service-list {
  margin-bottom: 24px;
}

.service-list li {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 4px 0;
}

.service-link {
  font-weight: 600;
  color: var(--gold);
  font-size: 0.95rem;
  transition: var(--transition);
}

.service-link:hover {
  color: var(--gold-light);
  letter-spacing: 0.02em;
}

/* ===== Why Us ===== */
.why-us {
  padding: 100px 0;
  background: transparent;
}

.why-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.why-content h2 {
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  margin-bottom: 16px;
}

.why-content > p {
  color: var(--text-muted);
  margin-bottom: 36px;
  font-size: 1.05rem;
}

.features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.feature h4 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.feature p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Fleet photos */
.fleet-photos {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.fleet-photo-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
  transition: var(--transition);
}

.fleet-photo-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5), 0 0 24px var(--gold-glow);
}

.fleet-photo-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.fleet-photo-card.secondary img {
  max-height: 200px;
  object-fit: cover;
  object-position: center;
  background: #111;
}

.fleet-label {
  display: block;
  padding: 12px 16px;
  font-size: 0.9rem;
  color: var(--gold);
  font-weight: 600;
  background: rgba(10,10,10,0.9);
  text-align: center;
}

/* ===== Quote Section ===== */
.quote-section {
  padding: 100px 0;
  background: transparent;
}

.quote-box {
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 48px;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: var(--shadow);
}

.quote-header {
  text-align: center;
  margin-bottom: 40px;
}

.quote-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 12px;
}

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

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

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

.form-group.full {
  grid-column: 1 / -1;
}

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

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--black);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: var(--text);
  transition: var(--transition);
  outline: none;
}

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

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

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23d4af37' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 12px;
}

.discount-note {
  font-size: 0.95rem;
  color: var(--gold);
}

/* ===== Contact ===== */
.contact {
  padding: 100px 0;
  background: transparent;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}

.contact-info h2 {
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  margin-bottom: 12px;
}

.contact-info > p {
  color: var(--text-muted);
  margin-bottom: 36px;
}

.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

a.contact-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: rgba(212, 175, 55, 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-value {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
}

.contact-cta-box {
  background: linear-gradient(145deg, #1f1a0e, #12100a);
  border: 1px solid var(--gold-dark);
  border-radius: 24px;
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 0 40px var(--gold-glow);
}

.cta-inner h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: var(--gold);
}

.cta-inner p {
  color: var(--text-muted);
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.or-divider {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: 12px 0;
  position: relative;
}

.or-divider::before,
.or-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 40%;
  height: 1px;
  background: var(--border);
}

.or-divider::before { left: 0; }
.or-divider::after { right: 0; }

/* ===== Footer ===== */
.footer {
  background: transparent;
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}

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

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 0.95rem;
  color: var(--gold);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-links a {
  display: block;
  color: var(--text-muted);
  font-size: 0.9rem;
  padding: 4px 0;
  transition: color var(--transition);
}

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

.footer-contact p {
  color: var(--text-muted);
  font-size: 0.9rem;
  padding: 4px 0;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.discount-footer {
  color: var(--gold) !important;
}

/* ===== Modal ===== */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: var(--black-card);
  border: 1px solid var(--gold);
  border-radius: 20px;
  padding: 48px 40px;
  text-align: center;
  max-width: 400px;
  transform: scale(0.9);
  transition: var(--transition);
}

.modal.active .modal-content {
  transform: scale(1);
}

.modal-icon {
  width: 64px;
  height: 64px;
  background: var(--gold);
  color: #0a0a0a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 auto 20px;
}

.modal-content h3 {
  margin-bottom: 12px;
  font-size: 1.5rem;
}

.modal-content p {
  color: var(--text-muted);
  margin-bottom: 28px;
}

/* ===== Responsive ===== */

/* Tablet */
@media (max-width: 960px) {
  .container {
    padding: 0 20px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
    margin: 0 auto;
  }

  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-photo {
    order: -1;
    max-width: 520px;
    margin: 0 auto;
  }

  .services-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
    gap: 24px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why-visual {
    order: -1;
    max-width: 520px;
    margin: 0 auto;
  }

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

  .features {
    text-align: left;
    max-width: 480px;
    margin: 0 auto;
  }

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

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

  .contact-cards {
    max-width: 480px;
    margin: 0 auto;
  }

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

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

  .navbar {
    padding: 12px 0;
  }

  .navbar.scrolled {
    padding: 10px 0;
  }

  .logo {
    font-size: 1.1rem;
  }

  /* Mobile menu */
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(300px, 85vw);
    height: 100vh;
    height: 100dvh;
    background: rgba(18, 18, 18, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    padding: 88px 28px 40px;
    gap: 8px;
    border-left: 1px solid var(--border);
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    box-shadow: -20px 0 60px rgba(0,0,0,0.5);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    font-size: 1.1rem;
    padding: 14px 0;
    width: 100%;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  }

  .nav-links .btn-nav {
    margin-top: 16px;
    text-align: center;
    width: 100%;
    padding: 14px 22px !important;
  }

  .hamburger {
    display: flex;
    z-index: 1002;
  }

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

  /* Hero mobile */
  .hero {
    min-height: auto;
    padding: 100px 0 56px;
  }

  .hero-title {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

  .hero-title .title-line {
    white-space: normal;
  }

  .hero-sub {
    font-size: 1.05rem;
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .hero-stats {
    gap: 20px;
    flex-wrap: wrap;
  }

  .stat-num {
    font-size: 1.5rem;
  }

  .hero-photo {
    max-width: 100%;
    border-radius: 16px;
  }

  /* Sections */
  .services,
  .why-us,
  .quote-section,
  .contact {
    padding: 64px 0;
  }

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

  .section-header h2 {
    font-size: 1.75rem;
  }

  .services-grid {
    max-width: 100%;
  }

  .service-img-wrap {
    height: 160px;
  }

  .service-card h3,
  .service-card > p,
  .service-card .service-list,
  .service-card .service-link {
    padding-left: 18px;
    padding-right: 18px;
  }

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

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

  .quote-box {
    padding: 28px 18px;
    border-radius: 18px;
  }

  .btn-large {
    max-width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

  .footer-brand p {
    max-width: 100%;
    margin: 0 auto;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .contact-cta-box {
    padding: 32px 24px;
  }
}

/* Small phones */
@media (max-width: 400px) {
  .hero-title {
    font-size: 1.85rem;
  }

  .hero-stats {
    gap: 16px;
  }

  .stat-num {
    font-size: 1.35rem;
  }

  .badge {
    font-size: 0.72rem;
    padding: 6px 12px;
  }

  .container {
    padding: 0 14px;
  }
}
