:root {
  --accent: #32A9BD;
  --accent-dark: #2896a8;
  --text: #1a1a2e;
  --muted: #555;
  --bg: #ffffff;
  --header-h: 88px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Saira", "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a { color: var(--accent); }
img, video { max-width: 100%; height: auto; display: block; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo img { height: 56px; width: auto; }
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1.4rem;
  padding: 6px 10px;
  cursor: pointer;
}
.main-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
}
.main-nav > a,
.main-nav .nav-parent {
  color: var(--text);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 400;
  padding: 10px 14px;
  border-radius: 999px;
}
.main-nav > a:hover,
.main-nav .nav-parent:hover,
.main-nav > a.active,
.main-nav .nav-group.active > .nav-parent {
  color: var(--accent);
}
.main-nav .nav-btn {
  background-image: url('../images/2021/02/btn.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  color: var(--text);
  padding: 12px 28px;
}
.nav-group { position: relative; }
.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  padding: 8px 0;
  z-index: 20;
}
.nav-group:hover .nav-dropdown,
.nav-group.open .nav-dropdown { display: block; }
.nav-dropdown a {
  display: block;
  padding: 10px 18px;
  color: var(--text);
  text-decoration: none;
  font-size: 0.95rem;
}
.nav-dropdown a:hover { background: #f5fafa; color: var(--accent); }

.site-main { min-height: 50vh; }
.elementor-page { overflow-x: hidden; }

/* Elementor layout essentials */
.elementor-page .elementor-section.elementor-section-height-min-height {
  min-height: 70vh;
}
.elementor-page .elementor-section:first-of-type {
  padding-top: 0;
}
.elementor-page .elementor-section:first-of-type .elementor-container {
  min-height: 70vh;
  align-items: center;
}
.elementor-page .elementor-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  padding: 0 16px;
}
.elementor-page .elementor-column {
  position: relative;
  min-height: 1px;
  flex-grow: 1;
}
.elementor-page .elementor-col-50 { width: 50%; flex: 0 0 50%; }
.elementor-page .elementor-col-33 { width: 33.333%; flex: 0 0 33.333%; }
.elementor-page .elementor-col-25 { width: 25%; flex: 0 0 25%; }
.elementor-page .elementor-col-100 { width: 100%; flex: 0 0 100%; }
.elementor-page .elementor-widget-wrap {
  width: 100%;
  padding: 10px;
}
.elementor-page .elementor-heading-title {
  font-family: "Saira", sans-serif;
  line-height: 1.2;
  margin: 0 0 12px;
}
.elementor-page .elementor-button {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 12px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
}
.elementor-page .elementor-button:hover { background: var(--accent-dark); color: #fff; }
.elementor-page .elementor-icon-box-wrapper {
  background: #fff;
  border-radius: 12px;
  padding: 24px 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  height: 100%;
}
.elementor-page .elementor-spacer-inner { min-height: 24px; }
.elementor-page .elementor-video { width: 100%; border-radius: 12px; }
.elementor-page .elementor-hidden-mobile { display: block; }
.elementor-page .elementor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 16px;
}
.elementor-page .elementor-slides-wrapper,
.elementor-page .swiper-wrapper {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
}
.elementor-page .swiper-slide { flex: 0 0 280px; scroll-snap-align: start; }

.site-footer {
  border-top: 1px solid #eee;
  padding: 32px 20px;
  text-align: center;
  color: var(--muted);
}
.footer-social {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.footer-social a { color: var(--muted); text-decoration: none; font-size: 0.9rem; }
.footer-social a:hover { color: var(--accent); }

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

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border-bottom: 1px solid #eee;
  }
  .main-nav.open { display: flex; }
  .nav-dropdown {
    position: static;
    box-shadow: none;
    border: none;
    padding-left: 12px;
  }
  .elementor-page .elementor-col-50,
  .elementor-page .elementor-col-33,
  .elementor-page .elementor-col-25 {
    width: 100%;
    flex: 0 0 100%;
  }
  .elementor-page .elementor-hidden-mobile { display: none !important; }
}
