/*
Theme Name: GWS 2025 Event Theme
Description: Custom theme for Global Water Intelligence Summit 2025 with Swoogo integration
Version: 1.0.0
Author: Zephyr Development Team
*/

/* Import Be Vietnam Pro font */
@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@100;200;300;400;500;600;700;800;900&display=swap');

/* ========================================= */
/* 1. RESET & BASE STYLES                   */
/* ========================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  height: 100%;
}
html, body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  font-family: 'Be Vietnam Pro', sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fff;
  overflow-x: hidden;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
main {
  min-height: 100vh;
  position: relative;
}

/* ========================================= */
/* 2. HEADER SECTION (GLOBAL FIXED)         */
/* ========================================= */
.site-header {
  background: #fff;
  position: fixed;
  top: 0; 
  left: 0; 
  right: 0;
  width: 100%;
  height: 136px;                  /* altura total */
  z-index: 1000;
  display: flex;
  flex-direction: column;         /* dos filas: header-top y header-bottom */
  justify-content: flex-start;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* FILA SUPERIOR */
.header-top {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
  padding: 0 104px;
  background: #fff;
  border-bottom: 1px solid #eee;
}
.header-top-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1232px;
  margin: 0 auto;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
}
.logo-svg {
  width: 216px;
  height: 54px;
}

