:root {
  --primary: #6c63ff;

  --secondary: #ffce00;

  --navy: #091e42;
  --text-dark: #253858;
  --text-light: #5e6c84;
  --bg-light: #f4f5f7;
  --white: #ffffff;
  --success: #36b37e;
  --border: #dfe1e6;
  --radius: 8px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 24px rgba(0, 0, 0, 0.12);
  --font-family: 'Outfit', sans-serif;

  --section-width: 1400px;

}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  /* Offset for sticky header */
}

body {
  margin: 0;
  font-family: var(--font-family);
  color: var(--text-dark);
  background-color: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1rem 0;
  font-weight: 700;
  color: var(--navy);
}

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

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;

}


.section {
  padding: var(--section-padding);
  position: relative;
}

.section-sm {
  padding: 2rem 0;
}

.trusted-text {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
  color: #888;
  margin-bottom: 1.5rem;
}

.bg-light {
  background-color: var(--bg-light);
}

.text-center {
  text-align: center;
}

.d-flex {
  display: flex;
}

.align-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

.gap-1 {
  gap: 1rem;
}

.gap-2 {
  gap: 2rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn-primary {
  background-color: #f26c4f;
  /* Orange for primary CTAs */
  color: white;
  box-shadow: 0 4px 12px rgba(242, 108, 79, 0.4);
}

.btn-primary:hover {
  background-color: #d65135;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(242, 108, 79, 0.6);
}


.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: white;
}

/* Header & Mega Menu */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: white;
  box-shadow: var(--shadow-sm);
  padding: 0;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  padding: 0 1rem;

}

.nav-box {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-box a {
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-box a:hover {
  color: var(--primary-color);
}

/* Mega Menu */
.mega-menu {
  position: static;
}

.mega-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: white;
  padding: 2rem;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  box-shadow: var(--shadow-md);
  border-top: 1px solid #eee;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s;
}

.mega-menu:hover .mega-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-column h3 {
  font-size: 1rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mega-column ul li {
  margin-bottom: 0.5rem;
}

.mega-column ul li a {
  font-size: 0.9rem;
  color: var(--text-light);
}

.mega-column ul li a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}




/* CONFLICTING NAVBAR STYLES REMOVED - See style-modern.css */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 0%, #f0f9ff 10%, transparent 60%);
  z-index: 0;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}


/* Hero Section */
.hero {
  background: #ffffff;
  padding: 120px 0;
  position: relative;
  overflow: hidden;

}

.hero-badge {
  display: inline-block;
  background: #e3f2fd;
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}


.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-content h1 {
  font-size: 38px;
  margin-bottom: 16px;
  line-height: 1.3;
}

.hero-content p {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 24px;
  text-align: left;
}

.trust-badges-hero {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.review-badge {
  display: flex;
  align-items: center;
  /* Fix for stretched images */
  gap: 8px;
  background: white;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
}

.review-badge img {
  height: auto;
  object-fit: contain;
}

.form-card {
  background: var(--white);
  padding: 0;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.form-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.form-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--primary) 100%);
  /* background-color: var(--primary); */
  padding: 24px 30px;
  color: white;
  text-align: center;

}

