/* =========================
    BANNER SECTION
=========================  */
.premium-banner {
  position: relative;
  width: 100%;
  height: clamp(400px, 55vh, 700px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #000;
}

/* Cinematic Background Animation */
.banner-bg-image {
  position: absolute;
  inset: -5%;
  /* Prevent white edges during scale */
  background-image: url("https://images.unsplash.com/photo-1618005182384-a83a8bd57fbe?q=80&w=2564&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
  z-index: 0;
  animation: cinematicPan 25s linear infinite alternate;
}

/* Vignette / Spotlight Overlay */
.banner-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(15, 15, 15, 0.2) 0%,
    rgba(15, 15, 15, 0.8) 100%
  );
  z-index: 1;
}

/* Content Container */
.banner-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 var(--space-4);
  max-width: 1000px;
  width: 100%;
}

/* --- ADVANCED GLASSMORPHISM BREADCRUMB --- */
.breadcrumb {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.01) 100%
  );
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: var(--space-1) var(--space-4);
  border-radius: var(--radius-pill);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.15),
    0 12px 40px rgba(0, 0, 0, 0.3);
  transform: translateY(20px);
  opacity: 0;
  animation: fadeUp 1s var(--premium-ease) forwards;
  margin-bottom: var(--space-3);
}

.breadcrumb ol {
  list-style: none;
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: 0;
  padding-left: 0;
}

.breadcrumb li {
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
}

.breadcrumb a {
  color: var(--color-surface);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  opacity: 0.8;
}

.breadcrumb a:hover {
  opacity: 1;
  color: var(--color-surface);
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.5);
}

/* SVG Chevron Separator */
.breadcrumb .separator {
  opacity: 0.4;
  display: flex;
  align-items: center;
}

.breadcrumb .current {
  color: var(--color-yellow);
  /* Brand accent for active state */
  font-weight: 600;
  opacity: 1;
}

/* --- TYPOGRAPHY --- */
.title-wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.page-title {
  font-size: var(--fs-xxl);
  color: var(--color-surface);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.1;
  text-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s var(--premium-ease) 0.2s forwards;
  margin-bottom: 0;
}

.page-subtitle {
  font-size: var(--fs-lg);
  color: rgba(255, 255, 255, 0.75);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 400;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s var(--premium-ease) 0.4s forwards;
}

/* --- GLOWING BRAND ACCENT LINE --- */
.brand-accent-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  /* Thinner for elegance */
  z-index: 3;
  background: linear-gradient(
    90deg,
    var(--color-blue) 0%,
    var(--color-red) 33%,
    var(--color-yellow) 66%,
    var(--color-green) 100%
  );
}

/* Subtle glow beneath the line */
.brand-accent-glow {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 12px;
  z-index: 2;
  filter: blur(8px);
  opacity: 0.6;
  background: linear-gradient(
    90deg,
    var(--color-blue) 0%,
    var(--color-red) 33%,
    var(--color-yellow) 66%,
    var(--color-green) 100%
  );
}

/* --- KEYFRAMES --- */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cinematicPan {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.08);
    /* Extremely subtle zoom */
  }
}

/* =========================
    CONTACT SECTION
=========================  */
/* =========================================
        CONTACT SECTION
        ========================================= */
.premium-contact-section {
  position: relative;
  overflow: hidden;

  background:
    radial-gradient(
      circle at top left,
      rgba(66, 133, 244, 0.08),
      transparent 28%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(52, 168, 83, 0.08),
      transparent 28%
    ),
    #ffffff;

  padding: 120px 0;
}

/* =========================================
        WRAPPER
        ========================================= */

.premium-contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* =========================================
        LEFT INFO
        ========================================= */

.premium-contact-info {
  max-width: 620px;
}

