:root {
  --bg: #0b0b0c;
  --panel: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.1);
  --text: #f5f6f7;
  --muted: #9aa0a6;
  --soft: #d7d9dd;
  --accent: #2f6bff;
  /* muted blue - adjust if needed */
  --radius: 8px;
  --max: 1240px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family:
    Inter,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
}

.row {
  display: flex;
  gap: 24px;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Utility */
.muted {
  color: var(--muted);
}

.btn.btn-primary {
  background: #ffffff;
  color: #111;
  border: 1px solid #ffffff;
}

.btn.btn-primary:hover {
  background: #f5f5f5;
  border-color: #f5f5f5;
}

.btn.btn-black {
  background: #010101;
  color: #fff;
  border: 1px solid #010101;
}

.btn.btn-black:hover {
  background: transparent;
  border-color: #010101;
  color: #010101;
}

.soft {
  color: var(--soft);
}

.pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  font-size: 16px;
  color: #fff;
}

.divider {
  height: 1px;
  background: var(--border);
}

/* Buttons */
.btn {
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform 0.15s ease,
    background 0.15s ease,
    border-color 0.15s ease;
  user-select: none;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0px);
}

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

.btn-primary:hover {
  background: rgba(47, 107, 255, 0.92);
}

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

.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
}

.btn-whatsapp {
  background: #25d366;
  border-color: #25d366;
  color: var(--text);
}

.btn-whatsapp:hover {
  border-color: rgba(17, 151, 17, 0.541);
  background: rgba(17, 151, 17, 0.541);
}

.btn-link {
  height: auto;
  padding: 0;
  background: transparent;
  border: 0;
  color: var(--soft);
  font-weight: 600;
  cursor: pointer;
}

.btn-link:hover {
  color: var(--text);
}

.hero {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Optional: gives it a nice premium “hero” height */
.hero .content {
  min-height: 70vh;
  display: flex;
  align-items: center;
}

/* Inputs */
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

label {
  font-size: 12px;
  color: var(--muted);
}

input,
select {
  height: 46px;
  padding: 0 14px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  outline: none;
  font-size: 14px;
}

input::placeholder {
  color: rgba(217, 217, 217, 0.55);
}

select option {
  color: #111;
}

/* Sections */
section {
  padding: 96px 0;
}

@media (max-width: 900px) {
  section {
    padding: 56px 0;
  }

  .row {
    flex-direction: column;
  }
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(11, 11, 12, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* FORCE SINGLE ROW */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap !important;
  /* Force no wrapping */
  width: 100%;
  height: 70px;
}

/* Prevent flex items from wrapping */
.nav>* {
  flex-shrink: 0;
}

/* Logo */
.logo img {
  width: auto;
  /* Prevent oversized logo */
  display: block;
}

/* Button */
.book-btn {
  white-space: nowrap;
  padding: 8px 16px;
  font-size: 13px;
}

/* Mobile Optimization */
@media (max-width: 600px) {

  .nav {
    padding: 0 12px;
  }

  .logo img {
    height: 46px;
    margin-left: 10px;
  }

  .book-btn {
    padding: 6px 10px;
    font-size: 12px;
    margin-right: 10px;
  }

}

/* Hero */
.hero {
  padding: 0;
  min-height: calc(90vh - 108px);
  display: flex;
  align-items: stretch;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      rgba(11, 11, 12, 0.92) 0%,
      rgba(11, 11, 12, 0.7) 45%,
      rgba(11, 11, 12, 0.9) 100%),
    radial-gradient(900px 400px at 20% 20%,
      rgba(47, 107, 255, 0.18),
      transparent 60%),
    url("https://images.unsplash.com/photo-1617886322009-0f0d0b0e0d0a?auto=format&fit=crop&w=2400&q=80");
  background-size: cover;
  background-position: center;
  filter: contrast(1.05) saturate(1.05);
  transform: scale(1.02);
}

.hero .content {
  position: relative;
  width: 100%;
  padding: 88px 0 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: end;
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
  }

  .hero .content {
    padding: 64px 0 56px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

/* Hero Form Card */
.hero-form-card {
  background: rgba(18, 18, 20, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 28px;
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  margin-bottom: 20px;
  width: 100%;
}

.form-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 18px;
  color: #fff;
}

.hero-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-form input,
.hero-form select,
.hero-form textarea {
  padding: 14px 16px;
  background: #111;
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  color: #fff;

  font-family: inherit;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;

  transition: 0.3s ease;
}

.hero-form input:focus,
.hero-form select:focus,
.hero-form textarea:focus {
  border-color: #fff;
  outline: none;
  background: #151515;
}

.hero-form textarea {
  resize: vertical;
  min-height: 90px;
}

.hero-form button {
  margin-top: 6px;
}

h1 {
  margin: 0;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.6px;
}

.sub {
  margin-top: 14px;
  max-width: 560px;
  color: var(--soft);
  font-size: 15.5px;
}

.cta-row {
  display: flex;
  gap: 12px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.trustline {
  margin-top: 16px;
  font-size: 13px;
  color: var(--muted);
}

/* Quick booking bar */
.booking-bar {
  margin-top: 28px;
  padding: 16px;
  border-radius: calc(var(--radius) + 4px);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.25);
}

.booking-grid {
  display: grid;
  grid-template-columns: 1.3fr 1.2fr 1fr 1.1fr auto;
  gap: 12px;
  align-items: end;
}

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

  .booking-grid .span-2 {
    grid-column: span 2;
  }

  .booking-grid .full {
    grid-column: 1 / -1;
  }

  .booking-grid .btn {
    width: 100%;
  }
}

/* Trust strip */
.trust-strip {
  padding: 56px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

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

.trust-item {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: #ffffff;
  /* changed */
}

.trust-item h4 {
  margin: 0 0 6px 0;
  font-size: 14.5px;
  color: #000;
  /* changed */
}

.trust-item p {
  margin: 0;
  color: #000;
  /* changed */
  font-size: 13.5px;
}

/* Section headings */
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
}

.section-head h2 {
  margin: 0;
  font-size: 34px;
  line-height: 1.15;
  letter-spacing: -0.3px;
}

.section-head p {
  margin: 0;
  max-width: 520px;
  color: var(--muted);
  font-size: 16px;
}

/* Services */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 1100px) {
  .cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.card {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #ffffff;
  /* changed */
  border-radius: var(--radius);
  min-height: 132px;
}

.card img {
  border-radius: 6px;
}

.icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  color: #000;
  /* changed */
  background: rgba(255, 255, 255, 0.03);
  font-size: 14px;
}

