:root {
  --bg: #0a0a0a;
  --surface: rgba(20, 20, 25, 0.85);
  --surface-solid: #141419;
  --border: rgba(255, 255, 255, 0.08);
  --text: #e4e4e4;
  --text-muted: #888;
  --accent: #d4a853;
  --button: #aa2704;
  --button-hover: #c42f06;
  --radius: 10px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Full-site background image */
body::before {
  content: "";
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('hero-bg.jpg') center/cover no-repeat;
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10, 10, 15, 0.75);
  z-index: -1;
}

/* Navigation */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 5%;
  background: rgba(10, 10, 15, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
}

.logo {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo svg { color: var(--accent); }

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

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

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s;
}

.btn-primary {
  background: var(--button);
  color: #fff;
  border-color: var(--button);
}

.btn-primary:hover {
  background: var(--button-hover);
  border-color: var(--button-hover);
  transform: translateY(-2px);
}

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

.btn-outline:hover {
  border-color: var(--button);
  background: rgba(170, 39, 4, 0.1);
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 5% 80px;
}

.hero-content h1 {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 16px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.hero-content h1 span { color: var(--accent); }

.hero-content p {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 32px;
}

.hero-cta { font-size: 18px; padding: 16px 36px; }

/* Sections */
section {
  padding: 80px 5%;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  text-align: center;
}

.section-subtitle {
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 48px;
  font-size: 16px;
}

/* Quote Form */
.quote-section {
  background: var(--surface);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  max-width: 700px;
  margin: 0 auto;
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}

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

.quote-section input,
.quote-section select,
.quote-section textarea {
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 14px 16px;
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}

.quote-section input:focus,
.quote-section select:focus,
.quote-section textarea:focus {
  border-color: var(--button);
}

.quote-section input::placeholder,
.quote-section textarea::placeholder { color: #666; }

.quote-section label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #fff;
  font-size: 15px;
}

.quote-section textarea {
  resize: vertical;
  min-height: 120px;
  margin-bottom: 16px;
}

.submit-btn { width: 100%; padding: 16px; font-size: 16px; }

.form-disclaimer {
  margin-top: 16px;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

#formStatus {
  margin-top: 14px;
  font-size: 14px;
  font-weight: 600;
  min-height: 22px;
  text-align: center;
}

.prefer-talk { text-align: center; margin-top: 48px; }

.prefer-talk p {
  color: var(--text-muted);
  font-size: 18px;
  margin-bottom: 8px;
}

.phone-big {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--accent);
  text-decoration: none;
  display: block;
  margin-top: 8px;
}

.phone-big:hover { color: #fff; }

/* Video Showcase Section */
.showcase-section {
  padding-top: 20px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  align-items: stretch;
}

.video-card {
  background: var(--surface);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, border-color 0.2s;
}

.video-card:hover {
  transform: translateY(-4px);
  border-color: var(--button);
}

.video-wrapper {
  position: relative;
  width: 100%;
  background: #000;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
  display: block;
}

.video-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.video-info h3 {
  font-size: 20px;
  color: #fff;
  margin-bottom: 8px;
}

.video-info p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.5;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  transition: transform 0.2s, border-color 0.2s;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--button);
}

.service-card h3 {
  font-size: 20px;
  color: #fff;
  margin-bottom: 8px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 14px;
}

/* Also Do Section */
.also-do {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
}

.also-do h3 {
  font-size: 24px;
  color: #fff;
  margin-bottom: 12px;
}

.also-do p {
  color: var(--text-muted);
  font-size: 16px;
}

/* Contact Section */
.contact-section { text-align: center; }

.contact-section h2 {
  font-size: 28px;
  color: #fff;
  margin-bottom: 8px;
}

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

.contact-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.or-divider {
  color: var(--text-muted);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Footer */
footer {
  text-align: center;
  padding: 40px 5%;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 14px;
}

footer p:last-child { margin-top: 4px; }

/* Mobile */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .menu-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.98);
    flex-direction: column;
    padding: 20px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.active { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; }
}
