/* ============================================================
   EVENTO — Modern Design System Override
   International platform, no regional images
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* ── CSS Variables ─────────────────────────────────────── */
:root {
  --ev-primary:       #4f46e5;
  --ev-primary-dark:  #3730a3;
  --ev-accent:        #06b6d4;
  --ev-accent2:       #8b5cf6;
  --ev-surface:       #0f0e17;
  --ev-glass:         rgba(255,255,255,0.07);
  --ev-glass-border:  rgba(255,255,255,0.12);
  --ev-radius:        16px;
  --ev-shadow:        0 20px 60px rgba(79,70,229,0.18);
}

/* ── Global Font ────────────────────────────────────────── */
body {
  font-family: 'Inter', 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 16px !important;
  line-height: 1.6;
}

/* ============================================================
   HERO / BREADCRUMB  —  Full CSS, zero background images
   ============================================================ */
.breadcumb-wrapper {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  background: var(--ev-surface);
  overflow: hidden;
}

/* Remove old image bg set via data-bg-src */
.breadcumb-wrapper[data-bg-src] {
  background-image: none !important;
}

/* Hide animated orbs */
.breadcumb-wrapper::before,
.breadcumb-wrapper::after {
  display: none !important;
}

/* Grid pattern overlay */
.breadcumb-wrapper .overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

/* Hide old shape image */
.breadcumb-wrapper .shape { display: none !important; }

/* Text */
.breadcumb-content { position: relative; z-index: 2; padding: 70px 0; }

.breadcumb-title {
  color: #ffffff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 18px;
}

.breadcumb-menu-wrap { margin-top: 0; }
.breadcumb-menu {
  display: flex;
  gap: 8px;
  list-style: none;
  padding: 0; margin: 0;
  align-items: center;
}
.breadcumb-menu li {
  color: rgba(255,255,255,0.55);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.breadcumb-menu li a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcumb-menu li a:hover { color: #67e8f9; }
.breadcumb-menu li:not(:last-child)::after {
  content: '›';
  margin-left: 8px;
  color: rgba(255,255,255,0.35);
}

/* ============================================================
   HOME — About section without images  (stat cards + text)
   ============================================================ */
.about-modern {
  padding: 80px 0;
  background: #f8f9ff;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.about-stat-card {
  background: #ffffff;
  border: 1px solid rgba(79,70,229,0.1);
  border-radius: var(--ev-radius);
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(79,70,229,0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}
.about-stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--ev-primary);
}
.about-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(79,70,229,0.14);
}
.about-stat-number {
  font-size: 42px;
  font-weight: 800;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--ev-primary);
  line-height: 1;
  margin-bottom: 6px;
}
.about-stat-label {
  font-size: 13px;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Feature pills */
.feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}
.feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(79,70,229,0.07);
  border: 1px solid rgba(79,70,229,0.15);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ev-primary-dark);
  transition: all 0.2s ease;
}
.feature-pill:hover {
  background: var(--ev-primary);
  color: #fff;
  border-color: var(--ev-primary);
}
.feature-pill i { font-size: 12px; }

/* ============================================================
   SERVICES — Modern card grid
   ============================================================ */
