/* =========================
   GLOBAL STYLES
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #dc2626;        /* main red */
  --primary-dark: #b91c1c;   /* darker red */
  --secondary: #111827;
  --dark: #0f172a;
  --light: #f8fafc;
  --white: #ffffff;
  --text: #475569;
  --border: #e2e8f0;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --radius: 14px;
  --transition: all 0.3s ease;
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  /* everything else stays the same */
}

h1, h2, h3, h4 {
  font-family: 'Syne', sans-serif;
}

h1 {
  letter-spacing: -1.5px;
}

.section-title {
  letter-spacing: -1px;
}

.nav-links a {
  font-weight: 500; /* was 600 */
  letter-spacing: 0.2px;
}

.logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(1120px, 90%);
  margin: 0 auto;
}

.section-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2.5rem;
  color: var(--secondary);
  position: relative;
}

.section-title::after {
  content: "";
  width: 70px;
  height: 4px;
  background: var(--primary);
  display: block;
  margin: 12px auto 0;
  border-radius: 20px;
}

h1 {
  letter-spacing: -1px;
}

.section-title {
  letter-spacing: -0.5px;
}

/* =========================
   TOP BAR
========================= */
.top-bar {
  background: var(--dark);
  color: var(--white);
  font-size: 0.95rem;
  padding: 0.7rem 0;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.top-bar p {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  opacity: 0.95;
}

/* =========================
   HEADER
========================= */
.header {
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--secondary);
}

.logo img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.nav-links a {
  font-weight: 600;
  color: var(--secondary);
  transition: var(--transition);
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

.nav-links a.active::after,
.nav-links a:not(.btn-nav):hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2.5px;
  background: var(--primary);
  border-radius: 20px;
}

.btn-nav {
  background: var(--primary);
  color: var(--white) !important;
  padding: 0.8rem 1.2rem;
  border-radius: 8px;
  transition: var(--transition);
}

.btn-nav:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-nav::after {
  display: none !important;
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--secondary);
  cursor: pointer;
}

/* =========================
   HERO BASE (ALL PAGES)
========================= */
/* ALL INNER PAGES */
.page-hero,
.about-hero,
.services-hero,
.pricing-hero,
.locations-hero,
.contact-hero,
.booking-hero,
.testimonials-hero,
.faq-hero {
  height: 70vh; /* 🔥 use height instead of min-height */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 1rem 2rem;
  color: var(--white);

  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* Limit content width */
.hero .container,
.page-hero .container,
.about-hero .container,
.services-hero .container,
.pricing-hero .container,
.locations-hero .container,
.contact-hero .container,
.booking-hero .container,
.testimonials-hero .container,
.faq-hero .container {
  max-width: 800px;
}

/* =========================
   HERO BACKGROUNDS
========================= */

/* Home */
.hero {
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.78), rgba(15, 23, 42, 0.78)),
    url("images/hero-locations.jpg");
}

/* About */
.about-hero {
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.78), rgba(15, 23, 42, 0.78)),
    url("images/hero-about.jpg");
}

/* Services */
.services-hero {
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.78), rgba(15, 23, 42, 0.78)),
    url("images/hero-services.jpg");
}

/* Pricing */
.pricing-hero {
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.78), rgba(15, 23, 42, 0.78)),
    url("images/hero-pricing.jpg");
}

/* Locations */
.locations-hero {
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.78), rgba(15, 23, 42, 0.78)),
    url("images/hero-locations.jpg");
}

/* Contact */
.contact-hero {
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.78), rgba(15, 23, 42, 0.78)),
    url("images/hero-contact1.jfif");
}

/* Booking */
.booking-hero {
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.78), rgba(15, 23, 42, 0.78)),
    url("images/hero-booking.jpg");
}

/* Testimonials */
.testimonials-hero {
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.78), rgba(15, 23, 42, 0.78)),
    url("images/hero-testimonials.jpg");
}

/* FAQ */
.faq-hero {
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.78), rgba(15, 23, 42, 0.78)),
    url("images/hero-faq.jpg");
}

/* =========================
   HERO CONTENT
========================= */

.hero-content {
  max-width: 760px;
  margin: 0 auto;
}

/* Headings */
.hero h1,
.about-hero h1,
.services-hero h1,
.pricing-hero h1,
.locations-hero h1,
.contact-hero h1,
.booking-hero h1,
.testimonials-hero h1,
.faq-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.15;
  margin-bottom: 1rem;
  font-weight: 800;
}

/* Paragraph */
.hero p,
.about-hero p,
.services-hero p,
.pricing-hero p,
.locations-hero p,
.contact-hero p,
.booking-hero p,
.testimonials-hero p,
.faq-hero p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 2rem;
}