.form-header h3 {
  color: white;
  margin: 0 0 8px 0;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.form-card form {
  padding: 30px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 15px;
  background-color: #f8fafc;
  transition: all 0.2s ease;
  color: var(--text-dark);
}

.form-control:focus {
  outline: none;
  background-color: #fff;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(108, 99, 255, 0.1);
}

.btn-submit {
  width: 100%;
  padding: 16px;
  background: linear-gradient(to right, #f26c4f, #eb5e40);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  margin-top: 10px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(242, 108, 79, 0.3);
}

.btn-submit:hover {
  background: linear-gradient(to right, #e05a3e, #d65135);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(242, 108, 79, 0.4);
}

/* Stats Section */
.stats-bar {
  background: #f0f5ff;
  padding: 30px 0;
  border-bottom: 1px solid #e0eaff;
}

.stats-grid {
  display: flex;
  justify-content: space-around;
  text-align: center;
}

.stat-item h3 {
  margin-bottom: 4px;
  font-size: 24px;
  color: var(--primary);
}

.stat-item p {
  margin: 0;
  font-size: 14px;
  color: var(--text-dark);
}

/* Services Grid */
.section {
  padding: 60px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h2 {
  font-size: 28px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.services-grid .service-card {
  text-align: center;
  align-items: center;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.service-card h4 {
  font-size: 16px;
  margin-bottom: 8px;
}

.service-link {
  color: var(--primary);
  font-weight: 600;
  margin-top: auto;
  font-size: 14px;
}

/* FAQ Section Cards */
.faq .service-card {
  margin-bottom: 16px;
  cursor: pointer;
}

/* Footer */
footer {
  background: #2a2a2a;
  color: #b3bac5;
  padding: 60px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h5 {
  color: white;
  margin-bottom: 16px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col a:hover {
  color: white;
}

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
}

/* Mobile */
@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .hero-right {
    display: none !important;
  }

  .hero {
    padding: 30px 0;
  }

  .hero-content h1 {
    font-size: 28px;
    line-height: 1.3;
  }

  .hero-content p {
    font-size: 15px;
    padding: 0 10px;
  }

  .nav-links {
    display: none;
  }

  .stats-grid {
    flex-direction: column;
    gap: 20px;
  }

  .trust-badges-hero {
    justify-content: center;
    margin-bottom: 30px;
  }

  /* Process Flow Mobile */
  .process-container {
    flex-direction: column;
    gap: 30px;
    align-items: center;
    padding: 0;
  }

  .process-step {
    width: 100%;
    margin-bottom: 20px;
  }

  .process-step::after {
    display: none;
    /* Hide connecting lines on mobile */
  }

  /* Form Alignment */
  .form-card {
    margin: 0 auto;
    max-width: 400px;
  }

  .form-header {
    padding: 16px 20px;
  }

  .form-header h3 {
    font-size: 18px;
    margin-bottom: 4px;
  }

  .form-card form {
    padding: 20px;
  }

  .form-group {
    margin-bottom: 12px;
  }

  .btn-submit {
    padding: 12px;
    font-size: 15px;
  }

  /* Banner Mobile */
  .cta-banner {
    flex-direction: column;
    padding: 30px 20px;
    text-align: center;
  }

  .cta-visual-left,
  .cta-visual-right {
    display: none;
  }

  .cta-content {
    padding: 0;
  }
}

/* Responsive Navbar Styles */
.menu-toggle {
  display: none;
  font-size: 24px;
  color: var(--navy);
  cursor: pointer;
}

/* Mobile Drawer */
.mobile-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100%;
  background: white;
  z-index: 1200;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  /* Enable vertical scroll */
}

.mobile-drawer.active {
  right: 0;
}

.drawer-header {
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
  /* Prevent header shrinking */
}

.close-btn {
  font-size: 24px;
  color: var(--text-light);
  cursor: pointer;
}

.drawer-links {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
  /* Control spacing via items */
}

.drawer-link {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-dark);
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
  display: block;
}

/* Mobile Dropdown Logic */
.drawer-item {
  border-bottom: 1px solid #f0f0f0;
}

.drawer-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-dark);
  cursor: pointer;
}

.drawer-dropdown {
  display: none;
  padding-left: 15px;
  padding-bottom: 10px;
  background: #fafbfc;
}

.drawer-dropdown.open {
  display: block;
}

.drawer-dropdown a {
  display: block;
  padding: 8px 0;
  font-size: 14px;
  color: var(--text-light);
  text-decoration: none;
}

.drawer-btn {
  background: var(--primary);
  color: white;
  text-align: center;
  padding: 12px;
  border-radius: 6px;
  font-weight: 600;
  margin-top: 20px;
  display: block;
  text-decoration: none;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
}

/* Table Styles */
.comparison-table-container {
  overflow-x: auto;
  margin: 40px 0;
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  -webkit-overflow-scrolling: touch;
  /* Smooth scroll on iOS */
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  min-width: 800px;
}

.comparison-table th,
.comparison-table td {
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

.comparison-table th {
  background: var(--navy);
  color: white;
  font-weight: 600;
  white-space: nowrap;
}

.comparison-table tr:hover {
  background-color: #f9f9f9;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

/* Process Flow Section */
.process-container {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  position: relative;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
  flex: 1;
  padding: 0 10px;
}

.process-icon-wrapper {
  position: relative;
  display: inline-flex;
  margin-bottom: 20px;
  width: 80px;
  height: 80px;
  background-color: #3b82f6;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  color: white;
  font-size: 32px;
  z-index: 2;
  background-clip: padding-box;
}

.process-number {
  position: absolute;
  top: 0;
  right: -5px;
  width: 28px;
  height: 28px;
  background-color: var(--navy);
  color: white;
  border-radius: 50%;
  border: 2px solid white;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Connecting Line - Desktop */
.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 40px;
  left: 50%;
  width: 100%;
  height: 3px;
  background: #bfdbfe;
  z-index: -1;
  transform: translateY(-50%);
}

.process-title {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--navy);
}


.process-desc {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.5;
}

.btn-cta {
  background-color: #f26c4f;
  color: white;
  text-decoration: none;
  border-radius: var(--radius);
  display: inline-block;
  transition: background-color 0.3s;
  font-weight: 600;
}

.btn-cta:hover {
  background-color: var(--navy);
  color: white;
}

/* Visual Polish */
.section {
  padding: 80px 0;
}

.service-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* CTA Banner Section (Desktop) */
.cta-section {
  padding: 60px 0;
  background-color: white;
}

.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--primary) 100%);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 56, 142, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px;
  position: relative;
  overflow: hidden;
  color: white;
  margin-bottom: 40px;
}

