/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Open Sans', sans-serif; color: #1a1a1a; line-height: 1.6; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ===== VARIABLES ===== */
:root {
  --red: #FF6600;
  --red-dark: #cc4f00;
  --kj-red: #CC1100;
  --kj-red-dark: #a50e00;
  --dark: #1C0D0A;
  --dark2: #2a1410;
  --gray: #f5f5f5;
  --text-muted: #666;
  --max-w: 1100px;
  --radius: 8px;
}

/* ===== UTILITIES ===== */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }
.btn {
  display: inline-block; padding: 12px 24px; border-radius: var(--radius);
  font-family: 'Oswald', sans-serif; font-size: 1rem; font-weight: 600;
  letter-spacing: 0.5px; cursor: pointer; transition: all 0.2s;
  border: 2px solid transparent; text-align: center;
}
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red-dark); }
.btn-gold { background: var(--red); color: #fff; }
.btn-gold:hover { background: var(--red-dark); }
.btn-dark { background: var(--dark); color: #fff; }
.btn-dark:hover { background: #333; }
.btn-green { background: var(--dark); color: #fff; }
.btn-green:hover { background: #333; }
.btn-outline { background: transparent; border-color: #fff; color: #fff; }
.btn-outline:hover { background: #fff; color: var(--dark); }
.btn-outline-dark { background: transparent; border-color: var(--red); color: var(--red); }
.btn-outline-dark:hover { background: var(--red); color: #fff; }
.btn-lg { padding: 16px 32px; font-size: 1.1rem; }
.btn-full { width: 100%; display: block; }
.section-title { font-family: 'Oswald', sans-serif; font-size: 2.2rem; font-weight: 700; color: var(--dark); margin-bottom: 12px; text-transform: uppercase; letter-spacing: 1px; }
.section-title.light { color: #fff; }
.section-sub { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 48px; max-width: 600px; }
.section-sub.light { color: rgba(255,255,255,0.75); }
.badge { display: inline-block; background: var(--red); color: #fff; font-family: 'Oswald', sans-serif; font-weight: 600; font-size: 0.9rem; padding: 6px 16px; border-radius: 20px; margin-bottom: 16px; letter-spacing: 0.5px; }
.badge-dark { display: inline-block; background: var(--dark); color: var(--red); font-family: 'Oswald', sans-serif; font-weight: 600; font-size: 0.9rem; padding: 6px 16px; border-radius: 20px; margin-bottom: 16px; }

/* ===== NAV ===== */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: var(--dark); box-shadow: 0 2px 10px rgba(0,0,0,0.5); border-bottom: 3px solid var(--kj-red); }
.nav-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; display: flex; align-items: center; justify-content: space-between; height: 68px; }
.logo { display: flex; flex-direction: column; line-height: 1; }
.logo-main { font-family: 'Oswald', sans-serif; font-size: 1.7rem; font-weight: 700; color: #fff; letter-spacing: 2px; }
.logo-main span { color: var(--red); }
.logo-sub { font-family: 'Oswald', sans-serif; font-size: 0.65rem; color: rgba(255,255,255,0.5); letter-spacing: 3px; text-transform: uppercase; }
.nav-phone { display: flex; align-items: center; }
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a { color: #fff; font-family: 'Oswald', sans-serif; font-size: 0.95rem; letter-spacing: 0.5px; transition: color 0.2s; }
.nav-links a:hover { color: var(--red); }
.hamburger { display: none; background: none; border: none; color: #fff; font-size: 1.6rem; cursor: pointer; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1600&q=80') center/cover no-repeat;
  display: flex; align-items: center; justify-content: center;
  position: relative; padding: 100px 20px 60px; text-align: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,0,0,0.87) 0%, rgba(28,13,10,0.82) 100%);
}
.hero-content { position: relative; z-index: 1; max-width: 820px; }
.hero h1 { font-family: 'Oswald', sans-serif; font-size: 3.2rem; font-weight: 700; color: #fff; margin-bottom: 20px; line-height: 1.15; text-transform: uppercase; letter-spacing: 1px; }
.hero h1 span { color: var(--red); }
.hero-sub { font-size: 1.15rem; color: rgba(255,255,255,0.8); margin-bottom: 36px; }
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 60px; }
.hero-stats { display: flex; gap: 40px; justify-content: center; flex-wrap: wrap; padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.15); }
.stat { display: flex; flex-direction: column; align-items: center; }
.stat-num { font-family: 'Oswald', sans-serif; font-size: 2.2rem; font-weight: 700; color: var(--red); }
.stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 1px; }

/* ===== TRUST BAR ===== */
.trust-bar { background: var(--red); padding: 14px 20px; }
.trust-inner { max-width: var(--max-w); margin: 0 auto; display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; }
.trust-inner span { font-family: 'Oswald', sans-serif; font-size: 0.9rem; font-weight: 600; color: #fff; letter-spacing: 0.3px; }

/* ===== SERVICES ===== */
.services { padding: 80px 20px; background: #fff; }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.service-card { background: var(--gray); border-radius: var(--radius); padding: 32px 24px; transition: transform 0.2s, box-shadow 0.2s; border-top: 4px solid var(--red); }
.service-card:nth-child(odd) { border-top-color: var(--kj-red); }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.emergency-card { background: var(--dark); border-top-color: var(--red); }
.emergency-card h3, .emergency-card p { color: #fff; }
.service-icon { font-size: 2rem; margin-bottom: 12px; }
.service-card h3 { font-family: 'Oswald', sans-serif; font-size: 1.2rem; margin-bottom: 10px; color: var(--dark); text-transform: uppercase; }
.service-card p { font-size: 0.95rem; color: var(--text-muted); }
.service-link { display: inline-block; margin-top: 14px; color: var(--red); font-family: 'Oswald', sans-serif; font-size: 0.9rem; font-weight: 600; letter-spacing: 0.5px; transition: opacity 0.2s; }
.service-link:hover { opacity: 0.75; }

/* ===== ABOUT ===== */
.about { padding: 80px 20px; background: var(--gray); }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-text h2 { font-family: 'Oswald', sans-serif; font-size: 2rem; color: var(--dark); margin-bottom: 20px; text-transform: uppercase; }
.about-text p { color: var(--text-muted); margin-bottom: 16px; }
.about-list { margin: 20px 0 28px; display: flex; flex-direction: column; gap: 10px; }
.about-list li { font-size: 0.95rem; }
.about-img-placeholder { background: linear-gradient(135deg, var(--dark), #2a1410); border-radius: var(--radius); height: 380px; display: flex; align-items: flex-end; padding: 28px; border-left: 5px solid var(--red); }
.about-img-text { display: flex; flex-direction: column; gap: 4px; }
.about-img-name { font-family: 'Oswald', sans-serif; font-size: 1.4rem; color: #fff; font-weight: 700; }
.about-img-title { font-size: 0.9rem; color: rgba(255,255,255,0.7); }
.about-img-flag { font-size: 0.85rem; color: var(--red); margin-top: 4px; }

/* ===== REVIEWS ===== */
/* ── Gallery ── */
.gallery { padding: 80px 20px; background: var(--dark); }
.gallery .section-title, .gallery .section-sub { text-align: center; margin-left: auto; margin-right: auto; color: #fff; }
.gallery .section-sub { color: rgba(255,255,255,0.6); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: auto; gap: 16px; margin-top: 48px; }
.gallery-item--wide { grid-column: span 2; }
.gallery-item { position: relative; border-radius: 10px; overflow: hidden; aspect-ratio: 4/3; background: #111; }
.gallery-item--wide { aspect-ratio: 16/9; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-caption { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(0,0,0,0.8)); color: #fff; font-size: 0.85rem; font-weight: 600; padding: 28px 16px 12px; text-transform: uppercase; letter-spacing: 0.5px; }

.reviews { padding: 80px 20px; background: #fff; }
.reviews .section-title, .reviews .section-sub { text-align: center; margin-left: auto; margin-right: auto; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 40px; }
.review-card { background: var(--gray); border-radius: var(--radius); padding: 28px; border-left: 4px solid var(--kj-red); }
.review-card:nth-child(even) { border-left-color: var(--red); }
.stars { color: var(--red); font-size: 1.2rem; margin-bottom: 12px; }
.review-card p { font-size: 0.95rem; color: #333; font-style: italic; margin-bottom: 16px; }
.reviewer { font-size: 0.85rem; font-weight: 600; color: var(--dark); }
.review-cta { text-align: center; }
.review-cta p { color: var(--text-muted); margin-bottom: 16px; }

/* ===== AREAS ===== */
.areas { padding: 80px 20px; background: var(--dark); text-align: center; }
.areas .section-title, .areas .section-sub { margin-left: auto; margin-right: auto; }
.areas-grid { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 24px; }
.area-item { background: rgba(255,255,255,0.08); color: #fff; padding: 10px 20px; border-radius: 30px; font-size: 0.9rem; border: 1px solid rgba(255,255,255,0.15); transition: background 0.2s; }
a.area-item:hover { background: var(--red); border-color: var(--red); }
.areas-note { color: rgba(255,255,255,0.5); font-size: 0.9rem; }

/* ===== CONTACT ===== */
.contact { padding: 80px 20px; background: #fff; }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-info h2 { font-family: 'Oswald', sans-serif; font-size: 2rem; color: var(--dark); margin-bottom: 16px; text-transform: uppercase; }
.contact-info p { color: var(--text-muted); margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon { font-size: 1.4rem; flex-shrink: 0; }
.contact-item strong { display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); }
.contact-item a, .contact-item span { font-size: 1rem; color: var(--red); font-weight: 600; }
.contact-form { background: var(--gray); border-radius: var(--radius); padding: 36px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px; color: #333; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 16px; border: 1.5px solid #ddd; border-radius: var(--radius); font-size: 1rem; font-family: 'Open Sans', sans-serif; transition: border-color 0.2s; background: #fff; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--red); }
.form-note { text-align: center; font-size: 0.8rem; color: var(--text-muted); margin-top: 10px; }

/* ===== FOOTER ===== */
.footer { background: #0a0000; padding: 60px 20px 0; border-top: 3px solid var(--kj-red); }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; padding-bottom: 40px; }
.footer-brand p { color: rgba(255,255,255,0.4); font-size: 0.9rem; margin-top: 12px; }
.footer-brand-name { font-family: 'Oswald', sans-serif; font-size: 1.8rem; font-weight: 700; color: #fff; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 12px; }
.footer-brand-name span { color: var(--kj-red); }
.footer-links h4, .footer-contact h4 { font-family: 'Oswald', sans-serif; color: var(--red); font-size: 0.9rem; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px; }
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,0.5); font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: #fff; }
.footer-contact p { color: rgba(255,255,255,0.5); font-size: 0.9rem; margin-bottom: 8px; }
.footer-contact a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-contact a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; text-align: center; }
.footer-bottom p { color: rgba(255,255,255,0.25); font-size: 0.8rem; }

/* ===== STICKY CALL ===== */
.sticky-call { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 999; padding: 12px 20px; background: var(--red); box-shadow: 0 -2px 10px rgba(0,0,0,0.4); }

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .nav-links { display: none; position: absolute; top: 68px; left: 0; right: 0; background: var(--dark); flex-direction: column; padding: 20px; gap: 16px; border-top: 1px solid rgba(255,255,255,0.08); }
  .nav-links.open { display: flex; }
  .nav-phone { display: none; }
  .hamburger { display: block; }
  .hero h1 { font-size: 2.2rem; }
  .hero-stats { gap: 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .about-inner { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item--wide { grid-column: span 1; aspect-ratio: 4/3; }
  .reviews-grid { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .sticky-call { display: block; }
  .footer { padding-bottom: 80px; }
  .section-title { font-size: 1.8rem; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 1.8rem; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-stats { gap: 20px; }
  .stat-num { font-size: 1.8rem; }
}
