:root {
  --navy: #06283D;
  --navy-dark: #031D2D;
  --yellow: #FFC400;
  --yellow-hover: #E6B200;
  --light: #F8F9FA;
  --white: #FFFFFF;
  --text: #102A43;
  --muted: #526480;
  --border: #E2E8F0;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: min(1200px, calc(100% - 2rem));
  margin: 0 auto;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

.section-label {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--yellow);
  margin-bottom: 0.5rem;
}

.text-yellow { color: var(--yellow); }

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--navy);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--yellow);
  color: var(--navy);
  box-shadow: 0 4px 15px rgba(255,196,0,0.3);
}

.btn-primary:hover {
  background: var(--yellow-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,196,0,0.4);
}

.btn-secondary {
  background: var(--white);
  color: var(--navy);
  border: 2px solid var(--navy);
}

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

.btn-dark {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(6,40,61,0.3);
}

.btn-dark:hover {
  background: var(--navy-dark);
  transform: translateY(-2px);
}

/* TOP BAR */
.top-bar {
  background: var(--navy-dark);
  color: var(--white);
  padding: 8px 0;
  font-size: 0.85rem;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left span,
.top-bar-right span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.top-bar-divider {
  margin: 0 12px;
  opacity: 0.4;
}

.top-bar i {
  color: var(--yellow);
}

@media (max-width: 900px) {
  .top-bar-inner {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  .top-bar-right {
    display: none; /* Hide features on small screens to save space */
  }
}

/* MAIN HEADER */
.site-header {
  background: var(--white);
  box-shadow: 0 2px 15px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0.5rem 0;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-logo-img {
  height: 95px; /* Increased size for much better visibility */
  width: auto;
  display: block;
  filter: drop-shadow(0 3px 6px rgba(0,0,0,0.15)); /* Slightly stronger shadow to stand out */
  transition: transform 0.3s ease, filter 0.3s ease;
}

.header-logo-img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 5px 10px rgba(0,0,0,0.2));
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

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

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 220px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border-radius: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s ease;
  list-style: none;
  padding: 1rem 0;
  z-index: 100;
  border: 1px solid var(--border);
}

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

.dropdown-menu li {
  padding: 0;
}

.dropdown-menu a {
  display: block;
  padding: 0.6rem 1.5rem;
  font-weight: 500;
  color: var(--muted);
  transition: all 0.2s;
}

.dropdown-menu a:hover {
  background: rgba(76, 175, 80, 0.05); /* very light green */
  color: #4CAF50;
  padding-left: 1.8rem;
}

.dropdown-menu a::after {
  display: none !important; /* Remove the green underline from dropdown items */
}

.nav-links > li > a {
  color: var(--navy);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #4CAF50; /* Using the green from the screenshot for hover */
}

/* Add green underline to active/hover (simulated) */
.nav-links a.active,
.nav-links a:hover {
  position: relative;
}

.nav-links a:hover::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #4CAF50;
  border-radius: 2px;
}

.nav-btn {
  padding: 0.6rem 1.5rem;
  font-weight: 600;
  border-radius: 30px;
}

.nav-btn { padding: 0.6rem 1.4rem; font-size: 0.85rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: all 0.3s;
}

/* Hero Carousel */
.hero-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: var(--navy);
}

.carousel-container {
  position: relative;
  width: 100%;
}

.hero-overlay-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 10;
  color: var(--white);
  width: 90%;
  max-width: 800px;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
}