/* Decorative Background Shapes */
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -30px;
  left: 50px;
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.cta-content {
  flex: 1;
  padding: 0 40px;
  z-index: 2;
  text-align: center;
}

.cta-title {
  font-size: 36px;
  font-weight: 800;
  color: white;
  margin-bottom: 12px;
  text-transform: capitalize;
  letter-spacing: -0.5px;
}

.cta-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
  font-weight: 400;
}

.cta-visual-left,
.cta-visual-right {
  width: 150px;
  height: 100%;
  display: flex;
  position: absolute;
  align-items: center;
  justify-content: center;
  opacity: 0.2;
  font-size: 80px;
  color: white;
  z-index: 1;
}

.cta-visual-left {
  left: 40px;
}

.cta-visual-right {
  right: 40px;
}

/* Mobile Sticky Button */
.mobile-sticky-cta {
  display: none;
}

/* Footer Section */
footer {
  background-color: #2a2a2a;
  color: white;
  padding: 60px 0 20px;
  font-size: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h5 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: #bdc3c7;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: white;
  text-decoration: underline;
}

.footer-col ul li i {
  color: var(--primary);
  width: 20px;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
  color: #bdc3c7;
  font-size: 13px;
}

.copyright a {
  color: white;
  text-decoration: none;
}

@media (max-width: 768px) {
  .mobile-sticky-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 12px 20px;
    background: white;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    justify-content: center;
    transition: transform 0.3s ease;
  }

  .mobile-sticky-cta.hidden {
    transform: translateY(100%);
  }

  .mobile-sticky-cta .btn-cta {
    text-decoration: none;
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 10px rgba(59, 130, 246, 0.3);
    width: 100%;
    text-align: center;
    border-radius: 8px;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    display: block;
  }
}

@media (max-width: 768px) {
  .process-container {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
    padding-left: 0;
    max-width: 100%;

  }

  .process-step {
    width: 100%;
    display: grid;
    grid-template-columns: 80px 1fr;
    grid-template-rows: auto auto;
    column-gap: 20px;
    padding: 0;
    padding-bottom: 40px;
    position: relative;
    text-align: left;
  }

  .process-step:last-child {
    padding-bottom: 0;
  }

  .process-icon-wrapper {
    grid-column: 1;
    grid-row: 1 / 3;
    margin-bottom: 0;
    align-self: start;
  }

  .process-title {
    grid-column: 2;
    grid-row: 1;
    margin-bottom: 4px;
    align-self: center;
  }

  .process-desc {
    grid-column: 2;
    grid-row: 2;
    align-self: start;
  }

  /* Vertical Line for Mobile */
  .process-step:not(:last-child)::after {
    top: 80px;
    left: 40px;
    width: 2px;
    height: calc(100% - 80px);
    background: #bfdbfe;
    transform: translateX(-50%);
  }

  /* CTA Mobile Styles */
  .cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 30px;
    gap: 20px;
  }

  .cta-content {
    padding: 0;
  }

  .cta-visual-left,
  .cta-visual-right {
    display: none;
  }

  .cta-title {
    font-size: 24px;
  }
}


/* whatsap */

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #128C7E;
  transform: scale(1.1);
}


/* Mobile Bottom Sticky Bar */
.mobile-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  display: none;
  background: white;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1);
  padding: 8px 15px;
  gap: 12px;
}

