﻿/* =============================================
   CONTACT PAGE — PREMIUM STYLES
   ============================================= */

/* ============================================
   HERO
   ============================================= */

.contact-hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(150deg,
    #001233 0%,
    #00296b 22%,
    #003f88 48%,
    #00509d 62%,
    #003f88 78%,
    #00296b 90%,
    #001030 100%
  );
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.contact-hero-glow {
  position: absolute;
  top: 15%; left: 50%;
  transform: translateX(-50%);
  width: 680px; height: 380px;
  background: radial-gradient(ellipse,
    rgba(255,213,0,0.13) 0%,
    rgba(255,213,0,0.04) 45%,
    transparent 70%
  );
  pointer-events: none;
}

.contact-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 28px 80px;
}

.contact-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,213,0,0.13);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
  backdrop-filter: blur(4px);
}

.contact-hero-ornament {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.contact-hero-ornament .orn-line   { display: block; width: 52px; height: 1px; background: linear-gradient(90deg, transparent, rgba(201,168,76,0.6)); }
.contact-hero-ornament .orn-line.r { background: linear-gradient(90deg, rgba(201,168,76,0.6), transparent); }
.contact-hero-ornament .orn-diamond { display: block; width: 8px; height: 8px; background: var(--gold); transform: rotate(45deg); box-shadow: 0 0 10px rgba(201,168,76,0.5); flex-shrink: 0; }

.contact-hero-arabic {
  font-family: var(--font-arabic);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  color: var(--gold);
  line-height: 1.7;
  margin-bottom: 10px;
  direction: rtl;
  text-align: center;
  text-shadow: 0 0 40px rgba(201,168,76,0.3);
}

.contact-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 14px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.35);
}

.contact-hero-title em {
  font-style: italic;
  color: var(--gold-pale);
}

.contact-hero-sub {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.contact-hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-hero-scroll {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.contact-hero-scroll span {
  display: block;
  width: 24px; height: 38px;
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 12px;
  position: relative;
}

.contact-hero-scroll span::after {
  content: '';
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 8px;
  background: rgba(255,255,255,0.5);
  border-radius: 2px;
  animation: scroll-dot 2.2s ease infinite;
}

@keyframes scroll-dot {
  0%   { top: 6px;  opacity: 1; }
  100% { top: 20px; opacity: 0; }
}

/* ============================================
   QUICK CONTACT CARDS
   ============================================= */

.contact-cards-section {
  background: var(--cream);
  padding: 0;
  margin-top: -2px;
}

.contact-cards-inner {
  background: var(--white);
  border-radius: 0 0 var(--radius) var(--radius);
  border: 1px solid rgba(26,71,49,0.07);
  border-top: none;
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
}

.contact-card {
  padding: 32px 28px;
  border-right: 1px solid rgba(26,71,49,0.07);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
  cursor: default;
}

.contact-card:last-child { border-right: none; }

.contact-card.clickable { cursor: pointer; }

.contact-card.clickable:hover {
  background: var(--sage);
}

.contact-card-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card.location  .contact-card-icon { background: rgba(26,71,49,0.08);    border: 1px solid rgba(26,71,49,0.14); }
.contact-card.phone     .contact-card-icon { background: rgba(255,213,0,0.11);   border: 1px solid rgba(201,168,76,0.2); }
.contact-card.whatsapp  .contact-card-icon { background: rgba(37,211,102,0.1);   border: 1px solid rgba(37,211,102,0.2); }
.contact-card.timings   .contact-card-icon { background: rgba(59,130,246,0.08);  border: 1px solid rgba(59,130,246,0.15);}

.contact-card-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 4px;
  display: block;
}

.contact-card-val {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--navy);
  font-weight: 600;
  line-height: 1.4;
  display: block;
}

.contact-card-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: block;
  margin-top: 3px;
}

/* ============================================
   PREMIUM MAP SPLIT SECTION
   ============================================= */

.map-split-section {
  overflow: hidden;
  line-height: 0;
}

.msp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

/* Left: iframe */
.msp-iframe-col {
  position: relative;
  overflow: hidden;
  min-height: 520px;
}

.msp-iframe-col iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  filter: saturate(1.1) contrast(1.05);
}

