#contact {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: url("images/bacg6.jpg") center center/cover no-repeat !important;
  background-attachment: fixed;
  padding: 120px 8%;
  overflow: hidden;
}

/* Dark Overlay */

#contact::before {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.55),
    rgba(0, 0, 0, 0.75)
  );

  z-index: 1;
}
/* ==========================
   contact
========================== */

#contact {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;

  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.75)),
    url("images/back5.webp");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;

  padding: 120px 8%;
  overflow: hidden;
}

#contact::before {
  content: "";
  position: absolute;
  inset: 1;
  z-index: 1;
}

.contact-hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;

  color: #fff;

  animation: artistsFadeUp 1s ease;
}

.contact-badge {
  display: inline-block;

  padding: 10px 20px;

  border-radius: 50px;

  background: rgba(255, 255, 255, 0.12);

  backdrop-filter: blur(12px);

  border: 1px solid rgba(255, 255, 255, 0.15);

  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;

  margin-bottom: 25px;
}

/* Title */

.contact-title {
  font-size: 58px;
  line-height: 1.4;
  font-weight: 800;

  margin-bottom: 25px;

  color: #fff;
}

/* Description */

.contact-description {
  max-width: 700px;

  font-size: 18px;
  line-height: 1.9;

  color: rgba(255, 255, 255, 0.88);

  margin-bottom: 35px;
}

/* ==========================
   MINIMAL LUXURY BREADCRUMB
========================== */

.contact-breadcrumb {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.contact-breadcrumb a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.contact-breadcrumb a:hover {
  color: red;
}

.contact-separator {
  color: rgba(255, 255, 255, 0.4);
  font-size: 16px;
}

.contact-current {
  color: red;
  font-size: 16px;
  font-weight: 700;
  position: relative;
}

.contact-current::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: yellow;
  border-radius: 10px;
}

/* Mobile */

@media (max-width: 768px) {
  .contact-breadcrumb {
    justify-content: center;
  }

  .contact-breadcrumb a,
  .contact-current,
  .contact-separator {
    font-size: 14px;
  }
}

/* ==========================
   ANIMATION
========================== */

@keyframes artistsFadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================
   LAPTOP
========================== */

@media (max-width: 1200px) {
  .contact-title {
    font-size: 58px;
  }
}

/* ==========================
   TABLET
========================== */

@media (max-width: 768px) {
  #contact {
    justify-content: center;
    text-align: center;

    padding: 120px 6%;
  }

  .contact-hero-content {
    margin: auto;
  }

  .contact-title {
    font-size: 42px;
  }

  .contact-description {
    font-size: 16px;
    margin-left: auto;
    margin-right: auto;
  }

  .contact-breadcrumb {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* ==========================
   MOBILE
========================== */

@media (max-width: 480px) {
  #contact {
    padding: 100px 20px;
  }

  .contact-badge {
    font-size: 12px;
    padding: 8px 16px;
  }

  .contact-title {
    font-size: 32px;
  }

  .contact-description {
    font-size: 14px;
    line-height: 1.8;
  }

  .contact-breadcrumb {
    gap: 10px;
    padding: 8px;
  }

  .contact-home-link,
  .contact-current {
    padding: 10px 16px;
    font-size: 13px;
  }
}

/* ==========================
   WWE BOOKING SECTION
========================== */

.wwe-contact-booking {
  padding: 100px 20px;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

/* Light Effects */

.wwe-contact-booking::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(255, 107, 53, 0.12);
  border-radius: 50%;
  top: -150px;
  left: -100px;
  filter: blur(120px);
}

.wwe-contact-booking::after {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: rgba(255, 180, 100, 0.15);
  border-radius: 50%;
  bottom: -120px;
  right: -120px;
  filter: blur(120px);
}

.wwe-booking-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: auto;
}

/* Main Glass Card */

.wwe-booking-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;

  padding: 60px;

  background: rgba(255, 255, 255, 0.65);

  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);

  border: 1px solid rgba(255, 255, 255, 0.8);

  border-radius: 32px;

  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

/* Content */

.wwe-booking-tag {
  display: inline-block;
  padding: 10px 18px;
  background: #fff3ee;
  color: red;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 18px;
}

.wwe-booking-content h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #111;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 15px;
}

.wwe-booking-content p {
  color: #000;
  line-height: 1.8;
  margin-bottom: 35px;
}

/* Form */

.wwe-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.wwe-full {
  grid-column: 1/-1;
}

.wwe-form-group {
  display: flex;
  flex-direction: column;
}

