/* =========================
   GLOBAL STYLES
========================= */

/* Brand Styling */
.navbar {
  background: white;
}

.navbar .brand-logo {
  height: 48px;
  width: auto;
}

.navbar .brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.navbar .brand-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.5px;
  color: #111;
  line-height: 1.1;
  margin: 0;
  text-transform: uppercase;
}

.navbar .brand-tagline {
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  color: var(--red);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0;
  line-height: 1.2;
  font-weight: 500;
}

/* Mobile Optimization for Nav Header */
@media (max-width: 768px) {
  .navbar {
    padding: 0.5rem 0;
  }
  
  .navbar .brand-logo {
    height: 38px;
    margin-right: 8px;
  }
  
  .navbar .brand-name {
    font-size: 1.1rem;
    letter-spacing: -0.3px;
  }
  
  .navbar .brand-tagline {
    font-size: 0.7rem;
  }
  
  .navbar-brand {
    padding: 0;
  }

  .navbar-toggler {
    padding: 4px 8px;
    font-size: 1.1rem;
  }
}

/* Ensure mobile menu appears properly */
@media (max-width: 991px) {
  .navbar-collapse {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0,0,0,0.1);
  }
}

/* Mobile Optimization for Nav Brand */
@media (max-width: 768px) {
  .navbar .brand-name {
    font-size: 1.2rem;
  }
  
  .navbar .brand-tagline {
    font-size: 0.75rem;
  }
  
  .navbar .brand-logo {
    height: 40px !important;
  }
  
  .navbar-brand {
    gap: 10px !important;
  }
}

.brand-tagline {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  color: rgba(255,255,255,0.9);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0;
  line-height: 1.2;
  font-weight: 500;
}

/* Mobile Optimization for Brand */
@media (max-width: 768px) {
  .brand-name {
    font-size: 1.5rem;
    font-weight: 800;
  }
  
  .brand-tagline {
    font-size: 0.85rem;
  }
  
  .brand-container {
    text-align: left;
    padding: 0.5rem 0;
  }
}

@media (max-width: 768px) {
  .brand-name {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.3px;
  }
  
  .brand-tagline {
    font-size: 0.9rem;
    font-weight: 600;
  }
  
  .navbar-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }
}

/* Mobile Optimization */
@media (max-width: 768px) {
  /* Global padding and margin adjustments */
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  section {
    padding: 40px 0;
  }

  /* Text size adjustments */
  body {
    font-size: 15px;
    line-height: 1.5;
  }

  /* Button and form adjustments */
  .btn {
    padding: 8px 16px;
    font-size: 0.95rem;
  }

  .form-control {
    font-size: 0.95rem;
    height: auto;
    padding: 10px;
  }

  /* Spacing utilities */
  .py-5 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  .my-5 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }

  /* Image responsiveness */
  img {
    max-width: 100%;
    height: auto;
  }

  /* Card and container adjustments */
  .card {
    margin-bottom: 1rem;
  }

  .container {
    max-width: 100%;
  }
}
body {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #111;
  background: #fff;
  overflow-x: hidden;
}

/* Prevent layout shift when the scrollbar appears/disappears */
html { overflow-y: scroll; }

:root {
  --red: #b1001a;
  --red-light: #fbe9ee;
  --primary-accent: var(--red);
  --primary-dark: #2563eb;
  --whatsapp-green: #25D366;
  --whatsapp-dark: #128C7E;
  --section-bg-1: #fff;
  --section-bg-2: #fff;
  --section-bg-3: #fff;
  --accent: #2563eb;
  --header-bg: #fff;
  --footer-bg: #2563eb;
  --glass-bg: #fff;
  --shadow: 0 8px 32px rgba(59,130,246,0.10);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: #111;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  position: relative;
  color: #111;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
}

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

a:hover, .nav-link:hover, .footer a:hover {
  color: #b1001a;
  text-decoration: none;
  transition: color 0.2s;
}

