/* Import Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700;800;900&family=Roboto:wght@300;400;500;700&display=swap");

/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  color: #ffffff;
  overflow-x: hidden;
  background-color: #0a0a1a;
}

footer#footerWrapper {
  display: none;
}

/* div#fullscreenContainer {
    display: none;
} */

.fas,
em.far.fa-calendar-alt {
  color: #f47920 !important;
}
em.fas.fa-arrow-right {
  color: #ffffff !important;
}
.tour-card .fas.fa-arrow-right {
  color: #f47920 !important;
}
em.fas.fa-shopping-cart {
  color: #ffffff !important;
}
.event-details .fas,
.event-details .fa-calendar-alt {
  color: #00b4aa !important;
}
div.hero > div.hero-content > div.event-details > div.date > em {
  color: #00b4aa !important;
}

/* Hero section */
.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 80px;
}

.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

#bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 26, 0.9) 0%,
    rgba(0, 180, 170, 0.7) 100%
  );
}

.hero-content {
  width: 100%;
  max-width: 1200px;
  padding: 0 2rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 2rem;
  z-index: 2;
}

.logo {
  position: absolute;
  top: 50%;
  right: 15%;
  transform: translateY(-50%);
  z-index: 3;
}

.logo img {
  max-width: 300px;
  height: auto;
}

.welcome-text {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: #fff;
  background-color: rgba(0, 180, 170, 0.2);
  display: inline-block;
  padding: 8px 15px;
  border-radius: 3px;
}

.main-title {
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.hero-description {
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.event-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.venue,
.date {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.venue i,
.date i {
  color: #00b4aa;
}

/* Countdown */
.countdown-container {
  margin-bottom: 3rem;
  width: 100%;
}

#countdown {
  display: flex;
  gap: 2rem;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(0, 180, 170, 0.2);
  border-radius: 10px;
  padding: 1.5rem;
  min-width: 120px;
  border: 1px solid rgba(0, 180, 170, 0.3);
}

.countdown-item span:first-child {
  font-size: 3.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.countdown-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-register-btn,
.hero-agenda-btn {
  background: #f47920;
  color: white;
  text-decoration: none;
  padding: 1.2rem 3rem;
  border-radius: 5px;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  display: inline-block;
  margin-bottom: 3rem;
}

.hero-register-btn:hover,
.hero-agenda-btn:hover {
  background: #ff8a3c;
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(244, 121, 32, 0.4);
}

/* Tech elements */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 30%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect x="0" y="0" width="100" height="100" fill="none"/><path d="M0,50 L100,50" stroke="rgba(0, 180, 170, 0.3)" stroke-width="1"/><path d="M50,0 L50,100" stroke="rgba(0, 180, 170, 0.3)" stroke-width="1"/><circle cx="50" cy="50" r="3" fill="rgba(0, 180, 170, 0.5)"/></svg>');
  opacity: 0.3;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect x="0" y="0" width="100" height="100" fill="none"/><path d="M0,50 L100,50" stroke="rgba(0, 180, 170, 0.3)" stroke-width="1"/><path d="M50,0 L50,100" stroke="rgba(0, 180, 170, 0.3)" stroke-width="1"/><circle cx="50" cy="50" r="3" fill="rgba(0, 180, 170, 0.5)"/></svg>');
  opacity: 0.3;
  pointer-events: none;
}

/* Responsive styles */
@media (max-width: 1200px) {
  .main-title {
    font-size: 4rem;
  }
}

@media (max-width: 992px) {
  .hero-content {
    padding: 0 1.5rem;
  }

  .main-title {
    font-size: 3.5rem;
  }

  .logo {
    right: 30px;
  }

  .logo img {
    max-width: 180px;
  }

  .hero-description {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .hero-buttons {
    width: 100%;
  }
  .hero {
    padding-top: 60px;
  }

  .hero-content {
    padding: 0 1rem;
    align-items: center;
    text-align: center;
  }

  .main-title {
    font-size: 3rem;
    text-align: center;
  }

  .welcome-text {
    font-size: 1rem;
  }

  .logo {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    margin-bottom: 2rem;
  }

  .logo img {
    max-width: 160px;
  }

  #countdown {
    gap: 10px;
    justify-content: center;
  }

  .countdown-item {
    min-width: 70px;
    padding: 10px;
  }

  #days,
  #hours,
  #minutes,
  #seconds {
    font-size: 2rem;
  }

  .event-details {
    align-items: center;
  }

  .hero-description {
    text-align: center;
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .hero {
    padding-top: 40px;
  }

  .main-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }

  .welcome-text {
    font-size: 0.9rem;
    padding: 6px 12px;
  }

  .logo img {
    max-width: 140px;
  }

  .countdown-item {
    min-width: 60px;
    padding: 8px;
  }

  #days,
  #hours,
  #minutes,
  #seconds {
    font-size: 1.5rem;
  }

  .hero-register-btn,
  .hero-agenda-btn {
    padding: 12px 30px;
    font-size: 0.9rem;
    width: 100%;
    text-align: center;
  }

  .hero-description {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .event-details {
    margin-bottom: 2rem;
  }
}

/* Pre-Conference Social Section Styles */
.pre-conference {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 26, 0.9) 0%,
    rgba(0, 180, 170, 0.7) 100%
  );
  overflow: hidden;
}

.pre-conference::before {
  content: "";
  position: absolute;
  top: 0;
  left: -10%;
  width: 60%;
  height: 100%;
  background: url("https://www.uniquevenuesbirmingham.com/wp-content/uploads/2022/07/ROTUNDA-Cover-scaled.jpg")
    center/cover no-repeat;
  transform: skewX(-10deg);
}

.pre-conference::after {
  content: "";
  position: absolute;
  top: 0;
  left: -10%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(10, 10, 26, 0.9) 0%,
    rgba(0, 180, 170, 0.2) 100%
  );
  transform: skewX(-10deg);
}

.pre-conference-content {
  position: relative;
  z-index: 2;
  width: 50%;
  padding: 4rem;
  color: #ffffff;
  align-self: center;
}

.pre-conference-subtitle {
  font-size: 1.2rem;
  font-weight: 500;
  color: #00b4aa;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.pre-conference-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.pre-conference-description {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 800px;
  color: rgba(255, 255, 255, 0.9);
}

.pre-conference-details {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-direction: column;
}

.pre-conference-detail {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
}

.pre-conference-detail i {
  color: #00b4aa;
}