/* Derecha: búsqueda + botones */
.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header-search {
  position: relative;
}
.header-search input {
  padding: 8px 32px 8px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
}
.header-search button {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

/* Botones */
.header-buttons {
  display: flex;
  gap: 8px;
}
.btn-enquire,
.btn-sponsor {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 16px;
  border-radius: 2px;
  font-family: 'Be Vietnam Pro', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  color: #fff;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}
.btn-enquire { background: #0065A4; }
.btn-enquire:hover { background: #004d7a; }
.btn-sponsor { background: #000229; }
.btn-sponsor:hover { background: #000118; }

/* FILA INFERIOR */
.header-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 56px;
  padding: 0 104px;
  background: #fff;
  box-shadow: 0 2px 4px rgba(21,22,25,0.08);
}
.main-navigation {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 1232px;
  margin: 0 auto;
}
.nav-menu {
  display: flex;
  list-style: none;
  gap: 48px;
}

.nav-menu a {
  text-decoration: none;
  color: #000229;
  transition: color 0.3s ease;
}

/* Optional: underline only on hover if you want */
.nav-menu a:hover {
  color: #0065A4;          /* blue highlight */
  text-decoration: none;   /* keep without underline */
}

.nav-menu .menu-link {
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: 16px;
  text-decoration: none;
  color: #000229;
  transition: color 0.3s ease;
}
.nav-menu .menu-link:hover { color: #0065A4; }

/* Ocultar menú hamburguesa y menú móvil en desktop */
.mobile-menu-toggle,
.mobile-menu {
  display: none;
}
/* ========================================= */
/* 3. MAIN CONTENT SECTION                  */
/* ========================================= */
.site-main {
  margin-top: 136px;
  min-height: calc(100vh - 136px);
}

/* ========================================= */
/* 4. VENUE PAGE SECTION                    */
/* ========================================= */
.venue-video { margin: 40px 0; text-align: center; }
.venue-video iframe {
  max-width: 100%;
  height: 400px;
  border-radius: 8px;
}
.venue-map-section { padding: 80px 0; background: #fff; }
.venue-map-content {
  display: flex;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  height: 387px;
  background: linear-gradient(304deg, #0065A4 19%, #00263E 74%);
  border-radius: 12px;
  overflow: hidden;
}
.map-section { flex: 1; height: 387px; }
.hotel-info-section {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 374px;
  padding: 30px;
}
.hotel-name {
  font-weight: 700;
  font-size: 28px;
  color: #fff;
}
.hotel-address p {
  font-weight: 300;
  font-size: 17px;
  color: #fff;
}
.hotel-site-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 16px;
  width: 112px;
  background: #000229;
  border-radius: 2px;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: background 0.3s ease;
}
.hotel-site-btn:hover { background: #001a3d; }

/* ========================= */
/* GROUP BOOKINGS - ELIMINADO (DUPLICADO) */

/* ========================================= */
/* 5. SPONSORSHIP PAGE SECTION - MOVED TO sponsorship.css */
/* ========================================= */

/* 6. SPONSORS LIST SECTION - MOVED TO sponsorship.css */
/* ========================================= */

/* All sponsor styles have been moved to sponsorship.css */

/* ========================================= */
/* 7. DELEGATES & REASONS SECTION           */
/* ========================================= */
.delegates-section { padding: 60px 0; background: #fff; }
.delegates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}
.delegate-item {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  border: 1px solid #e1e5e9;
}
.reasons-section { padding: 60px 0; background: #f8f9fa; }
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}
.reason-item {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}
.reason-item:hover { transform: translateY(-5px); }

/* ========================================= */
/* 8. CONTACT SECTION                       */
/* ========================================= */
.contact-section { padding: 60px 0; background: #fff; }
.contact-layout {
  display: flex;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.contact-form-container,
.download-cta-container {
  flex: 1;
  background: #f8f9fa;
  border-radius: 12px;
  padding: 40px;
}
.form-group { margin-bottom: 20px; }
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: #0065A4;
}
.submit-btn,
.download-btn {
  background: #0065A4;
  color: #fff;
  padding: 12px 30px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s ease;
}
.submit-btn:hover,
.download-btn:hover { background: #004080; }

/* ========================================= */
/* 9. FOOTER SECTION                        */
/* ========================================= */
.site-footer {
  background: #2c3e50;
  color: #fff;
  padding: 40px 0 20px;
  margin-top: 60px;
}
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 30px;
  margin-bottom: 30px;
}
.footer-section a {
  color: #bdc3c7;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-section a:hover { color: #fff; }
.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #34495e;
  color: #bdc3c7;
}

/* ========================================= */
/* 10. RESPONSIVE QUERIES (GLOBAL)          */
/* ========================================= */
@media (max-width: 1440px) {
  .header-top, .header-bottom { padding: 8px 20px; }
}
@media (max-width: 1200px) {
  .venue-map-content { flex-direction: column; height: auto; gap: 30px; padding: 30px; }
  .group-content { flex-direction: column; gap: 40px; text-align: center; }

  /* Venue page images - ensure visibility on tablet */
  .hotel-bookings-right {
    position: relative !important;
    right: auto !important;
    top: auto !important;
    width: 100% !important;
    margin-top: 20px;
    display: flex !important;
  }
}
@media (max-width: 1024px) {
  .site-header { height: 80px; }
  .header-bottom { display: none; }
  .site-main { margin-top: 80px; }
}
@media (max-width: 768px) {
  body { font-size: 14px; line-height: 1.5; }

  /* Main content con margin correcto para header móvil */
  .site-main {
    margin-top: 80px;
  }

  /* VENUE PAGE - MOBILE IMAGE FIXES */
  /* Hero section styles moved to page-venue.php */

  /* Hotel bookings section - fix absolute positioning */
  .hotel-bookings-section {
    margin: 40px auto !important;
    padding: 0 16px !important;
  }

  .hotel-bookings-content {
    flex-direction: column !important;
    min-height: auto !important;
    border-radius: 12px !important;
    overflow: visible !important;
  }

  .hotel-bookings-right {
    position: relative !important;
    right: auto !important;
    top: auto !important;
    width: 100% !important;
    height: auto !important;
    flex-direction: column !important;
    gap: 20px !important;
    margin-top: 0 !important;
    padding: 20px !important;
    display: flex !important;
    background: transparent !important;
  }

  .hotel-images-left,
  .hotel-images-right {
    width: 100% !important;
    height: auto !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .hotel-image-large,
  .hotel-image-small,
  .hotel-image-medium {
    width: 100% !important;
    max-width: 350px !important;
    height: 200px !important;
    margin: 0 auto !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .hotel-image-large img,
  .hotel-image-small img,
  .hotel-image-medium img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transform: none !important;
    border-radius: 12px !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  /* Venue main section images */
  .venue-image {
    width: 100% !important;
    max-width: 100% !important;
    margin: 20px 0 !important;
    display: block !important;
  }

  .venue-people-image {
    width: 100% !important;
    height: auto !important;
    max-height: 300px !important;
    object-fit: cover !important;
    border-radius: 12px !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .right-section {
    width: 407.726px !important;
    height: 271px !important;
    flex-shrink: 0 !important;
    border-radius: 12px !important;
    background-size: cover !important;
    background-position: 50% !important;
    background-repeat: no-repeat !important;
    margin-top: 0 !important;
  }

  /* Quinta del Jarama images */
  .quinta-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 12px !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .quinta-image-item {
    display: block !important;
    overflow: hidden !important;
    border-radius: 12px !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  /* Alternative hotels images */
  .hotel-bg-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 12px !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .hotel-card-alt {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  /* HEADER MOBILE - Ocultar búsqueda y botones */
  .site-header .header-search,
  .site-header .header-buttons {
    display: none !important;
  }

  /* Asegurar que header-right solo muestre el menú hamburguesa */
  .site-header .header-right {
    display: flex !important;
    align-items: center !important;
    gap: 0 !important;
  }

  /* Menú hamburguesa */
  .site-header .mobile-menu-toggle {
    display: flex !important;
    padding: 16px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.00);
    border: none;
    cursor: pointer;
    width: 56px; /* 24px icon + 16px padding each side */
    height: 56px; /* 24px icon + 16px padding each side */
  }

  .mobile-menu-toggle .hamburger-icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
  }

  .mobile-menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: #000229;
    margin: 2px 0;
    transition: 0.3s;
    border-radius: 1px;
  }

  /* Animación del menú hamburguesa cuando está abierto */
  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }

  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }

  /* Mostrar menú hamburguesa solo en móvil */
  .mobile-menu-toggle {
    display: flex !important;
  }

  /* Menú móvil desplegable */
  .mobile-menu {
    position: fixed !important;
    top: 80px !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    background: #fff !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1) !important;
    transform: translateY(-100%) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: all 0.3s ease !important;
    z-index: 9999 !important;
    max-height: calc(100vh - 80px) !important;
    overflow-y: auto !important;
    display: block !important;
  }

  .mobile-menu.active {
    transform: translateY(0) !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
  }

  .mobile-menu-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  /* Enlaces del menú móvil */
  .mobile-menu .nav-menu {
    display: flex !important;
    flex-direction: column;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .mobile-menu .nav-menu li {
    display: block !important;
  }

  .mobile-menu .nav-menu a {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #000229;
    text-decoration: none;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    display: block;
    transition: color 0.3s ease;
  }

  .mobile-menu .nav-menu a:hover {
    color: #0065A4;
  }

  /* Botones en el menú móvil */
  .mobile-menu .mobile-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
  }

  .mobile-menu .btn-enquire,
  .mobile-menu .btn-sponsor {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 20px;
    border-radius: 2px;
    font-family: 'Be Vietnam Pro', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #fff;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
  }

  .mobile-menu .btn-enquire {
    background: #0065A4;
  }

  .mobile-menu .btn-enquire:hover {
    background: #004d7a;
  }

  .mobile-menu .btn-sponsor {
    background: #000229;
  }

  .mobile-menu .btn-sponsor:hover {
    background: #000118;
  }
  .contact-layout { flex-direction: column; gap: 20px; }
}
@media (max-width: 480px) {
  .logo-svg, .site-logo { width: 120px; height: 30px; }
  .hero-text h1 { font-size: 28px; line-height: 36px; }
  .hero-buttons .btn-primary, .hero-buttons .btn-secondary { font-size: 14px; padding: 10px; }
}

/* Submenu indicator (arrow ▼) */
.submenu-icon {
  font-size: 12px;
  margin-left: 6px;
  color: inherit;
  transition: transform 0.3s ease;
}

/* Rotate arrow when hovering the parent */
.menu-item-has-children:hover > a .submenu-icon {
  transform: rotate(180deg);
}

/* Submenu base */
.nav-menu .sub-menu {
  display: none;                 /* hidden by default */
  position: absolute;
  top: 100%;                     /* just below parent */
  left: 0;
  background: #fff;
  min-width: 200px;
  padding: 10px 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border-radius: 4px;
  z-index: 9999;
  list-style: none;
}

/* Submenu items */
.nav-menu .sub-menu li {
  padding: 0;
}

.nav-menu .sub-menu a {
  display: block;
  padding: 10px 16px;
  color: #000229;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.3s ease;
}

.nav-menu .sub-menu a:hover {
  background: #f2f6fa;
  color: #0065A4;
}

/* Ensure submenu is positioned relative to its parent */
.nav-menu li.menu-item-has-children {
  position: relative;
}

/* Show submenu on hover (desktop) */
.nav-menu li.menu-item-has-children:hover > .sub-menu {
  display: block;
}

/* Show submenu when parent has class open (mobile) */
.nav-menu li.menu-item-has-children.open > .sub-menu {
  display: block;
}

/* Rotate arrow ▼ also when submenu is opened on mobile */
.menu-item-has-children.open > a .submenu-icon {
  transform: rotate(180deg);
}

/* Add slight spacing to submenu items on mobile */
@media (max-width: 1024px) {
  .nav-menu .sub-menu {
    position: static;          /* prevent overlap on small screens */
    box-shadow: none;          /* remove heavy shadow in mobile */
    border-radius: 0;
    padding: 5px 0;
  }

  .nav-menu .sub-menu a {
    padding: 12px 20px;        /* easier tap target */
    border-bottom: 1px solid #eee;
  }

  .nav-menu .sub-menu a:last-child {
    border-bottom: none;
  }
}

/* ========================================= */
/* 11. FLAGSHIP EVENT SECTION               */
/* ========================================= */
.flagship-event-section {
  padding: 90px 0 45px;
  background: #fff;
}

/* Desktop/Mobile Structure Control */
.flagship-desktop {
  display: block;
}

.flagship-mobile {
  display: none;
}

.flagship-content {
  display: flex;
  flex-direction: column;
  gap: 90px;
  width: 100%;
  max-width: 1232px;   /* mismo que statistics-section */
  margin: 0 auto;      /* centra igual que estadísticas */
}

/* Main Title - Desktop (Figma specs) */
.flagship-title {
  max-width: 920px;
  height: auto;
  font-family: 'Be Vietnam Pro', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 52px;
  line-height: 60px;
  color: #0065A4;

  margin: 0;             /* quita el auto que lo centraba */
  text-align: left;      /* alineado a la izquierda */
  flex: none;
  order: 0;
  flex-grow: 0;
}

/* Tablets */
@media (max-width: 1024px) {
  .flagship-title {
    font-size: 42px;
    line-height: 50px;
    max-width: 100%;
    padding: 0 20px;
  }
}

/* Móviles */
@media (max-width: 768px) {
  .flagship-title {
    font-size: 32px;
    line-height: 40px;
    max-width: 100%;
    padding: 0 15px;
  }
}

/* Main Content Area - Frame 1984077936 */
.flagship-main {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;  /* alinea contenido a la izquierda */
  align-items: flex-start;      /* alinea arriba a la izquierda */
  padding: 0;
  gap: 60px;
  width: 100%;                  /* usa 100% en vez de 1232px fijos */
  max-width: 1232px;            /* respeta el ancho máximo del diseño */
  height: auto;                 /* deja que el alto crezca con el contenido */
  flex: none;
  order: 1;
  flex-grow: 0;
  margin: 0;                    /* quita auto */
}

/* Left Side - Sponsor Information - Frame 124 */
.sponsor-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 50px;
  width: 400px;
  height: 291px;
  flex: none;
  order: 0;
  flex-grow: 0;
}

.sponsor-info h3 {
  width: 400px;
  height: 70px;
  font-family: 'Be Vietnam Pro', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 28px;
  line-height: 35px;
  color: #000000;
  flex: none;
  order: 0;
  align-self: stretch;
  flex-grow: 0;
  margin: 0;
}

.sponsor-info p {
  width: 400px;
  height: 92px;
  font-family: 'Be Vietnam Pro', sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 17px;
  line-height: 23px;
  color: #000000;
  flex: none;
  order: 1;
  align-self: stretch;
  flex-grow: 0;
  margin: 0;
}

.sponsor-buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0px;
  gap: 20px;
  width: 288px;
  height: 44px;
  flex: none;
  order: 1;
  flex-grow: 0;
}

.sponsor-buttons .btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 12px 16px;
  gap: 8px;
  height: 44px;
  border-radius: 2px;
  font-family: 'Be Vietnam Pro', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  color: #FFFFFF;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
  flex: none;
  flex-grow: 0;
}

.sponsor-buttons .btn-primary {
  width: 144px;
  background: #0065A4;
  order: 0;
}

.sponsor-buttons .btn-primary:hover {
  background: #004d7a;
}

.sponsor-buttons .btn-secondary {
  width: 124px;
  background: #000229;
  order: 1;
}

.sponsor-buttons .btn-secondary:hover {
  background: #000118;
}

/* Right Side - Contact Information */
.contact-info {
  display: flex;                /* convierte el contenedor en flexbox */
  flex-direction: row;          /* tarjeta y foto en fila */
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;                    /* separación de 10px */
  position: relative;
  width: auto;                  /* que se adapte al contenido */
  height: auto;
  padding: 0;
}

/* Frame 1 - Contact Card */
/* Contact Card */
.contact-card {
  position: relative;           /* elimina absolute */
  width: 400px;
  height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 25px;
  gap: 10px;
  background: rgba(230, 247, 253, 0.5);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

/* Frame 1984077890 */
.contact-details {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0px;
  gap: 58px;
  width: 350px;
  height: 290px;
  flex: none;
  order: 0;
  align-self: stretch;
  flex-grow: 1;
}

.contact-details h4 {
  width: 127px;
  height: 27px;
  font-family: 'Be Vietnam Pro', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 21px;
  line-height: 27px;
  color: #0065A4;
  flex: none;
  order: 0;
  flex-grow: 0;
  margin: 0;
}

.contact-title {
  width: 150px;
  height: 23px;
  font-family: 'Be Vietnam Pro', sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 15px;
  line-height: 23px;
  color: #0065A4;
  flex: none;
  order: 1;
  flex-grow: 0;
  margin: 0;
}

.contact-company {
  width: 215px;
  height: 23px;
  font-family: 'Be Vietnam Pro', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 17px;
  line-height: 23px;
  color: #090A0A;
  flex: none;
  order: 1;
  flex-grow: 0;
  margin: 0;
}

/* Frame 1984077889 */
.contact-methods {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 15px;
  margin: 0 auto;
  width: 330px;
  height: 67px;
  flex: none;
  order: 1;
  flex-grow: 0;
}

.contact-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0px;
  gap: 10px;
  width: 330px;
  flex: none;
  flex-grow: 0;
}

.contact-item:first-child {
  height: 24px;
  order: 0;
}

.contact-item:last-child {
  height: 28px;
  order: 1;
}

.contact-item svg {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

.contact-item span {
  font-family: 'Be Vietnam Pro', sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 17px;
  color: #0065A4;
  flex: none;
  flex-grow: 0;
}

.contact-item:first-child span {
  line-height: 23px;
}

.contact-item:last-child span {
  line-height: 28px;
}

/* Frame 125 - Photo */
.contact-photo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-left: 10px;
  padding-right: 30px;
  gap: 10px;
  position: absolute;
  width: 297px;
  height: 340px;
  left: 415px;
  top: 0px;
  border-radius: 12px;
  opacity: 1;
}

.contact-photo img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: cover;
  border: none;
}

/* Statistics Section Wrapper */
.statistics-section-wrapper {
  padding: 80px 0;
  background: #FFFFFF;
}

/* Statistics Section */
.statistics-section {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  width: 100%;
  max-width: 1232px;
  margin: 0 auto;
}

.stat-card {
  flex: 1;
  background: linear-gradient(180deg, #E6F7FD 0%, #00B1EE 187.5%);
  border-radius: 12px;
  padding: 40px 20px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-number {
  font-family: 'Be Vietnam Pro', sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 56px;
  color: #0065A4;
  margin: 0 0 20px 0;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.5);
}

.stat-label {
  font-family: 'Be Vietnam Pro', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  color: #0065A4;
  margin: 0;
  padding-top: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .flagship-event-section {
    padding: 60px 50px 30px;
    gap: 60px;
  }

  .flagship-title {
    font-size: 42px;
    line-height: 50px;
  }

  .flagship-main {
    gap: 40px;
  }
}

@media (max-width: 1024px) {
  .flagship-event-section {
    padding: 50px 30px 25px;
    gap: 50px;
  }

  .flagship-main {
    flex-direction: column;
    gap: 40px;
  }

  .contact-info {
    justify-content: center;
  }

  .statistics-section {
    flex-wrap: wrap;
    gap: 20px;
  }

  .stat-card {
    flex: 1 1 calc(50% - 10px);
    min-width: 200px;
  }
}

@media (max-width: 768px) {
  .flagship-event-section {
    padding: 40px 20px 20px;
    gap: 40px;
  }

  /* Mobile Structure Control */
  .flagship-desktop {
    display: none;
  }

  .flagship-mobile {
    display: block;
  }

  /* Mobile Flagship Event - Figma CSS */
  .flagship-mobile .frame-parent {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 16px 16px;
    box-sizing: border-box;
    gap: 32px;
    text-align: left;
    font-size: 32px;
    color: #0065a4;
    font-family: 'Be Vietnam Pro';
  }

  .flagship-mobile .frame-group {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px 25px;
    gap: 35px;
  }

  .flagship-mobile .join-the-flagship-event-of-the-parent {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
  }

  .flagship-mobile .join-the-flagship {
    align-self: stretch;
    position: relative;
    font-size: 32px;
    font-weight: 700;
    color: #0065a4;
    font-family: 'Be Vietnam Pro';
    margin: 0;
  }

  .flagship-mobile .become-a-global-water-summit-s-parent {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    font-size: 18px;
    color: #000229;
  }

  .flagship-mobile .become-a-global {
    align-self: stretch;
    position: relative;
    line-height: 23px;
    font-weight: 600;
    font-size: 18px;
    color: #000229;
    font-family: 'Be Vietnam Pro';
    margin: 0;
  }

  .flagship-mobile .increase-your-visibility {
    align-self: stretch;
    position: relative;
    font-size: 12px;
    line-height: 18px;
    font-weight: 300;
    color: #000229;
    font-family: 'Be Vietnam Pro';
    margin: 0;
  }

  .flagship-mobile .button-parent {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 16px;
    color: #fff;
  }

  .flagship-mobile .button {
    border-radius: 2px;
    background-color: #0065a4;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
  }

  .flagship-mobile .button2 {
    position: relative;
    line-height: 20px;
    font-weight: 700;
    font-family: 'Be Vietnam Pro';
    color: #fff;
  }

  .flagship-mobile .button-2 {
    border-radius: 2px;
    background-color: #000229;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
  }

  .flagship-mobile .frame-wrapper {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    font-size: 18px;
  }

  .flagship-mobile .frame-container {
    align-self: stretch;
    border-radius: 12px;
    background-color: rgba(230, 247, 253, 0.5);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 25px;
  }

  .flagship-mobile .frame-parent2 {
    align-self: stretch;
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .flagship-mobile .frame-child {
    height: 135px;
    width: 126px;
    border-radius: 12px;
    object-fit: contain;
  }

  .flagship-mobile .frame-parent3 {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .flagship-mobile .james-head-parent {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }

  .flagship-mobile .james-head {
    position: relative;
    line-height: 23px;
    font-weight: 600;
    font-size: 18px;
    color: #000229;
    font-family: 'Be Vietnam Pro';
    margin: 0;
  }

  .flagship-mobile .head-of-sponsorship {
    position: relative;
    font-size: 15px;
    line-height: 19px;
    font-weight: 300;
    color: #000229;
    font-family: 'Be Vietnam Pro';
    margin: 0;
  }

  .flagship-mobile .global-water-intelligence {
    position: relative;
    font-size: 12px;
    line-height: 18px;
    font-weight: 300;
    color: #090a0a;
    font-family: 'Be Vietnam Pro';
    margin: 0;
  }

  /* Contact Information Container - Figma CSS - Debajo de la foto */
  .flagship-mobile .contact-info-parent {
    align-self: stretch;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    margin-top: 15px;
  }

  .flagship-mobile .contact-phone,
  .flagship-mobile .contact-email {
    align-self: stretch;
    width: 100%;
    height: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    line-height: 18px;
    font-weight: 300;
    color: #090a0a;
    font-family: 'Be Vietnam Pro';
    margin: 0;
  }

  .flagship-mobile .phone-icon,
  .flagship-mobile .email-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    display: block;
  }

  .flagship-mobile .phone-icon path,
  .flagship-mobile .email-icon path {
    fill: #0065a4;
  }

  .flagship-mobile .contact-phone span,
  .flagship-mobile .contact-email span {
    flex: 1;
    font-size: 12px;
    line-height: 18px;
    font-weight: 300;
    color: #090a0a;
    font-family: 'Be Vietnam Pro';
  }

  .flagship-title {
    font-size: 32px;
    line-height: 40px;
    text-align: center;
  }

  .sponsor-info {
    text-align: center;
    align-items: center;
  }

  .sponsor-buttons {
    flex-direction: column;
    width: 100%;
  }

  .contact-card {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .statistics-section {
    flex-direction: column;
    gap: 15px;
  }

  .stat-card {
    flex: none;
    padding: 30px 15px;
  }

  .stat-number {
    font-size: 36px;
    line-height: 42px;
  }
}

/* ========================================= */
/* 12. BOOKING PAGE SECTION                 */
/* ========================================= */


/* ========================= */
/* Booking Hero Section      */

/* ========================= */

.booking-header {
  
  padding: 90px 104px 0 104px;   /* Desktop */
  align-items: flex-start;
  gap: 35px;
  align-self: stretch;
  background: white;
}

.header-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 35px;
  width: 100%;              /* más flexible que width:1232px */
  max-width: none; 
  margin: 0 !important;
  padding: 0 !important;
}

.booking-title {
  align-self: stretch;
  color: #0065A4;
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 52px;
  font-style: normal;
  font-weight: 700;
  line-height: 60px;         /* fijo para consistencia */
  margin: 0;
}

.booking-subtitle {
  font-family: "Be Vietnam Pro", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 17px;
  line-height: 23px;
  color: #000229;
  max-width: 562px;
  margin: 0;
}

/* Tablet */
@media (max-width: 1024px) and (min-width: 769px) {
  .booking-header {
    padding: 60px 40px 0 40px;
  }

  .booking-title {
    font-size: 42px;
    line-height: 50px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .booking-header {
    display: flex;
    padding: 32px 16px 16px 16px; /* 32px top, 16px sides, 16px bottom */
    flex-direction: column;
    align-items: flex-start;
    gap: 35px; /* Como especificado */
    align-self: stretch;
    margin-top: 0; /* Sin margin-top adicional ya que el padding-top es 32px */
  }
  

  .booking-title {
    font-size: 32px;
    line-height: 40px;
    text-align: left; /* o center si quieres centrar */
  }

  .booking-subtitle {
    font-size: 15px;
    line-height: 21px;
    max-width: 100%; /* ocupa todo en móvil */
  }
}

/* Early-bird Discount Section */
.early-bird-section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 45px;
  align-self: stretch;
  padding: 45px 79px; /* valor base */
}

/* Tablet */
@media (max-width: 1024px) and (min-width: 769px) {
  .early-bird-section {
    padding: 25px 40px;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .early-bird-section {
    display: flex;
    padding: 16px 16px 32px 16px; /* 16px izq/der, 16px arriba, 32px abajo */
    justify-content: center;
    align-items: center;
    gap: 0px;
    align-self: stretch;
    
    margin: 0 auto; /* Centrar horizontalmente */
  }

  .early-bird-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0px;
    width: 100%;
  }

  /* Contenedor gris - contenido movido a la izquierda */
 .early-bird-container {
    display: flex;
    height: 84px;
    padding: 12px 15px;   /* 🔹 menos padding lateral */
    justify-content: flex-start; 
    align-items: center;
    flex: 1 0 0;
    border-radius: 12px;
    background: #F5F5F5;
    margin-left: 0;       /* 🔹 no se va a la izquierda */
    margin-right: 10px !important; /* Quitar margen derecho */
}

  /* Estructura interna del contenedor gris - alineado a la izquierda */
  .early-bird-content {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important; /* Alinear contenido a la izquierda */
    gap: 1px !important; /* Gap mínimo - elementos muy pegados */
    width: 100% !important;
  }

  /* Sección izquierda: estrella + texto */
  .early-bird-left {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 10px !important; /* Padding exacto de 10px entre estrella y texto */
    flex-shrink: 0 !important; /* No reducir el tamaño */
  }

  /* Contenedor del texto - dimensiones exactas */
  .discount-text {
    width: 160px;
    height: 32px;
    display: flex;
    align-items: center;
  }

  /* Estrella para móvil */
  .star-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    padding-left: 0; /* Quitar padding de desktop */
    margin-right: 5px !important; /* Margen derecho hacia el texto */
  }

  .star-icon img {
    width: 16px;
    height: 16px;
  }

  /* PASO 2: Texto para móvil - ajuste automático por ancho */
  .discount-title {
    color: #000229 !important;
    font-size: 12px !important;
    font-family: 'Be Vietnam Pro', sans-serif !important;
    font-weight: 700 !important;
    line-height: 16px !important; /* Línea compacta para 32px altura */
    word-wrap: break-word !important;
    white-space: normal !important; /* Permitir salto automático */
    width: 160px !important; /* El ancho fuerza el salto de línea */
    height: 32px !important;
    display: block !important;
    overflow: hidden !important; /* Ocultar texto que no cabe */
  }

  /* PASO 3: Botones verticales - dimensiones exactas */
  .currency-buttons {
    display: flex !important;
    flex-direction: column !important;
    width: 75px;
    height: 84px; /* Altura total para ambos botones */
    background: #F5F5F5;
    border-radius: 2px;
    overflow: hidden;
    margin-right: 0px;
  }

  .currency-btn {
    width: 75px;
    height: 42px; /* Cada botón 42px de altura */
    display: flex !important;
    padding: 12px 16px !important; /* 12px arriba/abajo, 16px izq/der */
    justify-content: center !important;
    align-items: center !important;
    gap: 8px !important;
    border: none;
    cursor: pointer;
    font-size: 13px !important;
    font-family: 'Be Vietnam Pro', sans-serif;
    font-weight: 700;
    line-height: 18px;
    transition: all 0.3s ease;
    box-sizing: border-box; /* Incluir padding en las dimensiones */
  }

  .currency-btn.active {
    background: #0065A4 !important;
    color: white !important;
  }

  .currency-btn:not(.active) {
    background: transparent !important;
    color: #000229 !important;
  }

  /* Línea divisoria para móvil */
  .divider-line {
    width: 1px !important;      /* vertical */
    height: 54px !important; 
    background: rgba(0, 101, 164, 0.30) !important;
    margin: 0 6px !important;  /* un poco de aire a los lados */
    align-self: center !important; 
    flex-shrink: 0 !important;
  }

  /* Sección derecha: días restantes */
  .early-bird-right {
    flex-shrink: 0 !important;
    margin-right: 8px !important; /* Margen derecho para separar del borde */
  }

  /* Días restantes - número arriba, texto abajo */
  .days-left {
    color: #00B1EE !important;
    font-family: "Be Vietnam Pro" !important;
    font-size: 16px !important;
    font-style: normal !important;
    font-weight: 300 !important;
    line-height: 20px !important;
    letter-spacing: 0 !important;
    white-space: pre-line !important; /* FORZAR que respete el <br/> */
    padding-left: 8px !important; /* Quitar padding de desktop */
    display: block !important; /* Asegurar que sea block para respetar <br/> */
    text-align: left !important; /* Pegado a la izquierda */
    padding-left: 0 !important; 
    margin-left: 0 !important;
    margin-right: 0 !important; /* Sin margen derecho - pegado a la izquierda */
    max-width: 45px !important; /* Ancho reducido para que quepa dentro */
  }

  /* Botones de moneda - verticales en móvil */
  .currency-buttons {
    display: flex;
    flex-direction: column;
    height: 84px;
    background: #F5F5F5;
    border-radius: 2px;
    overflow: hidden;
  }

  .currency-btn {
    flex: 1;
    display: flex;
    padding: 12px 16px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-family: 'Be Vietnam Pro', sans-serif;
    font-weight: 700;
    line-height: 18px;
    transition: all 0.3s ease;
  }

  .currency-btn.active {
    background: #0065A4;
    color: white;
  }

  .currency-btn:not(.active) {
    background: transparent;
    color: #000229;
  }



  /* Botones de moneda - verticales al lado del contenedor gris */
  .currency-buttons {
    background: #F5F5F5;
    border-radius: 2px;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
  }

  .currency-btn {
    padding: 12px 16px;
    border-radius: 2px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-family: 'Be Vietnam Pro', sans-serif;
    font-weight: 700;
    line-height: 18px;
    text-align: center;
  }

  .currency-btn.active {
    background: #0065A4;
    color: white;
  }

  .currency-btn:not(.active) {
    background: transparent;
    color: #000229;
  }
}

.early-bird-section .container {
    width: 1282px;
    padding: 0;
}

.early-bird-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.early-bird-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    background: #F5F5F5;
    border-radius: 12px;
    flex-grow: 1;
    margin-right: 45px;
}

/* DESKTOP - early-bird-content */
.early-bird-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px;
    gap: 15px;
    width: 100%;
}

/* DESKTOP - Sección izquierda: estrella + texto */
.early-bird-left {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 25px;
    flex-grow: 1;
}

/* Estrella con padding izquierdo de 25px */
.star-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 25px;
}

.star-icon img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

/* Texto del descuento */
.discount-title {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 21px;
    line-height: 23px;
    color: #000229;
    white-space: nowrap;
    flex-grow: 1;
}

.divider-line {
    width: 1px;
    height: 25px;
    background: rgba(0, 101, 164, 0.3);
    margin: 0 5px !important;
}

/* DESKTOP - Sección derecha: días restantes */
.early-bird-right {
    flex-shrink: 0;
}

/* DESKTOP - Días restantes con padding izquierdo y margen derecho */
@media (min-width: 769px) {
  .days-left {
    font-family: 'Be Vietnam Pro', sans-serif !important;
    font-style: normal !important;
    font-weight: 600 !important;
    font-size: 21px !important;
    line-height: 23px !important;
    color: #00B1EE !important;
    white-space: nowrap !important; /* UNA SOLA LÍNEA EN DESKTOP */
    padding-left: 25px !important;
    margin-right: 25px !important; /* Margen derecho en desktop */
  }
}

.currency-buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    border-radius: 2px;
    flex-shrink: 0;
}

.currency-btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 12px 16px;
    border-radius: 2px;
    border: none;
    cursor: pointer;
    font-family: 'Be Vietnam Pro', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    transition: all 0.3s ease;
}

.currency-btn.active {
    background: #0065A4;
    color: #FFFFFF;
}

.currency-btn:not(.active) {
    background: #F5F5F5;
    color: #000229;
}

.currency-btn:hover:not(.active) {
    background: #e5e5e5;
}

/* Pricing Grid */
.pricing-section {
    display: flex;
    padding: 45px 79px;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    align-self: stretch;
}

.pricing-grid {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 0px;
    gap: 45px;
    width: 1282px;
    min-height: 725px;
}

.pricing-card {
    background: #E6F7FD;
    border-radius: 12px;
    box-shadow: none;
    overflow: visible;
    /* transition: transform 0.3s ease, box-shadow 0.3s ease; */
    position: relative;
    padding: 32px 24px 24px 24px;
    display: flex;
    flex-direction: column;
    width: 397px;
    min-height: 725px;
    flex: none;
    font-family: 'Be Vietnam Pro', sans-serif;
}

.pricing-card.vip-card {
    background: #E6F7FD;
}

.pricing-card.general-card {
    background: #E6F7FD;
}

/* .pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
} */

/* Featured Card - All Access Pass */
.pricing-card.featured-card,
div.pricing-card.featured-card {
    background: #0065A4 !important;
    background-color: #0065A4 !important;
    color: white !important;
    align-items: flex-start;
}

/* Force featured card styles with higher specificity */
.pricing-grid .pricing-card.featured-card {
    background: #0065A4 !important;
    background-color: #0065A4 !important;
    color: #FFFFFF !important;
}

.pricing-card.featured-card .card-description {
    color: #FFFFFF !important;
}

.pricing-card.featured-card .features-list li {
    color: #E6F7FD !important;
    border-bottom: none;
}

.card-date {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 1.4;
    color: #6b7280;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-card.featured-card .card-date {
    color: rgba(255, 255, 255, 0.8) !important;
}

.card-header {
    margin-bottom: 24px;
}

.card-header h3 {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.2;
    color: #000229;
    margin: 0 0 16px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pricing-card.featured-card .card-header h3 {
    color: #FFFFFF !important;
}

/* Desktop - Ocultar flecha de acordeón */
@media (min-width: 769px) {
  .arrow-up {
    display: none !important; /* Ocultar flecha en desktop */
  }
}

/* Móvil - Mostrar flecha como SVG */
@media (max-width: 768px) {
  .arrow-up {
    font-size: 0; /* Ocultar texto */
    color: transparent;
    font-weight: normal;
  }
}

.pricing-card.featured-card .arrow-up {
    color: #FFFFFF !important;
}

/* Removed price-badge styles as cards no longer have badges */

.card-content {
    flex: 1;
    margin-bottom: 24px;
}

.card-description {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    color: #4b5563;
    margin-bottom: 24px;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    padding: 6px 0;
    font-family: 'Be Vietnam Pro', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    color: #374151;
}

.features-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #3b82f6;
    border-radius: 50%;
    margin-right: 12px;
    margin-top: 6px;
    flex-shrink: 0;
}

.pricing-card.featured-card .features-list li {
    color: rgba(255, 255, 255, 0.9);
}

.pricing-card.featured-card .features-list li::before {
    background: #60a5fa;
}

.card-footer {
    margin-top: auto;
    padding-top: 24px;
}

.price-info {
    margin-bottom: 20px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.price-type {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #6b7280;
}

.pricing-card.featured-card .price-type {
    color: rgba(255, 255, 255, 0.7) !important;
}

.price {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #9ca3af;
    text-decoration: line-through;
}

.pricing-card.featured-card .price {
    color: rgba(255, 255, 255, 0.5) !important;
}

.discount-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.discount-label {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #3b82f6;
}

.pricing-card.featured-card .discount-label {
    color: #ffffff !important;
}

.discount-price {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #3b82f6;
}

.pricing-card.featured-card .discount-price {
    color: #ffffff !important;
}

/* Removed early-bird styles as cards have simplified pricing display */

.register-btn {
    display: flex;
    padding: var(--space-s, 12px) var(--space-m, 16px);
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 2px;
    background: #0065A4;
    width: 100%;
    border: none;
    font-family: 'Be Vietnam Pro', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.vip-btn {
    background: #3b82f6;
}

.vip-btn:hover {
    background: #2563eb;
}

.featured-btn {
    background: #000229;
    color: #FFFFFF;
}

.featured-btn:hover {
    background: #001a3d;
}

.general-btn {
    background: #3b82f6;
}

.general-btn:hover {
    background: #2563eb;
}

/* Botón de registro en escritorio (desktop) */
.pricing-card .register-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 2px;
  background: #0065A4;
  width: 140px;
  height: 44px;
  padding: var(--space-s, 12px) var(--space-m, 16px);
  margin-left: 0; /* alineado a la izquierda */
}

/* All Access Pass - Override general-card styles */
.pricing-card.general-card.all-access-card {
    background: #0065A4 !important;
    background-color: #0065A4 !important;
    color: #FFFFFF !important;
}

.pricing-card.general-card.all-access-card .card-date {
    color: rgba(255, 255, 255, 0.8) !important;
}

.pricing-card.general-card.all-access-card .card-header h3 {
    color: #FFFFFF !important;
}

.pricing-card.general-card.all-access-card .arrow-up {
    color: #FFFFFF !important;
}

.pricing-card.general-card.all-access-card .card-description {
    color: #FFFFFF !important;
}

.pricing-card.general-card.all-access-card .features-list li {
    color: #E6F7FD !important;
}

.pricing-card.general-card.all-access-card .price-type {
    color: rgba(255, 255, 255, 0.7) !important;
}

.pricing-card.general-card.all-access-card .price {
    color: rgba(255, 255, 255, 0.5) !important;
}

.pricing-card.general-card.all-access-card .discount-label {
    color: #FFFFFF !important;
}

.pricing-card.general-card.all-access-card .discount-price {
    color: #FFFFFF !important;
}

.all-access-btn {
    background: #000229 !important;
    color: #FFFFFF !important;
}

.all-access-btn:hover {
    background: #001a3d !important;
}

/* ========================= */
/* ========================================= */
/* 13. GROUP BOOKINGS SECTION               */
/* ========================================= */
.group-bookings {
  width: 100%;
  display: flex;
  justify-content: center;
  background: #fff;
  padding: 45px 0;
}

.group-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 1232px; /* especificación exacta de Figma */
  gap: 60px; /* separación entre texto e imagen */
}

.group-image {
  flex-shrink: 0;
}

.group-image img {
  width: 624px;
  height: 340px;
  flex-shrink: 0;
  border-radius: 12px;
  background: lightgray 50% / cover no-repeat;
  object-fit: cover;
}

/* Contenedor de texto */
.group-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 25px;
  flex: 1;
  align-self: stretch;
}

