<!-- filename: styles.css -->
/* Basic reset */
*{box-sizing:border-box;margin:0;padding:0}
:root{--accent:#0b7;--text:#222;--muted:#666;--maxw:1100px}
body{font-family:Inter,system-ui,Arial,Helvetica,sans-serif;color:var(--text);line-height:1.5;background:#f7f7f8}
.container{max-width:var(--maxw);margin:0 auto;padding:24px}
.site-header{background:#fff;border-bottom:1px solid #e6e6e6}
.header-inner{display:flex;align-items:center;justify-content:space-between}
.logo{display:flex;gap:12px;align-items:center;text-decoration:none;color:inherit}
.logo img{width:40px;height:40px;border-radius:6px}
.header-nav ul{list-style:none;display:flex;gap:14px}
.header-nav a{text-decoration:none;color:var(--muted);font-weight:600}


.hero{background:linear-gradient(90deg,#fff 60%, #f1f7f6);padding:36px 0}
.hero-inner{display:flex;gap:24px;align-items:center}
.hero-content{flex:1}
.hero-media img{width:220px;height:auto;border-radius:10px;box-shadow:0 6px 20px rgba(0,0,0,.08)}
.hero h1{font-size:28px;margin-bottom:8px}
.sub{color:var(--muted);margin-bottom:16px}
.rating{display:flex;align-items:center;gap:12px}
.stars{display:flex;gap:4px}
.star{width:20px;height:20px;fill:gold}
.star.half path{fill:gold}
.rating-meta{color:var(--muted)}


.services h2,.about h2,.faq h2,.testimonials h2,.map h2,.trust h2{margin:12px 0 16px}
.lead{color:var(--muted)}
.service-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:18px;margin-top:12px}
.service{background:#fff;padding:18px;border-radius:10px;box-shadow:0 6px 20px rgba(10,10,10,.04)}
.service .icon{font-size:28px;margin-bottom:8px}


.about p{background:#fff;padding:18px;border-radius:10px;box-shadow:0 6px 20px rgba(0,0,0,.04)}


.faq .accordion{margin-top:12px}
.qa{background:#fff;margin-bottom:8px;border-radius:8px;overflow:hidden}
.q{width:100%;text-align:left;padding:14px;border:0;font-weight:700;background:transparent;cursor:pointer}
.a{padding:14px;border-top:1px solid #eee;color:var(--muted);display:none}


.test-wrap{position:relative}
.testimonial{display:none;padding:18px;background:#fff;border-radius:10px;box-shadow:0 10px 30px rgba(0,0,0,.06)}
.testimonial.active{display:block}
.test-controls{display:flex;gap:8px;justify-content:center;margin-top:10px}
.test-controls button{padding:8px 12px;border-radius:6px;border:1px solid #ddd;background:#fff;cursor:pointer}


.map-wrap{margin-top:12px;background:#fff;padding:12px;border-radius:10px}


.trust-grid{display:flex;gap:14px;align-items:center}
.trust-item{display:flex;flex-direction:column;align-items:center;padding:12px;border-radius:8px;background:#fff;min-width:100px}
.trust-icon{width:48px;height:48px;background:#0b7;border-radius:999px;padding:8px}


.site-footer{background:#0b0b0b;color:#fff;padding:24px 0;margin-top:30px}
.footer-inner{display:flex;gap:24px;justify-content:space-between}
.footer-col h3,h4{margin-bottom:8px}
.footer-col a{color:#fff;text-decoration:underline}


@media (max-width:800px){
.hero-inner{flex-direction:column}
.footer-inner{flex-direction:column}
}
.hero {
  background: #f8fbff;
  padding: 70px 20px;
}

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-content {
  flex: 1;
  min-width: 280px;
}

.hero h1 {
  font-size: 42px;
  color: #0a3d62;
  font-weight: 800;
}

.hero .sub {
  font-size: 18px;
  margin: 15px 0 25px;
  line-height: 1.6;
  color: #444;
}

.stars {
  display: flex;
  gap: 5px;
  color: #ffc107;
}

.star {
  width: 28px;
  height: 28px;
  fill: #ffc107;
}

.star.half {
  width: 28px;
  height: 28px;
}

.rating-meta {
  margin-top: 8px;
  color: #333;
  font-size: 16px;
}

.hero-media img {
  width: 360px;
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.cta-btn {
  display: inline-block;
  margin-top: 25px;
  background: #e74c3c;
  padding: 14px 26px;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
  box-shadow: 0 4px 14px rgba(231,76,60,0.4);
}

.cta-btn:hover {
  background: #c0392b;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hero-inner {
    flex-direction: column;
    text-align: center;
  }

  .hero h1 {
    font-size: 32px;
  }

  .cta-btn {
    font-size: 18px;
  }
}

/* Services Section */
.services {
  padding: 60px 20px;
  text-align: center;
}

.services h2 {
  font-size: 36px;
  color: #0a3d62;
  font-weight: 800;
  margin-bottom: 10px;
}

.services .lead {
  color: #555;
  font-size: 18px;
  margin-bottom: 40px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.service {
  background: #ffffff;
  padding: 30px 25px;
  border-radius: 12px;
  box-shadow: 0px 4px 16px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border: 1px solid #e3e3e3;
}

.service:hover {
  transform: translateY(-8px);
  box-shadow: 0px 15px 30px rgba(0,0,0,0.12);
}

.service .icon {
  font-size: 48px;
  margin-bottom: 15px;
}

.service h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #0a3d62;
}

.service p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin: 0;
}

/* Responsive Enhancements */
@media (max-width: 768px) {
  .services h2 {
    font-size: 30px;
  }
  .service-grid {
    gap: 20px;
  }
  .service {
    padding: 25px;
  }
}
/* Map Section */
.map-section {
  padding: 60px 20px;
  background: #f9fbfd;
}

.map-title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 10px;
  font-weight: 700;
  color: #1b2838;
}

.map-sub {
  text-align: center;
  font-size: 1rem;
  margin-bottom: 35px;
  color: #4f5b66;
}

.map-card {
  max-width: 900px;
  margin: auto;
  background: #ffffff;
  border-radius: 15px;
  padding: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.map-frame {
  border-radius: 12px;
  overflow: hidden;
  width: 100%;
  height: 420px;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Responsive */
@media (max-width: 768px) {
  .map-frame {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .map-title {
    font-size: 1.8rem;
  }
  .map-frame {
    height: 260px;
  }
}
/* Trust Section */
.trust-section {
  padding: 60px 20px;
  background: #fafbfd;
}

.trust-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #0f1f2e;
}

.trust-sub {
  text-align: center;
  font-size: 1rem;
  color: #5c6772;
  margin-bottom: 40px;
}

/* Grid */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
  justify-items: center;
}

/* Card */
.trust-card {
  background: #ffffff;
  padding: 25px 20px;
  border-radius: 18px;
  text-align: center;
  width: 100%;
  max-width: 280px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.07);
  transition: 0.3s ease-in-out;
}

.trust-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

/* Logos */
.trust-img {
  width: 80px;
  height: auto;
  object-fit: contain;
  margin-bottom: 12px;
}

/* Text */
.trust-text strong {
  font-size: 1.15rem;
  display: block;
  color: #1e2d3d;
}

.trust-text span {
  font-size: 0.9rem;
  color: #5d6b78;
}

.stars {
  color: #f6b619;
  margin-top: 3px;
  font-size: 1rem;
}

/* Responsive */
@media (max-width: 480px) {
  .trust-img {
    width: 65px;
  }

  .trust-card {
    padding: 20px;
  }

  .trust-title {
    font-size: 1.8rem;
  }
}
<style>
/* FOOTER MAIN */
.site-footer {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #fff;
  padding: 60px 20px 20px;
  margin-top: 70px;
  border-top: 4px solid #38bdf8;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 50px;
  max-width: 1200px;
  margin: auto;
}

.footer-col {
  flex: 1 1 230px;
}

.site-footer h3,
.site-footer h4 {
  margin-bottom: 15px;
  font-weight: 700;
  color: #ffffff;
}

.site-footer p,
.footer-col ul li {
  opacity: 0.9;
  font-size: 15px;
  line-height: 1.7;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

/* LINKS */
.site-footer a {
  color: #38bdf8;
  text-decoration: none;
  transition: 0.3s ease;
}

.site-footer a:hover {
  color: #ffffff;
}

/* CTA CALL BUTTON */
.footer-call {
  display: inline-block;
  margin-top: 8px;
  background: #38bdf8;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
  color: #0f172a !important;
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.7);
  transition: 0.3s ease;
}

.footer-call:hover {
  background: #fff;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.85);
}

/* BOTTOM STRIP */
.footer-bottom {
  text-align: center;
  padding: 20px 0 5px;
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 14px;
  opacity: 0.8;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
  }

  .footer-col {
    text-align: left;
  }
}
</style>
/* Availability Section */
.availability {
  margin-top: 60px;
  padding: 20px 0;
  text-align: center;
}

.availability h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #0f172a;
}

.availability-sub {
  font-size: 1.1rem;
  color: #475569;
  margin-bottom: 30px;
}

.availability-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 18px;
  margin-top: 20px;
}

/* State Box */
.state-box {
  background: #ffffff;
  border: 2px solid #e2e8f0;
  padding: 15px 20px;
  border-radius: 10px;
  text-decoration: none;
  color: #0f172a;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.25s ease;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

/* Hover Effect */
.state-box:hover {
  background: #38bdf8;
  color: #ffffff;
  border-color: #38bdf8;
  box-shadow: 0 6px 16px rgba(56,189,248,0.4);
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 480px) {
  .state-box {
    font-size: 0.95rem;
  }
}
/* Popular Locations */
.popular {
  margin-top: 60px;
  text-align: center;
}

.popular h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #0f172a;
}

.popular-sub {
  font-size: 1.1rem;
  color: #475569;
  margin-bottom: 25px;
}

.popular-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 18px;
}

.popular-grid .pop-box {
  display: block;
  background: #ffffff;
  border: 2px solid #e2e8f0;
  padding: 15px 20px;
  text-decoration: none;
  color: #0f172a;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.25s ease;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.popular-grid .pop-box:hover {
  background: #38bdf8;
  color: #ffffff;
  border-color: #38bdf8;
  transform: translateY(-4px);
  box-shadow: 0 8px 18px rgba(56,189,248,0.40);
}

@media (max-width: 480px) {
  .popular-grid .pop-box {
    font-size: 0.95rem;
  }
}