/* Right: info panel */
.msp-info-col {
  background: linear-gradient(160deg, #071510 0%, #0d2318 40%, var(--green) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.msp-info-col::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(255,213,0,0.11) 0%, transparent 70%);
  pointer-events: none;
}

.msp-info-col::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.msp-info-inner {
  position: relative;
  z-index: 2;
  padding: 56px 52px;
  line-height: 1.6;
  width: 100%;
}

.msp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.msp-eyebrow::before {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.msp-heading {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: #fff;
  line-height: 1.2;
  margin-bottom: 10px;
}
.msp-heading em { font-style: italic; color: var(--gold); }

.msp-subtext {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  margin-bottom: 0;
}

.msp-divider {
  width: 100%;
  height: 1px;
  background: rgba(201,168,76,0.18);
  margin: 28px 0;
}

/* Info rows */
.msp-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 22px;
}
.msp-row:last-of-type { margin-bottom: 0; }

.msp-row-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.msp-row-icon.loc   { background: rgba(26,71,49,0.5);   border: 1px solid rgba(201,168,76,0.2); color: var(--gold); }
.msp-row-icon.phone { background: rgba(255,213,0,0.13); border: 1px solid rgba(201,168,76,0.25); color: var(--gold); }
.msp-row-icon.wa    { background: rgba(37,211,102,0.12); border: 1px solid rgba(37,211,102,0.25); color: #25D366; }
.msp-row-icon.clock { background: rgba(96,165,250,0.1);  border: 1px solid rgba(96,165,250,0.2);  color: #93c5fd; }

.msp-row-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.msp-row-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
}
.msp-row-text strong {
  font-size: 0.9rem;
  color: #fff;
  font-weight: 600;
  line-height: 1.5;
}
.msp-row-text a { text-decoration: none; }
.msp-row-text a:hover strong { color: var(--gold); }

/* Action buttons */
.msp-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.msp-btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
  transition: all 0.22s ease;
}
.msp-btn-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.5);
}

.msp-btn-dir {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(201,168,76,0.35);
  color: var(--gold);
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.22s ease;
}
.msp-btn-dir:hover {
  background: rgba(255,213,0,0.11);
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* ============================================
   CONTACT FORM (standalone)
   ============================================= */

.contact-main { background: var(--cream); padding-top: 72px; }

.contact-form-centered {
  max-width: 780px;
  margin: 0 auto;
}

/* --- Form column --- */
.contact-form-col {}

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 44px 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(26,71,49,0.07);
}

.contact-form-card .form-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.contact-form-card .form-eyebrow::before {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--gold); opacity: 0.6;
}

.contact-form-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.contact-form-card h3 em { font-style: italic; color: var(--green); }

.contact-form-card .form-sub {
  font-size: 0.84rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.7;
}

.cf-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.cf-field label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
}

.cf-field input,
.cf-field select,
.cf-field textarea {
  padding: 11px 14px;
  border: 1.5px solid rgba(26,71,49,0.12);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text-main);
  background: var(--cream);
  outline: none;
  transition: var(--transition);
}

.cf-field input:focus,
.cf-field select:focus,
.cf-field textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(255,213,0,0.11);
}

.cf-field input::placeholder,
.cf-field textarea::placeholder { color: rgba(107,122,110,0.45); }

.cf-field textarea { resize: vertical; min-height: 110px; }

.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.cf-submit {
  width: 100%;
  margin-top: 8px;
  padding: 15px;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 6px 20px rgba(26,71,49,0.3);
  transition: var(--transition);
  letter-spacing: 0.02em;
}

.cf-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(26,71,49,0.4);
}

.cf-note {
  margin-top: 12px;
  font-size: 0.76rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.5;
}

/* ============================================
   OFFICE INFO
   ============================================= */

.contact-info-section { background: var(--sage); }

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  border: 1px solid rgba(26,71,49,0.07);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201,168,76,0.2);
}

.info-card-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.info-card.green-ic  .info-card-icon { background: rgba(26,71,49,0.08);  border: 1px solid rgba(26,71,49,0.12); }
.info-card.gold-ic   .info-card-icon { background: rgba(255,213,0,0.11); border: 1px solid rgba(201,168,76,0.2); }
.info-card.blue-ic   .info-card-icon { background: rgba(59,130,246,0.08);border: 1px solid rgba(59,130,246,0.15);}

.info-card h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 16px;
}

.info-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.info-row:last-child { margin-bottom: 0; }

.info-row svg { flex-shrink: 0; margin-top: 2px; }

.info-row a {
  color: var(--text-muted);
  transition: var(--transition);
}

.info-row a:hover { color: var(--green); }

