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

:root {
  /* Color Palette - Vibrant Indigo & Electric Cyan Vibe */
  --primary: #f2dd00;
  --primary-hover: #d8c500;
  --primary-glow: rgba(242, 221, 0, 0.25);
  --secondary: #222222;
  --accent: #ffe90a;
  --accent-hover: #e6d100;
  --accent-glow: rgba(255, 233, 10, 0.25);
  
  /* Neutral Colors */
  --bg-main: #f5f6f8;
  --bg-surface: #ffffff;
  --bg-muted: #f1f5f9;
  --text-main: #0f172a;
  --text-muted: #64748b;
  --text-inverse: #ffffff;
  
  /* Borders & Shadows */
  --border-light: rgba(226, 232, 240, 0.8);
  --border-glass: rgba(255, 255, 255, 0.5);
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 10px 30px -10px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 40px -15px rgba(15, 23, 42, 0.12);
  --shadow-glow: 0 12px 24px rgba(79, 70, 229, 0.25);
  
  /* Layout */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --max-width: 1200px;
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Styles & Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-main);
  background-color: var(--bg-main);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1.25;
  letter-spacing: -0.02em;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 100px 0;
  position: relative;
}

.section-alt {
  background-color: var(--bg-muted);
}

.section-dark {
  background-color: var(--secondary);
  color: var(--text-inverse);
}

.section-dark h2 {
  color: var(--text-inverse);
}

.section-title {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px auto;
  animation: var(--transition);
}

.section-title h2 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--secondary) 30%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-dark .section-title h2 {
  background: linear-gradient(135deg, #ffffff 40%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-title p {
  color: var(--text-muted);
  font-size: 18px;
  font-weight: 400;
}

.section-dark .section-title p {
  color: #94a3b8;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  gap: 8px;
  white-space: nowrap;
  outline: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #ffef2a 100%);
  color: #1f1f1f;
  box-shadow: 0 10px 22px rgba(242, 221, 0, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(242, 221, 0, 0.42);
  background: linear-gradient(135deg, var(--primary-hover) 0%, #f3df0f 100%);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--accent) 0%, #06b6d4 100%);
  color: var(--text-inverse);
  box-shadow: 0 12px 24px rgba(6, 182, 212, 0.25);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(6, 182, 212, 0.35);
  background: linear-gradient(135deg, var(--accent-hover) 0%, #0891b2 100%);
}

.btn-outline {
  background: var(--bg-surface);
  border: 1.5px solid var(--border-light);
  color: var(--text-main);
}

.btn-outline:hover {
  background: var(--bg-muted);
  border-color: var(--text-muted);
  transform: translateY(-1px);
}

.btn-dark-outline {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  color: var(--text-inverse);
}

.btn-dark-outline:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-1px);
}

/* Glassmorphism Styles */
.glass-panel {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
}

.glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.glass-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(79, 70, 229, 0.2);
}


.site-topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 42px;
  background: #1f1f1f;
  color: #f8f8f8;
  z-index: 2100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  opacity: 0.95;
}

.topbar-item .material-icons {
  font-size: 16px;
  color: var(--primary);
}

.topbar-socials {
  display: flex;
  align-items: center;
  gap: 8px;
}

.topbar-socials a {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 13px;
}

.topbar-socials a:hover {
  background: var(--primary);
  color: #1f1f1f;
  border-color: var(--primary);
  transform: translateY(-1px);
}

.topbar-lang {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.topbar-lang a {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #cfcfcf;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 4px 8px;
}

.topbar-lang a.is-active,
.topbar-lang a:hover {
  color: #1f1f1f;
  background: var(--primary);
  border-color: var(--primary);
}
/* Custom Header Design */
header#mainHeader {
  position: fixed;
  top: 42px;
  left: 0;
  right: 0;
  height: 90px;
  display: flex;
  align-items: center;
  z-index: 2000;
  transition: var(--transition);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

header#mainHeader.scrolled {
  height: 76px;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 6px 26px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

header#mainHeader nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--secondary);
}