.venue-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-top: 4rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.venue-feature {
  background: rgba(0, 180, 170, 0.1);
  border: 1px solid rgba(0, 180, 170, 0.3);
  border-radius: 15px;
  padding: 2.5rem;
  transition: all 0.3s ease;
  text-align: center;
}

.venue-feature:hover {
  transform: translateY(-5px);
  background: rgba(0, 180, 170, 0.2);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.venue-feature i {
  font-size: 2.5rem;
  color: #00b4aa;
  margin-bottom: 2rem;
}

.venue-feature h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.venue-feature p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
}

@media (max-width: 1200px) {
  .pre-conference-content {
    width: 60%;
    padding: 3rem;
  }
}

@media (max-width: 992px) {
  .pre-conference::before {
    width: 50%;
  }
  .pre-conference-content {
    width: 70%;
  }
  .pre-conference-title {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .pre-conference {
    justify-content: center;
    padding: 4rem 2rem;
  }
  .pre-conference::before {
    left: 0;
    width: 100%;
    transform: none;
    opacity: 0.2;
  }
  .pre-conference::after {
    left: 0;
    width: 100%;
    transform: none;
  }
  .pre-conference-content {
    width: 100%;
    padding: 2rem;
    text-align: center;
  }
  .pre-conference-title {
    font-size: 2.5rem;
  }
  .pre-conference-details {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  .venue-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .pre-conference {
    padding: 3rem 1rem;
  }
  .pre-conference-content {
    padding: 1rem;
  }
  .pre-conference-title {
    font-size: 2rem;
  }
  .pre-conference-subtitle {
    font-size: 1rem;
  }
  .pre-conference-description {
    font-size: 1rem;
    line-height: 1.6;
  }
  .pre-conference-detail {
    font-size: 0.9rem;
  }
}

/* Tech Grid Styles */
.pre-conference .tech-point {
  position: absolute;
  width: 6px;
  height: 6px;
  background-color: rgba(0, 180, 170, 0.8);
  border-radius: 50%;
  z-index: 1;
}

.pre-conference .tech-line {
  position: absolute;
  height: 1px;
  transform-origin: left center;
  opacity: 0.5;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.6;
  }
  100% {
    opacity: 0.3;
  }
}

/* Conference Section Styles */
.conference {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 26, 0.95) 0%,
    rgba(0, 180, 170, 0.8) 100%
  );
  overflow: hidden;
}

.conference::before {
  content: "";
  position: absolute;
  top: 0;
  right: -10%;
  width: 60%;
  height: 100%;
  background: url("https://austincourt.theiet.org/media/1158/image-of-the-courtyard-and-atrium-exhibition-3.jpg?format=webp&quality=80&rnd=133409930489370000")
    center/cover no-repeat;
  background-position-x: left;
  transform: skewX(10deg);
  z-index: 1;
}

.conference::after {
  content: "";
  position: absolute;
  top: 0;
  right: -10%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    -90deg,
    rgba(10, 10, 26, 0.9) 0%,
    rgba(0, 180, 170, 0.2) 100%
  );
  transform: skewX(10deg);
  z-index: 1;
}

.conference-content {
  position: relative;
  z-index: 2;
  width: 50%;
  padding: 4rem;
  color: #ffffff;
  align-self: center;
  animation: contentFadeIn 1s ease-out;
}

@keyframes contentFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.conference-subtitle {
  font-size: 1.2rem;
  font-weight: 500;
  color: #00b4aa;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.conference-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.conference-description {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 800px;
  color: rgba(255, 255, 255, 0.9);
}

.conference-details {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-direction: column;
}

.conference-detail {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
}

.conference-detail i {
  color: #00b4aa;
}

/* Engineering-themed decorative elements */
.engineering-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
      rgba(0, 180, 170, 0.15) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(0, 180, 170, 0.15) 1px, transparent 1px),
    radial-gradient(
      circle at 50% 50%,
      rgba(0, 180, 170, 0.1) 0%,
      transparent 25%
    );
  background-size: 30px 30px, 30px 30px, 60px 60px;
  pointer-events: none;
  opacity: 0.4;
  animation: gridPulse 4s ease-in-out infinite;
}

@keyframes gridPulse {
  0% {
    opacity: 0.4;
  }
  50% {
    opacity: 0.6;
  }
  100% {
    opacity: 0.4;
  }
}

/* Responsive styles */
@media (max-width: 1200px) {
  .conference-content {
    width: 60%;
    padding: 3rem;
  }
}

@media (max-width: 992px) {
  .conference::before {
    width: 50%;
  }
  .conference-content {
    width: 70%;
  }
  .conference-title {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .conference {
    justify-content: center;
    padding: 4rem 2rem;
  }
  .conference::before {
    display: none;
  }
  .conference::after {
    display: none;
  }
  .conference-content {
    width: 100%;
    padding: 0;
  }
  .engineering-grid {
    opacity: 0.1;
  }
}
.tour-card {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin-top: 3rem;
  border-radius: 15px;
  overflow: hidden;
  background: rgba(0, 180, 170, 0.1);
  border: 1px solid rgba(0, 180, 170, 0.3);
  transition: all 0.3s ease;
}

.tour-card:hover {
  transform: translateY(-5px);
  background: rgba(0, 180, 170, 0.2);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.tour-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.tour-card-content {
  padding: 1.5rem;
  text-align: center;
}

.tour-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.tour-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #f47920;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.tour-card-link:hover {
  color: #f47920;
}

.conference-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.conference-description {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 800px;
  color: rgba(255, 255, 255, 0.9);
}

.conference-details {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-direction: column;
}

.conference-detail {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
}

.conference-detail i {
  color: #00b4aa;
}

/* Engineering-themed decorative elements */
.engineering-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
      rgba(0, 180, 170, 0.15) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(0, 180, 170, 0.15) 1px, transparent 1px),
    radial-gradient(
      circle at 50% 50%,
      rgba(0, 180, 170, 0.1) 0%,
      transparent 25%
    );
  background-size: 30px 30px, 30px 30px, 60px 60px;
  pointer-events: none;
  opacity: 0.4;
  animation: gridPulse 4s ease-in-out infinite;
}

@keyframes gridPulse {
  0% {
    opacity: 0.4;
  }
  50% {
    opacity: 0.6;
  }
  100% {
    opacity: 0.4;
  }
}

/* Responsive styles */
@media (max-width: 1200px) {
  .conference-content {
    width: 60%;
    padding: 3rem;
  }
}