.info-day-badge {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(26,71,49,0.08);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.info-schedule {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.info-sched-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  background: var(--sage);
  border-radius: 8px;
  font-size: 0.82rem;
}

.info-sched-row span { color: var(--text-muted); }
.info-sched-row strong { color: var(--navy); font-size: 0.82rem; }

.info-closed {
  color: #dc2626 !important;
  font-weight: 600;
}

/* ============================================
   WHATSAPP SECTION
   ============================================= */

@keyframes grid-shift {
  from { background-position: 0 0; }
  to   { background-position: 60px 60px; }
}

.contact-wa-section {
  background: linear-gradient(160deg, #071510 0%, #0d2318 50%, #071510 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.contact-wa-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,213,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,213,0,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: grid-shift 20s linear infinite;
}

.contact-wa-section::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 600px; height: 280px;
  background: radial-gradient(ellipse, rgba(37,211,102,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.wa-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.wa-text-block {}

.wa-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #6ecf90;
  margin-bottom: 10px;
  display: block;
}

.wa-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 10px;
}

.wa-sub {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
}

.wa-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-shrink: 0;
}

.wa-btn-main {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white);
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  transition: var(--transition);
  white-space: nowrap;
}

.wa-btn-main:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(37,211,102,0.55);
}

.wa-numbers {
  display: flex;
  gap: 12px;
}

.wa-num {
  flex: 1;
  padding: 11px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
  text-align: center;
  white-space: nowrap;
}

.wa-num:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border-color: rgba(37,211,102,0.3);
}

/* ============================================
   SOCIAL / CONNECT
   ============================================= */

.contact-social { background: var(--cream); }

.social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.social-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px 28px;
  background: var(--white);
  border-radius: 14px;
  border: 1px solid rgba(26,71,49,0.07);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
}

.social-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.social-card.fb:hover  { border-color: rgba(24,119,242,0.3); }
.social-card.ig:hover  { border-color: rgba(225,48,108,0.3); }
.social-card.yt:hover  { border-color: rgba(255,0,0,0.25);  }

.social-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.social-card.fb .social-icon { background: rgba(24,119,242,0.1);  border: 1px solid rgba(24,119,242,0.2); }
.social-card.ig .social-icon { background: rgba(225,48,108,0.08); border: 1px solid rgba(225,48,108,0.18);}
.social-card.yt .social-icon { background: rgba(255,0,0,0.07);    border: 1px solid rgba(255,0,0,0.15);  }

.social-info strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 3px;
}

.social-info span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.social-arrow {
  margin-left: auto;
  color: var(--text-muted);
  transition: var(--transition);
}

.social-card:hover .social-arrow {
  color: var(--gold);
  transform: translateX(4px);
}

/* ============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 1024px) {
  .contact-cards-inner  { grid-template-columns: repeat(2, 1fr); }
  .contact-card:nth-child(2) { border-right: none; }
  .contact-card:nth-child(3) { border-top: 1px solid rgba(26,71,49,0.07); }
  .msp-grid             { grid-template-columns: 1fr; }
  .msp-iframe-col       { min-height: 380px; position: relative; }
  .msp-info-inner       { padding: 44px 40px; }
  .info-grid            { grid-template-columns: 1fr 1fr; }
  .wa-inner             { flex-direction: column; text-align: center; }
  .wa-actions           { width: 100%; align-items: center; }
  .wa-numbers           { justify-content: center; }
}

@media (max-width: 768px) {
  .contact-cards-inner  { grid-template-columns: 1fr 1fr; }
  .msp-info-inner       { padding: 36px 28px; }
  .msp-actions          { flex-direction: column; }
  .msp-btn-wa,
  .msp-btn-dir          { justify-content: center; }
  .info-grid            { grid-template-columns: 1fr; }
  .social-grid          { grid-template-columns: 1fr; }
  .cf-row               { grid-template-columns: 1fr; }
  .contact-form-card    { padding: 28px 24px; }
  .contact-hero-btns    { flex-direction: column; align-items: center; }
  .wa-numbers           { flex-direction: column; width: 100%; }
  .wa-num               { text-align: center; }
}

@media (max-width: 480px) {
  .contact-cards-inner  { grid-template-columns: 1fr; }
  .contact-card         { border-right: none; border-bottom: 1px solid rgba(26,71,49,0.07); }
  .contact-card:last-child { border-bottom: none; }
  .msp-info-inner       { padding: 32px 20px; }
}