/* Título */
.group-info h2 {
  align-self: stretch;
  color: #0065A4;
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin: 0;
   margin-bottom: 40px; 
}

/* Texto */
.group-info p {
  min-height: 40px;
  flex-shrink: 0;
  align-self: stretch;
  color: #000229;
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 17px;
  font-style: normal;
  font-weight: 300;
  line-height: 23px; /* 135.294% */
  letter-spacing: var(--Static-Display-Medium-Tracking, 0);
  margin: 0;
  margin-bottom: 25px;
}

/* Botón */
.group-bookings .enquire-btn {
  display: flex;
  padding: var(--space-s, 12px) var(--space-m, 16px);
  justify-content: center;
  align-items: center;
  gap: 8px;
  border: none;
  border-radius: 2px;
  background: #0065A4;
  color: #fff;
  font-family: "Be Vietnam Pro", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  text-decoration: none;
  transition: background 0.3s ease;
  cursor: pointer;
}

.group-bookings .enquire-btn:hover {
  background: #004d7a;
}

/* GROUP BOOKINGS - MOBILE */
@media (max-width: 768px) {
  .group-bookings {
    width: 100%;
    background: #fff;
    padding: 0 16px 32px 16px; /* mismo padding lateral que las tarjetas */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
    align-self: stretch;
    margin-top: 16px;   /* separación respecto a la tarjeta de registro */
    margin-bottom: 32px; /* separación respecto a la sección de preguntas */
  }

  .group-content {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    gap: 25px;
  }

  .group-image img {
    width: 100%;
    height: 275px;              /* Figma mobile spec */
    border-radius: 12px;
    object-fit: cover;
    align-self: stretch;
  }

  .group-info {
    display: flex;
    flex-direction: column;
    padding: 0 25px;
    justify-content: center;
    align-items: flex-start;
    gap: 25px;
    width: 100%;
  }

  .group-info h2 {
    width: 306px;
    color: #0065A4;
    font-family: "Be Vietnam Pro";
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: 0;
    text-align: left;
    margin-bottom: 16px;
  }

  .group-info p {
    min-height: 40px;
    align-self: stretch;
    color: #000229;
    font-family: "Be Vietnam Pro";
    font-size: 12px;
    font-weight: 300;
    line-height: 18px;
    text-align: left;
    margin-bottom: 16px;
  }

  .group-bookings .enquire-btn {
    display: flex;
    padding: var(--space-s, 12px) var(--space-m, 16px);
    justify-content: center;
    align-items: center;
    gap: 8px;
    border: none;
    border-radius: 2px;
    background: #0065A4;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    width: 140px;
    height: 44px;
    cursor: pointer;
  }
}
 