@media (max-width: 992px) {
  .conference::before {
    width: 50%;
  }
  .conference-content {
    width: 70%;
  }
  .conference-title {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .conference {
    justify-content: center;
    padding: 4rem 2rem;
  }
  .conference::before {
    display: none;
  }
  .conference::after {
    display: none;
  }
  .conference-content {
    width: 100%;
    padding: 0;
  }
  .engineering-grid {
    opacity: 0.1;
  }
}

/* Accommodation Section Styles */
.accommodation {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("https://static.leonardo-hotels.com/image/oak_936_fe649114154234f57108591e0a896bc2_1200x800_mobile_3.webp")
    center/cover no-repeat fixed;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.accommodation::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 26, 0.9) 0%,
    rgba(0, 180, 170, 0.8) 100%
  );
  transition: opacity 0.3s ease;
}

.accommodation {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("https://static.leonardo-hotels.com/image/oak_936_fe649114154234f57108591e0a896bc2_1200x800_mobile_3.webp")
    center/cover no-repeat fixed;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.accommodation-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 800px;
  padding: 4rem;
  color: #ffffff;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards;
}

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

.accommodation-subtitle {
  font-size: 1.2rem;
  font-weight: 500;
  color: #00b4aa;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.accommodation-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.accommodation-description {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.accommodation-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}

.accommodation-detail {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
}

.accommodation-detail i {
  color: #00b4aa;
}

.booking-info {
  background: rgba(0, 180, 170, 0.1);
  border: 1px solid rgba(0, 180, 170, 0.3);
  border-radius: 15px;
  padding: 2.5rem;
  margin-top: 2rem;
  transform: translateY(20px);
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.3s forwards;
  transition: all 0.3s ease;
}

.booking-info:hover {
  background: rgba(0, 180, 170, 0.15);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.promo-code {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  justify-content: center;
  position: relative;
}

.promo-code .code {
  background: #f47920;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  font-family: monospace;
  font-size: 1.4rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 1.5px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  user-select: all;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.promo-code .code::before {
  content: "\f0c5";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 1.3rem;
  color: #ffffff;
  transition: transform 0.3s ease;
}

.promo-code .code:hover {
  background: #ff8a3c;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(244, 121, 32, 0.4);
}

.promo-code .code:hover::before {
  transform: scale(1.1) rotate(-5deg);
}

.promo-code .code.copied::before {
  content: "\f00c";
  color: #fff;
  animation: checkmark 0.5s ease-in-out;
}

@keyframes checkmark {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2) rotate(5deg);
  }
  100% {
    transform: scale(1) rotate(0);
  }
}
.promo-code .code:hover::after {
  content: "Click to copy";
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.promo-code .code:hover::after {
  opacity: 1;
}

.promo-code .code.copied::after {
  content: "Copied!";
  color: #fff;
}

.booking-info {
  background: rgba(0, 180, 170, 0.1);
  border: 1px solid rgba(0, 180, 170, 0.3);
  border-radius: 15px;
  padding: 2.5rem;
  margin-top: 2rem;
  transform: translateY(20px);
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.3s forwards;
  transition: all 0.3s ease;
}

.booking-info:hover {
  background: rgba(0, 180, 170, 0.15);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.booking-instructions {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}

.booking-btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: #f47920;
  color: white;
  text-decoration: none;
  padding: 1.2rem 2.5rem;
  border-radius: 5px;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.booking-btn:hover {
  background: #ff8a3c;
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(244, 121, 32, 0.4);
}

.booking-btn i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.booking-btn:hover i {
  transform: translateX(5px);
}

/* Responsive styles */
@media (max-width: 1200px) {
  .accommodation-content {
    width: 60%;
    padding: 3rem;
  }
}

@media (max-width: 992px) {
  .accommodation::before {
    width: 100%;
  }
  .accommodation-content {
    width: 70%;
  }
  .accommodation-title {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .accommodation {
    justify-content: center;
    padding: 4rem 2rem;
  }
  .accommodation::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(
        rgba(0, 180, 170, 0.15) 1px,
        transparent 1px
      ),
      linear-gradient(90deg, rgba(0, 180, 170, 0.15) 1px, transparent 1px),
      radial-gradient(
        circle at 50% 50%,
        rgba(0, 180, 170, 0.1) 0%,
        transparent 25%
      );
    background-size: 30px 30px, 30px 30px, 60px 60px;
    pointer-events: none;
    opacity: 0.4;
    animation: gridPulse 4s ease-in-out infinite;
    z-index: 1;
  }

  @keyframes gridPulse {
    0% {
      opacity: 0.4;
    }
    50% {
      opacity: 0.6;
    }
    100% {
      opacity: 0.4;
    }
  }
  .accommodation::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(
        rgba(0, 180, 170, 0.2) 1px,
        transparent 1px
      ),
      linear-gradient(90deg, rgba(0, 180, 170, 0.2) 1px, transparent 1px),
      radial-gradient(
        circle at 50% 50%,
        rgba(0, 180, 170, 0.15) 0%,
        transparent 35%
      );
    background-size: 25px 25px, 25px 25px, 80px 80px;
    pointer-events: none;
    opacity: 0.5;
    animation: gridPulse 4s ease-in-out infinite;
    z-index: 1;
  }

  @keyframes gridPulse {
    0% {
      opacity: 0.4;
    }
    50% {
      opacity: 0.6;
    }
    100% {
      opacity: 0.4;
    }
  }

  .accommodation::before {
    opacity: 0.92;
  }

  .promo-code .code {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .promo-code .code::before {
    content: "\f0c5";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 1rem;
    color: #f47920;
    transition: transform 0.3s ease;
  }

  .promo-code .code:hover::before {
    transform: scale(1.1);
  }

  .promo-code .code.copied::before {
    content: "\f00c";
    color: #f47920;
    animation: checkmark 0.5s ease-in-out;
  }

  @keyframes checkmark {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.2);
    }
    100% {
      transform: scale(1);
    }
  }
  .accommodation-content {
    width: 100%;
    padding: 0;
  }
  .booking-info {
    padding: 1.5rem;
  }
  .booking-btn {
    width: 100%;
    justify-content: center;
  }
}

/* Ticket Prices Section Styles */
.tickets {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 26, 0.95) 0%,
    rgba(0, 180, 170, 0.8) 100%
  );
  overflow: hidden;
  padding: 6rem 2rem;
}