.service-modern-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 992px) {
  .service-modern-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .service-modern-grid {
    grid-template-columns: 1fr;
  }
}
.service-modern-card {
  background: #fff;
  border-radius: var(--ev-radius);
  padding: 36px 24px;
  text-align: center;
  border: 1px solid #e8e8f0;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.service-modern-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--ev-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}
.service-modern-card:hover::after { opacity: 1; }
.service-modern-card:hover { transform: translateY(-6px); box-shadow: var(--ev-shadow); }
.service-modern-card > * { position: relative; z-index: 1; }
.service-modern-card:hover .smc-icon,
.service-modern-card:hover .smc-title,
.service-modern-card:hover .smc-text { color: #fff; }

.smc-icon {
  font-size: 40px;
  color: var(--ev-primary);
  margin-bottom: 18px;
  transition: color 0.3s;
  display: block;
}
.smc-title {
  font-size: 17px;
  font-weight: 700;
  color: #1e1b4b;
  margin-bottom: 8px;
  transition: color 0.3s;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.smc-text {
  font-size: 13px;
  color: #64748b;
  line-height: 1.6;
  transition: color 0.3s;
}

/* ============================================================
   STATS BANNER — global reach counter bar
   ============================================================ */
.ev-stats-banner {
  background: linear-gradient(135deg, #0f0e17 0%, #1a1035 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.ev-stats-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 50px 50px;
}
.ev-stat-item { text-align: center; position: relative; z-index: 1; }
.ev-stat-item .number {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #ffffff;
  line-height: 1;
}
.ev-stat-item .label {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 6px;
}

/* ============================================================
   NEWSLETTER — Clean Card Design
   ============================================================ */
.newsletter-layout1 {
  background: transparent !important;
  position: relative;
  overflow: visible !important;
  padding: 60px 0;
}
.newsletter-layout1 .overlay {
  display: none !important;
}
.newsletter-layout1 .container {
  background: var(--ev-primary-dark);
  border-radius: 20px;
  padding: 50px 60px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  position: relative;
  overflow: hidden;
}
.newsletter-layout1::before,
.newsletter-layout1::after {
  display: none !important;
}
/* Hide old shape images inside newsletter */
.newsletter-layout1 img.shape { display: none !important; }

/* ============================================================
   CONTACT BOX — modern card
   ============================================================ */
.contact-box {
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid #e8e8f0;
  box-shadow: 0 10px 40px rgba(79,70,229,0.06);
  padding: 50px 40px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.contact-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: var(--ev-primary);
}
.contact-box__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  color: #1e1b4b;
}
.contact-box__text {
  color: #64748b;
  font-size: 15px;
  margin-bottom: 30px;
}
.contact-box__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  background: #f8f9ff;
  padding: 24px 16px;
  border-radius: 16px;
  height: 100%;
  transition: transform 0.3s ease, background 0.3s ease;
  border: 1px solid transparent;
}
.contact-box__item:hover {
  transform: translateY(-4px);
  background: #ffffff;
  border-color: #e8e8f0;
  box-shadow: 0 8px 24px rgba(79,70,229,0.06);
}
.contact-box__icon {
  width: 54px;
  height: 54px;
  background: #ffffff;
  color: var(--ev-primary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(79,70,229,0.12);
  margin-bottom: 8px;
}
.contact-box__item .media-body {
  width: 100%;
  text-align: center !important;
}
.contact-box__label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: #64748b;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}
.contact-box__info {
  font-size: 14px;
  font-weight: 600;
  color: #1e1b4b;
  margin: 0;
  word-break: break-word;
}
.contact-box__info a {
  color: inherit;
  transition: color 0.2s;
  text-decoration: none;
}
.contact-box__info a:hover {
  color: var(--ev-primary);
}

/* ============================================================
   HEADER — sticky modern glass effect
   ============================================================ */
.will-sticky .sticky-active,
.will-sticky .sticky-active.active {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  z-index: 999 !important;
  background: rgba(15, 14, 23, 0.98) !important;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 4px 24px rgba(0,0,0,0.5) !important;
  transform: none !important;
  animation: none !important;
  transition: all 0.3s ease !important;
}

/* White text for dark sticky header */
.will-sticky .sticky-active .main-menu a,
.will-sticky .sticky-active .header-info_label,
.will-sticky .sticky-active .header-info_link a {
  color: #ffffff !important;
}

/* Mobile sticky content visibility logic */
.mobile-sticky-content {
  display: none !important;
}
.will-sticky .sticky-active.active .mobile-sticky-content {
  display: flex !important;
}

/* Nav link hover */
.main-menu a:hover,
.will-sticky .sticky-active .main-menu a:hover {
  color: var(--ev-primary) !important;
}

/* Pre-header links hover */
.header-social a:hover,
.header-info_link a:hover,
.header-info_link a:hover::after {
  color: var(--ev-primary) !important;
}

/* Auth / Header Links */
.header-links {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #1e293b !important; /* Dark text for visibility on white background */
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 8px;
  transition: all 0.2s ease;
}
.header-links a i {
  color: var(--ev-primary);
  font-size: 14px;
}
.header-links a:hover,
.header-links a:focus {
  background: rgba(79, 70, 229, 0.08) !important;
  color: var(--ev-primary) !important;
}

/* Nav link hover underline */
.main-menu ul li a {
  position: relative;
  transition: color 0.2s;
}
.main-menu ul li a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 2px;
  background: var(--ev-primary);
  border-radius: 2px;
  transition: width 0.25s ease;
}
.main-menu ul li:hover a::after,
.main-menu ul li.active a::after { width: 100%; }

/* ============================================================
   BUTTONS — solid colors
   ============================================================ */
.vs-btn {
  background: var(--ev-primary) !important;
  color: #fff !important;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  letter-spacing: 0.2px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.3s ease;
  position: relative;
  overflow: hidden;
}
.vs-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--ev-primary-dark);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.vs-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(79,70,229,0.35);
  background: var(--ev-primary-dark) !important;
}
.vs-btn:hover::before { opacity: 1; }
.vs-btn > * { position: relative; z-index: 1; }

/* ============================================================
   FAQ — modern accordion
   ============================================================ */
