/* ============================================
   CONTACT PAGE — PREMIUM REDESIGN
   ============================================ */

/* ─── Immersive Hero ─── */
.contact-hero {
  position: relative;
  min-height: 52vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--color-white);
}
.contact-hero__bg {
  position: absolute; inset: 0;
  background:
    url('https://images.unsplash.com/photo-1629909615184-74f495363b67?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
  filter: brightness(0.35) saturate(1.2);
  transform: scale(1.05);
  transition: transform 8s ease;
}
.contact-hero:hover .contact-hero__bg { transform: scale(1); }
.contact-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    160deg,
    rgba(6, 42, 69, 0.92) 0%,
    rgba(10, 61, 98, 0.75) 50%,
    rgba(14, 92, 143, 0.60) 100%
  );
}
.contact-hero__inner {
  position: relative; z-index: 2;
  padding: 7rem 0 5rem;
}
.contact-hero h1 {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.15;
  letter-spacing: -0.5px;
}
.contact-hero > .container > p,
.contact-hero__inner > p {
  font-size: 1.15rem;
  opacity: 0.85;
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

/* Quick-reach pills */
.contact-hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.4rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-white);
  transition: all var(--transition);
  text-decoration: none;
}
.pill:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
}
.pill--accent {
  background: rgba(255, 127, 80, 0.2);
  border-color: rgba(255, 127, 80, 0.4);
}
.pill--accent:hover {
  background: rgba(255, 127, 80, 0.35);
  border-color: rgba(255, 127, 80, 0.6);
}
.pill__icon { font-size: 1.05rem; }

/* ─── Floating Contact Cards ─── */
.contact-cards-strip {
  position: relative;
  z-index: 3;
  margin-top: -3.5rem;
  padding-bottom: 4rem;
}
.contact-cards-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.cc-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 8px 32px rgba(10, 61, 98, 0.10);
  border: 1px solid rgba(10, 61, 98, 0.06);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.cc-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  transform: scaleX(0);
  transition: transform var(--transition);
}
.cc-card:hover::after { transform: scaleX(1); }
.cc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(10, 61, 98, 0.15);
}
.cc-card__icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(10,61,98,0.06), rgba(255,127,80,0.10));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.35rem;
}
.cc-card h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}
.cc-card p {
  font-size: 0.88rem;
  color: var(--color-text-light);
  line-height: 1.6;
}
.cc-card a {
  color: var(--color-accent);
  font-weight: 600;
  transition: color var(--transition);
}
.cc-card a:hover { color: var(--color-accent-hover); }

/* ─── Booking Section ─── */
.booking-section {
  padding: 5rem 0 6rem;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(10,61,98,0.03) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(255,127,80,0.04) 0%, transparent 50%),
    var(--color-bg-alt);
}
.booking-section__header { margin-bottom: 3rem; }

/* Browser-chrome frame for iframes */
.booking-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 60px rgba(10, 61, 98, 0.14);
  border: 1px solid rgba(10, 61, 98, 0.08);
  background: var(--color-white);
}
.booking-frame__chrome {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1.25rem;
  background: linear-gradient(180deg, #f8fafb 0%, #f0f4f5 100%);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.booking-frame__dots {
  display: flex; gap: 6px;
}
.booking-frame__dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.booking-frame__dots span:nth-child(1) { background: #ff5f57; }
.booking-frame__dots span:nth-child(2) { background: #ffbd2e; }
.booking-frame__dots span:nth-child(3) { background: #28ca42; }
.booking-frame__label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-text-muted);
  letter-spacing: 0.3px;
  text-transform: uppercase;
}
.booking-frame iframe { display: block; }

/* ─── Map Section ─── */
.map-section {
  padding: 6rem 0;
}
.map-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 2.5rem;
  align-items: stretch;
}
.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 60px rgba(10, 61, 98, 0.12);
  border: 1px solid rgba(10, 61, 98, 0.08);
  background: var(--color-white);
}
.map-wrapper iframe {
  width: 100%;
  height: 380px;
  display: block;
  border: 0;
}
.map-side {
  display: flex;
  align-items: stretch;
}
.map-side__card {
  background: linear-gradient(160deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2.75rem 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  width: 100%;
}
.map-side__card::before {
  content: '';
  position: absolute;
  top: -40%; right: -30%;
  width: 300px; height: 300px;
  background: rgba(255,127,80,0.08);
  border-radius: 50%;
}
.map-side__card::after {
  content: '';
  position: absolute;
  bottom: -30%; left: -20%;
  width: 250px; height: 250px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}
.map-side__card > * { position: relative; z-index: 1; }
.map-side__card h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}
.map-side__card > p {
  font-size: 0.95rem;
  opacity: 0.85;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.map-side__list {
  list-style: none;
  margin-bottom: 2rem;
}
.map-side__list li {
  padding: 0.55rem 0;
  font-size: 0.9rem;
  opacity: 0.85;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.map-side__list li:last-child { border-bottom: none; }
.map-side__list strong {
  color: var(--color-accent);
  font-weight: 600;
}
.map-side__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.map-side__actions .btn {
  justify-content: center;
  text-align: center;
}
.map-side__actions .btn-outline {
  color: var(--color-white);
  border-color: rgba(255,255,255,0.3);
}
.map-side__actions .btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--color-white);
  color: var(--color-white);
}

/* ─── Responsive ─── */
@media (max-width: 992px) {
  .contact-cards-row { grid-template-columns: repeat(2, 1fr); }
  .map-grid { grid-template-columns: 1fr; }
  .contact-hero h1 { font-size: 2.75rem; }
}

@media (max-width: 768px) {
  .contact-hero__inner { padding: 8rem 1.5rem 6.5rem; text-align: center; }
  .contact-hero h1 { font-size: 2.2rem; }
  .contact-cards-row { grid-template-columns: 1fr; }
  .contact-cards-strip { margin-top: -2.5rem; }
  .contact-hero__pills { flex-direction: column; align-items: center; }
  .pill { justify-content: center; width: 100%; max-width: 320px; }
  .map-side__card { padding: 2rem 1.5rem; }
}

@media (max-width: 480px) {
  .contact-cards-row { grid-template-columns: 1fr; }
  .contact-hero h1 { font-size: 1.85rem; }
  .booking-frame__label { display: none; }
}