.tickets::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
      rgba(0, 180, 170, 0.15) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(0, 180, 170, 0.15) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
  opacity: 0.4;
  animation: gridPulse 4s ease-in-out infinite;
}

@keyframes gridPulse {
  0% {
    opacity: 0.4;
  }
  50% {
    opacity: 0.6;
  }
  100% {
    opacity: 0.4;
  }
}

.tickets-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  text-align: center;
}

.tickets-subtitle {
  font-size: 1.2rem;
  font-weight: 500;
  color: #00b4aa;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.tickets-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 3rem;
  line-height: 1.2;
}

.ticket-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.ticket-category {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 3rem 2rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 180, 170, 0.3);
}

.ticket-category:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.category-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.category-description {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}

.ticket-options {
  display: grid;
  gap: 1.5rem;
}

.ticket-option {
  background: rgba(0, 180, 170, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.ticket-option:hover {
  background: rgba(0, 180, 170, 0.15);
}

.option-type {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.option-price {
  font-size: 2rem;
  font-weight: 800;
  color: #00b4aa;
  margin-bottom: 1rem;
}

.add-to-basket {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: #f47920;
  color: white;
  text-decoration: none;
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.add-to-basket:hover {
  background: #ff8a3c;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(244, 121, 32, 0.4);
}

.add-to-basket i {
  font-size: 1.1rem;
}

/* Responsive styles */
@media (max-width: 768px) {
  .tickets {
    padding: 4rem 1.5rem;
  }

  .tickets-title {
    font-size: 2.5rem;
  }

  .ticket-categories {
    grid-template-columns: 1fr;
  }

  .ticket-category {
    padding: 2rem 1.5rem;
  }
}

/* API Call */
.cisiWaiting {
  display: none;
}

.cisiShowWaiting .cisiWaiting {
  display: block;
}

.cisiMessage {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 2rem;
  border-radius: 10px;
  color: #ffffff;
  background: rgba(0, 180, 170, 0.2);
  text-align: left;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 180, 170, 0.3);
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.cisiShowSuccess .cisiMessage {
  display: inline-flex;
  background: rgba(0, 180, 170, 0.9);
  border-color: #00b4aa;
}

.cisiShowWarning .cisiMessage {
  display: inline-flex;
  background: rgba(255, 152, 0, 0.9);
  border-color: #ff9800;
}

.cisiShowError .cisiMessage {
  display: inline-flex;
  background: rgba(244, 67, 54, 0.9);
  border-color: #f44336;
}

.cisiMessage .message {
  padding-right: 1.5rem;
}

.cisiMessage a {
  color: #ffffff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
}

.cisiMessage a:hover {
  border-bottom-color: #ffffff;
}

#fullscreenWaiting {
  #fullscreenContainer {
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 10, 26, 0.8);
    backdrop-filter: blur(8px);
  }

  .waitingSpinner {
    position: relative;
    width: 120px;
    height: 120px;
  }

  .spinnerCircle {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 4px solid transparent;
    border-top-color: #00b4aa;
    animation: spin 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;

    &:nth-child(1) {
      border-top-color: rgba(0, 180, 170, 1);
    }

    &:nth-child(2) {
      width: 80%;
      height: 80%;
      top: 10%;
      left: 10%;
      border-top-color: rgba(0, 180, 170, 0.8);
      animation-duration: 1.8s;
    }

    &:nth-child(3) {
      width: 60%;
      height: 60%;
      top: 20%;
      left: 20%;
      border-top-color: rgba(0, 180, 170, 0.6);
      animation-duration: 2.4s;
    }
  }

  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
}

#fullscreenWaiting > .waitingSpinner {
  display: block;
  position: fixed;
  z-index: 2001;
  left: 50%;
  top: 50%;
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  border-radius: 50%;
  border: 6px solid transparent;
  border-top-color: #00b4aa;
  animation: spin 2s linear infinite;
  box-shadow: 0 0 30px rgba(0, 180, 170, 0.3);
}

#fullscreenWaiting > .waitingSpinner::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border-radius: 50%;
  border: 6px solid transparent;
  border-top-color: rgba(0, 180, 170, 0.7);
  animation: spin 3s linear infinite;
}

#fullscreenWaiting > .waitingSpinner::after {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border-radius: 50%;
  border: 6px solid transparent;
  border-top-color: rgba(0, 180, 170, 0.4);
  animation: spin 1.5s linear infinite;
}

.waitingSpinner {
  border: 4px solid rgba(0, 180, 170, 0.1);
  border-top: 4px solid #00b4aa;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

#fullscreenMessage {
  position: fixed;
  z-index: 2002;
  bottom: 45px;
  left: 50%;
  transform: translate(-50%, 0);
  min-width: 90%;
  max-width: 90%;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
  #fullscreenMessage {
    min-width: 80%;
  }
}

@media (min-width: 992px) {
  #fullscreenMessage {
    min-width: 50%;
  }
}

.cisiPopup.cisiAlert,
.cisiPopup.cisiConfirm {
  z-index: 2002;
}

#fullscreenMessageClose {
  background: #00b4aa;
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-left: 1.5rem;
}

#fullscreenMessageClose:hover {
  background: #00d0c5;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 180, 170, 0.4);
}

/* Help Section Styles */
.help {
  position: relative;
  min-height: 60vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 26, 0.95) 0%,
    rgba(0, 180, 170, 0.8) 100%
  );
  overflow: hidden;
  padding: 4rem 0;
  transition: transform 0.3s ease;
}

.help-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 800px;
  padding: 4rem;
  color: #ffffff;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.help-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 2rem;
  line-height: 1.2;
  background: linear-gradient(135deg, #ffffff 0%, #00b4aa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.help-description {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 3rem;
  color: rgba(255, 255, 255, 0.9);
}

.email-button {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: #f47920;
  color: white;
  text-decoration: none;
  padding: 1.2rem 3rem;
  border-radius: 5px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.email-button:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: all 0.5s;
}

.email-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(244, 121, 32, 0.4);
  border-color: rgba(255, 255, 255, 0.5);
}

.email-button:hover:before {
  left: 100%;
}

.email-button i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.email-button:hover i {
  transform: translateX(5px);
}

/* Responsive styles */
@media (max-width: 768px) {
  .help {
    padding: 3rem 0;
  }

  .help-content {
    padding: 2rem;
    margin: 0 1rem;
  }

  .help-title {
    font-size: 2.5rem;
  }

  .help-description {
    font-size: 1.1rem;
  }

  .email-button {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .help-title {
    font-size: 2rem;
  }

  .help-description {
    font-size: 1rem;
  }

  .email-button {
    width: 100%;
    justify-content: center;
  }
}

.map-section {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 26, 0.95) 0%,
    rgba(0, 180, 170, 0.8) 100%
  );
  padding: 4rem 2rem;
}