.premium-contact-text {
  font-size: 1.05rem;
  line-height: 1.9;

  color: var(--color-text-muted);

  margin-bottom: 40px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* =========================================
        INFO CARD
        ========================================= */

.contact-info-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;

  padding: 24px;

  border-radius: 24px;

  background: rgba(255, 255, 255, 0.75);

  border: 1px solid rgba(0, 0, 0, 0.05);

  backdrop-filter: blur(18px);

  box-shadow:
    0 10px 30px rgba(15, 23, 42, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);

  transition: all 0.4s var(--premium-ease);
}

.contact-info-card:hover {
  transform: translateY(-6px);

  box-shadow: 0 20px 50px rgba(66, 133, 244, 0.1);

  border-color: rgba(66, 133, 244, 0.12);
}

.contact-icon {
  width: 60px;
  height: 60px;

  min-width: 60px;

  border-radius: 20px;

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

  background: linear-gradient(135deg, var(--color-blue), var(--color-green));

  color: #fff;

  font-size: 1.2rem;

  box-shadow: 0 10px 25px rgba(66, 133, 244, 0.18);
}

.contact-info-card h4 {
  margin-bottom: 10px;

  color: var(--color-text);
}

.contact-info-card p {
  margin: 0;

  color: var(--color-text-muted);

  line-height: 1.8;

  text-align: left;
}

.contact-info-card a {
  color: var(--color-text-muted);

  transition: var(--transition);
}

.contact-info-card a:hover {
  color: var(--color-blue);
  text-decoration: none;
}

/* =========================================
        FORM CARD
        ========================================= */

.premium-contact-form-card {
  position: relative;

  padding: 45px;

  border-radius: 36px;

  background: rgba(255, 255, 255, 0.82);

  border: 1px solid rgba(255, 255, 255, 0.85);

  backdrop-filter: blur(22px);

  box-shadow:
    0 25px 80px rgba(15, 23, 42, 0.08),
    0 10px 30px rgba(15, 23, 42, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);

  overflow: hidden;
}

.form-glow {
  position: absolute;

  width: 240px;
  height: 240px;

  border-radius: 50%;

  background: radial-gradient(
    circle,
    rgba(66, 133, 244, 0.12),
    transparent 70%
  );

  top: -100px;
  right: -100px;

  pointer-events: none;
}

/* =========================================
        FORM
        ========================================= */

.premium-contact-form {
  position: relative;
  z-index: 2;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;

  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 10px;

  font-size: 0.95rem;
  font-weight: 600;

  color: var(--color-text);
}

.premium-contact-form input,
.premium-contact-form textarea,
.premium-contact-form select {
  width: 100%;

  padding: 16px 18px;

  border-radius: 18px;

  border: 1px solid rgba(0, 0, 0, 0.06);

  background: rgba(255, 255, 255, 0.85);

  font-family: var(--font-family);

  transition: all 0.35s ease;
}

.premium-contact-form textarea {
  resize: none;
}

.premium-contact-form input:focus,
.premium-contact-form textarea:focus,
.premium-contact-form select:focus {
  outline: none;

  border-color: rgba(66, 133, 244, 0.35);

  box-shadow: 0 0 0 4px rgba(66, 133, 244, 0.08);

  transform: translateY(-1px);
}

.w-100 {
  width: 100%;
}

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