/* =========================
   HERO EXTRA CONTENT
========================= */

/* Tag */
.hero-tag {
  color: #dc2626;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

/* Stats */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.hero-stats h3 {
  font-size: 2rem;
  color: #dc2626;
  margin-bottom: 0.3rem;
}

.hero-stats span {
  font-size: 0.9rem;
  opacity: 0.85;
}

/* Buttons */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* =========================
   BUTTONS
========================= */

.btn,
.btn-outline {
  display: inline-block;
  padding: 0.95rem 1.5rem;
  border-radius: 10px;
  font-weight: 700;
  transition: var(--transition);
  text-decoration: none;
}

.btn {
  background: var(--primary);
  color: var(--white);
}

.btn:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
}

.btn-outline {
  border: 2px solid var(--white);
  color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--secondary);
  transform: translateY(-3px);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {
  .hero h1,
  .about-hero h1,
  .services-hero h1 {
    font-size: 2.3rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-stats {
    gap: 1.5rem;
  }
}
/* =========================
   HOME HERO
========================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 1rem 2rem;
  color: var(--white);

  background:
    linear-gradient(rgba(15, 23, 42, 0.75), rgba(15, 23, 42, 0.75)),
    url("images/hero-home.jpg") center/cover no-repeat;
}

/* Content width */
.hero .container {
  max-width: 850px;
}

/* Tag */
.hero-tag {
  color: #dc262b;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

/* Main heading */
.hero h1 {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 1.2rem;
  font-weight: 800;
}

/* Subtext */
.hero p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 2.2rem;
}

/* Buttons */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Stats */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.hero-stats h3 {
  font-size: 2rem;
  color:#dc2626;
  margin-bottom: 0.3rem;
}

.hero-stats span {
  font-size: 0.9rem;
  opacity: 0.85;
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    padding: 110px 1rem 2rem;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-stats {
    gap: 1.5rem;
  }
}

/* =========================
   ABOUT PREVIEW
========================= */
.about-preview {
  padding: 5rem 0;
  background: #eef1f7;
}

.about-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: center;
}

.about-preview-image {
  position: relative;
}

.about-preview-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 18px;
  display: block;
  box-shadow: var(--shadow);
}

.about-call-box {
  position: absolute;
  left: 24px;
  bottom: 24px;
  background: var(--primary);
  color: var(--secondary);
  padding: 1rem 1.2rem;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.about-call-box span {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.about-call-box a {
  font-weight: 700;
  color: var(--secondary);
}

.about-preview-content .section-tag {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--primary);
  margin-bottom: 1rem;
  position: relative;
  padding-left: 42px;
}

.about-preview-content .section-tag::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 28px;
  height: 2px;
  background: var(--primary);
  transform: translateY(-50%);
}

.about-preview-content h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.1;
  color: var(--secondary);
  margin-bottom: 1rem;
  max-width: 700px;
}

.title-line {
  width: 60px;
  height: 4px;
  background: var(--primary);
  border-radius: 999px;
  margin-bottom: 1.5rem;
}

.about-preview-content p {
  color: var(--text);
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
}

.about-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.6rem 0 2rem;
}

.about-features span {
  display: inline-flex;
  align-items: center;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid var(--border);
  font-weight: 600;
  color: var(--secondary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

/* =========================
   RESPONSIVE ABOUT
========================= */
@media (max-width: 900px) {
  .about-preview-grid {
    grid-template-columns: 1fr;
  }

  .about-preview-image img {
    height: 420px;
  }
}

@media (max-width: 600px) {
  .about-preview {
    padding: 4rem 0;
  }

  .about-preview-image img {
    height: 320px;
  }

  .about-preview-content h2 {
    font-size: 2rem;
  }

  .about-call-box {
    left: 16px;
    bottom: 16px;
    padding: 0.85rem 1rem;
  }

  .about-call-box span {
    font-size: 1.4rem;
  }
}

/* =========================
   SERVICES preview
========================= */
.services {
  padding: 5rem 0;
  background: #fff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.2rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(217, 119, 6, 0.3);
}

.service-card i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.7rem;
  color: var(--secondary);
}

.service-card p {
  color: var(--text);
  font-size: 0.96rem;
}
/* =========================
   SERVICES BUTTON
========================= */
.services-btn {
  text-align: center;
  margin-top: 2.5rem;
}
@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}
/* =========================
   PRICING preview
========================= */


/* Optional: content width */
.pricing-hero .container {
  max-width: 800px;
}

/* Text styling */
.pricing-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.pricing-hero p {
  font-size: 1.1rem;
  opacity: 0.9;
}
.pricing {
  padding: 5rem 0;
 background: #eef1f7;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: rgba(217, 119, 6, 0.3);
}