.card h3 {
  margin: 0 0 6px 0;
  font-size: 20px;
  color: #000;
  text-align: center;
}

.card p {
  margin: 0;
  color: #000;
  text-align: center;
  font-size: 14.5px;
}

/* Packages */
.packages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

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

.package {
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #ffffff;
  /* changed */
  position: relative;
}

.package.recommended {
  border-color: rgba(47, 107, 255, 0.55);
  box-shadow: 0 18px 50px rgba(47, 107, 255, 0.1);
}

.tag {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(47, 107, 255, 0.55);
  background: rgba(47, 107, 255, 0.12);
  color: #000;
  /* changed */
}

.package h3 {
  margin: 0 0 6px 0;
  font-size: 16px;
  color: #000;
  /* changed */
}

.package .price {
  margin: 0 0 12px 0;
  color: #000;
  /* changed */
  font-size: 13.5px;
}

.list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #000;
  /* changed */
  font-size: 13.5px;
}

.check {
  margin-top: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: grid;
  place-items: center;
  font-size: 12px;
  color: #000;
  /* changed */
  flex: 0 0 auto;
}

.package .actions {
  margin-top: 16px;
}

/* Process */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

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

.step {
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #ffffff;
  /* changed */
}

.num {
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #000;
  /* changed */
  margin-bottom: 12px;
  font-weight: 700;
  font-size: 13px;
}

.step h4 {
  margin: 0 0 6px 0;
  font-size: 20px;
  color: #000;
  /* changed */
}

.step p {
  margin: 0;
  color: #000;
  /* changed */
  font-size: 13.5px;
}

/* Reviews */
.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

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