.wwe-form-group label {
  font-size: 14px;
  color: #444;
  font-weight: 600;
  margin-bottom: 8px;
}

.wwe-form-group input,
.wwe-form-group select {
  height: 56px;

  background: rgba(255, 255, 255, 0.9);

  border: 1px solid rgba(0, 0, 0, 0.08);

  border-radius: 14px;

  padding: 0 16px;

  font-size: 15px;

  transition: 0.3s;
}

.wwe-form-group input:focus,
.wwe-form-group select:focus {
  outline: none;

  border-color: yellow;
}

/* Button */

.wwe-submit-btn {
  width: 100%;
  margin-top: 22px;

  height: 60px;

  border: none;

  border-radius: 14px;

  background: yellow;

  color: #000;

  font-size: 17px;

  font-weight: 700;

  cursor: pointer;

  transition: 0.3s;

  box-shadow: 0 10px 25px rgba(255, 107, 53, 0.25);
}

.wwe-submit-btn:hover {
  transform: translateY(-3px);

  box-shadow: 0 15px 35px rgba(255, 107, 53, 0.35);
}

/* Image */

.wwe-booking-image {
  position: relative;
}

.wwe-booking-image img {
  width: 100%;

  border-radius: 24px;

  display: block;

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Responsive */

@media (max-width: 991px) {
  .wwe-booking-card {
    grid-template-columns: 1fr;

    padding: 40px;
  }

  .wwe-booking-image {
    max-width: 500px;
    margin: auto;
  }
}

@media (max-width: 768px) {
  .wwe-contact-booking {
    padding: 70px 15px;
  }

  .wwe-booking-card {
    padding: 25px;
    border-radius: 24px;
  }

  .wwe-form-grid {
    grid-template-columns: 1fr;
  }

  .wwe-full {
    grid-column: auto;
  }

  .wwe-booking-content h2 {
    font-size: 1.6rem;
  }
}

/* ==========================
   WWE GOOGLE MAP SECTION
========================== */

.wwemap-section {
  padding: 100px 20px;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

/* Glow Effects */

.wwemap-section::before {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: rgba(255, 107, 53, 0.1);
  border-radius: 50%;
  top: -100px;
  left: -100px;
  filter: blur(120px);
}

.wwemap-section::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255, 180, 100, 0.12);
  border-radius: 50%;
  bottom: -100px;
  right: -100px;
  filter: blur(120px);
}

.wwemap-container {
  max-width: 1200px;
  margin: auto;
  position: relative;
  z-index: 2;
}

.wwemap-heading {
  text-align: center;
  margin-bottom: 50px;
}

.wwemap-tag {
  display: inline-block;

  padding: 10px 18px;

  border-radius: 50px;

  background: #fff3ee;

  color: red;

  font-size: 14px;

  font-weight: 600;

  margin-bottom: 15px;
}

.wwemap-heading h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);

  color: #111;

  font-weight: 600;

  margin-bottom: 15px;
}

.wwemap-heading p {
  max-width: 700px;

  margin: auto;

  color: #666;

  line-height: 1.8;
}

/* Glass Card */

.wwemap-card {
  background: rgba(255, 255, 255, 0.65);

  backdrop-filter: blur(20px);

  -webkit-backdrop-filter: blur(20px);

  border: 1px solid rgba(255, 255, 255, 0.8);

  border-radius: 30px;

  padding: 20px;

  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.wwemap-frame {
  overflow: hidden;

  border-radius: 20px;

  position: relative;
}

.wwemap-frame iframe {
  width: 100%;

  height: 500px;

  border: none;

  display: block;

  transition: transform 0.6s ease;
}

.wwemap-card:hover iframe {
  transform: scale(1.02);
}

/* Scroll Reveal */

.wwemap-reveal {
  opacity: 0;

  transform: translateY(50px);

  transition: all 0.8s ease;
}

.wwemap-reveal.wwemap-active {
  opacity: 1;

  transform: translateY(0);
}

/* Tablet */

@media (max-width: 991px) {
  .wwemap-frame iframe {
    height: 420px;
  }
}

/* Mobile */

@media (max-width: 768px) {
  .wwemap-section {
    padding: 70px 15px;
  }

  .wwemap-card {
    padding: 12px;

    border-radius: 20px;
  }

  .wwemap-frame {
    border-radius: 15px;
  }

  .wwemap-frame iframe {
    height: 320px;
  }

  .wwemap-heading h2 {
    font-size: 1.6rem;
  }

  .wwemap-heading p {
    font-size: 15px;
  }
}