.hero-overlay-content h1 {
  font-size: clamp(1.8rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-overlay-content p {
  font-size: clamp(0.9rem, 2vw, 1.2rem);
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.carousel-slide {
  display: none;
}

.full-width-image {
  width: 100%;
  height: 80vh;
  min-height: 500px;
  max-height: 800px;
  object-fit: cover;
  display: block;
}

.top-align {
  object-position: 50% 25%;
}

.prev-btn, .next-btn {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 24px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  background-color: rgba(0,0,0,0.3);
}

.next-btn {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev-btn:hover, .next-btn:hover {
  background-color: rgba(0,0,0,0.8);
}

.carousel-dots {
  text-align: center;
  position: absolute;
  bottom: 20px;
  width: 100%;
}

.dot {
  cursor: pointer;
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: rgba(255,255,255,0.5);
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.dot.active, .dot:hover {
  background-color: var(--yellow);
}

.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* About */
.about {
  padding: 5rem 0;
  background: var(--white);
}

.about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image { position: relative; }

.about-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.about-dots {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background-image: radial-gradient(var(--yellow) 2px, transparent 2px);
  background-size: 12px 12px;
  z-index: -1;
}

.about-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
}

.about-content > p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.stat-card {
  background: var(--light);
  padding: 1.25rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.stat-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
}

.stat-label {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.25rem;
}

/* Services */
.services {
  padding: 5rem 0;
  background: var(--light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

.services-grid.new-services-grid {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 2rem;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.services-grid.new-services-grid::-webkit-scrollbar {
  display: none;
}

.service-card {
  flex: 0 0 calc(25% - 0.75rem);
  scroll-snap-align: start;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

@media (max-width: 1200px) {
  .service-card {
    flex: 0 0 calc(33.333% - 0.666rem);
  }
}
@media (max-width: 900px) {
  .service-card {
    flex: 0 0 calc(50% - 0.5rem);
  }
}
@media (max-width: 600px) {
  .service-card {
    flex: 0 0 85vw;
    min-width: 85vw;
  }
}

.service-image-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.service-image-wrapper img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.service-floating-icon {
  position: absolute;
  top: 15px;
  left: 15px;
  width: 44px;
  height: 44px;
  background: #FF9F2A;
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 4px 10px rgba(255,159,42,0.3);
}

.service-content {
  padding: 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0d233a;
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex: 1;
}

.btn-service {
  background: #004B93;
  color: var(--white);
  padding: 0.6rem 1.5rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.3s;
}

.btn-service:hover {
  background: #00366b;
  color: var(--white);
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.service-card:hover .service-image-wrapper img {
  transform: scale(1.1);
}


/* Why Choose Us */
.why-choose {
  padding: 5rem 0;
  background: var(--navy);
  color: var(--white);
}

.why-choose-wrapper {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: start;
}

.why-choose-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.why-choose-content p {
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.benefit-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 1.5rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.benefit-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 30px rgba(255, 196, 0, 0.15);
  border-color: var(--yellow);
}

.benefit-icon i {
  transition: transform 0.5s ease;
}

.benefit-card:hover .benefit-icon i {
  transform: rotateY(360deg);
}

.benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--yellow);
  color: var(--navy);
  border-radius: 12px;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.benefit-card h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.benefit-card p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

/* Testimonials */
.testimonials {
  padding: 5rem 0 2rem 0;
  background: var(--light);
}

.google-rating {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  font-size: 0.9rem;
}

.google-rating i {
  color: #4285F4;
  font-size: 1.1rem;
}

.testimonial-slider {
  position: relative;
  overflow: hidden;
  padding: 1rem 0 1rem;
}

.full-width-slider {
  padding-left: 5%;
  padding-right: 5%;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
  gap: 2rem;
}

.testimonial-card {
  min-width: calc(33.333% - 1.333rem);
  background: var(--white);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.test-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.google-icon {
  color: #4285F4;
  font-size: 1.2rem;
  opacity: 0.8;
}

.stars {
  color: var(--yellow);
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.review {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}

.reviewer strong {
  display: block;
  font-size: 0.95rem;
  color: var(--navy);
}

.reviewer span {
  font-size: 0.8rem;
  color: var(--muted);
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.test-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--navy);
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

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

/* How It Works */
.how-it-works {
  padding: 3rem 0 5rem 0;
  background: var(--light);
}

.steps-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.step {
  text-align: center;
  padding: 2rem;
  flex: 1;
  min-width: 200px;
  max-width: 280px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  position: relative;
  transition: transform 0.3s;
}

.step:hover {
  transform: translateY(-5px);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--yellow);
  color: var(--navy);
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  color: var(--yellow);
  border-radius: 50%;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.step h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--navy);
}

.step p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

.step-arrow {
  display: flex;
  align-items: center;
  padding-top: 3.5rem;
  color: var(--yellow);
  font-size: 1.2rem;
}

/* FAQ Section */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  transition: box-shadow 0.3s;
}

.faq-item:hover {
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: color 0.3s;
}

.faq-question:hover {
  color: var(--yellow);
}

.faq-question i {
  transition: transform 0.3s ease;
  color: var(--yellow);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  background: #fafafa;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 1.5rem 1.5rem 1.5rem;
}

.faq-answer p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

/* Contact Section */
.contact-section {
  padding: 5rem 0;
  background: var(--yellow);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.contact-content h2 {
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
}

.contact-content p {
  font-size: 1.05rem;
  color: var(--navy);
  opacity: 0.9;
  line-height: 1.6;
}

.contact-form-container {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-group {
  margin-bottom: 1.25rem;
}

.contact-form input,
.contact-form select {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--light);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-form input:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(6, 40, 61, 0.1);
}

.w-100 {
  width: 100%;
  justify-content: center;
}

/* Footer */
.site-footer {
  background: var(--navy-dark);
  color: var(--white);
  padding-top: 4rem;
}

.footer-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr 1.5fr;
  gap: 2rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-col p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: background 0.3s;
}

.social-links a:hover { background: var(--yellow); color: var(--navy); }

.footer-col h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  color: var(--white);
}

.footer-links li { margin-bottom: 0.6rem; }

.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: color 0.3s;
}

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

.footer-contact {
  list-style: none;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.footer-contact li.indent { padding-left: 1.65rem; }

.footer-contact a { color: rgba(255,255,255,0.6); }
.footer-contact a:hover { color: var(--yellow); }

.footer-contact i { color: var(--yellow); margin-top: 3px; }

.footer-bottom {
  padding: 1.5rem 0;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
}

/* Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-wrapper { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 1.5rem 2rem;
    gap: 1rem;
    border-top: 1px solid var(--border);
    box-shadow: 0 10px 15px rgba(0,0,0,0.05);
  }
  .nav-links a { color: var(--navy); }
  
  .dropdown-menu {
    position: static;
    visibility: visible;
    opacity: 1;
    transform: none;
    box-shadow: none;
    border: none;
    border-left: 2px solid var(--yellow);
    background: #fdfdfd;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    display: none;
  }
  
  .dropdown:hover .dropdown-menu,
  .dropdown:focus-within .dropdown-menu {
    display: block;
  }
  
  .hamburger { display: flex; }
  .nav-btn { display: none; }
  .about-wrapper { grid-template-columns: 1fr; gap: 2rem; }
  .about-image { order: -1; }
  .why-choose-wrapper { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-card { min-width: calc(50% - 1rem); }
  .contact-wrapper { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
  .footer-wrapper { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .services-grid, .services-grid.new-services-grid { 
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    gap: 1.5rem;
  }
  .service-card {
    flex: none;
    min-width: 100%;
    width: 100%;
  }
  .benefits-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .testimonial-card { min-width: 100%; }
  .steps-grid { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); padding: 0.5rem 0; }
  .footer-wrapper { grid-template-columns: 1fr; text-align: center; }
  .social-links { justify-content: center; }
  .footer-contact li { justify-content: center; }
  
  .about, .services, .why-choose, .testimonials, .how-it-works, .contact-section {
    padding: 2rem 0;
  }
  
  .about-dots {
    display: none;
  }
  
  .hero-overlay-content h1 {
    font-size: 1.8rem;
  }
  
  .hero-overlay-content p {
    font-size: 0.95rem;
  }
  
  .full-width-image {
    height: 50vh;
    min-height: 300px;
    max-height: 450px;
  }
  
  .hero-carousel .prev-btn, .hero-carousel .next-btn {
    padding: 10px;
    font-size: 18px;
  }
}

/* Floating Contact Buttons */
.floating-contact {
  position: fixed;
  bottom: 25px;
  right: 25px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1000;
}

.float-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: white;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
}

.float-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
  color: white;
}

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

.phone-btn {
  background-color: #007bff;
}

@media (max-width: 600px) {
  .floating-contact {
    bottom: 15px;
    right: 15px;
    gap: 10px;
  }
  .float-btn {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
}

/* WhatsApp Popup CSS */
.wa-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

.wa-popup-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.wa-popup-box {
  background: white;
  width: 90%;
  max-width: 450px;
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  transform: translateY(50px);
  transition: all 0.4s cubic-bezier(0.5, 0, 0, 1);
  box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

.wa-popup-overlay.active .wa-popup-box {
  transform: translateY(0);
}

.wa-popup-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--muted);
  transition: color 0.3s ease;
}

.wa-popup-close:hover {
  color: #ff4757;
}

.wa-popup-header {
  text-align: center;
  margin-bottom: 2rem;
}

.wa-popup-header i {
  font-size: 3rem;
  color: #25D366;
  margin-bottom: 1rem;
}

.wa-popup-header h3 {
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.wa-popup-header p {
  color: var(--muted);
  font-size: 0.9rem;
}

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

.wa-popup-form input {
  width: 100%;
  padding: 0.8rem 1.2rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text);
  outline: none;
  transition: border-color 0.3s ease;
}

.wa-popup-form input:focus {
  border-color: var(--navy);
}

.btn-whatsapp {
  background: #25D366;
  color: white;
  width: 100%;
  border: none;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 1rem;
  border-radius: 8px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.btn-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}