.map-content {
  width: 100%;
  max-width: 1200px;
  color: #ffffff;
  text-align: center;
}

.map-subtitle {
  font-size: 1.2rem;
  font-weight: 500;
  color: #00b4aa;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.map-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.map-description {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.map-container {
  width: 100%;
  height: 400px;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.location-cards {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.location-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 2rem;
  min-width: 280px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  cursor: pointer;
}

.location-card:first-child {
  border-left: 4px solid #4ecdc4;
}

.location-card:last-child {
  border-left: 4px solid #f47920;
}

.location-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.location-card:first-child .location-title {
  color: #4ecdc4;
}

.location-card:last-child .location-title {
  color: #f47920;
}

.location-card:first-child:hover {
  background: rgba(255, 107, 107, 0.1);
}

.location-card:last-child:hover {
  background: rgba(78, 205, 196, 0.1);
}

.location-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.location-details {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .map-title {
    font-size: 2.5rem;
  }

  .map-container {
    height: 300px;
  }

  .location-cards {
    flex-direction: column;
    align-items: center;
  }

  .location-card {
    width: 100%;
    max-width: 320px;
  }
}

.location-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.location-details {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .map-title {
    font-size: 2.5rem;
  }

  .map-container {
    height: 300px;
  }

  .location-cards {
    flex-direction: column;
    align-items: center;
  }

  .location-card {
    width: 100%;
    max-width: 320px;
  }
}

.location-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.location-details {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .map-title {
    font-size: 2.5rem;
  }

  .map-container {
    height: 300px;
  }

  .location-cards {
    flex-direction: column;
    align-items: center;
  }

  .location-card {
    width: 100%;
    max-width: 320px;
  }
}

.location-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.location-details {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .map-title {
    font-size: 2.5rem;
  }

  .map-container {
    height: 300px;
  }

  .location-cards {
    flex-direction: column;
    align-items: center;
  }

  .location-card {
    width: 100%;
    max-width: 320px;
  }
}

.location-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.location-details {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .map-title {
    font-size: 2.5rem;
  }

  .map-container {
    height: 300px;
  }

  .location-cards {
    flex-direction: column;
    align-items: center;
  }

  .location-card {
    width: 100%;
    max-width: 320px;
  }
}

.location-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.location-details {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .map-title {
    font-size: 2.5rem;
  }

  .map-container {
    height: 300px;
  }

  .location-cards {
    flex-direction: column;
    align-items: center;
  }

  .location-card {
    width: 100%;
    max-width: 320px;
  }
}

.location-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.location-details {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .map-title {
    font-size: 2.5rem;
  }

  .map-container {
    height: 300px;
  }

  .location-cards {
    flex-direction: column;
    align-items: center;
  }

  .location-card {
    width: 100%;
    max-width: 320px;
  }
}

.location-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.location-details {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .map-title {
    font-size: 2.5rem;
  }

  .map-container {
    height: 300px;
  }

  .location-cards {
    flex-direction: column;
    align-items: center;
  }

  .location-card {
    width: 100%;
    max-width: 320px;
  }
}

.location-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.location-details {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .map-title {
    font-size: 2.5rem;
  }

  .map-container {
    height: 300px;
  }

  .location-cards {
    flex-direction: column;
    align-items: center;
  }

  .location-card {
    width: 100%;
    max-width: 320px;
  }
}

.location-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.location-details {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .map-title {
    font-size: 2.5rem;
  }

  .map-container {
    height: 300px;
  }

  .location-cards {
    flex-direction: column;
    align-items: center;
  }

  .location-card {
    width: 100%;
    max-width: 320px;
  }
}

.location-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.location-details {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .map-title {
    font-size: 2.5rem;
  }

  .map-container {
    height: 300px;
  }

  .location-cards {
    flex-direction: column;
    align-items: center;
  }

  .location-card {
    width: 100%;
    max-width: 320px;
  }
}

.location-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.location-details {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .map-title {
    font-size: 2.5rem;
  }

  .map-container {
    height: 300px;
  }

  .location-cards {
    flex-direction: column;
    align-items: center;
  }

  .location-card {
    width: 100%;
    max-width: 320px;
  }
}

.location-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.location-details {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .map-title {
    font-size: 2.5rem;
  }

  .map-container {
    height: 300px;
  }

  .location-cards {
    flex-direction: column;
    align-items: center;
  }

  .location-card {
    width: 100%;
    max-width: 320px;
  }
}

.location-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.location-details {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .map-title {
    font-size: 2.5rem;
  }

  .map-container {
    height: 300px;
  }

  .location-cards {
    flex-direction: column;
    align-items: center;
  }

  .location-card {
    width: 100%;
    max-width: 320px;
  }
}

.location-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.location-details {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .map-title {
    font-size: 2.5rem;
  }

  .map-container {
    height: 300px;
  }

  .location-cards {
    flex-direction: column;
    align-items: center;
  }

  .location-card {
    width: 100%;
    max-width: 320px;
  }
}

.location-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.location-details {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .map-title {
    font-size: 2.5rem;
  }

  .map-container {
    height: 300px;
  }

  .location-cards {
    flex-direction: column;
    align-items: center;
  }

  .location-card {
    width: 100%;
    max-width: 320px;
  }
}

.location-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.location-details {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .map-title {
    font-size: 2.5rem;
  }

  .map-container {
    height: 300px;
  }

  .location-cards {
    flex-direction: column;
    align-items: center;
  }

  .location-card {
    width: 100%;
    max-width: 320px;
  }
}

.location-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.location-details {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .map-title {
    font-size: 2.5rem;
  }

  .map-container {
    height: 300px;
  }

  .location-cards {
    flex-direction: column;
    align-items: center;
  }

  .location-card {
    width: 100%;
    max-width: 320px;
  }
}

.location-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.location-details {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .map-title {
    font-size: 2.5rem;
  }

  .map-container {
    height: 300px;
  }

  .location-cards {
    flex-direction: column;
    align-items: center;
  }

  .location-card {
    width: 100%;
    max-width: 320px;
  }
}

.location-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.location-details {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .map-title {
    font-size: 2.5rem;
  }

  .map-container {
    height: 300px;
  }

  .location-cards {
    flex-direction: column;
    align-items: center;
  }

  .location-card {
    width: 100%;
    max-width: 320px;
  }
}

.location-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.location-details {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .map-title {
    font-size: 2.5rem;
  }

  .map-container {
    height: 300px;
  }

  .location-cards {
    flex-direction: column;
    align-items: center;
  }

  .location-card {
    width: 100%;
    max-width: 320px;
  }
}

.location-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.location-details {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .map-title {
    font-size: 2.5rem;
  }

  .map-container {
    height: 300px;
  }

  .location-cards {
    flex-direction: column;
    align-items: center;
  }

  .location-card {
    width: 100%;
    max-width: 320px;
  }
}

.location-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.location-details {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .map-title {
    font-size: 2.5rem;
  }

  .map-container {
    height: 300px;
  }

  .location-cards {
    flex-direction: column;
    align-items: center;
  }

  .location-card {
    width: 100%;
    max-width: 320px;
  }
}

.location-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.location-details {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .map-title {
    font-size: 2.5rem;
  }

  .map-container {
    height: 300px;
  }

  .location-cards {
    flex-direction: column;
    align-items: center;
  }

  .location-card {
    width: 100%;
    max-width: 320px;
  }
}

.location-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.location-details {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .map-title {
    font-size: 2.5rem;
  }

  .map-container {
    height: 300px;
  }

  .location-cards {
    flex-direction: column;
    align-items: center;
  }

  .location-card {
    width: 100%;
    max-width: 320px;
  }
}

.location-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.location-details {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .map-title {
    font-size: 2.5rem;
  }

  .map-container {
    height: 300px;
  }

  .location-cards {
    flex-direction: column;
    align-items: center;
  }

  .location-card {
    width: 100%;
    max-width: 320px;
  }
}

.location-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.location-details {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .map-title {
    font-size: 2.5rem;
  }

  .map-container {
    height: 300px;
  }

  .location-cards {
    flex-direction: column;
    align-items: center;
  }

  .location-card {
    width: 100%;
    max-width: 320px;
  }
}

.location-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.location-details {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .map-title {
    font-size: 2.5rem;
  }

  .map-container {
    height: 300px;
  }

  .location-cards {
    flex-direction: column;
    align-items: center;
  }

  .location-card {
    width: 100%;
    max-width: 320px;
  }
}

.location-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.location-details {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .map-title {
    font-size: 2.5rem;
  }

  .map-container {
    height: 300px;
  }

  .location-cards {
    flex-direction: column;
    align-items: center;
  }

  .location-card {
    width: 100%;
    max-width: 320px;
  }
}

.location-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.location-details {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .map-title {
    font-size: 2.5rem;
  }

  .map-container {
    height: 300px;
  }

  .location-cards {
    flex-direction: column;
    align-items: center;
  }

  .location-card {
    width: 100%;
    max-width: 320px;
  }
}

.location-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.location-details {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .map-title {
    font-size: 2.5rem;
  }

  .map-container {
    height: 300px;
  }

  .location-cards {
    flex-direction: column;
    align-items: center;
  }

  .location-card {
    width: 100%;
    max-width: 320px;
  }
}

.location-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.location-details {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .map-title {
    font-size: 2.5rem;
  }

  .map-container {
    height: 300px;
  }

  .location-cards {
    flex-direction: column;
    align-items: center;
  }

  .location-card {
    width: 100%;
    max-width: 320px;
  }
}

.location-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.location-details {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .map-title {
    font-size: 2.5rem;
  }

  .map-container {
    height: 300px;
  }

  .location-cards {
    flex-direction: column;
    align-items: center;
  }

  .location-card {
    width: 100%;
    max-width: 320px;
  }
}

.location-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.location-details {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .map-title {
    font-size: 2.5rem;
  }

  .map-container {
    height: 300px;
  }

  .location-cards {
    flex-direction: column;
    align-items: center;
  }

  .location-card {
    width: 100%;
    max-width: 320px;
  }
}

.location-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.location-details {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .map-title {
    font-size: 2.5rem;
  }

  .map-container {
    height: 300px;
  }

  .location-cards {
    flex-direction: column;
    align-items: center;
  }

  .location-card {
    width: 100%;
    max-width: 320px;
  }
}

.location-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.location-details {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .map-title {
    font-size: 2.5rem;
  }

  .map-container {
    height: 300px;
  }

  .location-cards {
    flex-direction: column;
    align-items: center;
  }

  .location-card {
    width: 100%;
    max-width: 320px;
  }
}

.location-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.location-details {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .map-title {
    font-size: 2.5rem;
  }

  .map-container {
    height: 300px;
  }

  .location-cards {
    flex-direction: column;
    align-items: center;
  }

  .location-card {
    width: 100%;
    max-width: 320px;
  }
}

.location-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.location-details {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .map-title {
    font-size: 2.5rem;
  }

  .map-container {
    height: 300px;
  }

  .location-cards {
    flex-direction: column;
    align-items: center;
  }

  .location-card {
    width: 100%;
    max-width: 320px;
  }
}

.location-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.location-details {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .map-title {
    font-size: 2.5rem;
  }

  .map-container {
    height: 300px;
  }

  .location-cards {
    flex-direction: column;
    align-items: center;
  }

  .location-card {
    width: 100%;
    max-width: 320px;
  }
}

.location-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.location-details {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .map-title {
    font-size: 2.5rem;
  }

  .map-container {
    height: 300px;
  }

  .location-cards {
    flex-direction: column;
    align-items: center;
  }

  .location-card {
    width: 100%;
    max-width: 320px;
  }
}

.location-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.location-details {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .map-title {
    font-size: 2.5rem;
  }

  .map-container {
    height: 300px;
  }

  .location-cards {
    flex-direction: column;
    align-items: center;
  }

  .location-card {
    width: 100%;
    max-width: 320px;
  }
}

.location-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.location-details {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .map-title {
    font-size: 2.5rem;
  }

  .map-container {
    height: 300px;
  }

  .location-cards {
    flex-direction: column;
    align-items: center;
  }

  .location-card {
    width: 100%;
    max-width: 320px;
  }
}

.location-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.location-details {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .map-title {
    font-size: 2.5rem;
  }

  .map-container {
    height: 300px;
  }

  .location-cards {
    flex-direction: column;
    align-items: center;
  }

  .location-card {
    width: 100%;
    max-width: 320px;
  }
}

.location-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.location-details {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .map-title {
    font-size: 2.5rem;
  }

  .map-container {
    height: 300px;
  }

  .location-cards {
    flex-direction: column;
    align-items: center;
  }

  .location-card {
    width: 100%;
    max-width: 320px;
  }
}

.location-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.location-details {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .map-title {
    font-size: 2.5rem;
  }

  .map-container {
    height: 300px;
  }

  .location-cards {
    flex-direction: column;
    align-items: center;
  }

  .location-card {
    width: 100%;
    max-width: 320px;
  }
}

.location-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.location-details {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .map-title {
    font-size: 2.5rem;
  }

  .map-container {
    height: 300px;
  }

  .location-cards {
    flex-direction: column;
    align-items: center;
  }

  .location-card {
    width: 100%;
    max-width: 320px;
  }
}

.location-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.location-details {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .map-title {
    font-size: 2.5rem;
  }

  .map-container {
    height: 300px;
  }

  .location-cards {
    flex-direction: column;
    align-items: center;
  }

  .location-card {
    width: 100%;
    max-width: 320px;
  }
}

.location-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.location-details {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .map-title {
    font-size: 2.5rem;
  }

  .map-container {
    height: 300px;
  }

  .location-cards {
    flex-direction: column;
    align-items: center;
  }

  .location-card {
    width: 100%;
    max-width: 320px;
  }
}

.location-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.location-details {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .map-title {
    font-size: 2.5rem;
  }

  .map-container {
    height: 300px;
  }

  .location-cards {
    flex-direction: column;
    align-items: center;
  }

  .location-card {
    width: 100%;
    max-width: 320px;
  }
}

.location-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.location-details {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .map-title {
    font-size: 2.5rem;
  }

  .map-container {
    height: 300px;
  }

  .location-cards {
    flex-direction: column;
    align-items: center;
  }

  .location-card {
    width: 100%;
    max-width: 320px;
  }
}

.location-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.location-details {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .map-title {
    font-size: 2.5rem;
  }

  .map-container {
    height: 300px;
  }

  .location-cards {
    flex-direction: column;
    align-items: center;
  }

  .location-card {
    width: 100%;
    max-width: 320px;
  }
}

.location-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.location-details {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .map-title {
    font-size: 2.5rem;
  }

  .map-container {
    height: 300px;
  }

  .location-cards {
    flex-direction: column;
    align-items: center;
  }

  .location-card {
    width: 100%;
    max-width: 320px;
  }
}

.location-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.location-details {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .map-title {
    font-size: 2.5rem;
  }

  .map-container {
    height: 300px;
  }

  .location-cards {
    flex-direction: column;
    align-items: center;
  }

  .location-card {
    width: 100%;
    max-width: 320px;
  }
}

.location-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.location-details {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .map-title {
    font-size: 2.5rem;
  }

  .map-container {
    height: 300px;
  }

  .location-cards {
    flex-direction: column;
    align-items: center;
  }

  .location-card {
    width: 100%;
    max-width: 320px;
  }
}

.location-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.location-details {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .map-title {
    font-size: 2.5rem;
  }

  .map-container {
    height: 300px;
  }

  .location-cards {
    flex-direction: column;
    align-items: center;
  }

  .location-card {
    width: 100%;
    max-width: 320px;
  }
}

.location-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.location-details {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .map-title {
    font-size: 2.5rem;
  }

  .map-container {
    height: 300px;
  }

  .location-cards {
    flex-direction: column;
    align-items: center;
  }

  .location-card {
    width: 100%;
    max-width: 320px;
  }
}

.location-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.location-details {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .map-title {
    font-size: 2.5rem;
  }

  .map-container {
    height: 300px;
  }

  .location-cards {
    flex-direction: column;
    align-items: center;
  }

  .location-card {
    width: 100%;
    max-width: 320px;
  }
}

.location-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.location-details {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .map-title {
    font-size: 2.5rem;
  }

  .map-container {
    height: 300px;
  }

  .location-cards {
    flex-direction: column;
    align-items: center;
  }

  .location-card {
    width: 100%;
    max-width: 320px;
  }
}

.location-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.location-details {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .map-title {
    font-size: 2.5rem;
  }

  .map-container {
    height: 300px;
  }

  .location-cards {
    flex-direction: column;
    align-items: center;
  }

  .location-card {
    width: 100%;
    max-width: 320px;
  }
}

.location-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.location-details {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .map-title {
    font-size: 2.5rem;
  }

  .map-container {
    height: 300px;
  }

  .location-cards {
    flex-direction: column;
    align-items: center;
  }

  .location-card {
    width: 100%;
    max-width: 320px;
  }
}

.location-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.location-details {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .map-title {
    font-size: 2.5rem;
  }

  .map-container {
    height: 300px;
  }

  .location-cards {
    flex-direction: column;
    align-items: center;
  }

  .location-card {
    width: 100%;
    max-width: 320px;
  }
}

.location-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.location-details {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .map-title {
    font-size: 2.5rem;
  }

  .map-container {
    height: 300px;
  }

  .location-cards {
    flex-direction: column;
    align-items: center;
  }

  .location-card {
    width: 100%;
    max-width: 320px;
  }
}

.location-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.location-details {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .map-title {
    font-size: 2.5rem;
  }

  .map-container {
    height: 300px;
  }

  .location-cards {
    flex-direction: column;
    align-items: center;
  }

  .location-card {
    width: 100%;
    max-width: 320px;
  }
}

.location-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.location-details {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .map-title {
    font-size: 2.5rem;
  }

  .map-container {
    height: 300px;
  }

  .location-cards {
    flex-direction: column;
    align-items: center;
  }

  .location-card {
    width: 100%;
    max-width: 320px;
  }
}

.location-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.location-details {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .map-title {
    font-size: 2.5rem;
  }

  .map-container {
    height: 300px;
  }

  .location-cards {
    flex-direction: column;
    align-items: center;
  }

  .location-card {
    width: 100%;
    max-width: 320px;
  }
}

.location-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.location-details {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .map-title {
    font-size: 2.5rem;
  }

  .map-container {
    height: 300px;
  }

  .location-cards {
    flex-direction: column;
    align-items: center;
  }

  .location-card {
    width: 100%;
    max-width: 320px;
  }
}

.location-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.location-details {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .map-title {
    font-size: 2.5rem;
  }

  .map-container {
    height: 300px;
  }

  .location-cards {
    flex-direction: column;
    align-items: center;
  }

  .location-card {
    width: 100%;
    max-width: 320px;
  }
}

.location-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.location-details {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .map-title {
    font-size: 2.5rem;
  }

  .map-container {
    height: 300px;
  }

  .location-cards {
    flex-direction: column;
    align-items: center;
  }

  .location-card {
    width: 100%;
    max-width: 320px;
  }
}

.location-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.location-details {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .map-title {
    font-size: 2.5rem;
  }

  .map-container {
    height: 300px;
  }

  .location-cards {
    flex-direction: column;
    align-items: center;
  }

  .location-card {
    width: 100%;
    max-width: 320px;
  }
}

.location-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.location-details {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .map-title {
    font-size: 2.5rem;
  }

  .map-container {
    height: 300px;
  }

  .location-cards {
    flex-direction: column;
    align-items: center;
  }

  .location-card {
    width: 100%;
    max-width: 320px;
  }
}

.location-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.location-details {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .map-title {
    font-size: 2.5rem;
  }

  .map-container {
    height: 300px;
  }

  .location-cards {
    flex-direction: column;
    align-items: center;
  }

  .location-card {
    width: 100%;
    max-width: 320px;
  }
}

.location-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.location-details {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .map-title {
    font-size: 2.5rem;
  }

  .map-container {
    height: 300px;
  }

  .location-cards {
    flex-direction: column;
    align-items: center;
  }

  .location-card {
    width: 100%;
    max-width: 320px;
  }
}

.location-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.location-details {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .map-title {
    font-size: 2.5rem;
  }

  .map-container {
    height: 300px;
  }

  .location-cards {
    flex-direction: column;
    align-items: center;
  }

  .location-card {
    width: 100%;
    max-width: 320px;
  }
}

.location-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.location-details {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .map-title {
    font-size: 2.5rem;
  }

  .map-container {
    height: 300px;
  }

  .location-cards {
    flex-direction: column;
    align-items: center;
  }

  .location-card {
    width: 100%;
    max-width: 320px;
  }
}

.location-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.location-details {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .map-title {
    font-size: 2.5rem;
  }

  .map-container {
    height: 300px;
  }

  .location-cards {
    flex-direction: column;
    align-items: center;
  }

  .location-card {
    width: 100%;
    max-width: 320px;
  }
}

.location-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.location-details {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .map-title {
    font-size: 2.5rem;
  }

  .map-container {
    height: 300px;
  }

  .location-cards {
    flex-direction: column;
    align-items: center;
  }

  .location-card {
    width: 100%;
    max-width: 320px;
  }
}

.location-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.location-details {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .map-title {
    font-size: 2.5rem;
  }

  .map-container {
    height: 300px;
  }

  .location-cards {
    flex-direction: column;
    align-items: center;
  }

  .location-card {
    width: 100%;
    max-width: 320px;
  }
}

.location-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.location-details {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .map-title {
    font-size: 2.5rem;
  }

  .map-container {
    height: 300px;
  }

  .location-cards {
    flex-direction: column;
    align-items: center;
  }

  .location-card {
    width: 100%;
    max-width: 320px;
  }
}

.location-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.location-details {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .map-title {
    font-size: 2.5rem;
  }

  .map-container {
    height: 300px;
  }

  .location-cards {
    flex-direction: column;
    align-items: center;
  }

  .location-card {
    width: 100%;
    max-width: 320px;
  }
}

.location-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.location-details {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .map-title {
    font-size: 2.5rem;
  }

  .map-container {
    height: 300px;
  }

  .location-cards {
    flex-direction: column;
    align-items: center;
  }

  .location-card {
    width: 100%;
    max-width: 320px;
  }
}

.location-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.location-details {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .map-title {
    font-size: 2.5rem;
  }

  .map-container {
    height: 300px;
  }

  .location-cards {
    flex-direction: column;
    align-items: center;
  }

  .location-card {
    width: 100%;
    max-width: 320px;
  }
}

.location-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.location-details {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .map-title {
    font-size: 2.5rem;
  }

  .map-container {
    height: 300px;
  }

  .location-cards {
    flex-direction: column;
    align-items: center;
  }

  .location-card {
    width: 100%;
    max-width: 320px;
  }
}

.location-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.location-details {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .map-title {
    font-size: 2.5rem;
  }

  .map-container {
    height: 300px;
  }

  .location-cards {
    flex-direction: column;
    align-items: center;
  }

  .location-card {
    width: 100%;
    max-width: 320px;
  }
}

.location-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.location-details {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .map-title {
    font-size: 2.5rem;
  }

  .map-container {
    height: 300px;
  }

  .location-cards {
    flex-direction: column;
    align-items: center;
  }

  .location-card {
    width: 100%;
    max-width: 320px;
  }
}

.location-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.location-details {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .map-title {
    font-size: 2.5rem;
  }

  .map-container {
    height: 300px;
  }

  .location-cards {
    flex-direction: column;
    align-items: center;
  }

  .location-card {
    width: 100%;
    max-width: 320px;
  }
}

.location-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.location-details {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .map-title {
    font-size: 2.5rem;
  }
}

/* Sponsors Section */
.sponsors {
  background: linear-gradient(
    135deg,
    rgba(10, 10, 26, 0.9) 0%,
    rgba(0, 180, 170, 0.7) 100%
  );
  padding: 4rem 2rem;
  color: #ffffff;
}

.sponsors-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
}

.sponsors-left,
.sponsors-right {
  flex: 1;
}

.sponsors-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #ffffff;
}

.sponsor-logos {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.sponsor-logo {
  max-width: 200px;
  height: auto;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.sponsor-logo:hover {
  transform: scale(1.05);
}

.sponsors-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

.sponsor-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #f47920;
  color: white;
  text-decoration: none;
  padding: 1rem 2rem;
  border-radius: 5px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.sponsor-btn:hover {
  background: #ff8a3c;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(244, 121, 32, 0.3);
}

.sponsor-btn i {
  transition: transform 0.3s ease;
}

.sponsor-btn:hover i {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .sponsors-content {
    flex-direction: column;
    gap: 3rem;
  }

  .sponsors-title {
    font-size: 1.8rem;
    text-align: center;
  }

  .sponsor-logos {
    flex-direction: column;
    gap: 1.5rem;
  }

  .sponsor-logo {
    max-width: 180px;
  }

  .sponsors-description {
    font-size: 1rem;
  }

  .sponsor-btn {
    width: 100%;
    justify-content: center;
  }
}
