:root {
  --bg: #08080a;
  --bg-alt: #101013;
  --card: #141417;
  --red: #b3211a;
  --red-bright: #e5372a;
  --orange: #eb9a2e;
  --orange-soft: rgba(235, 154, 46, 0.12);
  --white: #f5f5f5;
  --text-light: #a4a9b1;
  --border: rgba(255,255,255,0.08);
  --radius: 14px;
  --max-width: 1080px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--white);
  background: var(--bg);
  line-height: 1.65;
}

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

h1, h2, h3 { margin: 0 0 12px 0; line-height: 1.2; }
p { margin: 0 0 12px 0; color: var(--text-light); }

.title-font { font-family: "Oswald", Georgia, sans-serif; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.section h2, .logo, h3 { font-family: "Oswald", Georgia, sans-serif; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  border: none;
  cursor: pointer;
}
.btn-primary { background: linear-gradient(135deg, var(--red-bright), var(--red)); color: var(--white); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(229, 55, 42, 0.45); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.25);
}
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-3px); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 8, 10, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.logo { color: var(--red-bright); font-weight: 700; font-size: 1.1rem; font-family: Georgia, "Times New Roman", serif; display: flex; align-items: center; gap: 8px; text-decoration: none; }
.main-nav { display: flex; gap: 26px; align-items: center; }
.main-nav a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  transition: color 0.15s ease;
}
.main-nav a:hover, .main-nav a.active { color: var(--orange); }
.main-nav .nav-call {
  background: var(--orange-soft);
  color: var(--orange);
  padding: 8px 16px;
  border-radius: 999px;
}
.main-nav .nav-call:hover { background: var(--orange); color: #1a1200; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span { display: block; height: 2px; background: var(--white); border-radius: 2px; }

/* Hero */
.hero { position: relative; overflow: hidden; padding: 96px 0 92px; text-align: center; }
.hero::before {
  content: "";
  position: absolute;
  inset: -25%;
  background:
    radial-gradient(circle at 12% 25%, rgba(30,90,200,0.4), transparent 42%),
    radial-gradient(circle at 88% 15%, rgba(20,160,120,0.32), transparent 42%),
    radial-gradient(circle at 50% 90%, rgba(20,100,160,0.28), transparent 50%);
  filter: blur(50px);
  z-index: 0;
  animation: drift 18s ease-in-out infinite alternate;
}
@keyframes drift {
  from { transform: translate(0,0) scale(1); }
  to { transform: translate(2%, -2%) scale(1.05); }
}
.hero-inner { position: relative; z-index: 1; }
.hero.hero-sm { padding: 64px 0 76px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 0.88rem;
  color: var(--white);
  margin-bottom: 28px;
}
.hero-badge .stars-mini { color: var(--orange); letter-spacing: 1px; }

.hero h1 { font-size: 2.7rem; color: var(--red-bright); text-shadow: 0 2px 24px rgba(229,55,42,0.35); }
.hero .subtitle { font-size: 1.3rem; color: var(--white); font-weight: 600; margin-bottom: 26px; }

.hero-services { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-bottom: 30px; }
.hero-services span {
  color: var(--orange);
  font-weight: 700;
  font-size: 0.95rem;
  background: var(--orange-soft);
  border: 1px solid rgba(235,154,46,0.3);
  padding: 8px 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-meta { color: var(--text-light); margin-bottom: 30px; }

.hero-ctas { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-bottom: 40px; }

.trust-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.trust-bar div {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-light);
  font-size: 0.9rem;
  font-weight: 600;
}
.trust-bar div span.ic { font-size: 1.1rem; }

.wave-divider { display: block; width: 100%; height: 48px; position: absolute; bottom: -1px; left: 0; z-index: 2; }
.wave-divider path { fill: var(--bg); }

.phone-numbers { font-size: 1.25rem; font-weight: 700; color: var(--red-bright); letter-spacing: 0.5px; }
.phone-numbers a { color: inherit; text-decoration: none; }
.phone-numbers a:hover { color: var(--orange); }

/* Sections */
.section { padding: 80px 0; }
.section-alt { background: var(--bg-alt); }
.eyebrow {
  text-align: center;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.section h2 { text-align: center; color: var(--white); font-size: 1.9rem; margin-bottom: 40px; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(235,154,46,0.4);
  box-shadow: 0 16px 32px rgba(0,0,0,0.35);
}
.card-icon {
  width: 64px; height: 64px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 16px;
  background: var(--orange-soft);
  border-radius: 50%;
  transition: transform 0.25s ease;
}
.card:hover .card-icon { transform: scale(1.12) rotate(-4deg); }
.card h3 { color: var(--orange); font-size: 1.12rem; }
.card p em { color: #7d828a; font-size: 0.85rem; font-style: normal; }

.testimonial {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  text-align: left;
  position: relative;
}
.testimonial::before {
  content: "\201C";
  font-family: Georgia, serif;
  font-size: 3.5rem;
  color: rgba(235,154,46,0.25);
  position: absolute;
  top: 8px; left: 18px;
  line-height: 1;
}
.testimonial p { color: var(--white); font-style: italic; position: relative; z-index: 1; }
.testimonial .t-stars { color: var(--orange); letter-spacing: 2px; margin-bottom: 8px; display: block; }
.testimonial span.author { display: block; margin-top: 10px; font-size: 0.85rem; color: var(--text-light); }

.google-rating { text-align: center; }
.google-rating .stars { color: var(--orange); font-size: 2.2rem; letter-spacing: 5px; margin-bottom: 8px; }
.google-rating .rating-score { font-size: 1.3rem; color: var(--white); font-weight: 700; margin-bottom: 36px; }
.google-rating .rating-score span { color: var(--text-light); font-weight: 400; font-size: 1rem; }
.rating-cta { text-align: center; margin-top: 32px; }
.rating-cta a {
  color: var(--orange);
  text-decoration: none;
  font-weight: 700;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s ease;
}
.rating-cta a:hover { border-color: var(--orange); }

.about-inner { max-width: 700px; text-align: center; margin: 0 auto; }
.about-inner p { color: var(--white); font-size: 1.06rem; }

.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-item {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #16161a, #1c1c21);
  border: 1px dashed rgba(255,255,255,0.15);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  justify-content: center;
  color: #6d7178;
  font-size: 0.85rem;
  font-weight: 500;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.gallery-item:hover { border-color: var(--orange); color: var(--orange); }
.gallery-item .cam { font-size: 1.6rem; opacity: 0.7; }

.contact-inner { text-align: center; max-width: 560px; margin: 0 auto; }
.contact-inner .phone-numbers { display: block; margin: 22px 0; font-size: 1.6rem; }
.contact-divider { display: flex; align-items: center; gap: 14px; margin: 24px 0; color: var(--text-light); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; }
.contact-divider::before, .contact-divider::after { content: ""; flex: 1; height: 1px; background: var(--border); }
.contact-location { color: var(--white); font-weight: 600; margin-top: 10px; }

/* Contact page specific */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: start;
}
.contact-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.contact-card:hover { transform: translateY(-3px); border-color: rgba(235,154,46,0.4); }
.contact-card .cc-icon {
  width: 48px; height: 48px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--orange-soft);
  border-radius: 50%;
  font-size: 1.3rem;
}
.contact-card .cc-label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-light); margin-bottom: 2px; }
.contact-card .cc-value { color: var(--white); font-weight: 700; font-size: 1.05rem; }

