/* ==========================================================================
   CONTACT US CUSTOM STYLES — v2.1
   Layout mirrors SportsBettingOnline Contact page exactly:
     Hero section + Two-column (Services list left | Image right)
   ========================================================================== */

/* ============================================================
   HERO SECTION
   ============================================================ */
.contact-hero {
  position: relative;
  background-image: url('../images/contact-us-hero.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Left-to-right gradient overlay for text readability */
.contact-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.88) 0%,
    rgba(0, 0, 0, 0.58) 42%,
    rgba(0, 0, 0, 0.10) 100%
  );
  z-index: 1;
}

/* Right-side red ambient glow */
.contact-hero::after {
  content: '';
  position: absolute;
  top: 20%;
  right: -250px;
  width: 600px;
  height: 600px;
  background-color: #D40E37;
  opacity: 0.28;
  filter: blur(110px);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.contact-hero .container {
  position: relative;
  z-index: 2;
}

.contact-hero-content {
  text-align: left;
  max-width: 680px;
}

.contact-hero-title {
  font-family: var(--font-heading);
  font-size: 4.6rem;
  font-weight: 400;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 14px;
}

.contact-hero-subtitle {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 600;
  color: #FF154B;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

.contact-hero-body {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: #D6D6D6;
  font-weight: 400;
  margin-bottom: 0;
}

/* ============================================================
   SUPPORT SERVICES SECTION
   ============================================================ */
.contact-support-section {
  position: relative;
  background-color: #000000;
  padding: 64px 0 80px;
  overflow: hidden;
}

/* Left red ambient glow — matches SBO radial gradient */
.support-left-glow {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 300px;
  height: 600px;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(
    circle at 0% 45%,
    rgba(212, 14, 55, 0.28) 0%,
    rgba(212, 14, 55, 0.16) 20%,
    rgba(212, 14, 55, 0.08) 35%,
    rgba(0, 0, 0, 0) 65%
  );
}

/* Two-column inner layout */
.support-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* ── Left Column ── */
.support-services-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ── Section Heading: HOURS OF OPERATION ── */
.support-section-title {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1.05;
  letter-spacing: -0.5px;
  margin-bottom: 40px;
}

.support-section-title .red-text {
  color: #FF154B;
}

/* Each service row: icon left + content right */
.support-row {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 18px 0;
}

/* ── Icon box: 2px red border, dark bg ── */
.support-icon-box {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 2px solid #FF154B;
  background-color: rgba(0, 0, 0, 0.5);
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.support-row:hover .support-icon-box {
  background-color: rgba(255, 21, 75, 0.08);
  transform: scale(1.04);
}

/* Icons are already white-stroked SVGs from SBO — no filter needed */
.support-icon-box img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  display: block;
}

.support-icon-box svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  color: #ffffff;
}

/* ── Row text content ── */
.support-row-content {
  flex: 1;
}

.support-row-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1.3;
  letter-spacing: 0.02em;
  margin-bottom: 5px;
}

.support-row-desc {
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.6;
  color: #9ca3af;
  margin: 0;
}

.support-row-desc + .support-row-desc {
  margin-top: 8px;
}

.support-row-desc--muted {
  color: #6b7280;
  font-size: 0.85rem;
}

/* Phone & email link styling */
.phone-link {
  color: #ffffff;
  font-weight: 600;
  transition: color 0.2s ease;
}

.phone-link:hover {
  color: #FF154B;
}

/* ── Right Column: Image ── */
.support-image-col {
  position: relative;
}

.support-image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.85);
}

.support-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.support-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.08) 100%);
}

/* ============================================================
   RESPONSIVE — Tablet ≤ 1024px
   ============================================================ */
@media (max-width: 1024px) {
  .contact-hero {
    height: 520px;
  }

  .contact-hero-title {
    font-size: 3.5rem;
  }

  .support-inner {
    gap: 36px;
  }
}

/* ============================================================
   RESPONSIVE — Mobile ≤ 768px
   ============================================================ */
@media (max-width: 768px) {
  .contact-hero {
    height: auto;
    min-height: 420px;
    padding: 50px 0;
  }

  .contact-hero-title {
    font-size: 2.5rem;
  }

  .contact-hero-subtitle {
    font-size: 1.15rem;
    margin-bottom: 14px;
  }

  .contact-hero-body {
    font-size: 0.95rem;
    line-height: 1.55;
  }

  /* Stack to single column */
  .support-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Services list first on mobile */
  .support-services-col {
    order: 1;
  }

  /* Image goes below */
  .support-image-col {
    order: 2;
  }

  .support-icon-box {
    width: 42px;
    height: 42px;
  }

  .support-icon-box img {
    width: 20px;
    height: 20px;
  }

  .support-row-title {
    font-size: 0.95rem;
  }

  .support-image-wrap {
    aspect-ratio: 4 / 3;
  }

  .contact-support-section {
    padding: 48px 0 64px;
  }
}

/* ============================================================
   RESPONSIVE — Small Mobile ≤ 480px
   ============================================================ */
@media (max-width: 480px) {
  .contact-hero-title {
    font-size: 2rem;
  }

  .support-row {
    gap: 14px;
  }

  .support-row-title {
    font-size: 0.9rem;
  }
}