@media (max-width: 991px) {
  .premium-contact-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

@media (max-width: 600px) {
  .premium-contact-section {
    padding: 80px 0;
  }

  .premium-contact-form-card {
    padding: 28px;
    border-radius: 28px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .contact-info-card {
    padding: 20px;
  }

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

/* =========================
    LOCATION SECTION
=========================  */
/* =========================================
            PREMIUM MAP SECTION
        ========================================= */

.premium-map-section {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
}

/* =========================================
            HEADING
        ========================================= */

.premium-map-heading {
  max-width: 760px;
  margin: 0 auto 70px;
}

.premium-map-title {
  font-size: clamp(2.8rem, 4vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.05em;

  margin-bottom: 24px;

  color: var(--color-text);
}

.premium-map-title span {
  background: linear-gradient(
    90deg,
    var(--color-blue),
    var(--color-green),
    var(--color-yellow)
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.premium-map-text {
  max-width: 650px;
  margin: auto;

  text-align: center;

  color: var(--color-text-muted);

  line-height: 1.9;
}

/* =========================================
            LOCATION GRID
        ========================================= */

.premium-location-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  gap: 28px;

  margin-bottom: 70px;
}

.premium-location-card {
  position: relative;

  padding: 36px;

  border-radius: 30px;

  background: rgba(255, 255, 255, 0.78);

  border: 1px solid rgba(0, 0, 0, 0.05);

  backdrop-filter: blur(18px);

  box-shadow:
    0 12px 40px rgba(15, 23, 42, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);

  transition: all 0.45s var(--premium-ease);
}

.premium-location-card:hover {
  transform: translateY(-10px);

  box-shadow: 0 25px 60px rgba(66, 133, 244, 0.12);

  border-color: rgba(66, 133, 244, 0.15);
}

/* =========================================
            LOCATION CARD TOP
        ========================================= */

.location-top {
  display: flex;
  align-items: center;
  gap: 18px;

  margin-bottom: 26px;
}

.location-top h4 {
  margin: 0;
  color: var(--color-text);
}

.location-icon {
  width: 45px;
  height: 45px;

  min-width: 45px;

  border-radius: 18px;

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

  background: linear-gradient(
    135deg,
    rgba(66, 133, 244, 0.12),
    rgba(52, 168, 83, 0.1)
  );

  color: var(--color-blue);

  font-size: 1.2rem;
}

.premium-location-card a {
  display: block;

  margin-bottom: 14px;

  color: var(--color-blue);

  font-size: 1.05rem;
}

.premium-location-card a:hover {
  color: var(--color-green);
  text-decoration: none;
}

/* =========================================
            MAP WRAPPER
        ========================================= */

.premium-map-wrapper {
  position: relative;

  border-radius: 40px;

  overflow: hidden;

  background: rgba(255, 255, 255, 0.72);

  border: 1px solid rgba(0, 0, 0, 0.05);

  box-shadow: 0 25px 80px rgba(15, 23, 42, 0.08);

  backdrop-filter: blur(18px);
}

/* =========================================
            MAP CONTENT
        ========================================= */

.map-content {
  padding: 50px 50px 35px;
}

.map-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 10px 18px;

  border-radius: 999px;

  margin-bottom: 24px;

  background: rgba(66, 133, 244, 0.08);

  color: var(--color-blue);

  font-size: 0.9rem;
  font-weight: 600;
}

.map-content h3 {
  font-size: clamp(2rem, 3vw, 3rem);

  margin-bottom: 18px;

  color: var(--color-text);
}

.map-content p {
  color: var(--color-text-muted);
  line-height: 1.9;
}

.map-address {
  display: flex;
  gap: 16px;
  align-items: flex-start;

  padding: 24px;

  border-radius: 24px;

  background: linear-gradient(
    135deg,
    rgba(66, 133, 244, 0.05),
    rgba(52, 168, 83, 0.05)
  );
}

.map-address i {
  font-size: 1.4rem;

  color: var(--color-red);

  margin-top: 3px;
}

.map-address span {
  line-height: 1.8;

  color: var(--color-text);
}

/* =========================================
            MAP FRAME
        ========================================= */

.map-frame {
  width: 100%;
  height: 520px;

  overflow: hidden;
}

.map-frame iframe {
  width: 100%;
  height: 100%;

  border: 0;

  filter: grayscale(0.1) contrast(1.02);
}

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

@media (max-width: 991px) {
  .premium-location-grid {
    grid-template-columns: 1fr;
  }

  .map-content {
    padding: 35px;
  }
}

@media (max-width: 600px) {
  .premium-map-section {
    padding: 80px 0;
  }

  .premium-location-card {
    padding: 28px;
  }

  .premium-location-card h4 {
    font-size: 1.6rem;
  }

  .premium-map-wrapper {
    border-radius: 28px;
  }

  .map-content {
    padding: 28px;
  }

  .map-frame {
    height: 400px;
  }

  .map-address {
    flex-direction: column;
  }
}