/* ========================================= */
/* 14. REGISTRATION QUESTIONS SECTION       */
/* ========================================= */

/* Desktop Registration Questions - Frame 44 */
.registration-questions-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 45px 104px;
    gap: 10px;
    width: 100%;
    margin: 0;
    box-sizing: border-box;
    background: transparent;
}

.registration-questions-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 50px;
    gap: 10px;
    width: 100%;
    max-width: 1232px;
    margin: 0;
    background: #F5F5F5;
    border-radius: 12px;
}

/* Desktop specific - override any mobile styles */
@media (min-width: 769px) {
    .registration-questions-section {
        padding: 45px 104px !important;
        background: transparent !important;
        border-radius: 0 !important;
        margin-left: calc(-1 * (100vw - 100%) / 2) !important;
        margin-right: calc(-1 * (100vw - 100%) / 2) !important;
        width: 100vw !important;
        max-width: 100vw !important;
    }

    .registration-questions-container {
        padding: 50px !important;
        background: #F5F5F5 !important;
        border-radius: 12px !important;
        max-width: 1232px !important;
        margin: 0 auto !important;
    }
}

.registration-questions-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 70px;
    width: 100%;
}

.registration-questions-title {
    font-family: 'Be Vietnam Pro', Arial, sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 28px;
    line-height: 35px;
    color: #000229;
    margin: 0;
    width: 100%;
}