/* Button hover effects */
.btn, .btn-primary, .btn-outline, .btn-hero-primary, .btn-hero-wa, .btn-primary-lg, .btn-ghost-lg, .btn-outline-lg {
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.btn:hover, .btn-primary:hover, .btn-outline:hover, .btn-hero-primary:hover, .btn-hero-wa:hover, .btn-primary-lg:hover, .btn-ghost-lg:hover, .btn-outline-lg:hover {
  background: #2563eb !important;
  color: #fff !important;
  box-shadow: 0 4px 16px rgba(59,130,246,0.18);
  transform: translateY(-2px) scale(1.04);
}

/* Icon hover effects */
.bi, .footer .social-links a i, .footer-social a i {
  transition: color 0.2s, transform 0.2s;
}
.bi:hover, .footer .social-links a:hover i, .footer-social a:hover i {
  color: #b1001a !important;
  transform: scale(1.2);
}


/* Section spacing */
section {
  padding-top: 8px;
  padding-bottom: 8px;
  background: #fbe9ee;
  border-radius: 18px;
  margin-bottom: 20px;
  box-shadow: 0 8px 32px rgba(59,130,246,0.18);
}
.bg-contrast { background: #fbe9ee; }
.bg-contrast-alt { background: #fbe9ee; }

/* =========================
   NAVBAR
========================= */
nav.navbar {
  font-weight: 600;
  background: #fff !important;
  box-shadow: 0 4px 24px rgba(26,34,53,0.10);
  border-bottom: 2px solid var(--primary-accent);
}

.navbar, .navbar-light, .navbar-brand, .navbar-nav, .nav-link {
  border-radius: 0 !important;
}
.navbar .navbar-brand, .navbar .brand-title, .navbar .auth-label {
  color: #23272f !important;
}

.navbar .nav-link.active, .navbar .nav-link:hover {
  color: var(--primary-accent) !important;
  background: #fff;
  border-radius: 8px;
}

.navbar .brand-title {
  font-size: 2rem;
  font-weight: 900;
  background: #fff !important;
  margin-left: 0;
  background: #fff;
  padding: 2px 4px;
  border-radius: 12px;
  letter-spacing: 1px;
  text-shadow: 0 2px 8px rgba(59,130,246,0.18);
}

.navbar .brand-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  line-height: 1.1;
  gap: 0.1rem;
}

.navbar .brand-title {
  display: block;
  line-height: 1.15;
  margin-bottom: 0.1rem;
}

.navbar .brand-tagline {
  display: block;
  line-height: 1.1;
  margin-top: 0;
}

@media (max-width: 576px) {
  .navbar .brand-stack {
    align-items: flex-start;
  }
  .navbar .brand-title {
    font-size: 0.95rem;
    word-break: break-word;
    max-width: 110px;
    line-height: 1.1;
  }
  .navbar .brand-tagline {
    font-size: 0.7rem;
    max-width: 110px;
    white-space: normal;
    line-height: 1.1;
  }
  .brand-logos-img {
    max-width: 97vw;
    border-radius: 8px;
    padding: 2px;
    height: auto;
  }
  .navbar .nav-link {
    font-size: 1rem;
    padding: 12px 10px;
    min-width: 44px;
    min-height: 44px;
    text-align: left;
  }
  .navbar .btn-hero-primary, .navbar .btn-hero-wa {
    padding: 12px 10px;
    font-size: 1rem;
    min-width: 44px;
    min-height: 44px;
  }
  .navbar-toggler {
    min-width: 44px;
    min-height: 44px;
  }
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
  section {
    padding-top: 12px;
    padding-bottom: 12px;
  }
}


.navbar .brand-tagline {
  color: #b1001a !important;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  display: block;
}

@media (max-width: 576px) {
  .navbar .brand-tagline {
    font-size: 0.85rem;
  }
}
.navbar .brand-logo {
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.08));
}

.navbar .brand-logo {
  height: 50px;
  object-fit: contain;
}

.brand-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: #111;
}

/* Navbar links */
.navbar .nav-link {
  color: #23272f;
  font-weight: 600;
  padding: 4px 8px;
  transition: color 0.2s;
}


.navbar .nav-link:hover {
  color: #2563eb;
}

/* Navbar CTAs */
.navbar .btn-hero-primary,
.navbar .btn-hero-wa {
  padding: 6px 10px;
  border-radius: 12px;
  font-weight: 700;
  color: #fff;
  border: none;
  background: #2563eb;
  box-shadow: 0 2px 10px rgba(59,130,246,0.08);
  transition: box-shadow 0.2s, background 0.2s;
}
.navbar .btn-hero-primary:hover,
.navbar .btn-hero-wa:hover {
  background: #2563eb;
  box-shadow: 0 6px 16px rgba(59,130,246,0.16);
  color: #fff;
}