.pricing-card h3 {
  margin-bottom: 0.5rem;
  color: var(--secondary);
}

.price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  margin: 1rem 0;
}

.pricing-card ul {
  list-style: none;
  margin-bottom: 1.5rem;
}

.pricing-card ul li {
  margin: 0.5rem 0;
  color: var(--text);
}

/* Featured Card */
.pricing-card.featured {
  border: 2px solid var(--primary);
  transform: scale(1.05);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-8px);
  border-color: rgba(217, 119, 6, 0.3);
}

/* Button */
.pricing-btn {
  text-align: center;
  margin-top: 2.5rem;
}

/* Responsive */
@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}
/* =========================
   LOCATIONS PREVIEW
========================= */
.locations-preview {
  padding: 5rem 0;
  background: #f8fafc;
}

.locations-preview-text {
  max-width: 700px;
  margin: 0 auto 2.5rem;
  text-align: center;
  color: var(--text);
}

.locations-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.location-preview-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.location-preview-card:hover {
  transform: translateY(-8px);
  border-color: rgba(217, 119, 6, 0.3);
}

.featured-preview {
  border: 2px solid var(--primary);
}

.location-preview-top {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.location-preview-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(217, 119, 6, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.location-preview-icon i {
  color: var(--primary);
  font-size: 1.4rem;
}

.location-preview-card h3 {
  font-size: 1.15rem;
  color: var(--secondary);
  margin-bottom: 0.3rem;
}

.location-preview-card p {
  color: var(--text);
}

.location-preview-desc {
  margin: 1rem 0 1.2rem;
  line-height: 1.7;
}

.location-preview-link {
  color: var(--primary);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.location-preview-link:hover {
  gap: 0.75rem;
}

.locations-preview-btn {
  text-align: center;
  margin-top: 2.5rem;
}

@media (max-width: 950px) {
  .locations-preview-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .locations-preview-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   CTA
========================= */
.cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  text-align: center;
}

.cta h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.cta p {
  max-width: 650px;
  margin: 0 auto 1.8rem;
  font-size: 1.05rem;
  opacity: 0.95;
}

/* =========================
   EMERGENCY SECTION
========================= */
.emergency {
  padding: 5rem 0;
  background: linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.85)),
              url("../images/emergency-bg.jfif") center/cover no-repeat;
  text-align: center;
  color: var(--white);
}

.emergency-content {
  max-width: 700px;
  margin: 0 auto;
}

.emergency h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.emergency p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

/* RED BUTTON */
.btn-emergency {
  display: inline-block;
  background: #dc2626; /* red */
  color: var(--white);
  padding: 1rem 1.8rem;
  font-weight: 700;
  border-radius: 10px;
  transition: var(--transition);
}

.btn-emergency:hover {
  background: #b91c1c;
  transform: translateY(-3px);
}

/* =========================
   TESTIMONIALS
========================= */
/* =========================
   TESTIMONIALS HERO
========================= */
.testimonials-hero {
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 1rem 2rem;
  color: var(--white);

  background:
    linear-gradient(rgba(15, 23, 42, 0.78), rgba(15, 23, 42, 0.78)),
    url("images/hero-testimonials.jfif") center/cover no-repeat;
}

/* Optional: content width */
.testimonials-hero .container {
  max-width: 800px;
}

/* Text styling */
.testimonials-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.testimonials-hero p {
  font-size: 1.1rem;
  opacity: 0.9;
}
.testimonials {
  padding: 5rem 0;
  background: #f8fafc;
}

.center-tag {
  text-align: center;
  justify-content: center;
  display: flex;
  margin-bottom: 0.8rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-6px);
}

.testimonial-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.testimonial-avatar {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(217, 119, 6, 0.15);
}

.testimonial-user h4 {
  margin: 0;
  font-size: 1.05rem;
  color: var(--secondary);
}

.testimonial-user span {
  font-size: 0.9rem;
  color: var(--text);
}

.testimonial-stars {
  display: flex;
  gap: 0.3rem;
  margin-bottom: 1rem;
  color: #f59e0b;
}

.testimonial-card p {
  color: var(--text);
  line-height: 1.8;
  font-size: 0.97rem;
}