.action-btn {
  flex: 1;
  text-align: center;
  padding: 12px 10px;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: 0.3s;
  border-radius: 12px;
}

.consult-btn {
  background: var(--primary);
  color: white;
}

.consult-btn:hover {
  background: #5a52d5;
  color: white;
}

.whatsapp-btn {
  background: #25d366;
  color: white;
}

.whatsapp-btn:hover {
  background: #20bd5a;
  color: white;
}

@media (max-width: 768px) {
  .mobile-bottom-bar {
    display: flex;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
  }

  .hero-right {
    display: none !important;
  }
}

/* Contact Popup Styles */
.contact-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.15s ease-out;
}

.contact-background.active {
  display: flex;
  opacity: 1;
}

.contact-popup {
  background: white;
  width: 90%;
  max-width: 450px;
  padding: 2.5rem;
  border-radius: 20px;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  transform: translateY(20px);
  transition: transform 0.15s ease-out;
  animation: slideUp 0.2s ease-out forwards;
}

.contact-background.active .contact-popup {
  transform: translateY(0);
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 2rem;
  cursor: pointer;
  color: #999;
  transition: 0.2s;
  line-height: 1;
}

.contact-close-btn:hover {
  color: var(--navy);
}

.contact-popup h3 {
  text-align: center;
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-size: 1.8rem;
}

.contact-popup p {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.contact-popup .form-group {
  margin-bottom: 1.2rem;
}

.contact-popup label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--navy);
  font-size: 0.9rem;
}

.contact-popup input,
.contact-popup textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  transition: 0.2s;
}

.contact-popup input:focus,
.contact-popup textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.1);
}

.contact-popup .btn-primary {
  margin-top: 1rem;
  padding: 1rem;
  font-size: 1.1rem;
  width: 100%;
}

@media (max-width: 576px) {
  .contact-popup {
    padding: 1.2rem;
    border-radius: 12px;
    width: 95%;
  }

  .contact-popup h3 {
    font-size: 1.3rem;
    margin-bottom: 0.2rem;
  }

  .contact-popup p {
    font-size: 0.8rem;
    margin-bottom: 1.2rem;
  }

  .contact-popup .form-group {
    margin-bottom: 0.8rem;
  }

  .contact-popup label {
    font-size: 0.75rem;
    margin-bottom: 0.2rem;
  }

  .contact-popup input,
  .contact-popup textarea {
    padding: 0.6rem 0.8rem;
    font-size: 0.85rem;
  }

  .contact-popup .btn-primary {
    padding: 0.8rem;
    font-size: 1rem;
    margin-top: 0.5rem;
  }
}

body.no-scroll {
  overflow: hidden;
}

/* Hide Mobile Bottom Nav on Desktop */
.mobile-bottom-nav {
  display: none;
}

/* Sticky "Call/Whatsapp" Bottom Bar */
@media (max-width: 768px) {
  .mobile-sticky-footer {
    position: fixed;
    bottom: 65px !important;
    /* Push up above bottom nav */
    left: 0;
    width: 100%;
    background: #fff;
    padding: 12px 16px;
    box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    display: flex;
    gap: 12px;
  }

  .sticky-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    transition: 0.2s;
  }

  .btn-call {
    background: #fff;
    border: 1px solid #0d6efd;
    color: #0d6efd;
  }

  .btn-whatsapp {
    background: #25D366;
    /* Whatsapp Green */
    color: #fff;
    border: none;
  }

  .sticky-btn i {
    margin-right: 8px;
    font-size: 16px;
  }

  /* Hide Existing Mobile Footer/Bottom Bar if any */
  .mobile-bottom-bar {
    display: none !important;
  }

  /* Mobile Bottom Navigation (Matching Image) */
  .mobile-bottom-nav {

    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 8px 0;
    z-index: 10000;
    border-top: 1px solid #f0f0f0;
  }

  .nav-item-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #8c8c8c;
    /* Inactive Color (Grey) */
    flex: 1;
    background: none;
    border: none;
    padding: 0;
  }

  .nav-item-bottom i {
    font-size: 20px;
    margin-bottom: 4px;
    color: inherit;
  }

  .nav-item-bottom span {
    font-size: 10px;
    font-weight: 500;
    color: inherit;
  }

  /* Active State (Blue) */
  .nav-item-bottom.active {
    color: #0d6efd;
    /* Bootstrap Primary Blue or match image exact blue */
  }

  .nav-item-bottom:hover {
    color: #0d6efd;
  }
}