:root {
  --dark: #0b1118;
  --mid: #182230;
  --red: #d72638;
  --light: #f5f7fa;
  --text: #1f2933;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: white;
}

.topbar {
  background: var(--dark);
  color: white;
  padding: 8px 20px;
  text-align: center;
  font-size: 14px;
}

nav {
  background: white;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  padding: 14px 20px;
  position: sticky;
  top: 0;
  z-index: 10;
}

nav a {
  color: var(--dark);
  text-decoration: none;
  font-weight: bold;
}

.hero {
  background: linear-gradient(rgba(11,17,24,.82), rgba(11,17,24,.82)), url('https://images.unsplash.com/photo-1486262715619-67b85e0b08d3?auto=format&fit=crop&w=1600&q=80') center/cover;
  color: white;
  text-align: center;
  padding: 70px 20px;
}

.logo {
  width: 155px;
  max-width: 70%;
  background: white;
  padding: 8px;
  border-radius: 12px;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(34px, 6vw, 60px);
  margin: 0 0 10px;
}

.hero p {
  font-size: 20px;
  margin: 8px 0;
}

.btn {
  display: inline-block;
  background: var(--red);
  color: white;
  padding: 14px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  margin: 8px;
}

.btn.secondary {
  background: white;
  color: var(--dark);
}