/* Google card */
.google-review-wrap {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

.google-review-card {
  width: min(700px, 100%);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.5rem 1.8rem;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.google-review-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(217, 119, 6, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.google-review-icon i {
  font-size: 2rem;
  color: #ea4335;
}

.google-review-content h3 {
  margin-bottom: 0.35rem;
  color: var(--secondary);
  font-size: 1.2rem;
}

.google-review-content p {
  color: var(--text);
  margin: 0;
}

/* Button */
.testimonials-btn {
  text-align: center;
  margin-top: 2rem;
}

/* Responsive */
@media (max-width: 900px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .google-review-card {
    flex-direction: column;
    text-align: center;
  }
}
/* =========================
   FOOTER
========================= */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.9);
  padding-top: 4rem;
  font-family: inherit;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
}

.footer-col h3 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: 1.15rem;
  font-family: inherit;
}

.footer-col p,
.footer-col a {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0.8rem;
  display: block;
  transition: var(--transition);
  font-family: inherit;
}
.footer-logo {
  display: flex !important;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  flex-wrap: nowrap;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  flex-wrap: nowrap;       /* 🔥 prevents stacking */
}

/* 🔥 force text next to image */
.footer-logo img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  flex-shrink: 0;          /* 🔥 stops image from pushing text down */
}

.footer-logo span {
  white-space: nowrap;     /* 🔥 keeps text on one line */
}

.footer-logo span {
  color: var(--white);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
}

.footer-brand p {
  max-width: 320px;
}

/* Socials */
.footer-socials {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  min-width: 40px;     /* 🔥 prevents stretching */
  min-height: 40px;    /* 🔥 prevents stretching */
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
  flex-shrink: 0;      /* 🔥 prevents flex distortion */
}
.footer-socials a i {
  font-size: 0.95rem;
  line-height: 1;
}

.footer-socials a:hover {
  transform: translateY(-4px);
}

/* Links hover */
.footer-col a {
  position: relative;
  width: fit-content;
}

.footer-col a:hover {
  color: var(--primary);
  transform: translateX(6px);
}

.footer-col a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1.5px;
  background: var(--primary);
  transition: var(--transition);
}

.footer-col a:hover::after {
  width: 100%;
}

/* Clickable heading */
.footer-heading-link {
  color: var(--white);
  text-decoration: none;
  transition: var(--transition);
}

.footer-heading-link:hover {
  color: var(--primary);
}

.footer-heading-link::after {
  display: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  padding: 1.2rem 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  font-family: inherit;
}
/* =========================
   FLOATING BUTTONS
========================= */

.whatsapp-float {
  position: fixed;
  left: 20px;
  bottom: 20px;
  width: 55px;
  height: 55px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex !important;        /* prevent override */
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.4rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  z-index: 999;
  transition: var(--transition);
  transform: none;                 /* reset any inherited transform */
  margin-bottom: 0;               /* reset footer link margins */
}
.whatsapp-float i,
.back-to-top i {
  font-size: inherit;
  line-height: 1;
  display: block; /* ensures the icon centers properly inside flex */
}

.whatsapp-float i {
  font-size: 1.5rem !important;
  line-height: 1 !important;
}

.whatsapp-float:hover {
  transform: translateY(-5px);
}

.back-to-top {
  position: fixed !important;
  right: 20px !important;
  bottom: 20px !important;
  width: 48px !important;
  height: 48px !important;
  min-width: 48px !important;
  min-height: 48px !important;
  border: none !important;
  outline: none !important;
  border-radius: 50% !important;
  background: var(--primary) !important;
  color: #fff !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2) !important;
  z-index: 9999 !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transition: var(--transition);
  appearance: none !important;
  -webkit-appearance: none !important;
}

.back-to-top i {
  font-size: 1rem !important;
  line-height: 1 !important;
}

.back-to-top.show {
  opacity: 1 !important;
  visibility: visible !important;
}

.back-to-top:hover {
  transform: translateY(-5px);
}

@media (max-width: 820px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    right: 5%;
    background: var(--white);
    width: 260px;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    padding: 0.5rem 0;
  }

  .nav-links a.active::after,
  .nav-links a:not(.btn-nav):hover::after {
    display: none;
  }

  .btn-nav {
    width: 100%;
    text-align: center;
    margin-top: 0.5rem;
  }

  .services-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero {
    min-height: 78vh;
  }

  .hero h1 {
    font-size: 2.4rem;
  }
}

@media (max-width: 600px) {
  .top-bar .container {
    flex-direction: column;
    align-items: flex-start;
  }

  .services-grid,
  .testimonials-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn,
  .btn-outline {
    width: 220px;
    text-align: center;
  }

  .section-title {
    font-size: 1.7rem;
  }

  .cta h2 {
    font-size: 1.8rem;
  }
}

/* =========================
   ABOUT PAGE HERO
========================= */
/* =========================
   ABOUT HERO
========================= */
.about-hero {
   min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 1rem 2rem;
  color: var(--white);

  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;

  background:
    linear-gradient(rgba(15, 23, 42, 0.78), rgba(15, 23, 42, 0.78)),
    url("images/hero-about.webp") center/cover no-repeat;
}