.form-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}
.form-card h3 { color: var(--white); margin-bottom: 4px; }
.form-card .form-sub { margin-bottom: 22px; }
.form-group { margin-bottom: 18px; text-align: left; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text-light); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--white);
  font-size: 0.95rem;
  font-family: inherit;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit { width: 100%; justify-content: center; }
.form-note { font-size: 0.8rem; color: #7d828a; text-align: center; margin-top: 14px; margin-bottom: 0; }

.map-wrap {
  margin-top: 32px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  filter: grayscale(0.3) invert(0.92) contrast(0.9);
}
.map-wrap iframe { display: block; width: 100%; height: 280px; border: 0; }

.site-footer {
  background: #030304;
  color: #6a6e75;
  text-align: center;
  padding: 26px 0;
  font-size: 0.85rem;
  border-top: 1px solid var(--border);
}

.floating-call {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 200;
  background: linear-gradient(135deg, var(--red-bright), var(--red));
  color: var(--white);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(229,55,42,0.5);
}

@media (max-width: 820px) {
  .cards { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .main-nav {
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: var(--bg);
    flex-direction: column;
    align-items: center;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
    border-bottom: 1px solid var(--border);
  }
  .main-nav.open { max-height: 420px; padding: 14px 0; }
  .main-nav a { padding: 10px 0; }
  .main-nav .nav-call { margin-top: 6px; }
  .nav-toggle { display: flex; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .hero { padding: 72px 0 60px; }
  .hero h1 { font-size: 1.9rem; }
  .phone-numbers { font-size: 1.05rem; }
  .floating-call { display: flex; }
}
