/* ===== Global Header Styles ===== */
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #fff;
  color: #1e1e1e;
}

.header {
  background: #ffffff;
  border-bottom: 1px solid #e5e5e5;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* ===== Navbar Container ===== */
.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px;
}

/* ===== Logo ===== */
.logo-wrapper .logo {
  font-size: 1.6rem;
  font-weight: 700;
  color: #1e3a8a;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.3s;
}

.logo-wrapper .logo:hover {
  color: #ff4d6d;
}

/* ===== Desktop Nav Links ===== */
.nav-links-desktop {
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav-link {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-link:hover {
  color: #ff4d6d;
}

/* ===== Call Now Button ===== */
.call-now-button {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #ff4d6d;
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s, transform 0.2s;
}

.call-now-button svg {
  width: 18px;
  height: 18px;
}

.call-now-button:hover {
  background: #e53b5d;
  transform: scale(1.05);
}

/* ===== Mobile Menu Toggle ===== */
.mobile-menu-toggle-wrapper {
  display: none;
}

.mobile-menu-button {
  background: none;
  border: none;
  cursor: pointer;
  color: #1e3a8a;
}

.mobile-menu-button svg {
  width: 28px;
  height: 28px;
}

.hidden {
  display: none;
}

/* ===== Mobile Menu Content ===== */
.mobile-menu-content {
  display: none;
  flex-direction: column;
  background: #ffffff;
  position: absolute;
  top: 70px;
  left: 0;
  width: 100%;
  padding: 20px;
  border-top: 1px solid #eee;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.mobile-nav-link {
  padding: 12px 0;
  text-decoration: none;
  color: #1e1e1e;
  font-weight: 500;
  border-bottom: 1px solid #f0f0f0;
  transition: color 0.3s;
}

.mobile-nav-link:hover {
  color: #ff4d6d;
}

/* ===== Responsive Design ===== */
@media (max-width: 991px) {
  .nav-links-desktop {
    display: none;
  }

  .mobile-menu-toggle-wrapper {
    display: block;
  }

  .mobile-menu-content.active {
    display: flex;
  }

  .header {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  }
}

@media (max-width: 575px) {
  .navbar-container {
    padding: 10px 15px;
  }

  .logo-wrapper .logo {
    font-size: 1.4rem;
  }

  .call-now-button {
    padding: 7px 14px;
    font-size: 0.9rem;
  }
}
/* === Hero Slider Styles === */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
}

.hero-slides {
  display: flex;
  transition: transform 0.8s ease-in-out;
}

.hero-slide {
  min-width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slide::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 20px;
  max-width: 800px;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.btn-primary,
.btn-secondary {
  padding: 12px 30px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary {
  background: #1e3a8a;
  color: #fff;
}

.btn-primary:hover {
  background: #ff4d6d;
  color: #fff;
}

.btn-secondary {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.btn-secondary:hover {
  background: #fff;
  color: #1e3a8a;
}

/* === Navigation Arrows === */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  background: rgba(0,0,0,0.4);
  color: #fff;
  border: none;
  padding: 10px 18px;
  cursor: pointer;
  border-radius: 50%;
  transition: 0.3s;
  z-index: 3;
}

.hero-arrow:hover {
  background: rgba(255, 255, 255, 0.8);
  color: #1e3a8a;
}

.hero-arrow.left { left: 20px; }
.hero-arrow.right { right: 20px; }

/* === Dots === */
.hero-dots {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.hero-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: 0.3s;
}

.hero-dots .dot.active,
.hero-dots .dot:hover {
  background: #ff4d6d;
}

/* === Responsive Design === */
@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
  .btn-primary,
  .btn-secondary {
    padding: 10px 24px;
  }
}

@media (max-width: 600px) {
  .hero-slider {
    height: 80vh;
  }
  .hero-slide {
    height: 80vh;
  }
  .hero-content h1 {
    font-size: 1.8rem;
  }
  .hero-content p {
    font-size: 0.95rem;
  }
  .hero-arrow {
    font-size: 1.4rem;
    padding: 8px 12px;
  }
}
/* === About Section Styles === */
.about-homenet {
  background: #f9fafb;
  padding: 80px 20px;
  font-family: 'Inter', sans-serif;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.about-image {
  flex: 1 1 40%;
  text-align: center;
}

.about-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.about-content {
  flex: 1 1 50%;
}

.about-content h2 {
  font-size: 2.5rem;
  color: #1e3a8a;
  font-weight: 700;
  margin-bottom: 1rem;
}

.about-content p {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 25px;
  margin-bottom: 2rem;
}

.feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #1e3a8a;
  font-weight: 600;
  font-size: 1rem;
}

.feature i {
  font-size: 1.4rem;
  color: #ff4d6d;
}

/* Button */
.about-btn {
  display: inline-block;
  background: #1e3a8a;
  color: #fff;
  padding: 12px 30px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.about-btn:hover {
  background: #ff4d6d;
  color: #fff;
}

/* === Responsive Design === */
@media (max-width: 992px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }
  .about-content {
    order: 2;
  }
  .about-image {
    order: 1;
  }
  .about-content h2 {
    font-size: 2rem;
  }
  .about-content p {
    font-size: 1rem;
  }
}

@media (max-width: 600px) {
  .about-homenet {
    padding: 60px 15px;
  }
  .about-content h2 {
    font-size: 1.8rem;
  }
  .about-features {
    grid-template-columns: 1fr;
  }
  .feature {
    justify-content: center;
  }
  .about-btn {
    padding: 10px 24px;
    font-size: 0.95rem;
  }
}
/* ===== Features Section ===== */
.features-section {
  padding: 80px 0;
  background: #f9fafc;
  font-family: "DM Sans", sans-serif;
}

.features-container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.features-heading {
  font-size: 2.2rem;
  color: #222;
  margin-bottom: 10px;
  font-weight: 700;
}

.features-subheading {
  color: #555;
  font-size: 1.1rem;
  margin-bottom: 50px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.feature-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  padding: 30px 25px;
  text-align: left;
  transition: all 0.3s ease;
  border-top: 4px solid #2b7de9;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.feature-title {
  font-size: 1.3rem;
  color: #1a1a1a;
  margin-bottom: 10px;
  font-weight: 600;
}

.feature-description {
  color: #666;
  line-height: 1.6;
  font-size: 1rem;
}

/* ===== Responsive Design ===== */
@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .features-heading {
    font-size: 1.9rem;
  }

  .feature-card {
    padding: 25px;
  }
}

@media (max-width: 600px) {
  .features-section {
    padding: 60px 0;
  }

  .features-heading {
    font-size: 1.7rem;
  }

  .features-subheading {
    font-size: 1rem;
  }

  .feature-title {
    font-size: 1.2rem;
  }
}
/* ===== CTA Section ===== */
.cta-section {
  background: linear-gradient(135deg, #2b7de9, #1d4ed8);
  padding: 80px 20px;
  color: #fff;
  text-align: center;
  display: flex;
  justify-content: center;
}

.cta-container {
  max-width: 900px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  padding: 60px 40px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.cta-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}

.cta-description {
  font-size: 1.1rem;
  color: #f0f0f0;
  line-height: 1.6;
  margin-bottom: 30px;
}

.cta-features {
  list-style: none;
  padding: 0;
  margin: 0 0 35px 0;
}

.cta-features li {
  font-size: 1.05rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff;
}

.cta-button {
  background: #fff;
  color: #1e3a8a;
  font-weight: 600;
  padding: 14px 35px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.cta-button:hover {
  background: #f3f4f6;
  transform: translateY(-3px);
}

/* ===== Responsive Design ===== */
@media (max-width: 900px) {
  .cta-container {
    padding: 50px 25px;
  }

  .cta-title {
    font-size: 1.9rem;
  }

  .cta-description {
    font-size: 1rem;
  }
}

@media (max-width: 600px) {
  .cta-section {
    padding: 60px 15px;
  }

  .cta-container {
    padding: 40px 20px;
  }

  .cta-title {
    font-size: 1.6rem;
  }

  .cta-description {
    font-size: 0.95rem;
  }

  .cta-features li {
    font-size: 0.95rem;
  }
}
/* ===== Services Section ===== */
.services-section {
  background: #f9fafc;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}

.services-container {
  max-width: 1100px;
  text-align: center;
}

.services-heading {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 15px;
}

.services-subheading {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 50px;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* ===== Individual Cards ===== */
.service-card {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.service-content {
  padding: 20px;
  text-align: left;
}

.service-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1e3a8a;
  margin-bottom: 10px;
}

.service-description {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
}

.service-button {
  display: inline-block;
  background: #1e3a8a;
  color: #fff;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.service-button:hover {
  background: #2b6cb0;
}

/* ===== Responsive Design ===== */
@media (max-width: 1000px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-image {
    height: 160px;
  }

  .services-heading {
    font-size: 2rem;
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    max-width: 90%;
    margin: 0 auto;
  }

  .service-image {
    height: 150px;
  }

  .service-title {
    font-size: 1.2rem;
  }

  .services-heading {
    font-size: 1.8rem;
  }

  .services-subheading {
    font-size: 1rem;
  }
}
/* --- Pricing Section Styles --- */
.pricing-section {
  background: #f8fafc;
  padding: 80px 20px;
  font-family: 'DM Sans', sans-serif;
}

.pricing-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.pricing-heading {
  font-size: 2.2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
}

.pricing-subheading {
  color: #666;
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto 50px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.pricing-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 40px 25px;
  transition: all 0.3s ease;
  border-top: 5px solid transparent;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-top-color: #007bff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.highlight {
  border-top-color: #007bff;
  background: #eef5ff;
}

.plan-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 8px;
}

.plan-price {
  font-size: 2.5rem;
  color: #007bff;
  font-weight: 700;
  margin: 10px 0;
}

.plan-price span {
  font-size: 1rem;
  color: #555;
}

.plan-tagline {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 20px;
}

.plan-list {
  list-style: none;
  text-align: left;
  margin: 0;
  padding: 0;
}

.plan-list li {
  padding: 8px 0;
  font-size: 0.95rem;
  color: #333;
  border-bottom: 1px dashed #ddd;
}

.plan-btn {
  margin-top: 25px;
  display: inline-block;
  padding: 12px 25px;
  border-radius: 25px;
  background: #007bff;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.plan-btn:hover {
  background: #005fcc;
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card {
    padding: 30px 20px;
  }

  .pricing-heading {
    font-size: 1.8rem;
  }

  .plan-price {
    font-size: 2rem;
  }
}
/* --- Offer Section Styles --- */
.offer-section {
  background: linear-gradient(135deg, #007bff 0%, #004aad 100%);
  color: #fff;
  padding: 100px 20px;
  font-family: 'DM Sans', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.offer-container {
  max-width: 900px;
}

.offer-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}

.offer-text {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 35px;
  color: #f5f8ff;
}

.offer-btn {
  display: inline-block;
  background: #fff;
  color: #004aad;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.offer-btn:hover {
  background: #f5f5f5;
  color: #002b77;
  transform: translateY(-2px);
}

/* --- Responsive Design --- */
@media (max-width: 992px) {
  .offer-title {
    font-size: 2rem;
  }

  .offer-text {
    font-size: 1rem;
  }
}

@media (max-width: 600px) {
  .offer-section {
    padding: 70px 15px;
  }

  .offer-title {
    font-size: 1.7rem;
  }

  .offer-text {
    font-size: 0.95rem;
  }

  .offer-btn {
    padding: 12px 25px;
    font-size: 0.95rem;
  }
}
/* ===== Testimonials Section ===== */
.testimonials-section {
  background: #f9fafc;
  padding: 100px 20px;
  font-family: 'DM Sans', sans-serif;
  color: #333;
}

.testimonials-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.testimonials-title {
  font-size: 2.5rem;
  color: #1e3a8a;
  font-weight: 700;
  margin-bottom: 15px;
}

.testimonials-subtitle {
  color: #555;
  font-size: 1.1rem;
  margin-bottom: 50px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

/* Individual Testimonial Card */
.testimonial-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px 25px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: left;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-rating {
  color: #ffb400;
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.testimonial-text {
  font-size: 1rem;
  color: #444;
  line-height: 1.7;
  margin-bottom: 25px;
  font-style: italic;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-photo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #1e3a8a;
}

.user-name {
  font-size: 1.05rem;
  color: #1e3a8a;
  font-weight: 600;
  margin-bottom: 3px;
}

.user-role {
  font-size: 0.9rem;
  color: #666;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .testimonials-title {
    font-size: 2rem;
  }

  .testimonials-subtitle {
    font-size: 1rem;
    margin-bottom: 40px;
  }

  .testimonial-card {
    padding: 25px 20px;
  }
}
/* ===== Disclaimer Section ===== */
.disclaimer-section {
  background-color: #f4f6f8;
  padding: 60px 20px;
  font-family: 'DM Sans', sans-serif;
  color: #333;
}

.disclaimer-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.disclaimer-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 20px;
}

.disclaimer-content {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 30px;
}

.disclaimer-content a {
  color: #1e3a8a;
  text-decoration: underline;
}

.disclaimer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.disclaimer-link {
  color: #1e3a8a;
  font-weight: 500;
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 5px;
  transition: all 0.3s ease;
  background: #e0e7ff;
}

.disclaimer-link:hover {
  background: #c7d2fe;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .disclaimer-title {
    font-size: 1.6rem;
  }

  .disclaimer-content {
    font-size: 0.95rem;
  }

  .disclaimer-links {
    flex-direction: column;
    gap: 10px;
  }
}
/* ===== Contact Section ===== */
.contact-section {
  padding: 60px 20px;
  background-color: #f9fafb;
  font-family: 'DM Sans', sans-serif;
  color: #333;
}

.contact-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.contact-heading {
  font-size: 2rem;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 10px;
}

.contact-subheading {
  font-size: 1rem;
  color: #555;
  margin-bottom: 40px;
}

.contact-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: space-between;
}

/* Contact Info Box */
.contact-info-box {
  flex: 1 1 350px;
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  text-align: left;
}

.contact-info-box h3 {
  color: #1e3a8a;
  margin-bottom: 15px;
}

.contact-info-box ul {
  list-style: none;
  padding: 0;
}

.contact-info-box ul li {
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.contact-info-box a {
  color: #1e3a8a;
  text-decoration: underline;
}

/* Contact Form Box */
.contact-form-box {
  flex: 1 1 350px;
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  text-align: left;
}

.contact-form-box h3 {
  color: #1e3a8a;
  margin-bottom: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 0.95rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #1e3a8a;
}

.submit-btn {
  background-color: #1e3a8a;
  color: #fff;
  padding: 12px 25px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background-color: #3749c7;
}

/* Google Map */
.contact-map {
  margin-top: 40px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .contact-grid {
    flex-direction: column;
  }
  
  .contact-info-box,
  .contact-form-box {
    flex: 1 1 100%;
  }
}
