@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap");

.gn-contact-section {
  position: relative;
  padding: 70px 20px 90px;
  font-family: "Poppins", sans-serif;
  overflow: hidden;
}

/* Background */
.gn-contact-bg {
  position: absolute;
  inset: 0;
  background: var(--color-light-gray);
  z-index: 0;
}

/* Dots */
.gn-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  background: rgba(131, 91, 255, 0.25);
  border-radius: 50%;
}
.gn-dot-1 { top: 120px; left: 80px; }
.gn-dot-2 { top: 200px; right: 140px; width: 10px; height: 10px; opacity: 0.25; }
.gn-dot-3 { bottom: 160px; left: 160px; width: 6px; height: 6px; opacity: 0.3; }
.gn-dot-4 { bottom: 220px; right: 90px; width: 7px; height: 7px; opacity: 0.25; }

/* Star */
.gn-star {
  position: absolute;
  right: 90px;
  bottom: 70px;
  width: 24px;
  height: 24px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.9), rgba(167, 129, 255, 0.25));
  clip-path: polygon(
    50% 0%, 61% 35%, 98% 35%, 68% 57%,
    79% 91%, 50% 70%, 21% 91%, 32% 57%,
    2% 35%, 39% 35%
  );
  opacity: 0.6;
}

/* Waves */
.gn-wave {
  position: absolute;
  left: -20%;
  right: -20%;
  height: 260px;
  border-radius: 999px;
  opacity: 0.95;
}

.gn-wave-1 {
  bottom: 110px;
  background: linear-gradient(90deg, rgba(186, 151, 255, 0.15), rgba(126, 91, 255, 0.22), rgba(186, 151, 255, 0.15));
  transform: rotate(-2deg);
}
.gn-wave-2 {
  bottom: 70px;
  background: linear-gradient(90deg, rgba(186, 151, 255, 0.10), rgba(126, 91, 255, 0.18), rgba(186, 151, 255, 0.10));
  transform: rotate(2deg);
}
.gn-wave-3 {
  bottom: 30px;
  background: linear-gradient(90deg, rgba(186, 151, 255, 0.08), rgba(126, 91, 255, 0.14), rgba(186, 151, 255, 0.08));
  transform: rotate(-1deg);
}

/* Container */
.gn-contact-container {
  max-width: 1120px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Heading */
.gn-contact-heading {
  text-align: center;
  margin-bottom: 40px;
}

.gn-subtitle {
  margin: 0;
  font-size: 14px;
  color: #6f6f6f;
  max-width: none ;
}

/* Grid */
.gn-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: stretch;
}

/* Cards */
.gn-contact-section .gn-card {
  background: rgba(255, 255, 255, 0.94);
  border-radius: 18px;
  padding: 28px;
  min-height: 470px; /* ✅ equal height like image */
  box-shadow: 0 20px 44px rgba(124, 90, 255, 0.18);
}

/* Form Card Border/Glow like image */
.gn-form-card {
  border: 2.5px solid rgba(140, 110, 255, 0.45);
  box-shadow:
    0 20px 44px rgba(124, 90, 255, 0.18),
    0 0 0 7px rgba(150, 120, 255, 0.10);
}

/* Form */
.gn-contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.gn-field input,
.gn-field textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1.5px solid rgba(160, 130, 255, 0.35);
  outline: none;
  background: rgba(255, 255, 255, 0.99);
  font-size: 14px;
  color: #444;
  box-shadow: inset 0 2px 7px rgba(0, 0, 0, 0.06);
  transition: 0.25s ease;
}

.gn-field textarea {
  border-radius: 16px;
  height: 175px;
  resize: none;
  padding-top: 16px;
}

.gn-field input:focus,
.gn-field textarea:focus {
  border-color: rgba(126, 91, 255, 0.78);
  box-shadow:
    0 0 0 5px rgba(126, 91, 255, 0.18),
    inset 0 2px 7px rgba(0, 0, 0, 0.05);
}

/* Error */
.gn-error {
  display: block;
  padding: 6px 6px 0;
  font-size: 12px;
  color: #cc2f5a;
  min-height: 16px;
}

/* Button */
.gn-btn {
  margin-top: 6px;
  width: 100%;
  padding: 14px 18px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  color: white;
  background: linear-gradient(90deg, #6f43ff, #8f63ff);
  box-shadow: 0 16px 28px rgba(126, 91, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: 0.25s ease;
}

.gn-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 34px rgba(126, 91, 255, 0.45);
}

.gn-arrow-send {
  font-size: 18px;
  transform: translateY(-1px);
}

/* Toast */
.gn-toast {
  display: none;
  margin-top: 12px;
  text-align: center;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(126, 91, 255, 0.12);
  color: #4f2cff;
  font-weight: 600;
  font-size: 13px;
}

/* Info Card */
.gn-info-title {
  margin: 0 0 16px 0;
  font-size: 18px;
  font-weight: 700;
  color: #2b2b2b;
}

.gn-info-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.gn-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.gn-ic {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
}

.gn-ic-purple {
  background: rgba(126, 91, 255, 0.16);
}

.gn-ic-green {
  background: rgba(88, 205, 140, 0.22);
}

.gn-svg {
  width: 18px;
  height: 18px;
  fill: rgba(83, 51, 200, 0.95);
}

.gn-label {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  color: #2f2f2f;
}

.gn-value {
  margin: 2px 0 0;
  font-size: 12.5px;
  color: #4f4f4f;
  line-height: 1.3;
}

/* Map */
.gn-map-wrap {
  margin-top: 16px;
  border-radius: 14px;
  overflow: hidden;
  border: 1.4px solid rgba(150, 120, 255, 0.30);
  box-shadow: 0 14px 26px rgba(126, 91, 255, 0.20);
}

.gn-map-ui {
  position: relative;
  width: 100%;
  height: 165px; /* ✅ same like image */
  background: #fff;
}

.gn-map {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Fake marker (like image pin) */
.gn-map-marker {
  position: absolute;
  top: 36%;
  left: 56%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  pointer-events: none;
  display: grid;
  place-items: center;
}

.gn-marker-pin {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #fff 0%, #f5eeff 45%, rgba(126, 91, 255, 0.35) 100%);
  border: 2px solid rgba(126, 91, 255, 0.45);
  box-shadow: 0 14px 28px rgba(126, 91, 255, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gn-marker-pin i {
  color: rgba(126, 91, 255, 0.9);
  font-size: 18px;
}

/* Zoom Buttons (+/- like image) */
.gn-map-zoom {
  position: absolute;
  right: 10px;
  top: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.gn-zoom-btn {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid rgba(180, 180, 180, 0.55);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  color: #2b2b2b;
  transition: 0.2s ease;
}

.gn-zoom-btn:hover {
  transform: translateY(-1px);
}

/* Social icons */
.gn-social {
  margin-top:50px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.gn-social-btn {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(126, 91, 255, 0.12);
  display: grid;
  place-items: center;
  box-shadow: 0 12px 22px rgba(126, 91, 255, 0.18);
  transition: 0.25s ease;
  text-decoration: none;
}

.gn-social-btn:hover {
  transform: translateY(-2px);
  background: rgba(126, 91, 255, 0.20);
  box-shadow: 0 16px 26px rgba(126, 91, 255, 0.28);
}

.gn-social-svg {
  width: 18px;
  height: 18px;
  fill: rgba(83, 51, 200, 0.95);
}

/* Responsive */
@media (max-width: 980px) {
  .gn-contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  
  .gn-contact-section .gn-card {
    padding: 18px;
  }
}