.questions-accordion {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
    width: 100%;
}

.accordion-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

.accordion-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.accordion-title {
    font-family: 'Be Vietnam Pro', Arial, sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 28px;
    line-height: 35px;
    color: #0065A4;
    margin: 0;
}

.accordion-arrow {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    background-image: url('images/icons/ArrowUp.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 16px 16px;
    cursor: pointer;
    transform: rotate(180deg); /* Default: arrow down when closed */
}

/* Ocultar el SVG interno y usar el background */
.accordion-arrow svg {
    display: none;
}

.accordion-arrow.up {
    transform: rotate(0deg); /* Arrow up when open */
}

.accordion-content {
    width: 100%;
    display: none;
}

.accordion-item.expanded .accordion-content {
    display: block;
    margin-top: 40px;
}

.accordion-text {
    font-family: 'Be Vietnam Pro', Arial, sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 17px;
    line-height: 23px;
    color: #000229;
    margin: 0;
    max-width: 863px;
}

.accordion-line {
    width: 100%;
    height: 1px;
    background: rgba(0, 101, 164, 0.3);
    margin-top: 25px;
}

.accordion-item.last .accordion-line {
    display: none;
}

/* ========================= */
/* PRICING CARD- MOBILE / REGISTRATION QUESTION */
/* ========================= */

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

    .pricing-section {
    padding: 0 0px !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100% !important;
    margin: 0 auto !important;
    margin-bottom: 0px !important;
  }

  .pricing-section .pricing-card:last-child {
    margin-bottom: 0 !important; /* eliminar posibles márgenes residuales */
  }  

    .pricing-grid {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
    width: 100% !important;
    max-width: 100%;
    margin: 0 auto !important;
  }

    .pricing-card {
    width: 100% !important;        /* 🔑 antes 408px — ahora relativo al viewport */
    max-width: none !important;             /* límite superior por si acaso */
    height: auto !important;
    min-height: auto !important;
    padding: 25px 20px !important;
    box-sizing: border-box;
    border-radius: 12px;
    margin: 0 auto;
  }

    /* Espaciado entre elementos - cerrado (40px) */
    .pricing-card .card-content {
      margin-bottom: 40px !important; /* 40px hasta el precio */
      transition: margin-bottom 0.4s ease !important;
    }

    /* Espaciado entre elementos - abierto (50px) */
    .pricing-card.accordion-open .card-content {
      margin-bottom: 50px !important; /* 50px cuando está abierto */
    }

    .pricing-card.featured-card {
        transform: none;
        background: #0065A4 !important; /* Mantener color de featured card */
    }

    /* Botón de registro en móvil */
    .pricing-card .register-btn {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 8px !important;
    border-radius: 2px !important;
    background: #0065A4 !important;
    width: 140px !important;
    height: 44px !important;
    padding: var(--space-s, 12px) var(--space-m, 16px) !important;
    margin-left: 0 !important; /* alineado a la izquierda */
  }

    /* Acordeón en móvil - Lista de características oculta por defecto */
    .pricing-card .features-list {
        display: none !important;
        opacity: 0;
        max-height: 0;
        overflow: hidden;
        transition: all 0.4s ease;
        margin: 0;
        padding: 0;
    }

    /* Cuando el acordeón está abierto - mostrar lista y empujar contenido */
    .pricing-card.accordion-open .features-list {
        display: block !important;
        opacity: 1;
        max-height: 300px;
        margin: 20px 0 !important; /* Margen arriba y abajo */
        padding: 0;
    }

    /* Flecha clickeable - cambiar por SVG */
    .pricing-card .arrow-up {
        cursor: pointer !important;
        transition: transform 0.3s ease !important;
        user-select: none !important;
        background-image: url('images/icons/ArrowUp.svg') !important;
        background-repeat: no-repeat !important;
        background-position: center !important;
        background-size: 16px 16px !important;
        width: 24px !important;
        height: 24px !important;
        display: inline-block !important;
        text-indent: -9999px !important; /* Ocultar texto */
    }
    
    /* 🔹 Contenedor colapsable */
    .pricing-card .card-details {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s ease;
    }

    /* 🔹 Cuando se abre el acordeón */
    .pricing-card.accordion-open .card-details {
      max-height: 700px; /* suficiente para mostrar las features */
    }

    /* 🔹 Asegura que la descripción siempre sea visible */
    .pricing-card .card-description {
      display: block;
      opacity: 1;
      overflow: visible;
      margin-bottom: 16px;
    }
    /* Rotar flecha cuando está abierto */
    .pricing-card.accordion-open .arrow-up {
        transform: rotate(180deg) !important;
    }

    .group-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }



    /* ===== REGISTRATION QUESTIONS - MOBILE ===== */
    .registration-questions-section {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: flex-start;
      gap: 10px;
      align-self: stretch;
      border-radius: 12px;
      background: #F5F5F5;
      padding: 0 25px !important; /* ✅ Igual que las tarjetas de registro */
      margin: 0; /* ✅ Eliminar margen adicional */
      box-sizing: border-box;
      max-width: 100%;
  }

    /* Contenedor interno */
    .registration-questions-container {
      width: 100%;
      display: flex;
      flex-direction: column;
      gap: 20px;
      text-align: left !important;
      align-items: flex-start !important; /* ✅ alinear todo a la izquierda */
      padding: 25px 0 !important; /* ✅ 25px arriba y abajo, 0 a los lados */
      margin: 0 !important; /* ✅ Sin margin auto que centre */
      max-width: none !important; /* ✅ Sin límite de ancho */
      background: transparent !important; /* ✅ Sin fondo, ya lo tiene la sección */
  }

    /* Título de la sección */
    .registration-questions-title {
        align-self: stretch;
        color: #000229;
        font-family: "Be Vietnam Pro";
        font-size: 24px;
        font-style: normal;
        font-weight: 700;
        line-height: 30px; /* 125% */
        letter-spacing: var(--Static-Display-Medium-Tracking, 0);
        text-align: left !important;
        margin: 0;
    }

    .registration-questions-title,
    .accordion-title,
    .accordion-text {
      text-align: left !important;
      width: 100%;
    }
    .accordion-item,
    .accordion-header,
    .accordion-content {
      align-items: flex-start !important;
      justify-content: flex-start !important;
    }
    /* Contenedor de acordeón */
    .questions-accordion {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 0;
        text-align: left !important;
    }

    /* Cada item del acordeón */
    .accordion-item {
        width: 100%;
        display: flex;
        flex-direction: column;
        text-align: left !important;
    }

    /* Header del acordeón (pregunta + flecha) */
    .accordion-header {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        cursor: pointer;
        padding: 20px 0;
        transition: all 0.3s ease;
        text-align: left !important;
    }

    /* Contenido del acordeón (respuesta) */
    .accordion-content {
        width: 100%;
        display: none;
        padding-bottom: 20px;
        text-align: left !important;
    }

    .accordion-item.expanded .accordion-content {
        display: block;
        text-align: left !important;
    }

    /* Flecha del acordeón - Mismo icono que las tarjetas */
    .accordion-arrow {
        width: 24px;
        height: 24px;
        transition: transform 0.3s ease;
        flex-shrink: 0;
        background-image: url('images/icons/ArrowUp.svg') !important;
        background-repeat: no-repeat !important;
        background-position: center !important;
        background-size: 16px 16px !important;
        cursor: pointer !important;
        transform: rotate(180deg) !important; /* Default: arrow down when closed */
    }

    /* Ocultar el SVG interno y usar el background */
    .accordion-arrow svg {
        display: none !important;
    }

    .accordion-arrow.up {
        transform: rotate(0deg) !important; /* Arrow up when open */
    }

    /* Línea separadora */
    .accordion-line {
        width: 100%;
        height: 1px;
        background: rgba(0, 101, 164, 0.3);
        margin-top: 0;
    }

    .accordion-item.last .accordion-line {
        display: none;
    }

    .accordion-title {
        font-size: 18px !important;
        line-height: 23px !important;
        color: #0065A4 !important;
        font-weight: 600 !important;
        text-align: left !important; /* Forzar alineación a la izquierda */
        margin: 0 !important;
        font-family: "Be Vietnam Pro" !important;
    }

    .accordion-text {
        font-size: 12px !important;
        line-height: 18px !important;
        color: #000229 !important;
        font-weight: 300 !important;
        text-align: left !important; /* Forzar alineación a la izquierda */
        margin: 0 !important;
        font-family: "Be Vietnam Pro" !important;
    }

    .registration-questions-content {
        gap: 20px;
        text-align: left !important;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start !important;
    }
}

