:root {
  --primary: #0d6efd;
  --dark: #0b1b3a;
  --light-bg: #f8fafc;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #1f2937;

  line-height: 1.6;
}

@media (max-width: 576px) {
  body {
    font-size: 0.95rem;
  }
}

.container,
.container-fluid {
  padding-left: 15px;
  padding-right: 15px;
}

@media (max-width: 576px) {
  .container,
  .container-fluid {
    padding-left: 12px;
    padding-right: 12px;
  }
}
.top-strip {
  background: var(--dark);
  color: #fff;
  font-size: 0.9rem;
}

@media (max-width: 576px) {
  .top-strip {
    font-size: 0.75rem;
    padding: 8px 0 !important;
  }
  
  .top-strip span,
  .top-strip a {
    display: block;
    width: 100%;
    text-align: center;
  }
}

.main-navbar {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  padding: 10px 0;
  height: auto;
}

.brand-logo {
  max-height: 70px;
  max-width: 150px;
  width: auto;
  height: auto;
  border-radius: 8px;
  object-fit: contain;
  display: block;
}

.hero-slide {
  min-height: 72vh;
  background-size: cover;
  background-position: center;
  position: relative;
}

@media (max-width: 768px) {
  .hero-slide {
    min-height: 55vh;
  }
}

@media (max-width: 576px) {
  .hero-slide {
    min-height: 50vh;
  }
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(11, 27, 58, 0.62);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

@media (max-width: 768px) {
  .hero-content h1,
  .hero-content h2 {
    font-size: 1.5rem !important;
    line-height: 1.3;
    margin-bottom: 10px;
  }
  
  .hero-content p {
    font-size: 0.95rem;
    margin-bottom: 15px;
  }
  
  .hero-content .btn-lg {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }
  
  .hero-content .d-flex {
    gap: 0.5rem !important;
  }
}

@media (max-width: 576px) {
  .hero-content h1,
  .hero-content h2 {
    font-size: 1.25rem !important;
  }
  
  .hero-content .btn-lg {
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
    width: 100%;
    margin-bottom: 8px;
  }
  
  .hero-content .d-flex {
    flex-direction: column;
  }
}

.section-title {

  color: var(--dark);
  font-weight: 700;
  margin-bottom: 25px;
}

@media (max-width: 768px) {
  .section-title {
    margin-bottom: 20px;
  }
}

@media (max-width: 576px) {
  .section-title {
    margin-bottom: 15px;
  }
}

.service-card,
.trust-card,
.choose-card,
.step-card,
.testimonial-card,
.brand-card {
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  background: #fff;
  height: 100%;
  padding: 15px;
  text-align: center;
}

@media (max-width: 576px) {
  .service-card,
  .trust-card,
  .choose-card,
  .step-card,
  .testimonial-card,
  .brand-card {
    margin-bottom: 12px;
  }
}
  
@media (max-width: 768px) {
  .service-card,
  .trust-card,
  .choose-card,
  .step-card,
  .testimonial-card,
  .brand-card {
    padding: 12px;
  }
}

.service-card:hover,
.trust-card:hover,
.choose-card:hover,
.step-card:hover,
.testimonial-card:hover,
.brand-card:hover {
  transform: translateY(-4px);

  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
}

.brand-card img,
.service-card img,
.blog-card img,
img {
  max-width: 100%;
  height: auto;
}

.icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(13, 110, 253, 0.12);
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.review-stars {
  color: #f59e0b;
}

.brand-placeholder {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  min-height: 90px;
  display: grid;
  place-items: center;
}

.trust-strip {
  background: var(--light-bg);
}

.booking-section {
  background: linear-gradient(160deg, #f8fafc, #eaf2ff);
}

.page-header {
  background: linear-gradient(rgba(11, 27, 58, 0.78), rgba(11, 27, 58, 0.78)),
    url("https://images.unsplash.com/photo-1581578731548-c64695cc6952?auto=format&fit=crop&w=1400&q=60") center/cover;
  color: #fff;

  padding: 85px 0;
}

@media (max-width: 576px) {
  .page-header {
    padding: 50px 0;
  }
  
  .page-header h1 {
    font-size: 1.5rem;
  }
}
@media (max-width: 768px) {
  .page-header {
    padding: 50px 0;
  }
  
  .page-header h1 {
    font-size: 1.75rem;
  }
  
  .page-header p {
    font-size: 0.95rem;
  }
}

.content-card {
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  background: #fff;
}

.map-placeholder {
  min-height: 230px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #e5e7eb;
  color: #374151;
  font-weight: 600;
}

.footer {
  background: #0b1225;
  color: #cbd5e1;
}

.footer a {
  color: #cbd5e1;
  text-decoration: none;
}

.footer a:hover {
  color: #fff;
}

.floating-whatsapp {
  position: fixed;
  right: 16px;
  bottom: 100px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.7rem;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .floating-whatsapp {
    bottom: 75px;
    right: 10px;
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
  }
}

.floating-call {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 999;

  display: none;
}

@media (max-width: 576px) {
  .floating-call {
    left: 10px;
    right: 10px;
    bottom: 12px;
  }
}
.floating-call a {
  width: 100%;
}

section {
  overflow: hidden;
}

main {
  padding-bottom: 100px;
}

@media (max-width: 768px) {
  main {
    padding-bottom: 130px;
  }
}

.blog-card img {
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
  object-fit: cover;
  width: 100%;
}

@media (max-width: 991.98px) {
  .hero-slide {
    min-height: 58vh;
  }

  .floating-call {
    display: block;
  }
}

@media (max-width: 768px) {
  .container,
  .container-fluid {
    padding-left: 15px;
    padding-right: 15px;
  }

  .main-navbar {
    padding: 8px 0;
  }

  .main-navbar .navbar-toggler {
    border-color: rgba(0, 0, 0, 0.15);
    padding: 0.3rem 0.55rem;
  }

  .main-navbar .navbar-collapse {
    margin-top: 10px;
    padding: 8px 0;
  }

  .main-navbar .navbar-nav {
    align-items: flex-start !important;
    gap: 0 !important;
  }

  .main-navbar .navbar-nav .nav-link {
    padding: 0.55rem 0;
  }

  .hero-slide {
    min-height: 60vh;
    background-size: cover;
    background-position: center;
  }

  .hero-content h1,
  .hero-content h2 {
    font-size: 1.75rem !important;
    line-height: 1.3;
  }

  .hero-content p {
    font-size: 1rem;
    line-height: 1.5;
  }

  .hero-content .d-flex {
    flex-direction: column;
    align-items: stretch;
    gap: 10px !important;
  }

  .hero-content .btn {
    width: 100%;
  }

  #services-home .row > [class*="col-"] {
    flex: 0 0 100%;
    max-width: 100%;
  }

  #brands .row {
    --bs-gutter-x: 0.9rem;
    --bs-gutter-y: 0.9rem;
  }

  #brands .row > [class*="col-"] {
    flex: 0 0 50%;
    max-width: 50%;
  }

  #brands .brand-card {
    padding: 12px !important;
  }

  #brands .brand-card img {
    max-height: 72px !important;
    width: 100%;
    object-fit: contain;
  }

  .py-5 {
    padding-top: 2.2rem !important;
    padding-bottom: 2.2rem !important;
  }

  .content-card {
    padding: 1rem !important;
  }

  .floating-call {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }

  .floating-whatsapp {
    right: 10px;
    bottom: 84px;
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
  }
}

@media (max-width: 576px) {
  body {
    font-size: 0.95rem;
  }

  .hero-slide {
    min-height: 56vh;
  }

  .hero-content h1,
  .hero-content h2 {
    font-size: 1.45rem !important;
  }

  .hero-content p {
    font-size: 0.95rem;
  }

  .service-card,
  .trust-card,
  .choose-card,
  .step-card,
  .testimonial-card,
  .brand-card {
    padding: 12px;
  }

  .service-card img {
    height: 190px;
  }

  .section-title {
    margin-bottom: 15px;
  }

  .trust-card h3,
  .step-card h3,
  .testimonial-card h3 {
    font-size: 1rem;
  }

  .trust-card p,
  .step-card p,
  .testimonial-card p {
    font-size: 0.9rem;
  }
}
