/* =========================================================
   contact.css — Contact page specific styling
   ========================================================= */

.page-head {
  padding-top: 54px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr; /* form slightly bigger */
  gap: 28px; /* more breathing space */
  align-items: start;
}


/* Left info card */
.contact-card {
  padding: 28px;
  border-radius: 22px;

  background:
    radial-gradient(circle at 30% 30%, rgba(124,58,237,.18), transparent 55%),
    radial-gradient(circle at 70% 70%, rgba(6,182,212,.16), transparent 55%),
    var(--surface);

  border: 1px solid color-mix(in srgb, var(--border), transparent 20%);
  box-shadow: var(--shadow-1);
}


.info-blocks {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.info-block {
  padding: 16px 18px;
  border-radius: 16px;

  border: 1px solid color-mix(in srgb, var(--border), transparent 25%);
  background: color-mix(in srgb, var(--surface), transparent 10%);

  transition: transform .2s ease, box-shadow .2s ease;
}

.info-block:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-1);
}


.info-title {
  margin: 0;
  font-weight: 800;
  font-size: 13px;
  color: var(--muted);
}

.info-value {
  margin: 6px 0 0;
  font-weight: 800;
  color: color-mix(in srgb, var(--text), transparent 10%);
}

/* Mini CTA buttons */
.mini-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

/* Form card */
.form-card {
  padding: 28px;
  border-radius: 22px;

  border: 1px solid color-mix(in srgb, var(--border), transparent 20%);
  box-shadow: var(--shadow-1);
}


.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* Error text */
.error {
  min-height: 16px;
  display: block;
  margin-top: 6px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(239, 68, 68, .95); /* red */
}

/* Success/info note */
.form-note {
  margin: 10px 0 0;
  min-height: 18px;
  color: color-mix(in srgb, var(--text), transparent 22%);
  font-size: 13px;
  font-weight: 600;
}

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

@media (max-width: 720px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.contact-form .btn--primary {
  box-shadow: 0 12px 28px rgba(6,182,212,.25);
}
/* Google Map */
.contact-map {
  margin-top: 18px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.contact-map iframe {
  width: 100%;
  height: 220px;
  border: 0;
  filter: grayscale(10%);
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 22px;
  right: 22px;

  width: 54px;
  height: 54px;

  background: #25D366;
  color: #fff;

  border-radius: 50%;
  font-size: 26px;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 10px 25px rgba(37,211,102,.45);

  z-index: 9999;
  transition: transform .2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.08);
}

/* Intl Phone Input Fix */

.iti {
  width: 100%;
}

.iti input {
  width: 100% !important;
  padding-left: 80px !important;
  border-radius: 14px;
}

/* =====================================
   Intl Tel Input - Dark Mode Fix
===================================== */

.iti {
  width: 100%;
}

/* Input field */
.iti input {
  width: 100% !important;
  background: color-mix(in srgb, var(--surface), transparent 10%) !important;
  color: var(--text) !important;
  border: 1px solid color-mix(in srgb, var(--border), transparent 20%) !important;
  border-radius: 14px !important;
  padding-left: 80px !important;
}

/* Country dropdown box */
.iti__country-list {
  background: #0f172a !important;   /* Dark background */
  color: #ffffff !important;
  border: 1px solid rgba(255,255,255,0.15) !important;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.5);
  z-index: 999999 !important;
}

/* Country row */
.iti__country {
  color: #ffffff !important;
  padding: 10px 12px;
}

/* Hover / Selected */
.iti__country:hover,
.iti__country.iti__highlight {
  background: rgba(124,58,237,0.25) !important;
}

/* Dial code */
.iti__dial-code {
  color: rgba(255,255,255,0.8) !important;
}

/* Country name */
.iti__country-name {
  color: #ffffff !important;
}

/* Search box */
.iti__search-input {
  background: #020617 !important;
  color: #ffffff !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
  border-radius: 10px;
}

/* Placeholder */
.iti input::placeholder {
  color: rgba(255,255,255,0.5) !important;
}

/* =====================================
   Light Mode Support
===================================== */

html[data-theme="light"] .iti__country-list {
  background: #ffffff !important;
  color: #020617 !important;
}

html[data-theme="light"] .iti__country {
  color: #020617 !important;
}

html[data-theme="light"] .iti__country-name,
html[data-theme="light"] .iti__dial-code {
  color: #020617 !important;
}

html[data-theme="light"] .iti__search-input {
  background: #ffffff !important;
  color: #020617 !important;
}