/* FORCE ALL ACCESS CARD STYLES - HIGHEST PRIORITY */
.pricing-card.general-card.all-access-card,
.pricing-grid .pricing-card.general-card.all-access-card,
div.pricing-card.general-card.all-access-card {
    background: #0065A4 !important;
    background-color: #0065A4 !important;
    color: #FFFFFF !important;
}

.pricing-card.general-card.all-access-card .card-date {
    color: rgba(255, 255, 255, 0.8) !important;
}

.pricing-card.general-card.all-access-card .card-header h3 {
    color: #FFFFFF !important;
}

.pricing-card.general-card.all-access-card .arrow-up {
    color: #FFFFFF !important;
}

.pricing-card.general-card.all-access-card .card-description {
    color: #FFFFFF !important;
}

.pricing-card.general-card.all-access-card .features-list li {
    color: #E6F7FD !important;
}

.pricing-card.general-card.all-access-card .price {
    color: rgba(255, 255, 255, 0.5) !important;
}

.pricing-card.general-card.all-access-card .price-type {
    color: rgba(255, 255, 255, 0.7) !important;
}

.pricing-card.general-card.all-access-card .discount-label {
    color: #FFFFFF !important;
}

.pricing-card.general-card.all-access-card .discount-price {
    color: #FFFFFF !important;
}