/* Optional: content width */
.about-hero .container {
  max-width: 800px;
}

/* Text styling */
.about-hero h1 {
  font-size: 2.3rem;
  margin-bottom: 1rem;
}

.about-hero p {
  font-size: 1.1rem;
  opacity: 0.9;
}
.page-hero h1 {
  font-size: 3rem;
}

.page-hero p {
  margin-top: 0.5rem;
}

/* =========================
   ABOUT PAGE
========================= */
/* =========================
   ABOUT HERO
========================= */
.about-hero {
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 1rem 2rem;
  color: var(--white);

  background:
    linear-gradient(rgba(15, 23, 42, 0.78), rgba(15, 23, 42, 0.78)),
    url("images/hero-about.webp") center/cover no-repeat;
}

/* Optional: content width */
.about-hero .container {
  max-width: 800px;
}

/* Text styling */
.about-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.about-hero p {
  font-size: 1.1rem;
  opacity: 0.9;
}
.about-page {
  padding: 5rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: center;
}

.about-image img {
  width: 100%;
  height: 60vh;
  border-radius: 15px;
}

.about-content h2 {
  margin-bottom: 1rem;
}

.about-content p {
  margin-bottom: 1rem;
  color: var(--text);
}

/* =========================
   FEATURES
========================= */
.about-features-section {
  padding: 5rem 0;
  background: #f8fafc;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.feature-box {
  background: var(--white);
  padding: 2rem;
  text-align: center;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature-box i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   ENGINE SERVICE PAGE HERO
========================= */
.service-page-hero {
  padding: 5rem 0;
  background: linear-gradient(rgba(15, 23, 42, 0.82), rgba(15, 23, 42, 0.82)),
              url("../images/service-hero.jpg") center/cover no-repeat;
  color: var(--white);
  text-align: center;
}

.service-page-hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  margin-bottom: 1rem;
}

.service-page-hero p {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.9);
}
.service-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.25rem;
  color: var(--white);
  font-weight: 700;
  padding: 0.75rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  transition: var(--transition);
}

.service-back-btn:hover {
  transform: translateX(-4px);
  background: rgba(255, 255, 255, 0.14);
}

.service-back-btn i {
  font-size: 0.95rem;
}

.service-breadcrumb {
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.service-breadcrumb a {
  color: rgba(255, 255, 255, 0.85);
}

.service-breadcrumb span {
  color: var(--primary);
}

/* =========================
   SERVICE OVERVIEW
========================= */
.service-overview {
  padding: 5rem 0;
  background: var(--white);
}

.service-overview-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: center;
}

.service-overview-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.service-overview-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
  color: var(--secondary);
}

.service-overview-content p {
  color: var(--text);
  margin-bottom: 1rem;
}

/* =========================
   SERVICE BENEFITS
========================= */
.service-benefits {
  padding: 5rem 0;
  background: #f8fafc;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.benefit-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.benefit-card:hover {
  transform: translateY(-6px);
}

.benefit-card i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.benefit-card h3 {
  margin-bottom: 0.8rem;
  color: var(--secondary);
}

.benefit-card p {
  color: var(--text);
}

/* =========================
   WHY SERVICE
========================= */
.why-service {
  padding: 5rem 0;
  background: var(--white);
}

.why-service-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: start;
}

.why-service-content p {
  color: var(--text);
  margin-bottom: 1rem;
}

.why-service-list {
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
}

.why-service-list li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 0.9rem;
  color: var(--secondary);
  font-weight: 500;
}

.why-service-list li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--primary);
  position: absolute;
  left: 0;
  top: 0;
}

.why-service-box {
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.why-service-box h3 {
  margin-bottom: 1rem;
  color: var(--secondary);
}

.service-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1rem;
}

.why-service-box p {
  color: var(--text);
  margin-bottom: 1.5rem;
}

/* =========================
   RESPONSIVE SERVICE PAGE
========================= */
@media (max-width: 950px) {
  .service-overview-grid,
  .why-service-grid {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .service-overview-image img {
    height: 320px;
  }

  .service-page-hero {
    padding: 4rem 0;
  }
}

/* =========================
   SERVICES PAGE
========================= */
.services-hero {
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 1rem 2rem;
  color: var(--white);
  background:
    linear-gradient(rgba(15, 23, 42, 0.78), rgba(15, 23, 42, 0.78)),
    url("images/hero-services.jpg") center/cover no-repeat;
}
/* Services hero extra content */
.hero-subtext {
  font-size: 1.2rem;
  max-width: 650px;
  margin: 0 auto 2rem;
  opacity: 0.9;
}

/* Highlights */
.hero-highlights {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero-highlights div {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.9);
}

.hero-highlights i {
  color: var(--primary);
  margin-right: 0.4rem;
} 
.services-page {
  padding: 5rem 0;
  background: #f8fafc;
}

.services-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  margin-top: 2.5rem;
}