.btn-hero-primary {
  background: #b1001a !important;
  color: #fff !important;
  border: none;
  font-weight: 700;
  box-shadow: 0 2px 10px rgba(177,0,26,0.08);
}

.btn-hero-primary:hover {
  background: #fff !important;
  color: #b1001a !important;
  border: 1px solid #b1001a;
}

.btn-hero-wa {
  background: var(--whatsapp-green) !important;
  color: #fff !important;
  border: 2px solid var(--whatsapp-green) !important;
  font-weight: 800;
}
.btn-hero-wa:hover {
  background: var(--whatsapp-dark) !important;
  color: #fff !important;
  border-color: var(--whatsapp-dark) !important;
}
/* WhatsApp button in form */
#enquiryForm .btn-hero-wa {
  background: var(--whatsapp-green) !important;
  color: #fff !important;
  border: 2px solid var(--whatsapp-green) !important;
}
#enquiryForm .btn-hero-wa:hover {
  background: var(--whatsapp-dark) !important;
  color: #fff !important;
  border-color: var(--whatsapp-dark) !important;
}

.btn-hero-wa:hover {
  background: var(--whatsapp-green) !important;
  color: #fff !important;
  border-color: var(--whatsapp-green) !important;
}

/* =========================
   HERO SECTION
========================= */
.hero-section {
  padding: 40px 0;
  background: #b1001a;
  width: 100%;
  margin: 0;
  position: relative;
  left: 0;
  right: 0;
}

.brand-container {
  padding: 0.5rem 0;
}

.brand-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  letter-spacing: -0.5px;
  color: white;
  line-height: 1.1;
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.brand-tagline {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0;
  line-height: 1.2;
  font-weight: 500;
}

@media (max-width: 768px) {
  .brand-name {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.3px;
  }
  
  .brand-tagline {
    font-size: 0.95rem;
    font-weight: 500;
  }
  
  .brand-container {
    padding: 0.25rem 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }
}

.hero-section .container {
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
}

.hero-sub {
  font-size: 1.2rem;
  margin-top: 12px;
  color: #fff;
}