.logo .icon-wrapper {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.2);
}

.logo-image {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 36px;
  align-items: center;
}

.nav-links a {
  font-size: 15px;
  font-weight: 700;
  color: #333333;
  position: relative;
  padding: 8px 0;
}

.nav-links a:hover,
.nav-links a.active {
  color: #1f1f1f;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2.5px;
  background: linear-gradient(to right, #222222, var(--primary));
  border-radius: 4px;
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.btn::after {
  display: none;
}

.nav-links a.btn:hover,
.nav-links a.btn.active {
  color: #1f1f1f;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--secondary);
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.menu-toggle:hover {
  background: var(--bg-muted);
}

/* Main Content Padding */
main {
  padding-top: 132px;
}

/* Home Hero Slider CSS */
.hero-slider-wrapper {
  position: relative;
  width: 100%;
  height: calc(100vh - 132px);
  min-height: 600px;
  max-height: 850px;
  overflow: hidden;
  background-color: var(--secondary);
}

.hero-slider {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  color: var(--text-inverse);
}

.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.6) 50%, rgba(15, 23, 42, 0.3) 100%);
  z-index: 1;
}

.hero-slide-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition-delay: 0.2s;
}

.hero-slide.active .hero-slide-content {
  opacity: 1;
  transform: translateY(0);
}

.hero-slide-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 8px 16px;
  border-radius: 99px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 24px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  gap: 8px;
}

.hero-slide h2 {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--text-inverse);
}

.hero-slide h2 span {
  background: linear-gradient(135deg, #a5b4fc 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-slide p {
  font-size: 20px;
  color: #cbd5e1;
  margin-bottom: 40px;
  max-width: 650px;
  line-height: 1.6;
}

.hero-controls {
  position: absolute;
  bottom: 40px;
  right: 40px;
  display: flex;
  gap: 16px;
  z-index: 10;
}

.hero-ctrl-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.hero-ctrl-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
  transform: scale(1.05);
}

/* Feature Grid Section */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

.feature-card {
  padding: 40px 32px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  background: var(--bg-surface);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, var(--primary), var(--accent));
  opacity: 0;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(79, 70, 229, 0.15);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: rgba(79, 70, 229, 0.08);
  color: var(--primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  background: var(--primary);
  color: #fff;
  transform: scale(1.05) rotate(5deg);
  box-shadow: 0 8px 20px rgba(79, 70, 229, 0.2);
}

.feature-icon .material-icons {
  font-size: 30px;
}

.feature-card h3 {
  font-size: 22px;
  margin-bottom: 14px;
  font-weight: 700;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
}

/* Fairs Section Styling */
.fairs-tabs-wrapper {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.fairs-group-block {
  background: var(--bg-surface);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
}

.fairs-group-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-left: 5px solid var(--primary);
  padding-left: 16px;
}

.fairs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
}

.fair-card {
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.fair-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(79, 70, 229, 0.15);
}