section {
  padding: 60px 20px;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

.card {
  background: var(--light);
  border: 1px solid #e5e7eb;
  padding: 24px;
  border-radius: 14px;
}

.card h3 {
  margin-top: 0;
}

.dark-section {
  background: var(--dark);
  color: white;
}

.highlight {
  background: #fff3f4;
  border-left: 5px solid var(--red);
  padding: 18px;
  border-radius: 8px;
}

.service-list li {
  margin-bottom: 8px;
}

footer {
  background: var(--dark);
  color: white;
  text-align: center;
  padding: 28px 20px;
}

footer a { color: white; }

@media (max-width: 650px) {
  nav { gap: 12px; font-size: 14px; }
  .hero { padding: 45px 16px; }
  section { padding: 42px 16px; }
}

.review-strip {
  background: #fff;
}

.review-card {
  background: var(--light);
  border: 1px solid #e5e7eb;
  padding: 24px;
  border-radius: 14px;
}

.stars {
  color: #f5a623;
  font-size: 22px;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.review-actions {
  margin-top: 18px;
}

.reviews-section {
  background: #ffffff;
}

.reviews-intro {
  max-width: 760px;
  margin-bottom: 28px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.testimonial-card {
  background: var(--light);
  border: 1px solid #e5e7eb;
  padding: 24px;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.testimonial-card p {
  margin: 8px 0 16px;
}

.stars {
  color: #f5a623;
  font-size: 22px;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.reviews-cta {
  margin-top: 28px;
  text-align: center;
}

.reviews-cta .btn {
  margin: 8px;
}


.sticky-call-bar{
 position:sticky;
 top:0;
 z-index:999;
 background:#d72638;
 display:flex;
 justify-content:center;
 gap:20px;
 padding:12px;
}
.sticky-call-bar a{
 color:white;
 text-decoration:none;
 font-weight:bold;
}
@media(max-width:600px){
 .sticky-call-bar{
   flex-direction:column;
   gap:8px;
   text-align:center;
 }
}


.seo-locations {
    background: #f8fafc;
    padding: 60px 20px;
}

.seo-locations h2 {
    color: #111827;
}

.seo-locations p {
    color: #374151;
}

.seo-locations .card {
    background: white;
    color: #111827;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.seo-locations .card h3 {
    color: #111827;
}

.seo-locations .card p {
    color: #4b5563;
}


.gallery-section {
  background: #0b1118;
  color: white;
  padding: 60px 20px;
  text-align: center;
}

.gallery-section h2 {
  color: white;
}

.gallery-section p {
  max-width: 800px;
  margin: 0 auto 28px;
  color: #d1d5db;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.gallery-grid img {
  width: 100%;
  height: 245px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

@media (max-width: 650px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid img {
    height: 230px;
  }
}


.premium-banner{
  background: linear-gradient(135deg,#111827,#1f2937);
  color:white;
  padding:50px 20px;
}
.premium-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:20px;
}
.premium-card{
  background:rgba(255,255,255,0.08);
  padding:25px;
  border-radius:16px;
  backdrop-filter: blur(8px);
  box-shadow:0 10px 25px rgba(0,0,0,0.25);
}
.premium-card h3{
  color:white;
}
.premium-card p{
  color:#d1d5db;
}


.dpf-section {
  background: #f8fafc;
  padding: 60px 20px;
}

.dpf-section h2 {
  color: #111827;
}

.dpf-section p {
  color: #374151;
}


/* Premium visual upgrade */
:root {
  --dark: #070b10;
  --mid: #111827;
  --panel: #151f2e;
  --red: #c1121f;
  --red-dark: #8f0d17;
  --gold: #d4af37;
  --light: #f7f8fb;
  --text: #17202a;
  --muted: #5f6b7a;
}

body {
  background: #ffffff;
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
}

.topbar {
  background: linear-gradient(90deg, #070b10, #151f2e);
  color: #f9fafb;
  font-weight: 700;
  letter-spacing: .2px;
}

nav {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  border-bottom: 1px solid rgba(17,24,39,.08);
}

nav a {
  color: #111827;
  font-size: 14px;
  transition: color .2s ease;
}

nav a:hover {
  color: var(--red);
}

.hero {
  position: relative;
  background:
    linear-gradient(135deg, rgba(7,11,16,.95), rgba(17,24,39,.78)),
    url('https://images.unsplash.com/photo-1486262715619-67b85e0b08d3?auto=format&fit=crop&w=1800&q=80') center/cover;
  padding: 95px 20px;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -120px -10%;
  height: 180px;
  background: white;
  transform: rotate(-3deg);
}

.hero .container,
.hero > * {
  position: relative;
  z-index: 1;
}

.logo {
  width: 170px;
  background: white;
  border-radius: 18px;
  padding: 10px;
  box-shadow: 0 20px 50px rgba(0,0,0,.35);
}

.hero h1 {
  font-weight: 900;
  letter-spacing: -1.5px;
  text-shadow: 0 4px 20px rgba(0,0,0,.35);
}

.hero p {
  color: #e5e7eb;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

.btn {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border-radius: 999px;
  padding: 15px 26px;
  box-shadow: 0 12px 28px rgba(193,18,31,.28);
  transition: transform .2s ease, box-shadow .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(193,18,31,.34);
}

.btn.secondary {
  background: #ffffff;
  color: #111827;
  box-shadow: 0 12px 28px rgba(0,0,0,.12);
}

section {
  padding: 70px 20px;
}

h2 {
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -0.8px;
  margin-top: 0;
}

h3 {
  letter-spacing: -0.3px;
}

.card,
.review-card,
.testimonial-card,
.premium-card {
  border-radius: 22px;
  border: 1px solid rgba(17,24,39,.08);
  box-shadow: 0 18px 45px rgba(15,23,42,.08);
}

.card {
  background: #ffffff;
}

.grid {
  gap: 26px;
}

.premium-banner {
  margin-top: -35px;
  position: relative;
  z-index: 2;
  background: transparent;
  padding: 0 20px 45px;
}

.premium-banner .container {
  background: linear-gradient(135deg, #0b1118, #172033);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 24px 70px rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.1);
}

.premium-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
}

.premium-card h3::before {
  content: "✓ ";
  color: var(--gold);
}

.dpf-section,
.seo-locations,
.review-strip,
.reviews-section {
  background: linear-gradient(180deg, #ffffff, #f7f8fb);
}

.gallery-section {
  background: radial-gradient(circle at top left, #1f2937, #070b10 65%);
}

.gallery-grid img {
  border-radius: 20px;
  transition: transform .25s ease, box-shadow .25s ease;
}

.gallery-grid img:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 45px rgba(0,0,0,.45);
}

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

.sticky-call-bar {
  background: linear-gradient(90deg, var(--red-dark), var(--red));
  box-shadow: 0 10px 28px rgba(193,18,31,.28);
}

footer {
  background: linear-gradient(135deg, #070b10, #111827);
  border-top: 4px solid var(--red);
}

/* Premium homepage feature strip */
.trust-strip {
  background: #ffffff;
  padding: 32px 20px;
}

.trust-strip .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 16px;
}

.trust-item {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 18px;
  text-align: center;
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(15,23,42,.06);
}

.trust-item span {
  display: block;
  color: var(--red);
  font-size: 13px;
  margin-top: 4px;
  font-weight: 700;
}

@media (max-width: 700px) {
  .hero {
    padding: 70px 16px;
  }

  section {
    padding: 52px 16px;
  }

  nav {
    font-size: 13px;
  }

  .premium-banner .container {
    padding: 20px;
    border-radius: 22px;
  }

  .btn {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }
}