.kicker {
  font-size: 0.9rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

/* Hero CTA buttons */
.btn-primary-lg {
  background: #FFF9C4 !important;
  color: #23272f !important;
  font-weight: 800;
  border-radius: 20px;
  padding: 16px 36px;
  border: none;
  box-shadow: 0 4px 16px rgba(59,130,246,0.08);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.btn-primary-lg:hover {
  background: #2563eb !important;
  color: #fff !important;
  border: 1px solid #2563eb;
}

/* Latest Blog button style */
.blog-preview .btn-outline-primary {
  background: #b1001a !important;
  color: #fff !important;
  border: none !important;
  font-weight: 700;
  border-radius: 20px;
  padding: 10px 30px;
  transition: background 0.2s, color 0.2s;
}
.blog-preview .btn-outline-primary:hover {
  background: #fff !important;
  color: #b1001a !important;
  border: 1px solid #b1001a !important;
}

.btn-primary-lg:hover {
  background: #2563eb;
  color: #fff;
  box-shadow: 0 8px 32px rgba(59,130,246,0.14);
}
.btn-ghost-lg {
  background: var(--whatsapp-green);
  color: #fff;
  font-weight: 800;
  border-radius: 20px;
  padding: 16px 36px;
  border: 2px solid var(--whatsapp-green);
  box-shadow: 0 2px 10px rgba(59,130,246,0.06);
  transition: background 0.2s, color 0.2s;
}
.btn-ghost-lg:hover {
  background: var(--whatsapp-dark);
  color: #fff;
  border-color: var(--whatsapp-dark);
}
.btn-ghost-lg:hover {
  background: #2563eb;
  color: #fff;
}
.btn-outline-lg {
  background: #fff;
  color: #2563eb;
  border: 2px solid #2563eb;
  font-weight: 700;
  border-radius: 20px;
  padding: 16px 36px;
  transition: background 0.2s, color 0.2s;
}
.btn-outline-lg:hover {
  background: #2563eb;
  color: #fff;
}

/* Hero pills */
.usp-pill {
  background: #fff;
  border: 1px solid #eee;
  padding: 3px 6px;
  border-radius: 14px;
  font-weight: 700;
  color: #111;
}

/* Hero carousel */
.hero-image {
  height: 380px;
  object-fit: cover;
  border-radius: 14px;
}

.about-description {
  text-align: justify;
  color: #111;
  background: #fbe9ee;
  font-size: 1.18rem;
  font-weight: 400;
  border-radius: 8px;
  padding: 12px 16px;
}

/* =========================
   COUNTERS
========================= */
.counters-section .circle-wrap {
  position: relative;
  width: 160px;
  height: 160px;
  margin: auto;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 24px rgba(59,130,246,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle-svg {
  transform: rotate(-90deg);
}

.circle-svg circle {
  fill: none;
  stroke-width: 10;
}

.circle-svg .bg {
  stroke: #e5e7eb;
}

.circle-svg .progress {
  stroke: #2563eb;
  stroke-dasharray: 326;
  stroke-dashoffset: 326;
  transition: stroke-dashoffset 1s linear;
}

.circle-number {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  font-weight: 900;
  font-size: 2.5rem;
  color: #b1001a;
  letter-spacing: 1px;
  text-shadow: 0 2px 8px rgba(59,130,246,0.10);
}

.meta {
  margin-top: 10px;
  font-weight: 600;
  color: #111;
}

.carousel-control-prev-icon, .carousel-control-next-icon {
  background-color: #23272f !important;
  border-radius: 50%;
  border: 2px solid #fff;
  width: 2.5rem;
  height: 2.5rem;
  opacity: 1 !important;
}

/* =========================
   WHY CHOOSE US
========================= */
.feature-card {
  border: 1.5px solid #2563eb;
  border-radius: 24px;
  transition: all 0.3s ease;
  background: #fff;
  box-shadow: 0 8px 32px rgba(59,130,246,0.18);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.feature-card .icon-lg {
  font-size: 2.7rem;
  margin-bottom: 0.7rem;

  font-size: 2rem;
  color: #2563eb;
}

/* =========================
   SERVICES
========================= */
.service-eq {
  background: #fff;
  border: 1px solid #b1001a;
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s;
  box-shadow: 0 8px 32px rgba(59,130,246,0.18);
  margin-bottom: 10px;
}

.service-eq:hover {
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

.service-img {
  height: 200px;
  object-fit: cover;
  width: 100%;
}

/* =========================
   BRANDS
========================= */
.brand-logos-img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 6px 32px rgba(24,28,40,0.10);
  border: 1.5px solid #e5e7eb;
  background: #fff;
  padding: 2px;
}

@media (max-width: 576px) {
  .brand-logos-img {
    max-width: 98vw;
    border-radius: 8px;
    padding: 2px;
  }
  .section-title {
    font-size: 1.1rem;
  }
  section {
    padding-top: 14px;
    padding-bottom: 14px;
    border-radius: 8px;
    margin-bottom: 8px;
  }
  .footer .brand-title, .navbar .brand-title {
    font-size: 0.95rem;
  }
  .footer .brand-tagline, .navbar .brand-tagline {
    font-size: 0.7rem;
  }
  .service-eq, .feature-card {
    border-radius: 8px;
    padding: 4px 2px;
    margin-bottom: 5px;
  }
  .gallery-thumb {
    border-radius: 5px;
    height: 60px;
    margin-bottom: 3px;
  }
}


.brand-logo-lg {
  height: 50px;
  object-fit: contain;
}

.brand-name {
  font-weight: 700;
  margin-top: 8px;
  color: #111;
}

/* =========================
   GALLERY
========================= */
.gallery-thumb {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(24,28,40,0.08);
  margin-bottom: 8px;
}

/* =========================
   TESTIMONIALS
========================= */
.testi-card {
  border-radius: 14px;
  font-size: 0.97rem;
  border: 1.5px solid #2563eb;
  box-shadow: 0 2px 8px rgba(59,130,246,0.08);
  margin-bottom: 8px;
  padding: 8px 6px;
}
.bg-accent-1 { background: #2563eb !important; }
.bg-accent-2 { background: #b1001a !important; }
.bg-accent-3 { background: #25D366 !important; }
.testi-card p, .testi-card h6 { color: #fff !important; }

.testi-card p, .testi-card h6 {
  color: #23272f !important;
}

.testi-card p, .testi-card h6 {
  color: #fff !important;
}

.testi-carousel-btn {
  background-color: #23272f !important;
  border-radius: 50%;
  border: 2px solid #fff;
  width: 2.5rem;
  height: 2.5rem;
  opacity: 1 !important;
}

.bg-accent-1 { background: #fff; }
.bg-accent-2 { background: #fff; }
.bg-accent-3 { background: #2563eb; }

/* =========================
   BLOG PREVIEW
========================= */
.blog-preview {
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 12px;
}

.blog-preview img {
  border-radius: 12px 0 0 12px;
}

/* =========================
   CONTACT
========================= */
.map-card iframe {
  border: 0;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(24,28,40,0.06);
}

.form-card {
  background: #fff;
  border: 1px solid #eee;
  padding: 4px 4px;
  margin-bottom: 12px;
}

.form-control, .form-select {
  border-radius: 10px;
  border: 1px solid #ddd;
}

/* =========================
   HOW IT WORKS SECTION (Redesigned)
========================= */
#how-it-works {
  background: #fbe9ee;
  border-radius: 1.5rem;
  box-shadow: 0 4px 32px rgba(177,0,26,0.06);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}
#how-it-works, #how-it-works .section-title, #how-it-works .how-step-card, #how-it-works .step-desc, #how-it-works h5 {
  color: #23272f !important;
}
#how-it-works .section-title {
  color: #111;
  font-weight: 900;
  letter-spacing: 2px;
  margin-bottom: 2.2rem;
  font-size: 2.2rem;
}
.how-steps-row {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
}
.how-step-card {
  background: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 6px 28px rgba(59,130,246,0.10);
  border: 1px solid #b1001a;
  transition: box-shadow 0.22s, transform 0.22s;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5rem 0.5rem 0.5rem 0.5rem;
  position: relative;
  z-index: 1;
}
.how-step-card:hover {
  box-shadow: 0 12px 36px rgba(177,0,26,0.15);
  transform: translateY(-6px) scale(1.045);
}
.how-step-badge {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  background: #2563eb;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 900;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(177,0,26,0.12);
  border: 3px solid #fff;
  z-index: 2;
}
.how-step-icon {
  font-size: 2.3rem;
  color: #b1001a;
  background: #e9eef5;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  margin-top: 1.4rem;
  box-shadow: 0 1px 8px rgba(59,130,246,0.09);
  transition: background 0.18s, color 0.18s;
}
.how-step-card:hover .how-step-icon {
  background: #b1001a;
  color: #fff;
}
.how-step-card h5 {
  font-weight: 700;
  color: #23272f;
  margin-bottom: 0.6rem;
  margin-top: 0.4rem;
  font-size: 1.17rem;
}
.step-desc {
  color: #111;
  font-size: 1.04rem;
  margin-top: 0.2rem;
}
@media (max-width: 991px) {
  .how-steps-row {
    flex-direction: column;
    gap: 1.5rem;
  }
  .how-step-card {
    min-height: 170px;
    padding: 0.3rem 0.3rem 0.3rem 0.3rem;
  }
  .how-step-badge {
    width: 38px;
    height: 38px;
    font-size: 1.05rem;
    top: -22px;
  }
  .how-step-icon {
    font-size: 1.35rem;
    width: 38px;
    height: 38px;
    margin-top: 0.7rem;
    margin-bottom: 0.6rem;
  }
}

/* =========================
   FOOTER
========================= */
.footer {
  background: #b1001a;
  color: #fff !important;
}

/* Ensure footer does not overlap floating CTAs and sits behind them */
.footer {
  position: relative;
  z-index: 1;
  border-radius: 0;
}
.footer * {
  color: #fff !important;
}
.footer-logo-white {
  filter: brightness(0) invert(1) !important;
}
.footer {
  border-top: 2px solid var(--primary-accent);
  padding-top: 4px;
  padding-bottom: 4px;
  box-shadow: none !important;
}
.footer .highlight-link {
  color: #b1001a;
}
.footer a.text-info {
  color: #111 !important;
}
.footer .social-links a {
  color: #fff;
  transition: color 0.2s;
}
.footer .social-links a:hover {
  color: #fff !important;
  background: #b1001a !important;
.footer .footer-social a {
  color: #fff !important;
  background: transparent !important;
  border-radius: 50%;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.footer .footer-social a:hover {
  color: #fff !important;
  background: #b1001a !important;
  border-radius: 50% !important;
  box-shadow: 0 4px 16px rgba(59,130,246,0.18) !important;
}
.footer .footer-social a i {
  color: #fff !important;
  transition: color 0.2s, transform 0.2s;
}
.footer .footer-social a:hover i {
  transform: scale(1.35) !important;
  transition: transform 0.2s !important;
}

.footer .footer-links a {
  color: #fff;
  background: transparent;
  border-radius: 50px;
  padding: 7px 18px;
  display: inline-block;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.footer .footer-links a:hover {
  color: #fff !important;
  background: #b1001a !important;
  box-shadow: 0 4px 16px rgba(59,130,246,0.18);
  transform: scale(1.18);
  border-radius: 50px;
}

.footer .footer-social a i {
  color: #fff !important;
  transition: color 0.2s;
}
.footer .footer-social a:hover i {
  color: #fff !important;
}


.footer .brand-title {
  color: #b1001a;
}
.footer .brand-tagline {
  color: #fff !important;
  background: transparent !important;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  display: block;
}
@media (max-width: 576px) {
  .footer .brand-tagline {
    font-size: 0.85rem;
  }
}

.footer .highlight-link {
  color: #b1001a;
  font-weight:700;
  text-decoration:none;
}

.footer a.text-muted { color: #111 !important; }

.social-links a {
  font-size:1.3rem;
}

/* =========================
   FLOATING WHATSAPP
========================= */
.floating-wa {
  position:fixed;
  right:18px;
  bottom:18px;
  width:56px;
  height:56px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background: var(--whatsapp-green) !important;
  color:#fff;
  font-size:22px;
  z-index:999;
  box-shadow:0 12px 28px rgba(59,130,246,.18);
  border: 2px solid #fff;
  transition: background 0.2s;
}
.floating-wa:hover {
  background: var(--whatsapp-dark) !important;
  color: #fff !important;
  transform: scale(1.1);
  transition: all 0.2s ease;
}

/* =========================
   RESPONSIVE
========================= */
/* =========================
   RESPONSIVE STYLES
========================= */

/* Navbar adjustments */
@media (max-width: 991.98px) {
  .navbar {
    padding: 0.5rem 0;
  }
  
  .navbar-brand {
    margin-right: 0;
  }
  
  .navbar-toggler {
    padding: 0.5rem;
    border: none;
    box-shadow: none !important;
  }
  
  .navbar-collapse {
    background: white;
    margin: 0.5rem -1rem -0.5rem;
    padding: 0 1rem 1rem;
    border-radius: 0 0 0.5rem 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  }
  
  .navbar-nav {
    padding-top: 0.5rem;
  }
  
  .nav-item {
    margin: 0.25rem 0;
  }
  
  .nav-link {
    padding: 0.75rem 0.5rem;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
  
  .btn-primary {
    width: 100%;
    margin-top: 0.5rem;
    padding: 0.6rem 1.25rem;
  }
}

/* General responsive adjustments */
@media (max-width: 991.98px) {
  .hero-title { font-size: 2rem; }
  .hero-image { height: 220px; }
  .gallery-thumb { height: 160px; }
  section { 
    padding: 2.5rem 0;
  }
  
  /* Improve touch targets */
  .btn, button, [role="button"] {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Form elements */
  input, select, textarea {
    font-size: 16px !important; /* Prevent zoom on focus in iOS */
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (max-width: 767.98px) {
  .hero-title { font-size: 1.75rem; }
  .section-title { font-size: 1.5rem; }
  
  /* Adjust spacing */
  .py-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  
  /* Improve grid layout */
  .row {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
  
  [class*="col-"] {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  .hero-title { 
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .section-title {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
  }
  
  .brand-title { 
    font-size: 1rem; 
  }
  
  .brand-logo { 
    height: 40px !important;
  }
  
  /* Improve button sizing */
  .btn {
    padding: 0.5rem 1rem;
    font-size: 1rem;
  }
  
  /* Adjust spacing */
  .mb-4, .my-4 {
    margin-bottom: 1rem !important;
  }
  
  .mt-4, .my-4 {
    margin-top: 1rem !important;
  }
  
  /* Improve form layout */
  .form-control, .form-select {
    height: 48px;
    padding: 0.5rem 0.75rem;
  }
  
  /* Floating action buttons */
  .floating-wa, .floating-backtotop {
    width: 50px !important;
    height: 50px !important;
    font-size: 24px !important;
  }
  
  .floating-backtotop {
    bottom: 70px !important;
  }
}
  section { padding: 24px 0; }
}