.review {
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.stars {
  font-size: 12.5px;
  color: var(--soft);
  letter-spacing: 1px;
}

.review p {
  margin: 10px 0 10px;
  color: var(--soft);
  font-size: 13.8px;
}

.review .who {
  color: var(--muted);
  font-size: 13px;
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

@media (max-width: 900px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.gimg {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  position: relative;
}

.gimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(1.05);
  transform: scale(1.02);
}

/* FAQ */
details {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  padding: 14px 16px;
}

details+details {
  margin-top: 12px;
}

summary {
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  color: var(--soft);
  font-size: 18px;
}

summary::-webkit-details-marker {
  display: none;
}

details p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
}

/* Location */
.loc {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: stretch;
}

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

.map {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
}

iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Final CTA */
.final {
  padding: 84px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background:
    radial-gradient(800px 400px at 20% 20%,
      rgba(47, 107, 255, 0.16),
      transparent 60%),
    rgba(255, 255, 255, 0.02);
}

.final-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  align-items: center;
}

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

.form {
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

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

/* Footer */
footer {
  padding: 28px 0;
  color: var(--muted);
  font-size: 12.5px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--soft);
}

/* =========================
   RESPONSIVE PATCH (paste at bottom)
   ========================= */

/* 1) Make media never overflow */
img,
video {
  max-width: 100%;
  height: auto;
}

/* 2) Prevent flex items from forcing overflow */
.row,
.nav,
.hero-grid,
.final-grid,
.footer-inner {
  min-width: 0;
}

.stack,
.field,
.card,
.package,
.step,
.review {
  min-width: 0;
}

/* 3) Improve CTA wrapping on small screens */
.cta-row {
  width: 100%;
}

@media (max-width: 600px) {
  .cta-row .btn {
    width: 100%;
  }
}

/* 4) Fix wide grids progressively */
@media (max-width: 1200px) {
  .cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .packages {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews {
    grid-template-columns: 1fr;
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  /* booking grid: make it simpler */
  .booking-grid {
    grid-template-columns: 1fr 1fr;
  }

  .booking-grid .btn {
    width: 100%;
  }
}

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

  .steps {
    grid-template-columns: 1fr;
  }

  .gallery {
    grid-template-columns: 1fr;
  }

  /* booking grid: single column on very small */
  .booking-grid {
    grid-template-columns: 1fr;
  }
}

/* 5) Header/nav: allow wrapping + reduce height on phones */
@media (max-width: 900px) {
  header {
    backdrop-filter: blur(8px);
  }

  .nav {
    height: auto;
    padding: 12px 0;
    flex-wrap: wrap;
    gap: 12px;
  }

  .nav-right {
    width: 100%;
    justify-content: flex-end;
    flex-wrap: wrap;
  }

  .nav-right .btn {
    height: 46px;
  }
}

/* 6) Hero spacing + text scale on smaller screens */
@media (max-width: 900px) {
  .hero .content {
    padding: 56px 0 48px;
  }

  h1 {
    font-size: clamp(28px, 7vw, 40px);
  }

  .sub {
    font-size: 14.5px;
  }
}

/* 7) Section padding scale down smoothly */
@media (max-width: 900px) {
  section {
    padding: 56px 0;
  }
}

@media (max-width: 520px) {
  section {
    padding: 44px 0;
  }
}

/* 8) Location section: ensure map doesn’t get tiny */
@media (max-width: 900px) {
  .map {
    min-height: 280px;
  }
}

@media (max-width: 520px) {
  .map {
    min-height: 240px;
  }
}

/* 9) Make forms stack cleanly */
@media (max-width: 520px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

/* 10) Ensure long text doesn’t overflow cards */
.card,
.package,
.step,
.review,
.pill,
.logo,
nav a {
  word-wrap: break-word;
  overflow-wrap: anywhere;
}

/* Premium Why Section */
.why-premium {
  padding: 100px 0;
  background: #0b0b0c;
}

.why-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-image img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
}

.why-content h2 {
  font-size: 34px;
  margin: 18px 0;
  line-height: 1.3;
}

.why-sub {
  color: #aaa;
  margin-bottom: 30px;
  line-height: 1.6;
}

.why-badge {
  display: inline-block;
  background: rgb(252, 252, 252);
  color: #010101;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 500;
}

.why-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 30px;
  margin-bottom: 35px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  /* aligns icon & heading properly */
  gap: 16px;
}

.feature-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  /* prevents shrinking */
  display: flex;
  align-items: center;
  justify-content: center;
  background: #121214;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 18px;
  margin-top: 2px;
  /* fine alignment tweak */
}

