* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #f9fafc;
  color: #1a1a1a;
  overflow-x: hidden;
}

/* HERO */

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: white;
  padding: 90px 8%;
  border-radius: 0 0 60px 60px;
  gap: 40px;
  position: relative;
}

.hero-content {
  flex: 1;
}

.tagline {
  display: inline-block;
  background: #facc15;
  color: #111;
  padding: 6px 15px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
}

.hero h1 {
  font-size: 36px;
  margin-bottom: 15px;
}

.hero p {
  font-size: 16px;
  opacity: 0.9;
  line-height: 1.6;
}

.hero-image {
  flex: 1;
  text-align: right;
}

.hero-image img {
  width: 100%;
  max-width: 420px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

/* CONTACT SECTION */

.contact-section {
  padding: 80px 8%;
  text-align: center;
}

.contact-section h2 {
  font-size: 30px;
  color: #f59e0b;
  margin-bottom: 20px;
}

.contact-intro {
  max-width: 900px;
  margin: 0 auto 50px;
  font-size: 16px;
  line-height: 1.8;
  color: #4b5563;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.contact-card {
  background: white;
  padding: 40px 25px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-8px);
}

.icon-circle {
  width: 70px;
  height: 70px;
  background: #fef3c7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 22px;
  color: #f59e0b;
}

.contact-card h3 {
  margin-bottom: 15px;
  font-size: 18px;
}

.contact-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #4b5563;
}

/* CTA */

.cta {
  text-align: center;
  background: #2563eb;
  color: white;
  border-radius: 40px;
  padding: 60px 20px;
  margin: 60px 8%;
}

.cta h2 {
  color: #facc15;
  margin-bottom: 15px;
}

.cta-buttons {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.whatsapp-btn,
.call-btn {
  padding: 15px 30px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: bold;
  color: white;
  transition: 0.3s ease;
}

.whatsapp-btn {
  background: #25D366;
}

.call-btn {
  background: #33b5e5;
}

.whatsapp-btn:hover,
.call-btn:hover {
  transform: translateY(-3px);
}

/* MOBILE */

@media (max-width: 768px) {

  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-image {
    text-align: center;
    margin-top: 30px;
  }

  .cta {
    margin: 40px 6%;
    border-radius: 25px;
  }

  .whatsapp-btn,
  .call-btn {
    width: 100%;
  }
}
/* GO HOME BUTTON */
.go-home-btn {
  position: absolute;
  top: 25px;
  left: 25px;
  background: #0ae8f0;
  color: #111;
  padding: 8px 18px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  z-index: 10;
}

.go-home-btn:hover {
  background: white;
  transform: translateY(-3px);
}
.map-section {
  margin: 50px 0;
  text-align: center;
}

.map-section h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #333;
}

.map-container {
  width: 100%;
  height: 400px;
  border: 2px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
}
.map-section h2{
    color: #facc15;
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: auto; /* ensures map is always interactive */
}
/* ===============================
   CONTACT SECTION MAIN
================================= */

.contact-section-main {
  background: #f5f5f5;
  padding: 100px 8%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

/* ===============================
   LEFT SIDE CONTENT
================================= */

.contact-left {
  flex: 1;
  max-width: 500px;
}

.contact-left h2 {
  font-size: 42px;
  font-weight: 700;
  color: #f4a000;
  margin-bottom: 20px;
}

.contact-left p {
  font-size: 18px;
  color: #555;
  line-height: 1.7;
}

/* ===============================
   RIGHT SIDE FORM
================================= */

.contact-right {
  flex: 1;
  display: flex;
  justify-content: center;
}

.contact-form {
  background: #000;
  padding: 60px;
  border-radius: 25px;
  width: 100%;
  max-width: 750px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
}

/* ===============================
   INPUT FIELDS
================================= */

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 18px;
  margin-bottom: 25px;
  background: #2a2a2a;
  border: 1px solid #444;
  color: #fff;
  border-radius: 10px;
  font-size: 15px;
  transition: 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #33b5e5;
  outline: none;
  background: #1e1e1e;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #bbb;
}

/* ===============================
   BUTTON
================================= */

.contact-form button {
  width: 100%;
  padding: 16px;
  background: #33b5e5;
  border: none;
  color: white;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s ease;
  font-size: 16px;
}

.contact-form button:hover {
  background: #0099cc;
  transform: translateY(-2px);
}

/* ===============================
   RESPONSIVE DESIGN
================================= */

@media (max-width: 992px) {
  .contact-section-main {
    flex-direction: column;
    text-align: center;
    padding: 80px 6%;
  }

  .contact-left {
    max-width: 100%;
  }

  .contact-left h2 {
    font-size: 34px;
  }

  .contact-left p {
    font-size: 16px;
  }

  .contact-form {
    padding: 40px;
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .contact-section-main {
    padding: 60px 5%;
  }

  .contact-left h2 {
    font-size: 28px;
  }

  .contact-form {
    padding: 30px;
    border-radius: 18px;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 14px;
    font-size: 14px;
  }

  .contact-form button {
    padding: 14px;
    font-size: 14px;
  }
}