.fair-cover-wrapper {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.fair-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.fair-card:hover .fair-cover {
  transform: scale(1.05);
}

.fair-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  z-index: 5;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.fair-badge.upcoming { background: linear-gradient(135deg, #3b82f6, #1d4ed8); }
.fair-badge.ongoing { background: linear-gradient(135deg, #10b981, #047857); }
.fair-badge.completed { background: linear-gradient(135deg, #64748b, #334155); }

.fair-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.fair-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.fair-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-muted);
  color: var(--text-muted);
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
}

.fair-chip .material-icons {
  font-size: 16px;
  color: var(--primary);
}

.fair-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.4;
}

.fair-content p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Call to Action Band Section */
.cta-band {
  background: linear-gradient(135deg, var(--secondary) 0%, #1e1b4b 100%);
  color: var(--text-inverse);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-band::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 5;
  gap: 40px;
}

.cta-content {
  max-width: 700px;
}

.cta-row h3 {
  font-size: 36px;
  font-weight: 800;
  color: var(--text-inverse);
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta-row p {
  font-size: 18px;
  color: #cbd5e1;
  margin: 0;
}

/* Premium Footer */
footer#siteFooter {
  background-color: var(--secondary);
  color: #94a3b8;
  padding: 80px 0 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-col h4 {
  color: var(--text-inverse);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 24px;
  position: relative;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(to right, var(--primary), var(--accent));
  border-radius: 2px;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.7;
}

.footer-logo {
  color: #fff;
  margin-bottom: 20px;
  display: inline-flex;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links li a {
  font-size: 14px;
  color: #94a3b8;
}

.footer-links li a:hover {
  color: var(--accent);
  padding-left: 6px;
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-list li {
  display: flex;
  gap: 12px;
  font-size: 14px;
}

.footer-contact-list li .material-icons {
  color: var(--accent);
  font-size: 20px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  text-align: center;
  font-size: 13px;
}

/* Pages Styling (Hero banners) */
.page-hero {
  background: linear-gradient(135deg, var(--secondary) 0%, #1e1b4b 100%);
  color: var(--text-inverse);
  padding: 100px 0 80px 0;
  position: relative;
  text-align: center;
}

.page-hero h1 {
  font-size: 48px;
  font-weight: 800;
  color: var(--text-inverse);
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 18px;
  color: #cbd5e1;
  max-width: 600px;
  margin: 0 auto;
}

/* Service Page Styles */
.service-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 32px;
}

.service-card-detailed {
  padding: 40px;
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 24px;
  transition: var(--transition);
}

.service-card-detailed:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(79, 70, 229, 0.15);
}

.service-badge-icon {
  width: 60px;
  height: 60px;
  background: rgba(79, 70, 229, 0.08);
  color: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-card-detailed:hover .service-badge-icon {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 8px 20px rgba(79, 70, 229, 0.2);
}

.service-badge-icon .material-icons {
  font-size: 28px;
}

.service-card-content h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-card-content p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
}

/* Corporate Page Styles */
.corporate-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.corporate-card {
  padding: 40px;
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.corporate-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(79, 70, 229, 0.15);
}

.corporate-card .icon-badge {
  width: 54px;
  height: 54px;
  background: rgba(6, 182, 212, 0.08);
  color: var(--accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.corporate-card .icon-badge .material-icons {
  font-size: 26px;
}

.corporate-card h3 {
  font-size: 22px;
  margin-bottom: 14px;
}

.corporate-card p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}

/* Contact Page Styles */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
}

.contact-card-info {
  padding: 40px;
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.contact-card-info h3 {
  font-size: 24px;
  margin-bottom: 30px;
}

.contact-link-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  background: var(--bg-muted);
  margin-bottom: 16px;
  font-weight: 600;
  color: var(--text-main);
  transition: var(--transition);
}

.contact-link-item:hover {
  background: rgba(79, 70, 229, 0.08);
  color: var(--primary);
  transform: translateX(4px);
}

.contact-link-item .material-icons {
  color: var(--primary);
  font-size: 24px;
}

.map-frame-wrapper {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  height: 100%;
  min-height: 350px;
}

.map-frame {
  width: 100%;
  height: 100%;
  border: none;
}

.contact-empty-map {
  padding: 40px;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--bg-surface);
}

/* Empty State / Editor Card */
.editor-card {
  padding: 40px;
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  text-align: center;
  color: var(--text-muted);
  box-shadow: var(--shadow-sm);
}

.editor-card h3 {
  margin-bottom: 8px;
}

.spacer-double {
  height: 60px;
}

/* Mobile Responsive Design */
@media (max-width: 992px) {
  .site-topbar {
    height: auto;
    padding: 8px 0;
  }

  .topbar-inner {
    min-height: 34px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .topbar-left,
  .topbar-right {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }

  .topbar-item {
    font-size: 12px;
  }

  header#mainHeader {
    top: 52px;
    height: 80px;
  }
  
  .menu-toggle {
    display: inline-flex;
  }
  
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--bg-surface);
    padding: 30px 24px;
    box-shadow: var(--shadow-lg);
    gap: 20px;
    border-top: 1px solid var(--bg-muted);
    align-items: stretch;
    z-index: 1999;
  }
  
  .nav-links.open {
    display: flex;
  }
  
  .nav-links a {
    font-size: 15px;
    font-weight: 700;
    color: #333333;
    position: relative;
    padding: 8px 0;
  }
  
  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2.5px;
    background: linear-gradient(to right, #222222, var(--primary));
    border-radius: 4px;
    transition: var(--transition);
  }
  
  .nav-links .btn {
    margin-top: 10px;
  }

  .nav-links a.btn::after {
    display: none;
  }
  
  main {
    padding-top: 132px;
  }
  
  .hero-slider-wrapper {
    height: 500px;
  }
  
  .hero-slide h2 {
    font-size: 44px;
  }
  
  .hero-slide p {
    font-size: 16px;
    margin-bottom: 24px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .corporate-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  section {
    padding: 60px 0;
  }
  
  .section-title {
    margin-bottom: 40px;
  }
  
  .section-title h2 {
    font-size: 28px;
  }
  
  .hero-slider-wrapper {
    height: 450px;
  }
  
  .hero-slide h2 {
    font-size: 32px;
  }
  
  .cta-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  
  .cta-row h3 {
    font-size: 28px;
  }
  
  .cta-row p {
    font-size: 15px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .service-page-grid {
    grid-template-columns: 1fr;
  }
  
  .service-card-detailed {
    flex-direction: column;
    padding: 30px 24px;
  }
  
  .fairs-group-block {
    padding: 24px 16px;
  }
  
  .fairs-grid {
    grid-template-columns: 1fr;
  }
}

/* Premium Form Styles */
.form-card {
  padding: 40px;
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-tabs {
  display: flex;
  background: var(--bg-muted);
  padding: 6px;
  border-radius: var(--radius-sm);
  gap: 6px;
  margin-bottom: 12px;
}

.form-tab-btn {
  flex: 1;
  padding: 14px;
  background: transparent;
  border: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--text-muted);
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.form-tab-btn.active {
  background: var(--bg-surface);
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.form-body {
  display: none;
}

.form-body.active {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

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

@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--secondary);
  display: flex;
  align-items: center;
  gap: 6px;
}

.form-label .material-icons {
  font-size: 18px;
  color: var(--primary);
}

.form-control {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  padding: 14px 16px;
  background: var(--bg-main);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  color: var(--text-main);
  transition: var(--transition);
  outline: none;
  width: 100%;
}

.form-control:focus {
  border-color: var(--primary);
  background: var(--bg-surface);
  box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.form-alert {
  padding: 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: slideIn 0.3s ease-out;
}

.form-alert.success {
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: #047857;
}

.form-alert.error {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: #b91c1c;
}

@keyframes slideIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.rotating {
  animation: rotation 1.5s infinite linear;
  display: inline-block;
}

@keyframes rotation {
  from { transform: rotate(0deg); }
  to { transform: rotate(359deg); }
}

/* ===== Marfo Final Overrides ===== */
:root {
  --primary: #f2dd00;
  --primary-hover: #d5c200;
  --secondary: #222222;
  --accent: #ffe90a;
}

.site-topbar { display:none !important; }
header#mainHeader { top:0 !important; background: rgba(255,255,255,0.94) !important; border-bottom: 1px solid rgba(0,0,0,.12) !important; }
header#mainHeader.scrolled { top:0 !important; }
main { padding-top: 90px !important; }
.hero-slider-wrapper { height: calc(100vh - 90px) !important; }

.nav-links a.btn,
.nav-links a.btn:hover,
.nav-links a.btn:focus {
  white-space: nowrap;
  min-width: 168px;
  text-align: center;
}

.nav-links a,
.footer-links a,
.footer-contact-list li span:last-child {
  color: #2f2f2f;
}

.section-title h2,
.page-hero h1,
.fairs-group-title,
.contact-card-info h3,
.form-label,
.service-card-content h3,
.corporate-card h3 {
  background: none !important;
  -webkit-text-fill-color: initial !important;
  color: #232323 !important;
}

h2:where(.fairs-group-title),
.section-title h2 {
  position: relative;
}

.section-title h2::after,
.page-hero h1::after {
  content: '';
  display: block;
  width: 72px;
  height: 4px;
  margin-top: 14px;
  border-radius: 99px;
  background: linear-gradient(90deg, #222222, #f2dd00);
}

.cta-band .btn,
.btn-secondary {
  background: linear-gradient(135deg, #f2dd00 0%, #ffe90a 100%) !important;
  color: #1f1f1f !important;
  box-shadow: 0 12px 26px rgba(242, 221, 0, .35) !important;
}

#visitorForm button[type="submit"],
#exhibitorForm button[type="submit"] {
  background: linear-gradient(135deg, #f2dd00 0%, #ffe90a 100%) !important;
  color: #1f1f1f !important;
  box-shadow: 0 10px 24px rgba(242, 221, 0, .32);
}

#siteFooter {
  background: #181818;
  color: #ededed;
  padding-top: 72px;
}

#siteFooter h3,
#siteFooter h4 { color: #ffffff; }
#siteFooter p,
#siteFooter li,
#siteFooter a { color: #d9d9d9; }
#siteFooter a:hover { color: #f2dd00; }

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.24);
}

.footer-socials a:hover {
  background: #f2dd00;
  color: #1f1f1f !important;
  border-color: #f2dd00;
}

.footer-lang-list {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.footer-lang-list a {
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 30px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 700;
}

.footer-lang-list a.is-active,
.footer-lang-list a:hover {
  background: #f2dd00;
  color: #1f1f1f !important;
  border-color: #f2dd00;
}

.floating-whatsapp,
.scroll-top-btn {
  position: fixed;
  right: 20px;
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 4000;
  box-shadow: 0 12px 30px rgba(0,0,0,.22);
}

.floating-whatsapp {
  bottom: 92px;
  background: #25D366;
  color: #fff;
  font-size: 28px;
}

.scroll-top-btn {
  bottom: 26px;
  background: #f2dd00;
  color: #1f1f1f;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: .25s ease;
}

.scroll-top-btn.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.wa-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.52);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 4500;
}

.wa-modal.open { display: flex; }

.wa-modal-inner {
  width: min(460px, 96vw);
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  position: relative;
}

.wa-modal-inner h4 { margin-bottom: 8px; color: #222; }
.wa-modal-inner p { margin-bottom: 16px; color: #555; }

.wa-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 0;
  background: #efefef;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.wa-number-list { display: grid; gap: 10px; }

.wa-number-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f7f7f7;
  border: 1px solid #ececec;
  border-radius: 12px;
  padding: 12px;
  color: #222;
  font-weight: 600;
}

.wa-number-list a i { color: #25D366; font-size: 20px; }

@media (max-width: 992px) {
  main { padding-top: 80px !important; }
  .hero-slider-wrapper { height: calc(100vh - 80px) !important; }
  .floating-whatsapp { bottom: 88px; }
  .scroll-top-btn { bottom: 20px; }
}

/* ===== Hotfix: Hero & Footer Contrast ===== */
.hero-slide h2,
.hero-slide p,
.hero-slide .hero-slide-badge,
.hero-slide .hero-slide-badge * {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

.section-title h2::after,
.page-hero h1::after {
  content: none !important;
  display: none !important;
}

.section-title {
  margin-bottom: 46px;
}

.section-title h2,
.page-hero h1 {
  position: relative;
  padding-bottom: 14px;
}

.section-title h2 {
  color: #1f2732 !important;
}

.page-hero h1 {
  color: #2a415a !important;
}

.footer-contact-list li span,
.footer-contact-list li span:last-child,
.footer-contact-list li,
#siteFooter .footer-contact-list li span:last-child,
#siteFooter .footer-contact-list li span {
  color: #e7e7e7 !important;
}

.footer-contact-list .material-icons {
  color: #f2dd00 !important;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 20px;
}

.designer-credit {
  font-size: 14px;
  font-weight: 600;
  color: #d7d7d7 !important;
}

.designer-credit a {
  color: #f2dd00 !important;
  text-decoration: none;
}

.designer-credit a:hover {
  color: #fff08f !important;
}

/* ===== Final Hero Readability ===== */
.page-hero {
  background:
    linear-gradient(135deg, #0f172a 0%, #111827 52%, #1f2937 100%) !important;
}

.page-hero h1 {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  text-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
}

.page-hero p {
  color: #f3f4f6 !important;
}

/* ===== Language Flags (Header + Footer) ===== */
.header-lang-wrap {
  display: flex;
  align-items: center;
}

.header-lang-list {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.04);
}

.header-lang-list a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  background: transparent;
}

.header-lang-list a:hover,
.header-lang-list a.is-active {
  background: #f2dd00;
  border-color: #d5c200;
  transform: translateY(-1px);
}

.lang-flag {
  font-size: 16px;
  line-height: 1;
}

.footer-lang-list a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-lang-list .lang-code {
  font-size: 11px;
  letter-spacing: 0.04em;
}

@media (max-width: 992px) {
  .header-lang-wrap {
    order: 9;
    width: 100%;
    justify-content: flex-start;
  }

  .header-lang-list {
    margin-top: 4px;
  }
}

.lang-flag-img {
  width: 18px;
  height: 13px;
  border-radius: 2px;
  object-fit: cover;
  display: inline-block;
  box-shadow: 0 0 0 1px rgba(0,0,0,.08);
}

/* ===== Header / Hero Gap + Corporate Dropdown Final Fix ===== */
header#mainHeader {
  top: 0 !important;
}

main {
  padding-top: var(--site-header-height, 90px) !important;
}

.hero-slider-wrapper,
.page-hero {
  margin-top: 0 !important;
}

#mainHeader .nav-links .nav-dropdown {
  position: relative;
  padding-bottom: 12px;
  margin-bottom: -12px;
}

#mainHeader .nav-links .nav-dropdown > .nav-dropdown-menu {
  margin: 0;
  list-style: none;
  position: absolute;
  top: calc(100% - 2px);
  left: 0;
  min-width: 260px;
  padding: 8px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.10);
  border-radius: 12px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--transition);
  pointer-events: none;
  z-index: 2600;
}

#mainHeader .nav-links .nav-dropdown > .nav-dropdown-menu li {
  list-style: none;
}

#mainHeader .nav-links .nav-dropdown > .nav-dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #1f2937;
}

#mainHeader .nav-links .nav-dropdown > .nav-dropdown-menu a::after {
  display: none !important;
}

#mainHeader .nav-links .nav-dropdown > .nav-dropdown-menu a:hover {
  background: #f3f4f6;
}

#mainHeader .nav-links .nav-dropdown:hover > .nav-dropdown-menu,
#mainHeader .nav-links .nav-dropdown:focus-within > .nav-dropdown-menu,
#mainHeader .nav-links .nav-dropdown.is-open > .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

@media (max-width: 992px) {
  header#mainHeader {
    top: 0 !important;
  }

  main {
    padding-top: var(--site-header-height, 80px) !important;
  }

  #mainHeader .nav-links .nav-dropdown {
    padding-bottom: 0;
    margin-bottom: 0;
  }

  #mainHeader .nav-links .nav-dropdown > .nav-dropdown-menu {
    position: static;
    min-width: 100%;
    margin-top: 8px;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    display: none;
  }

  #mainHeader .nav-links .nav-dropdown.is-open > .nav-dropdown-menu {
    display: block;
  }
}