.feature-item h4 {
  font-size: 16px;
  margin: 0 0 6px 0;
  /* remove top margin */
  line-height: 1.3;
}

.feature-item p {
  font-size: 13px;
  color: #aaa;
  margin: 0;
  line-height: 1.5;
}

.why-cta {
  padding: 14px 28px;
}

/* Responsive */
@media (max-width: 992px) {
  .why-wrapper {
    grid-template-columns: 1fr;
  }

  .why-features {
    grid-template-columns: 1fr;
  }
}

/* Slider Layout */
.testimonial-slider {
  position: relative;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s ease;
  will-change: transform;
}

.testimonial-card {
  flex: 0 0 50%;
  padding: 20px;
  box-sizing: border-box;
}

.testimonial-inner {
  background: #F1F1F1;
  padding: 30px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  height: 100%;
  text-align: left;
  color: #000;
}

/* Stars */
.stars {
  color: #f5c518;
  font-size: 16px;
  margin-bottom: 15px;
  letter-spacing: 2px;
}

/* Arrows */
.testimonial-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #121214;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 5;
  transition: 0.3s ease;
}

.testimonial-arrow:hover {
  background: #2f6bff;
}

.testimonial-arrow.prev {
  left: 0px;
}

.testimonial-arrow.next {
  right: 0px;
}

/* Responsive */
@media (max-width: 900px) {
  .testimonial-card {
    flex: 0 0 100%;
  }
}


/* CTA Section */
.cta-section {
  padding: 60px 0;
  text-align: center;
  position: relative;
}

.cta-wrapper {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
  background: #FFF;
  border-radius: 20px;
}

/* Google Rating Highlight */
.cta-rating {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(135deg, #141416, #1b1b20);
  padding: 18px 18px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  margin-bottom: 35px;
  margin-top: 15px;
  margin-left: 10px;
  margin-right: 10px;
}

.google-logo {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -1px;
}

.rating-content {
  text-align: left;
}

.rating-content .stars {
  color: #fbbc05;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.rating-content strong {
  display: block;
  font-size: 16px;
}

.rating-content span {
  font-size: 13px;
  color: #aaa;
}

.cta-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #010101;
}

.cta-content p {
  color: #181717;
  line-height: 1.6;
  margin-bottom: 35px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  padding-bottom: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .cta-content h2 {
    font-size: 26px;
  }
}

.text-dark {
  color: #000;
}

.service-contact-section {
  padding: 100px 0;
  color: #fff;
}

.service-header {
  text-align: center;
  margin-bottom: 60px;
}

.service-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #FFF;
  margin-bottom: -30px;
}

.service-header h4 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 0px;
  color: #ddd;
}

.service-header p {
  max-width: 700px;
  margin: 0 auto;
  color: #aaa;
  font-size: 16px;
}

.service-wrapper {
  display: flex;
  align-items: center;
  gap: 60px;
}

.service-image {
  flex: 1;
}

.service-image img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.service-points {
  flex: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.point {
  background: #111;
  padding: 18px 20px;
  border-radius: 6px;
  font-size: 20px;
  border-left: 3px solid #FFF;
  transition: 0.3s ease;
}

.point:hover {
  background: #181818;
  transform: translateX(5px);
}

/* Responsive */
@media (max-width: 991px) {
  .service-wrapper {
    flex-direction: column;
  }

  .service-points {
    grid-template-columns: 1fr;
  }
}

.heading-4 {
  font-size: 26px;
  text-align: center;
  padding-bottom: 10px;
}

/* Floating Buttons Container */
.floating-contact {
  position: fixed;
  right: 20px;
  bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

/* Common Button Style */
.float-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 50px;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  transition: 0.3s ease;
}

/* WhatsApp Style */
.float-btn.whatsapp {
  background: #25D366;
}

.float-btn.whatsapp:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(37, 211, 102, 0.4);
}

/* Call Style */
.float-btn.call {
  background: #EF8820;
  /* Your brand accent */
}

.float-btn.call:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(239, 136, 32, 0.4);
}

/* Mobile Adjustment */
@media (max-width: 600px) {
  .float-btn {
    padding: 10px 14px;
    font-size: 12px;
  }
}