/* TOP BANNER */
.top-banner {
  background: linear-gradient(90deg, #6a0dad, #e91e8c);
  color: #fff;
  text-align: center;
  padding: 10px 20px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.banner-btn {
  background: #fff;
  color: #6a0dad;
  padding: 5px 16px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  transition: opacity 0.2s;
}

.banner-btn:hover { opacity: 0.85; }

/* NAVBAR */
.navbar {
  background: #eaf0f0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: nowrap;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-evoke {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}

.logo-tech {
  color: #a78bfa;
  font-size: 11px;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  flex: 1;
  justify-content: center;
  margin: 0;
  padding: 0;
  white-space: nowrap;
  align-items: center;
}

.nav-links-right {
  margin-left: auto;
}

.nav-links a {
  color: #000000;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  transition: color 0.2s;
}

.nav-links a:hover { color: #e85d26; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.nav-search {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

.nav-search:hover { color: #fff; }

.btn-touch {
  background: #e85d26;
  color: #fff;
  padding: 10px 22px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: background 0.2s;
}

.btn-touch:hover { background: #cf4e1a; }

.hamburger {
  display: none;
  background: none;
  border: none;
  color: #1a1a2e;
  font-size: 22px;
  cursor: pointer;
  margin-left: auto;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: #0d0d2b;
  padding: 16px 24px;
  gap: 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.mobile-menu a {
  color: #ccc;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
}

.mobile-menu.open { display: flex; }

@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: block; }
  .logo-icon img { height: 35px !important; }
}

/* DROPDOWN */
.has-dropdown {
  position: relative;
}

.has-dropdown > a {
  display: flex;
  align-items: center;
  gap: 6px;
}

.has-dropdown > a i {
  font-size: 11px;
  transition: transform 0.2s;
}

.has-dropdown:hover > a i {
  transform: rotate(180deg);
}

/* invisible bridge to prevent gap-triggered close */
.has-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 16px;
}

.dropdown {
  position: absolute;
  top: calc(100% + 16px);
  left: 0;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  padding: 12px 8px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-width: 580px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.2s, transform 0.2s;
  z-index: 999;
}

.has-dropdown:hover .dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.dropdown a {
  color: #1a1a2e !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  padding: 10px 12px;
  border-radius: 6px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #f0f0f0;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s !important;
}

.dropdown a::after {
  content: '›';
  font-size: 16px;
  color: #aaa;
}

.dropdown a:hover {
  background: #f5f5fa;
  color: #7c5cbf !important;
}

.dropdown a:hover::after {
  color: #7c5cbf;
}

/* ===== FOOTER ===== */
.site-footer {
  font-family: 'Open Sans', Aptos, Helvetica, sans-serif;
}
.footer-top {
  background: linear-gradient(145deg, #0f766e 0%, #0284c7 55%, #1d4ed8 100%);
  padding: 36px 24px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand p {
  font-size: 14px;
  color: white;
  line-height: 1.75;
  margin: 16px 0 24px;
  max-width: 280px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-logo span {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.3px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 15px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.footer-social a:hover {
  background: rgba(255,255,255,0.3);
  color: #fff;
  transform: translateY(-2px);
}
.footer-col h5 {
  font-size: 16px;
  font-weight: bold;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul li a {
  font-size: 14px;
  color: white;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.2s, padding-left 0.2s;
  display: inline-block;
}
.footer-col ul li a:hover {
  color: #fff;
  padding-left: 4px;
}
.footer-bottom {
  background: #eaf0f0;
  padding: 20px 24px;
}
.footer-bottom .footer-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  grid-template-columns: unset;
  gap: 0;
}
.footer-bottom p {
  font-size: 13px;
  color: #000;
  font-weight: 700;
  margin: 0;
}
.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-links a {
  font-size: 13px;
  color: #000;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-bottom-links a:hover {
  color: #e85d26;
}

@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-bottom .footer-container {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  .footer-logo img { width: 150px !important; height: auto !important; }
}

/* Mobile dropdown */
.mobile-has-dropdown {
  display: flex;
  flex-direction: column;
}
.mobile-dropdown-toggle {
  background: none;
  border: none;
  color: #fff;
  font-size: 16px;
  font-family: 'Open Sans', Aptos, Helvetica, sans-serif;
  font-weight: 500;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-align: left;
}
.mobile-dropdown-toggle i {
  font-size: 12px;
  transition: transform 0.3s;
  color: rgba(255,255,255,0.5);
}
.mobile-has-dropdown.open .mobile-dropdown-toggle i {
  transform: rotate(180deg);
}
.mobile-dropdown-items {
  display: none;
  flex-direction: column;
  gap: 0;
  margin-top: 10px;
  padding-left: 12px;
  border-left: 2px solid rgba(124,92,191,0.4);
}
.mobile-has-dropdown.open .mobile-dropdown-items {
  display: flex;
}
.mobile-dropdown-items a {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  padding: 8px 0;
  transition: color 0.2s;
}
.mobile-dropdown-items a:hover {
  color: #a78bfa;
}
