body { font-family: 'Segoe UI', sans-serif; background: #fff9f3; }

    /* Hero Section */
    .hero {
      background: linear-gradient(135deg, #ff9933, #cc5200, #993d00);
      color: white;
      padding: 80px 20px;
      position: relative;
      overflow: hidden;
    }
    .hero .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
    }
    .hero h1 { font-size: 42px; font-weight: bold; }
    .hero p { font-size: 18px; margin-top: 10px; opacity: 0.9; }
    .hero img {
      max-width: 400px;
      width: 100%;
      animation: float 4s ease-in-out infinite;
    }
    @keyframes float {
      0% { transform: translateY(0px); }
      50% { transform: translateY(-10px); }
      100% { transform: translateY(0px); }
    }

    .modal-backdrop.show {
    opacity: 0 !important;
}
    body {
    padding-right: 0 !important;
    overflow: auto !important;
}

    /* Contact Section */
    .contact-container {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      max-width: 1200px;
      margin: 60px auto;
      padding: 0 20px;
    }
    .contact-form, .contact-info {
      flex: 1 1 48%;
      background: #fff;
      border-radius: 12px;
      padding: 40px 35px;
      box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    }
    .contact-form h3, .contact-info h3 {
      font-weight: bold;
      margin-bottom: 25px;
      color: #cc5200;
      position: relative;
    }
    .contact-form h3::after, .contact-info h3::after {
      content: '';
      width: 60px;
      height: 3px;
      background: #ff9933;
      display: block;
      margin-top: 10px;
      border-radius: 5px;
    }

    /* Form */
    .form-control {
      border-radius: 10px;
      border: 1px solid #ffd9b3;
      padding: 12px;
    }
    .form-control:focus {
      border-color: #cc5200;
      box-shadow: 0 0 8px rgba(204,82,0,0.2);
    }
    .btn-bhakti {
      background: linear-gradient(135deg, #ff9933, #cc5200);
      color: white;
      border: none;
      padding: 12px 20px;
      border-radius: 10px;
      font-weight: bold;
      width: 100%;
      transition: all 0.3s;
    }
    .btn-bhakti:hover { transform: scale(1.05); background: #e67300; }

    /* Info Section */
    .contact-info p {
      font-size: 16px;
      margin-bottom: 20px;
      display: flex;
      align-items: center;
    }
    .contact-info i {
      /* background: #fff3e6; */
      /* color: #cc5200; */
      font-size: 18px;
      width: 40px; height: 40px;
      display: inline-flex;
      justify-content: center;
      align-items: center;
      border-radius: 50%;
      /*margin-right: 15px;*/
      flex-shrink: 0;
    }
     .social-icons {
      margin-top: 20px;
    }
   .header-social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin: 6px;
  border-radius: 50%;
  font-size: 18px;
  color: #fff;
  transition: all 0.3s ease;
}

/* Brand colors */
.header-social-icons a.facebook  { background: #1877f2; }
.header-social-icons a.instagram { 
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}
.header-social-icons a.youtube   { background: #ff0000; }

/* Hover effect */
.header-social-icons a:hover {
  transform: translateY(-3px);
  filter: brightness(0.9);
}

    /* Map Section */
    .map-container iframe {
      width: 100%;
      height: 400px;
      border: none;
    }

    /* Newsletter */
    .newsletter {
      background: linear-gradient(135deg, #cc5200, #993d00);
      color: white;
      text-align: center;
      padding: 60px 20px;
    }
    .newsletter input {
      border-radius: 8px;
      border: none;
      padding: 12px;
      width: 280px;
      max-width: 80%;
    }
    .newsletter button {
      background: #ff9933;
      color: white;
      border: none;
      padding: 12px 20px;
      margin-left: 10px;
      border-radius: 8px;
      font-weight: bold;
    }

    /* Footer */
    footer {
      background: #331a00;
      color: white;
      padding: 30px 20px;
      text-align: center;
    }
    
        /* ✅ Keep navbar clickable without changing layout */
.navbar,
.offcanvas,
.offcanvas-backdrop {
  z-index: 99999 !important;
}

/* ✅ Keep hero and map behind navbar but don’t affect spacing */
.hero,
.contact-section,
.map-container,
footer {
  z-index: 1;
}

    /* Responsive */
    @media (max-width: 992px) {
      .hero .container { text-align: center; flex-direction: column; }
      .hero img { margin-top: 30px; }
    }
    @media (max-width: 768px) {
      .contact-form, .contact-info { flex: 1 1 100%; }
      .newsletter input { width: 100%; margin-bottom: 10px; }
      .newsletter button { width: 100%; margin-left: 0; }
    }