/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background: #fff;
  color: #222;
}

/* ===== NAVBAR ===== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 80px;
  background: #fff;
}

.logo img {
  height: 45px;
}

nav a {
  margin-left: 30px;
  text-decoration: none;
  font-weight: 700;
  color: #111;
}

nav a.active {
  color: #700fc6;
}

.quote-btn {
  display: inline-block;
  background: linear-gradient(135deg, #f26b8a, #7b2cbf);
  padding: 10px 22px;
  border-radius: 6px;
  color: #fff !important;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.quote-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}

/* ===== HERO ===== */
.about-hero {
   width: 100%;
  height: 280px;

  background: linear-gradient(
    90deg,
    #f0627e 0%,
    #d6538c 50%,
    #8e2f6f 100%
  );

  /* IMPORTANT PART */
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;
}

.about-hero h1 {
  color: #fff;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
}

.about-hero p {
 color: #fff;
 font-weight: bold;
  font-size: 25px;
  opacity: 0.9;
}

/* ===== CONTACT WRAPPER ===== */
.contact-wrapper {
  max-width: 1250px;
  margin: 110px auto;
  padding: 0 30px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
}



.contact-left {
  transform: translateX(-60px);
}

/* LEFT SIDE */
.contact-left .small-title {
  font-size: 18px;
  font-weight: 700;
  color: #7c539f;
  letter-spacing: 1.2px;
}

.contact-left h2 {
   font-size: 40px;
  font-weight: 500;
  margin: 14px 0 14px;
  line-height: 1.25;
}

.contact-left .desc {
  font-size: 16px;
  color: #6b6b6b;
  max-width: 520px;
  margin-bottom: 30px;
}

/* DIVIDER LINE */
.info-grid {
  border-top: 1px solid #e6e6f0;
  padding-top: 32px;
  padding-left: -20PX;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 40px;
}

/* INFO BOX */
.info-box {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.icon {
  width: 66px;
  height: 66px;
  background: #4b0082;
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  flex-shrink: 0;
}


.info-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
}

.info-box p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

/* MAP EXACT SIZE */
.contact-right iframe {
  width: 100%;
  height: 440px;
  border-radius: 18px;
  border: none;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.18);
}
.contact-right iframe {
  width: 100%;
  height: 440px;
  border-radius: 18px;
  border: none;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.18);
  transform: translateX(40px);
}

/* =========================
   WHATSAPP BUTTON (OPTIONAL)
========================= */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;

  background: linear-gradient(45deg, #350068, #ff6978);
  color: #fff;

  padding: 12px 18px;
  border-radius: 40px;

  display: flex;
  align-items: center;
  gap: 10px;

  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  z-index: 9999;

  text-decoration: none;
  font-weight: 600;
  font-size: 14px;

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.3);
}

/* ICON */
.whatsapp-float img {
  width: 28px;
  height: 28px;
}

/* TEXT */
.whatsapp-float span {
  white-space: nowrap;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .contact-left h2 {
    font-size: 30px;
  }
}
/* ===============================
   GLOBAL MOBILE SAFETY
=============================== */
img, iframe {
  max-width: 100%;
}

body {
  overflow-x: hidden;
}

/* ===============================
   TABLET
=============================== */
@media (max-width: 1024px) {

  .navbar {
    padding: 18px 40px;
  }

  .contact-wrapper {
    gap: 50px;
  }

  .contact-left h2 {
    font-size: 34px;
  }

  .contact-right iframe {
    height: 380px;
  }
}

/* ===============================
   MOBILE
=============================== */
@media (max-width: 768px) {

  /* NAVBAR STACK */
  .navbar {
    flex-direction: column;
    gap: 14px;
    padding: 18px 20px;
    text-align: center;
  }

  nav a {
    margin: 0 10px;
    font-size: 14px;
  }
  @media (max-width: 768px) {
  .quote-btn {
    width: 100%;
    max-width: 220px;
    margin: 10px auto 0;
    display: block;
    padding: 12px 0;
  }
}


  /* HERO */
  .about-hero {
    height: auto;
    padding: 60px 20px;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
  }

  .about-hero h1 {
    font-size: 30px;
  }

  .about-hero p {
    font-size: 16px;
    align-content: flex-start;
  }

  /* CONTACT SECTION */
  .contact-wrapper {
    grid-template-columns: 1fr;
    margin: 70px auto;
    padding: 0 20px;
    gap: 40px;
  }

  .contact-left {
    transform: none;
    text-align: center;
  }

  .contact-left h2 {
    font-size: 26px;
  }

  .contact-left .desc {
    margin: 0 auto 25px;
  }

  /* INFO GRID STACK */
  .info-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .icon {
    width: 55px;
    height: 55px;
    font-size: 26px;
  }

  .info-box h4 {
    font-size: 17px;
  }

  /* MAP */
  .contact-right iframe {
    height: 300px;
    transform: none;
  }

  /* WHATSAPP BUTTON */
  .whatsapp-float {
    bottom: 15px;
    right: 15px;
    padding: 10px 16px;
    font-size: 13px;
  }

  .whatsapp-float img {
    width: 22px;
    height: 22px;
  }
}

/* ===============================
   SMALL PHONES
=============================== */
@media (max-width: 480px) {

  .about-hero h1 {
    font-size: 24px;
  }

  .about-hero p {
    font-size: 14px;
  }

  .contact-left h2 {
    font-size: 22px;
  }

  .navbar {
    padding: 15px 10px;
  }
}