.accordion-button:not(.collapsed) {
  background: rgba(79,70,229,0.06) !important;
  color: var(--ev-primary) !important;
  box-shadow: none !important;
}
.accordion-button:focus {
  box-shadow: 0 0 0 3px rgba(79,70,229,0.12) !important;
}
.accordion-item {
  border-radius: var(--ev-radius) !important;
  overflow: hidden;
  margin-bottom: 12px;
  border: 1px solid #e2e4f0 !important;
}

/* Category cards */
.category-card:hover {
  border-color: var(--ev-primary) !important;
  box-shadow: 0 8px 32px rgba(79,70,229,0.12) !important;
}
.category-card i { color: var(--ev-primary) !important; }

/* ============================================================
   SECTION SUBTITLES — badge style
   ============================================================ */
.sec-subtitle, .sec-subtitle2 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(79,70,229,0.1);
  border: 1px solid rgba(79,70,229,0.2);
  color: var(--ev-primary);
  padding: 5px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.sec-subtitle::before, .sec-subtitle2::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--ev-accent);
  display: inline-block;
}

/* ============================================================
   EVENT CARDS — polished hover
   ============================================================ */
.event-style2 {
  border-radius: var(--ev-radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.event-style2:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(79,70,229,0.16);
}

/* ============================================================
   PRELOADER
   ============================================================ */
.preloader {
  background: linear-gradient(135deg, #0f0e17 0%, #1a1035 100%);
}

/* ============================================================
   RESPONSIVE & MOBILE OPTIMIZATIONS
   ============================================================ */

@media (max-width: 1199px) {
  .breadcumb-title { font-size: 42px; }
  .about-stats-grid { gap: 16px; }
}

@media (max-width: 991px) {
  .breadcumb-content { padding: 60px 0; }
  .breadcumb-title { font-size: 36px; }
  
  .about-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .service-modern-grid { grid-template-columns: repeat(2, 1fr); }
  
  .ev-stats-banner { padding: 40px 0; }
  .ev-stat-item { margin-bottom: 30px; }
  .ev-stat-item:last-child { margin-bottom: 0; }
  
  .newsletter-layout1 .container { padding: 40px 30px; }
  
  /* Reduce global spacing */
  .space-top { padding-top: 60px !important; }
  .space-bottom { padding-bottom: 60px !important; }
  .space { padding-top: 60px !important; padding-bottom: 60px !important; }
  
  /* Mobile Header Sticky Fix */
  .header-inner { 
    padding: 15px 0 !important; 
  }
  .vs-menu-toggle {
    background: var(--ev-primary);
    color: #fff;
    border: none;
    border-radius: 8px;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .breadcumb-wrapper { min-height: 250px; }
  .breadcumb-content { padding: 40px 0; text-align: center; }
  .breadcumb-menu { justify-content: center; }
  .breadcumb-title { font-size: 28px; margin-bottom: 12px; }
  
  .about-modern { padding: 50px 0; }
  .service-modern-card { padding: 24px 16px; }
  
  .contact-box { padding: 30px 20px; }
  
  .newsletter-layout1 { padding: 40px 0; }
  .newsletter-layout1 .container { padding: 30px 20px; border-radius: 16px; text-align: center; }
  .newsletter-form1 .row { justify-content: center; }
  .newsletter-button { margin-top: 15px; text-align: center; width: 100%; }
  .newsletter-button .vs-btn { width: 100%; }
  
  /* Optimize topbar for mobile */
  .header-top { display: none !important; } /* Hide the extra top bar on small mobile to save space */
  
  .space-top { padding-top: 50px !important; }
  .space-bottom { padding-bottom: 50px !important; }
  .space { padding-top: 50px !important; padding-bottom: 50px !important; }
}

@media (max-width: 480px) {
  .breadcumb-title { font-size: 24px; }
  
  .about-stats-grid { grid-template-columns: 1fr; gap: 16px; }
  .about-stat-card { padding: 20px 16px; }
  .about-stat-number { font-size: 36px; }
  
  .service-modern-grid { grid-template-columns: 1fr; }
  
  .feature-pills { justify-content: center; }
  .feature-pill { font-size: 12px; padding: 6px 12px; }
  
  .ev-stat-item .number { font-size: 40px; }
  
  .header-logo img { max-height: 45px; }
}

/* ============================================================
   MOBILE MENU OVERRIDES
   ============================================================ */
.vs-menu-wrapper {
  background: rgba(15, 14, 23, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.vs-mobile-menu ul li a {
  color: rgba(255, 255, 255, 0.8) !important;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
}
.vs-mobile-menu ul li.active > a,
.vs-mobile-menu ul li a:hover {
  color: var(--ev-primary) !important;
  background: rgba(79, 70, 229, 0.1);
}
.vs-menu-toggle {
  color: #fff;
  transition: all 0.3s;
}
.vs-menu-area {
  background: #1a1640 !important;
}
.vs-menu-area .mobile-logo {
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding-bottom: 20px;
}