.pricing-card.general-card.all-access-card .register-btn.all-access-btn {
    background: #000229 !important;
    color: #FFFFFF !important;
}

/* Additional Dynamic Sections Styles */
.additional-section {
    padding: 60px 0;
}

.additional-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Background variations */
.section-bg-white { background: #ffffff; }
.section-bg-light { background: #f8f9fa; }
.section-bg-blue { background: #0065A4; color: white; }
.section-bg-dark { background: #333333; color: white; }

/* Text + Image Section */
.text-image-section {
    display: flex;
    align-items: center;
    gap: 40px;
}

.text-image-section.layout-left {
    flex-direction: row;
}

.text-image-section.layout-right {
    flex-direction: row-reverse;
}

.text-image-section.layout-center {
    flex-direction: column;
    text-align: center;
}

.text-image-section .section-content {
    flex: 1;
}

.text-image-section .section-image {
    flex: 1;
}

.text-image-section .section-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Video Section */
.video-section {
    text-align: center;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    margin-top: 20px;
}

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

/* Testimonial Section */
.testimonial-section {
    text-align: center;
}

.testimonial-content {
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-image {
    flex-shrink: 0;
}

.testimonial-image img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-text {
    flex: 1;
    font-style: italic;
    font-size: 18px;
}

/* CTA Section */
.cta-section {
    text-align: center;
}

.cta-button {
    margin-top: 20px;
}

.cta-button .btn {
    display: inline-block;
    padding: 15px 30px;
    background: #0065A4;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.cta-button .btn:hover {
    background: #004d7a;
}

/* Custom HTML Section - Inherit styles from content */

/* Sponsors Section Styles - Moved to sponsorship.css */

/* ========================================
   DESKTOP/MOBILE VISIBILITY CONTROLS
   ======================================== */

/* Desktop: Show desktop versions, hide mobile versions */
@media (min-width: 769px) {
    .hero-section .hero-desktop,
    .flagship-event-section .flagship-desktop {
        display: block !important;
    }

    .hero-section .hero-mobile,
    .flagship-event-section .flagship-mobile {
        display: none !important;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .text-image-section {
        flex-direction: column !important;
        text-align: center;
    }

    .testimonial-content {
        flex-direction: column;
        text-align: center;
    }

    .additional-section {
        padding: 40px 0;
    }
}

/* Sponsorship styles moved to sponsorship.css */
/* Speakers styles moved to speakers.css */

/* Responsive */
@media (max-width: 768px) {
    .text-image-section {
        flex-direction: column !important;
        text-align: center;
    }

    .testimonial-content {
        flex-direction: column;
        text-align: center;
    }

    .additional-section {
        padding: 40px 0;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .text-image-section {
        flex-direction: column !important;
        text-align: center;
    }

    .testimonial-content {
        flex-direction: column;
        text-align: center;
    }

    .additional-section {
        padding: 40px 0;
    }
}