.service-page-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: block;
  position: relative;
  overflow: hidden;
}

.service-page-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(217, 119, 6, 0.08), transparent 60%);
  opacity: 0;
  transition: var(--transition);
}

.service-page-card:hover {
  transform: translateY(-10px);
  border-color: rgba(217, 119, 6, 0.35);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
}

.service-page-card:hover::before {
  opacity: 1;
}

.service-page-icon {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  background: rgba(217, 119, 6, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.3rem;
  position: relative;
  z-index: 1;
}

.service-page-icon i {
  font-size: 2rem;
  color: var(--primary);
}

.service-page-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.9rem;
  color: var(--secondary);
  position: relative;
  z-index: 1;
}

.service-page-card p {
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 1.3rem;
  position: relative;
  z-index: 1;
}

.service-link {
  font-weight: 700;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

.service-page-card:hover .service-link {
  gap: 0.75rem;
}

/* Responsive */
@media (max-width: 950px) {
  .services-page-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-page-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   FAQ PAGE
========================= */

/* =========================
   FAQ HERO
========================= */
.faq-hero {
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 1rem 2rem;
  color: var(--white);

  background:
    linear-gradient(rgba(15, 23, 42, 0.78), rgba(15, 23, 42, 0.78)),
    url("images/hero-faq.jpg") center/cover no-repeat;
}

/* Content width */
.faq-hero .container {
  max-width: 850px;
}

/* Heading */
.faq-hero h1 {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  line-height: 1.1;
  margin-bottom: 1.2rem;
  font-weight: 800;
}

/* Subtext */
.faq-hero p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 2rem;
}
.faq-section {
  padding: 5rem 0;
  background: #f8fafc;
}

.faq-list {
  max-width: 900px;
  margin: 2.5rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  padding: 1.2rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
}

.faq-question i {
  color: var(--primary);
  transition: var(--transition);
  margin-left: 1rem;
  flex-shrink: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.5rem;
}

.faq-answer p {
  color: var(--text);
  line-height: 1.8;
  padding-bottom: 1.2rem;
}

.faq-item.active .faq-answer {
  max-height: 220px;
  padding: 0 1.5rem;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

/* Responsive */
@media (max-width: 600px) {
  .faq-question {
    font-size: 0.95rem;
    padding: 1rem 1.1rem;
  }

  .faq-answer {
    padding: 0 1.1rem;
  }

  .faq-item.active .faq-answer {
    padding: 0 1.1rem;
  }
}
/* =========================
   PRICING PAGE
========================= */
/* =========================
   PRICING HERO
========================= */
.pricing-hero {
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 1rem 2rem;
  color: var(--white);

  background:
    linear-gradient(rgba(15, 23, 42, 0.78), rgba(15, 23, 42, 0.78)),
    url("images/hero-pricing.webp") center/cover no-repeat;
}
.pricing-page {
  padding: 5rem 0;
  background: #f8fafc;
}

.pricing-table-wrap {
  margin-top: 2.5rem;
  overflow-x: auto;
}

.pricing-table {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.pricing-table-head,
.pricing-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 1rem;
  align-items: center;
}

.pricing-table-head {
  background: var(--secondary);
  color: var(--white);
  font-weight: 700;
  padding: 1.2rem 1.5rem;
}

.pricing-row {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--border);
  transition: var(--transition);
}

.pricing-row:hover {
  background: rgba(217, 119, 6, 0.04);
}

.pricing-service {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-weight: 700;
  color: var(--secondary);
}

.pricing-service i {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(217, 119, 6, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pricing-cost {
  font-weight: 800;
  color: var(--primary);
}

.pricing-desc {
  color: var(--text);
}

/* =========================
   PRICING CTA
========================= */
.pricing-cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  text-align: center;
}

.pricing-cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.pricing-cta h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.pricing-cta p {
  margin-bottom: 1.8rem;
  color: rgba(255, 255, 255, 0.92);
}

/* Responsive */
@media (max-width: 800px) {
  .pricing-table-head,
  .pricing-row {
    grid-template-columns: 1fr;
  }

  .pricing-table-head {
    display: none;
  }

  .pricing-row {
    gap: 0.7rem;
  }

  .pricing-row > div::before {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.25rem;
    opacity: 0.8;
  }

  .pricing-service::before {
    content: "Service";
  }

  .pricing-cost::before {
    content: "Price";
  }

  .pricing-desc::before {
    content: "What to Expect";
  }
}

/* =========================
   LOCATIONS PAGE
========================= */
/* =========================
   LOCATIONS HERO
========================= */
.locations-hero {
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 1rem 2rem;
  color: var(--white);

  background:
    linear-gradient(rgba(15, 23, 42, 0.78), rgba(15, 23, 42, 0.78)),
    url("images/hero-locations.jpg") center/cover no-repeat;
}

/* Optional: content width */
.locations-hero .container {
  max-width: 800px;
}
.locations-page {
  padding: 5rem 0;
  background: #f8fafc;
}
.locations-hero h1{
    font-size: 3rem;
  margin-bottom: 1rem;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.8rem;
  margin-top: 2.5rem;
}

.location-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.location-card:hover {
  transform: translateY(-8px);
  border-color: rgba(217, 119, 6, 0.3);
}

.featured-location {
  border: 2px solid var(--primary);
}

.location-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--primary);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
}

.location-card-top {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.location-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(217, 119, 6, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.location-icon i {
  color: var(--primary);
  font-size: 1.5rem;
}

.location-card h3 {
  font-size: 1.2rem;
  color: var(--secondary);
  margin-bottom: 0.35rem;
}

.location-meta {
  color: var(--text);
  font-size: 0.95rem;
}

.location-short {
  color: var(--text);
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.location-toggle-btn {
  background: transparent;
  border: none;
  color: var(--primary);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0;
  transition: var(--transition);
}

.location-toggle-btn:hover {
  gap: 0.8rem;
}

.location-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, margin-top 0.4s ease;
}

.location-details-inner {
  padding-top: 0.2rem;
}

.location-details p {
  color: var(--text);
  margin-bottom: 0.8rem;
  line-height: 1.7;
}

.location-card.active .location-details {
  max-height: 300px;
  margin-top: 1.2rem;
}

/* Responsive */
@media (max-width: 850px) {
  .locations-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   CONTACT PAGE
========================= */
/* =========================
   CONTACT HERO
========================= */
.contact-hero {
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 1rem 2rem;
  color: var(--white);

  background:
    linear-gradient(rgba(15, 23, 42, 0.78), rgba(15, 23, 42, 0.78)),
    url("images/hero-contact1.jfif") center/cover no-repeat;
}
/* Subtext */
.hero-subtext {
  font-size: 1.2rem;
  max-width: 650px;
  margin: 0 auto 2rem;
  opacity: 0.9;
}

/* Contact info row */
.hero-contact-info {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero-contact-info div {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.9);
}

.hero-contact-info i {
  color:  #dc2626;
  margin-right: 0.4rem;
}

/* Content width */
.contact-hero .container {
  max-width: 850px;
}

/* Tag */
.hero-tag {
  color: #dc2626;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

/* Heading */
.contact-hero h1 {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  line-height: 1.1;
  margin-bottom: 1.2rem;
  font-weight: 800;
}

/* Subtext */
.contact-hero p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 2rem;
}

/* Quick contact info (optional but makes it fuller) */
.hero-contact-info {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.hero-contact-info div {
  font-size: 0.95rem;
  opacity: 0.9;
}

.hero-contact-info i {
  color:  #dc2626;
  margin-right: 0.4rem;
}
.contact-page {
  padding: 5rem 0;
  background: #f8fafc;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
}

.contact-info h2,
.contact-form h2 {
  margin-bottom: 1rem;
}

.contact-info p {
  color: var(--text);
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.3rem;
}

.contact-item i {
  width: 45px;
  height: 45px;
  background: rgba(217, 119, 6, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}

.contact-item h4 {
  margin-bottom: 0.2rem;
}

.contact-item p {
  margin: 0;
  color: var(--text);
}

/* FORM */
.contact-form {
  background: var(--white);
  padding: 2rem;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 1rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.9rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  outline: none;
  font-size: 0.95rem;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
}

/* MAP */
.map-section {
  padding: 5rem 0;
  background: var(--white);
}

.map-container {
  margin-top: 2rem;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

/* Responsive */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   BOOKING PAGE
========================= */
/* =========================
   BOOKING HERO
========================= */
.booking-hero {
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 1rem 2rem;
  color: var(--white);

  background:
    linear-gradient(rgba(15, 23, 42, 0.78), rgba(15, 23, 42, 0.78)),
    url("images/hero-booking.jpg") center/cover no-repeat;
}

/* Content width */
.booking-hero .container {
  max-width: 850px;
}

/* Heading */
.booking-hero h1 {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  line-height: 1.1;
  margin-bottom: 1.2rem;
  font-weight: 800;
}

/* Subtext */
.booking-hero p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 2rem;
}
.booking-page {
  padding: 5rem 0;
  background: #f4f7fb;
}

.booking-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 2rem;
  align-items: start;
}

.booking-form-card,
.booking-contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.booking-form-card {
  padding: 2.2rem;
}

.booking-head h2 {
  font-size: 2rem;
  margin-bottom: 0.6rem;
  color: var(--secondary);
}

.booking-head p {
  color: var(--text);
  margin-bottom: 2rem;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.booking-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.booking-form .form-group {
  margin-bottom: 0;
}

.booking-form label {
  display: block;
  margin-bottom: 0.65rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  border: 1px solid #d6deea;
  background: #f6f8fc;
  border-radius: 14px;
  padding: 1rem 1.1rem;
  font-size: 1rem;
  color: var(--secondary);
  outline: none;
  transition: var(--transition);
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: #2c5d92;
  background: var(--white);
}

.booking-form textarea {
  resize: vertical;
  min-height: 150px;
}

.booking-submit-btn,
.booking-whatsapp-btn {
  width: 100%;
  border: none;
  border-radius: 999px;
  padding: 1.15rem 1.4rem;
  font-size: 1.05rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: var(--transition);
  text-decoration: none;
  cursor: pointer;
}

.booking-submit-btn {
  background: #d90416;
  color: var(--white);
  margin-top: 0.5rem;
}

.booking-submit-btn:hover {
  background: #b60312;
  transform: translateY(-2px);
}

.booking-whatsapp-btn {
  background: #25d366;
  color: var(--white);
}

.booking-whatsapp-btn:hover {
  background: #1fb357;
  transform: translateY(-2px);
}

.booking-note {
  text-align: center;
  color: var(--text);
  margin-top: 0.6rem;
  font-size: 0.95rem;
}

.booking-note i {
  margin-right: 0.35rem;
}

/* =========================
   BOOKING SIDEBAR
========================= */
.booking-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.booking-emergency-box {
  background: #e61d23;
  color: var(--white);
  border-radius: 20px;
  padding: 1.8rem;
  box-shadow: var(--shadow);
}

.booking-emergency-box h3 {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
}

.booking-emergency-box h3 i {
  margin-right: 0.45rem;
}

.booking-emergency-box p {
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.92);
}

.booking-emergency-box a {
  color: var(--white);
  font-weight: 800;
  font-size: 1.1rem;
}

.booking-contact-card {
  padding: 2rem;
}

.booking-contact-card h3 {
  font-size: 1.6rem;
  color: var(--secondary);
  margin-bottom: 1.4rem;
}

.booking-contact-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.booking-contact-item.no-border {
  border-bottom: none;
}

.booking-contact-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #f1f5fb;
  color: #2c5d92;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}

.whatsapp-icon-box {
  color: #25d366;
}

.booking-contact-item h4 {
  font-size: 1.1rem;
  color: var(--secondary);
  margin-bottom: 0.2rem;
}

.booking-contact-item p {
  color: var(--text);
  margin: 0;
}

/* =========================
   RESPONSIVE BOOKING
========================= */
@media (max-width: 1000px) {
  .booking-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .booking-row {
    grid-template-columns: 1fr;
  }

  .booking-form-card,
  .booking-contact-card {
    padding: 1.4rem;
  }

  .booking-head h2 {
    font-size: 1.6rem;
  }
}

/* =========================
   GOOGLE RATING CARD
========================= */
.google-rating-card {
  background: #dc2626;
  border-radius: 22px;
  padding: 2.5rem 2rem;
  text-align: center;
  color: var(--white);
  box-shadow: var(--shadow);
  margin-top: 30px;
}

/* Big rating */
.google-score {
  font-size: 4.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.5rem;
}

/* Stars */
.google-stars {
  display: flex;
  justify-content: center;
  gap: 0.35rem;
  margin-bottom: 0.6rem;
}

.google-stars i {
  color: #fff;
  font-size: 1.2rem;
}

/* Reviews text */
.google-reviews {
  font-size: 0.95rem;
  opacity: 0.85;
  margin-bottom: 1.5rem;
}

/* Platform badges */
.google-platforms {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 1.8rem;
}

.platform-badge {
  background: rgba(255,255,255,0.15);
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* Button */
.google-review-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  color: #f59e0b;
  font-weight: 700;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  text-decoration: none;
  transition: var(--transition);
}

.google-review-btn:hover {
  transform: translateY(-2px);
  background: #f3f4f6;
}

