
@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&family=DM+Sans:wght@300;400;500;600&display=swap");

/* ---- CSS VARIABLES ---- */
:root {
  --ve-dark: #000000;
  --ve-dark2: #000000;
  --ve-navy: #000000;
  --ve-gold: #d4a017;
  --ve-gold2: #e8b84b;
  --ve-light: #f4f7fb;
  --ve-white: #ffffff;
  --ve-text: #000000;
  --ve-border: #e2e8f0;
  --ve-radius: 12px;
  --ve-shadow: 0 8px 30px rgba(13, 27, 42, 0.10);
  --ve-trans: all 0.3s ease;
}

/* ---- RESET BODY FONTS ---- */
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--ve-text);
  background-color: #000000;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Nunito', sans-serif;
  color: var(--ve-dark);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.ve-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--ve-dark);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
  transition: var(--ve-trans);
}

.ve-header.scrolled {
  background: #000000;
  backdrop-filter: blur(14px);
}

.ve-nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  min-height: 72px;
  border-bottom: 1px solid #d89d063b;
  /* margin: 5px 0px; */
}

/* Logo */
.ve-logo a {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.ve-logo-icon {
  width: 38px;
  height: 38px;
  background: var(--ve-gold);
  color: var(--ve-dark);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 20px;
}

.ve-logo-text {
  font-family: 'Nunito', sans-serif;
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}

.ve-logo-text strong {
  color: var(--ve-gold);
  font-weight: 900;
}

/* Nav links */
.ve-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 6px;
}

.ve-nav ul li {
  position: relative;
}

.ve-nav ul li a {
  display: block;
  padding: 8px 14px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 6px;
  transition: var(--ve-trans);
}

.ve-nav ul li a:hover,
.ve-nav ul li a.active {
  color: #fff;
  background: rgba(212, 160, 23, 0.15);
}

.ve-nav ul li a.active {
  color: var(--ve-gold);
}

/* Dropdown */
.ve-nav .has-drop:hover .ve-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.ve-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: var(--ve-dark2);
  border-radius: 14px;
  padding: 14px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: var(--ve-trans);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.ve-dropdown li a {
  padding: 14px 20px;
  border-radius: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.ve-dropdown li a:hover {
  color: #fff;
  background: rgba(212, 160, 23, 0.12);
}

/* CTA button */
.ve-nav-cta .ve-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ve-gold);
  color: var(--ve-dark);
  padding: 14px 22px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: var(--ve-trans);
}

.ve-cta-btn:hover {
  background: var(--ve-gold2);
  transform: translateY(-1px);
}

/* Mobile toggle */
.ve-toggler {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.ve-toggler span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--ve-trans);
}

/* Mobile menu */
.ve-mobile-menu {
  display: none;
  background: var(--ve-dark2);
  padding: 16px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.ve-mobile-menu.open {
  display: block;
}

.ve-mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ve-mobile-menu ul li a {
  display: block;
  padding: 12px 8px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* ============================================================
   HERO
   ============================================================ */
.ve-hero {
  display: flex;
  min-height: 100vh;
  padding-top: 72px;
  background: var(--ve-dark);
  overflow: hidden;
}

.ve-hero-left {
  flex: 0 0 55%;
  padding: 50px 40px 10px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.ve-hero-badge {
  display: inline-block;
  background: rgba(212, 160, 23, 0.15);
  color: var(--ve-gold);
  border: 1px solid rgba(212, 160, 23, 0.3);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 28px;
  letter-spacing: 0.5px;
}

.ve-hero-left h1 {
  font-size: 42px;
  line-height: 1.1;
  color: #fff;
  font-weight: 900;
}

.ve-hero-left h1 .ve-highlight {
  color: var(--ve-gold);
}

.ve-hero-left p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 480px;
}

/* Hero buttons */
.ve-hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.ve-btn-primary {
  display: inline-block;
  background: var(--ve-gold);
  color: var(--ve-dark);
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: var(--ve-trans);
}

.ve-btn-primary:hover {
  background: var(--ve-gold2);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 160, 23, 0.4);
  color: var(--ve-dark);
}

.ve-btn-ghost {
  display: inline-block;
  border: 2px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: var(--ve-trans);
}

.ve-btn-ghost:hover {
  border-color: var(--ve-gold);
  color: var(--ve-gold);
  background: rgba(212, 160, 23, 0.08);
}

/* Hero stats */
.ve-hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}

.ve-stat strong {
  display: block;
  font-size: 28px;
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
}

.ve-stat span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ve-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
}

/* Hero right */
.ve-hero-right {
  flex: 0 0 45%;
  position: relative;
  overflow: hidden;
}

.ve-hero-img-main {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.ve-hero-img-main::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, var(--ve-dark) 0%, transparent 40%);
}

.ve-hero-img-accent {
  position: absolute;
  bottom: 40px;
  right: 40px;
  width: 200px;
  height: 140px;
  border-radius: 14px;
  background-size: cover;
  background-position: center;
  border: 3px solid var(--ve-gold);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  z-index: 3;
}

.ve-float-card {
  position: absolute;
  top: 60px;
  right: 60px;
  z-index: 4;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 14px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(14px);
}

.ve-float-card i {
  font-size: 28px;
  color: var(--ve-gold);
}

.ve-float-card strong {
  display: block;
  font-size: 22px;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  color: var(--ve-dark);
}

.ve-float-card span {
  font-size: 12px;
  color: var(--ve-text);
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.ve-trust-bar {
  background: var(--ve-gold);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}

.ve-trust-inner {
  display: inline-flex;
  gap: 60px;
  animation: ve-marquee 25s linear infinite;
}

.ve-trust-inner span {
  font-size: 13px;
  font-weight: 700;
  color: var(--ve-dark);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.ve-trust-inner span i {
  font-size: 14px;
}

@keyframes ve-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ============================================================
   SECTION SHARED
   ============================================================ */
.ve-section {
  /* padding: 100px 0; */
}

.ve-section-header {
  margin-bottom: 60px;
}

.ve-section-tag {
  display: inline-block;
  background: rgba(212, 160, 23, 0.1);
  color: var(--ve-gold);
  border: 1px solid rgba(212, 160, 23, 0.25);
  border-radius: 50px;
  padding: 5px 16px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
}

.ve-section-header h2 {
  font-size: 42px;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 14px;
  line-height: 1.2;
}

.ve-section-header h2 span {
  color: var(--ve-gold);
}

.ve-section-header p {
  font-size: 16px;
  color: #ffffff;
  max-width: 580px;
  margin: 0 auto;
}

/* ============================================================
   SERVICES GRID
   ============================================================ */
.ve-services-section {
  background: #000000;
}

.ve-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.ve-service-card {
  background: #fff;
  border-radius: var(--ve-radius);
  padding: 36px 30px;
  transition: var(--ve-trans);
  border: 1px solid var(--ve-border);
  position: relative;
  overflow: hidden;
}

.ve-service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ve-gold), var(--ve-gold2));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--ve-trans);
}

.ve-service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--ve-shadow);
}

.ve-service-card:hover::before {
  transform: scaleX(1);
}

.ve-service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--ve-dark), var(--ve-navy));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  font-size: 26px;
  color: var(--ve-gold);
}

.ve-service-card h4 {
  font-size: 18px;
  font-weight: 800;
  color: var(--ve-dark);
  margin-bottom: 14px;
}

.ve-service-card p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: var(--ve-text);
}

.ve-card-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--ve-gold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--ve-trans);
}

.ve-card-link:hover {
  gap: 14px;
  color: var(--ve-dark);
}

/* ============================================================
   WHY US
   ============================================================ */
.ve-whyus-section {
  background: #fff;
}

.ve-whyus-img-wrap {
  position: relative;
  padding-bottom: 40px;
  padding-right: 40px;
}

.ve-whyus-img-main {
  height: 480px;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
}

.ve-whyus-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  background: var(--ve-gold);
  border-radius: 14px;
  padding: 22px 28px;
  text-align: center;
  min-width: 160px;
}

.ve-whyus-badge strong {
  display: block;
  font-size: 40px;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  color: var(--ve-dark);
}

.ve-whyus-badge span {
  font-size: 12px;
  font-weight: 600;
  color: var(--ve-dark);
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.ve-whyus-content {
  padding-left: 40px;
}

.ve-whyus-content h2 {
  font-size: 40px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 16px;
}

.ve-whyus-content h2 span {
  color: var(--ve-gold);
}

.ve-whyus-content>p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 32px;
}

.ve-checklist {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.ve-check-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.ve-check-item>i {
  font-size: 22px;
  color: var(--ve-gold);
  margin-top: 2px;
  flex-shrink: 0;
}

.ve-check-item strong {
  display: block;
  font-size: 16px;
  font-weight: 800;
  color: var(--ve-dark);
  margin-bottom: 4px;
}

.ve-check-item p {
  font-size: 14px;
  color: var(--ve-text);
  margin: 0;
  line-height: 1.6;
}

.mt-30 {
  margin-top: 30px;
}

/* ============================================================
   COUNTERS
   ============================================================ */
.ve-counter-section {
  background: linear-gradient(135deg, var(--ve-dark) 0%, var(--ve-navy) 100%);
  padding: 70px 0;
}

.ve-counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.ve-counter-item {
  text-align: center;
  padding: 30px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.ve-counter-item:last-child {
  border-right: none;
}

.ve-counter-item i {
  font-size: 36px;
  color: var(--ve-gold);
  margin-bottom: 14px;
  display: block;
}

.ve-counter-item strong {
  font-size: 46px;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.ve-counter-item span {
  font-size: 24px;
  color: var(--ve-gold);
  font-weight: 700;
}

.ve-counter-item p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.ve-testimonials-section {
  background: var(--ve-light);
}

.ve-testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.ve-testi-card {
  background: #fff;
  border-radius: var(--ve-radius);
  padding: 32px 28px;
  box-shadow: var(--ve-shadow);
  border: 1px solid var(--ve-border);
  transition: var(--ve-trans);
}

.ve-testi-card:hover {
  transform: translateY(-4px);
}

.ve-testi-stars {
  font-size: 18px;
  color: var(--ve-gold);
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.ve-testi-card>p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--ve-text);
  margin-bottom: 24px;
  font-style: italic;
}

.ve-testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.ve-testi-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

.ve-testi-author strong {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: var(--ve-dark);
}

.ve-testi-author span {
  font-size: 13px;
  color: var(--ve-text);
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.ve-cta-banner {
  position: relative;
  padding: 90px 0;
  background-size: cover;
  background-position: center;
}

.ve-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13, 27, 42, 0.92) 60%, rgba(13, 27, 42, 0.6));
}

.ve-cta-content {
  position: relative;
  z-index: 2;
}

.ve-cta-content h2 {
  font-size: 38px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 14px;
}

.ve-cta-content h2 span {
  color: var(--ve-gold);
}

.ve-cta-content p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
}

.ve-btn-white {
  display: inline-block;
  background: #fff;
  color: var(--ve-dark);
  padding: 16px 34px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  transition: var(--ve-trans);
}

.ve-btn-white:hover {
  background: var(--ve-gold);
  color: var(--ve-dark);
  transform: translateY(-2px);
}

.text-lg-right {
  text-align: right;
}

/* ============================================================
   INSIGHTS
   ============================================================ */
.ve-insights-section {
  background: #fff;
}

.ve-insight-card {
  border-radius: var(--ve-radius);
  overflow: hidden;
  border: 1px solid var(--ve-border);
  transition: var(--ve-trans);
  background: #fff;
}

.ve-insight-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--ve-shadow);
}

.ve-insight-img {
  height: 220px;
  background-size: cover;
  background-position: center;
}

.ve-insight-body {
  padding: 26px;
}

.ve-insight-cat {
  display: inline-block;
  background: rgba(212, 160, 23, 0.1);
  color: var(--ve-gold);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 4px;
  padding: 4px 14px;
  margin-bottom: 12px;
}

.ve-insight-body h5 a {
  font-size: 17px;
  font-weight: 800;
  color: var(--ve-dark);
  text-decoration: none;
  line-height: 1.4;
  display: block;
  margin-bottom: 14px;
}

.ve-insight-body h5 a:hover {
  color: var(--ve-gold);
}

.ve-insight-body>p {
  font-size: 14px;
  color: var(--ve-text);
  line-height: 1.7;
  margin-bottom: 16px;
}

.ve-insight-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ve-insight-meta span {
  font-size: 13px;
  color: #aaa;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.ve-insight-meta a {
  font-size: 13px;
  font-weight: 700;
  color: var(--ve-gold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: var(--ve-trans);
}

.ve-insight-meta a:hover {
  gap: 14px;
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
.ve-newsletter-section {
  background: linear-gradient(135deg, var(--ve-dark) 0%, var(--ve-navy) 100%);
  padding: 60px 0;
}

.ve-newsletter-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.ve-nl-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.ve-nl-left i {
  font-size: 42px;
  color: var(--ve-gold);
  flex-shrink: 0;
}

.ve-nl-left h3 {
  font-size: 22px;
  color: #fff;
  font-weight: 900;
  margin-bottom: 4px;
}

.ve-nl-left p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}

.ve-nl-form {
  display: flex;
  gap: 0;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid rgba(212, 160, 23, 0.3);
}

.ve-nl-form input {
  background: rgba(255, 255, 255, 0.08);
  border: none;
  padding: 14px 20px;
  color: #fff;
  font-size: 14px;
  width: 300px;
  outline: none;
}

.ve-nl-form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.ve-nl-form button {
  background: var(--ve-gold);
  color: var(--ve-dark);
  border: none;
  padding: 14px 28px;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  transition: var(--ve-trans);
}

.ve-nl-form button:hover {
  background: var(--ve-gold2);
}

.ve-footer {
  position: relative !important;
  background: var(--ve-dark) !important;
  padding: 80px 0 0;
  overflow: hidden;
}

.ve-footer::before {
  content: "";
  position: absolute !important;

  top: 0 !important;
  left: 8% !important;
  right: 8% !important;

  width: auto;
  height: 1px !important;

  display: block !important;

  background: linear-gradient(90deg,
      transparent 0%,
      #d4a017 50%,
      transparent 100%) !important;

  z-index: 10 !important;
}

.mb-50 {
  margin-bottom: 50px;
}

.ve-footer-brand p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
  margin: 18px 0 24px;
}

.ve-footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  margin-bottom: 14px;
}

.ve-social {
  display: flex;
  gap: 14px;
}

.ve-social a {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  text-decoration: none;
  transition: var(--ve-trans);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.ve-social a:hover {
  background: var(--ve-gold);
  color: var(--ve-dark);
  border-color: var(--ve-gold);
}

.ve-footer-title {
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ve-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ve-footer-links li {
  margin-bottom: 14px;
}

.ve-footer-links li a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: var(--ve-trans);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.ve-footer-links li a::before {
  content: '›';
  color: var(--ve-gold);
  font-size: 16px;
}

.ve-footer-links li a:hover {
  color: var(--ve-gold);
  padding-left: 4px;
}

.ve-footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ve-footer-contact li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  line-height: 1.6;
}

.ve-footer-contact li i {
  color: var(--ve-gold);
  margin-top: 2px;
  flex-shrink: 0;
}

.ve-footer-bottom {
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 20px;
  padding: 22px 0;
}

.ve-footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.ve-footer-bottom-inner p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  margin: 0;
}

.ve-footer-bottom-inner ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
}

.ve-footer-bottom-inner ul li a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  transition: var(--ve-trans);
}

.ve-footer-bottom-inner ul li a:hover {
  color: var(--ve-gold);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:1199px) {
  .ve-hero-left {
    padding: 70px 40px;
  }

  .ve-hero-left h1 {
    font-size: 50px;
  }

  .ve-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ve-counter-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ve-testi-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width:991px) {
  .ve-hero {
    flex-direction: column;
    min-height: auto;
  }

  .ve-hero-left {
    flex: none;
    padding: 100px 30px 60px;
  }

  .ve-hero-right {
    flex: none;
    height: 350px;
  }

  .ve-nav,
  .ve-nav-cta {
    display: none;
  }

  .ve-toggler {
    display: flex;
  }

  .ve-whyus-content {
    padding-left: 0;
    margin-top: 40px;
  }

  .ve-newsletter-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .ve-nl-form {
    width: 100%;
  }

  .ve-nl-form input {
    flex: 1;
    width: auto;
  }
}

@media (max-width:767px) {
  .ve-hero-left h1 {
    font-size: 38px;
  }

  .ve-services-grid,
  .ve-testi-grid,
  .ve-counter-grid {
    grid-template-columns: 1fr;
  }

  .ve-hero-stats {
    flex-wrap: wrap;
    gap: 16px;
  }

  .ve-nav-wrap {
    padding: 0 20px;
  }

  .ve-footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  .ve-cta-content h2 {
    font-size: 28px;
  }

  .text-lg-right {
    text-align: left;
    margin-top: 20px;
  }

  .ve-counter-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .ve-counter-item:last-child {
    border-bottom: none;
  }
}

/* ============================================================
   HIDE OLD HEADER (replaced by ve-header)
   ============================================================ */
.header-area {
  display: none !important;
}

/* Ensure body offset for fixed navbar */
body {
  padding-top: 0;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.ve-page-hero {
  position: relative;
  padding: 160px 0 90px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.ve-page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 27, 42, 0.92) 0%, rgba(13, 27, 42, 0.6) 100%);
}

.ve-page-hero-content {
  position: relative;
  z-index: 2;
}

.ve-page-hero-content h1 {
  font-size: 50px;
  font-weight: 900;
  color: #fff;
  margin: 12px 0 20px;
  line-height: 1.15;
}

.ve-page-hero-content h1 span {
  color: var(--ve-gold);
}

.ve-breadcrumb {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 14px;
  align-items: center;
}

.ve-breadcrumb li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
}

.ve-breadcrumb li::after {
  content: '/';
  margin-left: 14px;
}

.ve-breadcrumb li:last-child::after {
  display: none;
}

.ve-breadcrumb li a {
  color: var(--ve-gold);
  text-decoration: none;
}

.ve-breadcrumb li.active {
  color: rgba(255, 255, 255, 0.8);
}

.ve-post-meta-hero {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.ve-post-meta-hero span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.ve-about-img-stack {
  position: relative;
  padding-bottom: 60px;
  padding-right: 60px;
}

.ve-about-img-1 {
  height: 420px;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
}

.ve-about-img-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 220px;
  height: 180px;
  border-radius: 14px;
  background-size: cover;
  background-position: center;
  border: 4px solid var(--ve-gold);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.ve-about-ribbon {
  position: absolute;
  top: 30px;
  left: -20px;
  background: var(--ve-gold);
  border-radius: 12px;
  padding: 20px 24px;
  text-align: center;
  box-shadow: 0 14px 30px rgba(212, 160, 23, 0.35);
}

.ve-about-ribbon strong {
  display: block;
  font-size: 36px;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  color: var(--ve-dark);
}

.ve-about-ribbon span {
  font-size: 14px;
  font-weight: 700;
  color: var(--ve-dark);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.ve-about-text {
  padding-left: 50px;
}

.ve-about-text h2 {
  font-size: 38px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 16px;
}

.ve-about-text h2 span {
  color: var(--ve-gold);
}

.ve-lead {
  font-size: 17px;
  color: var(--ve-dark);
  font-weight: 500;
  margin-bottom: 16px;
  line-height: 1.7;
}

.ve-about-features {
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ve-af-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: var(--ve-text);
}

.ve-af-item i {
  color: var(--ve-gold);
  font-size: 14px;
}

/* MVV Cards */
.ve-mvv-section {
  background: var(--ve-dark);
  padding: 80px 0;
}

.ve-mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.ve-mvv-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--ve-radius);
  padding: 40px 30px;
  text-align: center;
  transition: var(--ve-trans);
}

.ve-mvv-card:hover {
  background: rgba(212, 160, 23, 0.08);
  border-color: rgba(212, 160, 23, 0.3);
}

.ve-mvv-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(212, 160, 23, 0.2), rgba(212, 160, 23, 0.05));
  border: 1px solid rgba(212, 160, 23, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 26px;
  color: var(--ve-gold);
}

.ve-mvv-card h4 {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.ve-mvv-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
}

/* Team */
.ve-team-section {
  background: var(--ve-light);
}

.ve-team-card {
  background: #fff;
  border-radius: var(--ve-radius);
  overflow: hidden;
  box-shadow: var(--ve-shadow);
  transition: var(--ve-trans);
  margin-bottom: 30px;
}

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

.ve-team-img {
  height: 280px;
  background-size: cover;
  background-position: center top;
}

.ve-team-info {
  padding: 22px 24px;
}

.ve-team-info h5 {
  font-size: 18px;
  font-weight: 800;
  color: var(--ve-dark);
  margin-bottom: 4px;
}

.ve-team-info span {
  font-size: 13px;
  color: var(--ve-text);
  display: block;
  margin-bottom: 14px;
}

.ve-team-social {
  display: flex;
  gap: 8px;
}

.ve-team-social a {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: var(--ve-light);
  color: var(--ve-text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  text-decoration: none;
  transition: var(--ve-trans);
}

.ve-team-social a:hover {
  background: var(--ve-gold);
  color: var(--ve-dark);
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.ve-process-section {
  background: var(--ve-dark);
  padding: 90px 0;
}

.ve-process-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 50px;
}

.ve-process-step {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--ve-radius);
  padding: 36px 28px;
  text-align: center;
  flex: 1;
  min-width: 180px;
  max-width: 220px;
  transition: var(--ve-trans);
}

.ve-process-step:hover {
  background: rgba(212, 160, 23, 0.08);
  border-color: rgba(212, 160, 23, 0.3);
}

.ve-process-num {
  font-size: 40px;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  color: rgba(212, 160, 23, 0.3);
  margin-bottom: 12px;
  line-height: 1;
}

.ve-process-step h5 {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
}

.ve-process-step p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  margin: 0;
}

.ve-process-arrow {
  font-size: 24px;
  color: rgba(212, 160, 23, 0.4);
  flex-shrink: 0;
}

/* FAQ */
.ve-faq-section {
  background: var(--ve-light);
}

.ve-faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ve-faq-item {
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--ve-border);
  overflow: hidden;
}

.ve-faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  cursor: pointer;
  gap: 16px;
}

.ve-faq-q span {
  font-size: 15px;
  font-weight: 700;
  color: var(--ve-dark);
}

.ve-faq-q i {
  color: var(--ve-gold);
  font-size: 14px;
  flex-shrink: 0;
}

.ve-faq-a {
  padding: 0 22px 18px;
  font-size: 14px;
  color: var(--ve-text);
  line-height: 1.8;
  display: none;
}

.ve-faq-item.open .ve-faq-a {
  display: block;
}

.ve-faq-item.open .ve-faq-q {
  border-bottom: 1px solid var(--ve-border);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.ve-contact-cards-section {
  /* background: var(--ve-dark);
  padding: 0;
  margin-top: -1px; */
}

.ve-contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.ve-contact-info-card {
  padding: 50px 40px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.ve-contact-info-card:last-child {
  border-right: none;
}

.ve-ci-icon {
  width: 60px;
  height: 60px;
  background: rgba(212, 160, 23, 0.15);
  border: 1px solid rgba(212, 160, 23, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 22px;
  color: var(--ve-gold);
}

.ve-contact-info-card h5 {
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
}

.ve-contact-info-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
  line-height: 1.7;
}

.ve-contact-info-card small {
  font-size: 12px;
  opacity: 0.6;
}

.ve-contact-form-wrap {
  background: #fff;
  border-radius: 16px;
  padding: 50px;
  box-shadow: var(--ve-shadow);
}

.ve-contact-form-wrap h2 {
  font-size: 34px;
  font-weight: 900;
  margin-bottom: 14px;
}

.ve-contact-form-wrap h2 span {
  color: var(--ve-gold);
}

.ve-contact-form-wrap>p {
  font-size: 15px;
  color: var(--ve-text);
  margin-bottom: 30px;
}

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

.ve-form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.ve-form-group label {
  font-size: 13px;
  font-weight: 700;
  color: var(--ve-dark);
  margin-bottom: 7px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ve-form-group input,
.ve-form-group select,
.ve-form-group textarea {
  border: 1px solid var(--ve-border);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  color: var(--ve-dark);
  outline: none;
  transition: var(--ve-trans);
  font-family: 'DM Sans', sans-serif;
  background: #fff;
}

.ve-form-group input:focus,
.ve-form-group select:focus,
.ve-form-group textarea:focus {
  border-color: var(--ve-gold);
  box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.12);
}

.ve-form-group textarea {
  resize: vertical;
}

.ve-contact-aside {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-left: 20px;
}

.ve-ca-box {
  background: var(--ve-dark);
  border-radius: 14px;
  padding: 32px;
}

.ve-ca-box h4 {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
}

.ve-ca-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ve-ca-list li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 14px;
}

.ve-ca-list li i {
  color: var(--ve-gold);
}

.ve-ca-hours {
  background: var(--ve-light);
  border-radius: 14px;
  padding: 28px;
}

.ve-ca-hours h5 {
  font-size: 16px;
  font-weight: 800;
  color: var(--ve-dark);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ve-ca-hours h5 i {
  color: var(--ve-gold);
}

.ve-ca-hours ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ve-ca-hours ul li {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--ve-text);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--ve-border);
}

.ve-ca-hours ul li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.ve-ca-hours ul li strong {
  color: var(--ve-dark);
  font-weight: 700;
}

.ve-ca-social {
  background: #fff;
  border-radius: 14px;
  padding: 24px;
  border: 1px solid var(--ve-border);
}

.ve-ca-social h5 {
  font-size: 15px;
  font-weight: 800;
  color: var(--ve-dark);
  margin-bottom: 16px;
}

/* ============================================================
   BLOG / POST
   ============================================================ */
.ve-pagination {
  display: flex;
  gap: 8px;
  margin-top: 40px;
}

.ve-pagination a {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  background: var(--ve-light);
  color: var(--ve-dark);
  transition: var(--ve-trans);
  border: 1px solid var(--ve-border);
}

.ve-pagination a:hover,
.ve-pagination a.active {
  background: var(--ve-gold);
  color: var(--ve-dark);
  border-color: var(--ve-gold);
}

.ve-sidebar {
  position: sticky;
  top: 90px;
}

.ve-sidebar-widget {
  background: #fff;
  border-radius: var(--ve-radius);
  padding: 28px;
  margin-bottom: 24px;
  border: 1px solid var(--ve-border);
}

.ve-sidebar-title {
  font-size: 16px;
  font-weight: 900;
  color: var(--ve-dark);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--ve-gold);
  display: inline-block;
}

.ve-search-box {
  display: flex;
  border: 1px solid var(--ve-border);
  border-radius: 8px;
  overflow: hidden;
}

.ve-search-box input {
  flex: 1;
  border: none;
  padding: 12px 14px;
  font-size: 14px;
  outline: none;
  font-family: 'DM Sans', sans-serif;
}

.ve-search-box button {
  background: var(--ve-gold);
  border: none;
  padding: 0 18px;
  cursor: pointer;
  color: var(--ve-dark);
  font-size: 14px;
}

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

.ve-cat-list li {
  border-bottom: 1px solid var(--ve-border);
}

.ve-cat-list li:last-child {
  border-bottom: none;
}

.ve-cat-list li a {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  font-size: 14px;
  color: var(--ve-text);
  text-decoration: none;
  transition: var(--ve-trans);
}

.ve-cat-list li a:hover {
  color: var(--ve-gold);
}

.ve-cat-list li a span {
  background: var(--ve-light);
  border-radius: 4px;
  padding: 2px 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--ve-dark);
}

.ve-recent-post {
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--ve-border);
}

.ve-recent-post:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.ve-rp-img {
  width: 64px;
  height: 54px;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

.ve-recent-post a {
  font-size: 13px;
  font-weight: 700;
  color: var(--ve-dark);
  text-decoration: none;
  display: block;
  margin-bottom: 4px;
  line-height: 1.4;
  transition: var(--ve-trans);
}

.ve-recent-post a:hover {
  color: var(--ve-gold);
}

.ve-recent-post span {
  font-size: 12px;
  color: #aaa;
  display: flex;
  align-items: center;
  gap: 5px;
}

.ve-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ve-tags a {
  background: var(--ve-light);
  color: var(--ve-text);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--ve-trans);
  border: 1px solid var(--ve-border);
}

.ve-tags a:hover {
  background: var(--ve-gold);
  color: var(--ve-dark);
  border-color: var(--ve-gold);
}

/* Single post */
.ve-article {
  background: #fff;
  border-radius: 16px;
  padding: 0;
  overflow: hidden;
  box-shadow: var(--ve-shadow);
  margin-bottom: 40px;
}

.ve-article-featured {
  height: 380px;
  background-size: cover;
  background-position: center;
}

.ve-article-body {
  padding: 40px;
}

.ve-article-body h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--ve-dark);
  margin: 28px 0 12px;
}

.ve-article-body p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--ve-text);
  margin-bottom: 16px;
}

.ve-article-lead {
  font-size: 17px;
  font-weight: 500;
  color: var(--ve-dark);
  line-height: 1.7;
  border-left: 4px solid var(--ve-gold);
  padding-left: 20px;
  margin-bottom: 28px;
}

.ve-blockquote {
  background: var(--ve-light);
  border-left: 4px solid var(--ve-gold);
  border-radius: 0 14px 14px 0;
  padding: 24px 28px;
  margin: 30px 0;
}

.ve-blockquote p {
  font-size: 18px;
  font-style: italic;
  font-weight: 600;
  color: var(--ve-dark);
  margin-bottom: 8px;
}

.ve-blockquote cite {
  font-size: 13px;
  color: var(--ve-text);
  font-style: normal;
}

.ve-article-tags {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--ve-border);
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.ve-article-tags strong {
  font-size: 13px;
  color: var(--ve-dark);
  font-weight: 700;
}

.ve-article-share {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 16px;
}

.ve-article-share strong {
  font-size: 13px;
  color: var(--ve-dark);
  font-weight: 700;
}

.ve-article-share a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--ve-light);
  color: var(--ve-text);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--ve-trans);
}

.ve-article-share a:hover {
  background: var(--ve-gold);
  color: var(--ve-dark);
}

/* Comments */
.ve-comments-section {
  margin-bottom: 40px;
}

.ve-comments-section h4,
.ve-comment-form-wrap h4 {
  font-size: 22px;
  font-weight: 800;
  color: var(--ve-dark);
  margin-bottom: 24px;
}

.ve-comment {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--ve-border);
}

.ve-comment.ve-comment-reply {
  margin-left: 60px;
}

.ve-comment:last-child {
  border-bottom: none;
}

.ve-comment-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

.ve-comment-body {
  flex: 1;
}

.ve-comment-meta {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 8px;
}

.ve-comment-meta strong {
  font-size: 15px;
  font-weight: 800;
  color: var(--ve-dark);
}

.ve-comment-meta span {
  font-size: 12px;
  color: #aaa;
}

.ve-comment-body p {
  font-size: 14px;
  color: var(--ve-text);
  line-height: 1.7;
  margin-bottom: 14px;
}

.ve-reply-btn {
  font-size: 12px;
  font-weight: 700;
  color: var(--ve-gold);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ve-comment-form-wrap {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--ve-shadow);
}

/* Responsive additions */
@media(max-width:991px) {
  .ve-about-text {
    padding-left: 0;
    margin-top: 40px;
  }

  .ve-contact-cards-grid {
    grid-template-columns: 1fr;
  }

  .ve-contact-info-card {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .ve-mvv-grid {
    grid-template-columns: 1fr;
  }

  .ve-contact-aside {
    padding-left: 0;
    margin-top: 30px;
  }

  .ve-process-grid {
    flex-direction: column;
  }

  .ve-process-arrow {
    transform: rotate(90deg);
  }

  .ve-page-hero-content h1 {
    font-size: 36px;
  }
}

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

  .ve-contact-form-wrap {
    padding: 28px;
  }

  .ve-article-body {
    padding: 24px;
  }

  .ve-about-img-stack {
    padding-bottom: 30px;
    padding-right: 30px;
  }

  .ve-about-img-2 {
    width: 150px;
    height: 120px;
  }
}

/* ============================================================
   PAGE-SPECIFIC COMPONENTS (all inner pages)
   ============================================================ */

/* Page Hero */
.ve-page-hero {
  min-height: 380px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding-bottom: 60px;
  margin-top: 72px;
}

.ve-page-hero-sm {
  min-height: 460px;
}

.ve-page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 27, 42, 0.5) 0%, rgba(13, 27, 42, 0.85) 100%);
}

.ve-page-hero-content {
  position: relative;
  z-index: 2;
}

.ve-page-hero-content h1 {
  font-size: 46px;
  font-weight: 900;
  color: #fff;
  margin: 14px 0 18px;
  line-height: 1.15;
}

.ve-page-hero-content h1 span {
  color: var(--ve-gold);
}

.ve-post-meta-hero {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.ve-post-meta-hero span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Breadcrumb */
.ve-breadcrumb {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 14px;
}

.ve-breadcrumb li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.ve-breadcrumb li a {
  color: var(--ve-gold);
  text-decoration: none;
}

.ve-breadcrumb li a:hover {
  color: #fff;
}

.ve-breadcrumb li.active {
  color: rgba(255, 255, 255, 0.5);
}

.ve-breadcrumb li:not(:last-child)::after {
  content: '/';
  margin-left: 14px;
  color: rgba(255, 255, 255, 0.3);
}

/* About Page */
.ve-about-img-stack {
  position: relative;
  padding: 0 40px 40px 0;
}

.ve-about-img-1 {
  height: 400px;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
}

.ve-about-img-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 230px;
  border-radius: 14px;
  background-size: cover;
  background-position: center;
  border: 4px solid #fff;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.ve-about-ribbon {
  position: absolute;
  top: 30px;
  left: -20px;
  background: var(--ve-gold);
  border-radius: 12px;
  padding: 18px 22px;
  text-align: center;
}

.ve-about-ribbon strong {
  display: block;
  font-size: 36px;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  color: var(--ve-dark);
}

.ve-about-ribbon span {
  font-size: 14px;
  font-weight: 700;
  color: var(--ve-dark);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.ve-about-text {
  padding-left: 40px;
}

.ve-about-text h2 {
  font-size: 38px;
  font-weight: 900;
  margin-bottom: 16px;
}

.ve-about-text h2 span {
  color: var(--ve-gold);
}

.ve-lead {
  font-size: 17px;
  font-weight: 500;
  color: var(--ve-dark);
  margin-bottom: 14px;
  line-height: 1.7;
}

.ve-about-text>p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 24px;
}

.ve-about-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 14px;
}

.ve-af-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--ve-dark);
  font-weight: 500;
}

.ve-af-item i {
  color: var(--ve-gold);
  font-size: 14px;
}

/* MVV Section */
.ve-mvv-section {
  background: linear-gradient(135deg, var(--ve-dark) 0%, var(--ve-navy) 100%);
  padding: 80px 0;
}

.ve-mvv-section .ve-section-header h2 {
  color: #fff;
}

.ve-mvv-section .ve-section-header p {
  color: rgba(255, 255, 255, 0.6);
}

.ve-mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 50px;
}

.ve-mvv-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--ve-radius);
  padding: 36px 28px;
  text-align: center;
  transition: var(--ve-trans);
}

.ve-mvv-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.ve-mvv-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--ve-gold), var(--ve-gold2));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--ve-dark);
  margin: 0 auto 20px;
}

.ve-mvv-card h4 {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.ve-mvv-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  margin: 0;
}

/* Team Cards */
.ve-team-section {
  background: var(--ve-light);
}

.ve-team-card {
  background: #fff;
  border-radius: var(--ve-radius);
  overflow: hidden;
  border: 1px solid var(--ve-border);
  transition: var(--ve-trans);
  margin-bottom: 28px;
}

.ve-team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--ve-shadow);
}

.ve-team-img {
  height: 260px;
  background-size: cover;
  background-position: center top;
}

.ve-team-info {
  padding: 22px;
  text-align: center;
}

.ve-team-info h5 {
  font-size: 17px;
  font-weight: 800;
  color: var(--ve-dark);
  margin-bottom: 4px;
}

.ve-team-info span {
  font-size: 13px;
  color: var(--ve-text);
  display: block;
  margin-bottom: 14px;
}

.ve-team-social {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.ve-team-social a {
  width: 34px;
  height: 34px;
  border-radius: 6px;
  background: var(--ve-light);
  color: var(--ve-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  text-decoration: none;
  transition: var(--ve-trans);
}

.ve-team-social a:hover {
  background: var(--ve-gold);
  color: var(--ve-dark);
}

/* Process Steps */
.ve-process-section {
  background: var(--ve-light);
  padding: 80px 0;
}

.ve-process-grid {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 50px;
  flex-wrap: wrap;
}

.ve-process-step {
  flex: 1;
  min-width: 200px;
  background: #fff;
  border-radius: var(--ve-radius);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--ve-border);
}

.ve-process-num {
  font-size: 42px;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  color: var(--ve-gold);
  line-height: 1;
  margin-bottom: 14px;
}

.ve-process-step h5 {
  font-size: 16px;
  font-weight: 800;
  color: var(--ve-dark);
  margin-bottom: 8px;
}

.ve-process-step p {
  font-size: 13px;
  color: var(--ve-text);
  line-height: 1.7;
  margin: 0;
}

.ve-process-arrow {
  font-size: 24px;
  color: var(--ve-gold);
  padding: 0 16px;
  flex-shrink: 0;
}

/* FAQ */
.ve-faq-section {
  background: #fff;
}

.ve-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ve-faq-item {
  border-bottom: 1px solid var(--ve-border);
}

.ve-faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  cursor: pointer;
  gap: 16px;
}

.ve-faq-q span {
  font-size: 15px;
  font-weight: 700;
  color: var(--ve-dark);
}

.ve-faq-q i {
  font-size: 14px;
  color: var(--ve-gold);
  flex-shrink: 0;
  transition: var(--ve-trans);
}

.ve-faq-item.open .ve-faq-q i {
  transform: rotate(45deg);
}

.ve-faq-a {
  font-size: 14px;
  color: var(--ve-text);
  line-height: 1.8;
  padding: 0 0 16px;
  display: none;
}

.ve-faq-item.open .ve-faq-a {
  display: block;
}

/* Contact Cards */
.ve-contact-cards-section {
  background: var(--ve-light);
}

.ve-contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ve-contact-info-card {
  background: #fff;
  border-radius: var(--ve-radius);
  padding: 36px 28px;
  text-align: center;
  border: 1px solid var(--ve-border);
  transition: var(--ve-trans);
}

.ve-contact-info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ve-shadow);
}

.ve-ci-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--ve-dark), var(--ve-navy));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--ve-gold);
  margin: 0 auto 18px;
}

.ve-contact-info-card h5 {
  font-size: 17px;
  font-weight: 800;
  color: var(--ve-dark);
  margin-bottom: 8px;
}

.ve-contact-info-card p {
  font-size: 14px;
  color: var(--ve-text);
  line-height: 1.7;
  margin: 0;
}

/* Contact Form Wrap */
.ve-contact-form-wrap h2 {
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 14px;
}

.ve-contact-form-wrap h2 span {
  color: var(--ve-gold);
}

.ve-contact-form-wrap>p {
  font-size: 15px;
  color: var(--ve-text);
  margin-bottom: 28px;
}

.ve-contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

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

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

.ve-form-group label {
  font-size: 13px;
  font-weight: 700;
  color: var(--ve-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ve-form-group input,
.ve-form-group select,
.ve-form-group textarea {
  border: 2px solid var(--ve-border);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  color: var(--ve-dark);
  background: #fff;
  outline: none;
  transition: var(--ve-trans);
}

.ve-form-group input:focus,
.ve-form-group select:focus,
.ve-form-group textarea:focus {
  border-color: var(--ve-gold);
  box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.1);
}

.ve-form-group textarea {
  resize: vertical;
}

/* Contact Aside */
.ve-contact-aside {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-left: 30px;
}

.ve-ca-box {
  background: var(--ve-light);
  border-radius: var(--ve-radius);
  padding: 28px;
  border: 1px solid var(--ve-border);
}

.ve-ca-box h4 {
  font-size: 18px;
  font-weight: 800;
  color: var(--ve-dark);
  margin-bottom: 18px;
}

.ve-ca-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ve-ca-list li {
  font-size: 14px;
  color: var(--ve-text);
  display: flex;
  align-items: center;
  gap: 14px;
}

.ve-ca-list li i {
  color: var(--ve-gold);
}

.ve-ca-hours {
  background: var(--ve-dark);
  border-radius: var(--ve-radius);
  padding: 24px;
}

.ve-ca-hours h5 {
  font-size: 15px;
  font-weight: 700;
  color: var(--ve-gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ve-ca-hours ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ve-ca-hours ul li {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 14px;
}

.ve-ca-hours ul li:last-child {
  border-bottom: none;
}

.ve-ca-hours ul li span {
  color: rgba(255, 255, 255, 0.5);
}

.ve-ca-hours ul li strong {
  color: #fff;
}

.ve-ca-social h5 {
  font-size: 15px;
  font-weight: 700;
  color: var(--ve-dark);
  margin-bottom: 12px;
}

/* Blog / Sidebar */
.ve-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-left: 20px;
}

.ve-sidebar-widget {
  background: #fff;
  border-radius: var(--ve-radius);
  padding: 28px;
  border: 1px solid var(--ve-border);
}

.ve-sidebar-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--ve-dark);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--ve-gold);
  display: inline-block;
}

.ve-search-box {
  display: flex;
  border: 2px solid var(--ve-border);
  border-radius: 8px;
  overflow: hidden;
}

.ve-search-box input {
  flex: 1;
  border: none;
  padding: 14px 14px;
  font-size: 14px;
  outline: none;
  font-family: 'DM Sans', sans-serif;
}

.ve-search-box button {
  background: var(--ve-gold);
  border: none;
  padding: 0 16px;
  color: var(--ve-dark);
  cursor: pointer;
  font-size: 14px;
  transition: var(--ve-trans);
}

.ve-search-box button:hover {
  background: var(--ve-dark);
  color: #fff;
}

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

.ve-cat-list li a {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  font-size: 14px;
  color: var(--ve-text);
  text-decoration: none;
  border-bottom: 1px solid var(--ve-border);
  transition: var(--ve-trans);
}

.ve-cat-list li:last-child a {
  border-bottom: none;
}

.ve-cat-list li a span {
  background: var(--ve-light);
  color: var(--ve-dark);
  font-size: 12px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
}

.ve-cat-list li a:hover {
  color: var(--ve-gold);
}

.ve-recent-post {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.ve-recent-post:last-child {
  margin-bottom: 0;
}

.ve-rp-img {
  width: 65px;
  height: 50px;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

.ve-recent-post div a {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--ve-dark);
  text-decoration: none;
  margin-bottom: 4px;
  line-height: 1.4;
}

.ve-recent-post div a:hover {
  color: var(--ve-gold);
}

.ve-recent-post div span {
  font-size: 12px;
  color: var(--ve-text);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.ve-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ve-tags a {
  background: var(--ve-light);
  color: var(--ve-text);
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 20px;
  text-decoration: none;
  border: 1px solid var(--ve-border);
  transition: var(--ve-trans);
}

.ve-tags a:hover {
  background: var(--ve-gold);
  color: var(--ve-dark);
  border-color: var(--ve-gold);
}

/* Pagination */
.ve-pagination {
  display: flex;
  gap: 8px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.ve-pagination a {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--ve-light);
  border: 1px solid var(--ve-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--ve-text);
  text-decoration: none;
  transition: var(--ve-trans);
}

.ve-pagination a.active,
.ve-pagination a:hover {
  background: var(--ve-gold);
  color: var(--ve-dark);
  border-color: var(--ve-gold);
}

/* Article */
.ve-article {
  background: #fff;
  border-radius: var(--ve-radius);
  overflow: hidden;
  border: 1px solid var(--ve-border);
  margin-bottom: 40px;
}

.ve-article-featured {
  height: 380px;
  background-size: cover;
  background-position: center;
}

.ve-article-body {
  padding: 36px;
}

.ve-article-lead {
  font-size: 17px;
  font-weight: 500;
  color: var(--ve-dark);
  line-height: 1.8;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--ve-border);
}

.ve-article-body h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--ve-dark);
  margin: 28px 0 12px;
}

.ve-article-body p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--ve-text);
  margin-bottom: 16px;
}

.ve-blockquote {
  background: var(--ve-light);
  border-left: 4px solid var(--ve-gold);
  border-radius: 0 14px 14px 0;
  padding: 24px 28px;
  margin: 28px 0;
}

.ve-blockquote p {
  font-size: 17px;
  font-style: italic;
  color: var(--ve-dark);
  font-weight: 500;
  margin: 0 0 8px;
}

.ve-blockquote cite {
  font-size: 13px;
  color: var(--ve-gold);
  font-weight: 700;
  font-style: normal;
}

.ve-article-tags {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.ve-article-tags strong {
  font-size: 14px;
  color: var(--ve-dark);
}

.ve-article-tags a {
  background: var(--ve-light);
  color: var(--ve-text);
  font-size: 13px;
  padding: 5px 12px;
  border-radius: 20px;
  text-decoration: none;
  border: 1px solid var(--ve-border);
  transition: var(--ve-trans);
}

.ve-article-tags a:hover {
  background: var(--ve-gold);
  color: var(--ve-dark);
  border-color: var(--ve-gold);
}

.ve-article-share {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 16px;
}

.ve-article-share strong {
  font-size: 14px;
  color: var(--ve-dark);
}

.ve-article-share a {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--ve-light);
  color: var(--ve-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  text-decoration: none;
  transition: var(--ve-trans);
  border: 1px solid var(--ve-border);
}

.ve-article-share a:hover {
  background: var(--ve-gold);
  color: var(--ve-dark);
  border-color: var(--ve-gold);
}

/* Comments */
.ve-comments-section {
  margin-bottom: 40px;
}

.ve-comments-section h4 {
  font-size: 22px;
  font-weight: 800;
  color: var(--ve-dark);
  margin-bottom: 24px;
}

.ve-comment {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.ve-comment-reply {
  margin-left: 50px;
}

.ve-comment-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

.ve-comment-body {
  flex: 1;
  background: var(--ve-light);
  border-radius: 14px;
  padding: 18px;
}

.ve-comment-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  flex-wrap: wrap;
  gap: 6px;
}

.ve-comment-meta strong {
  font-size: 15px;
  font-weight: 800;
  color: var(--ve-dark);
}

.ve-comment-meta span {
  font-size: 13px;
  color: var(--ve-text);
}

.ve-comment-body p {
  font-size: 14px;
  color: var(--ve-text);
  line-height: 1.7;
  margin-bottom: 14px;
}

.ve-reply-btn {
  font-size: 13px;
  font-weight: 700;
  color: var(--ve-gold);
  text-decoration: none;
}

.ve-reply-btn:hover {
  color: var(--ve-dark);
}

/* Comment form */
.ve-comment-form-wrap h4 {
  font-size: 22px;
  font-weight: 800;
  color: var(--ve-dark);
  margin-bottom: 24px;
}

/* Elements page */
.ve-elements-section {
  background: #fff;
}

.ve-el-block {
  margin-bottom: 70px;
}

.ve-el-title {
  font-size: 22px;
  font-weight: 900;
  color: var(--ve-dark);
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--ve-border);
  display: flex;
  align-items: center;
  gap: 14px;
}

.ve-el-title span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--ve-gold);
  color: var(--ve-dark);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 900;
  flex-shrink: 0;
}

.ve-el-demo {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

/* Why us section */
.ve-whyus-section {
  background: #fff;
}

.ve-whyus-img-wrap {
  position: relative;
  padding-bottom: 40px;
  padding-right: 40px;
}

.ve-whyus-img-main {
  height: 480px;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
}

.ve-whyus-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  background: var(--ve-gold);
  border-radius: 14px;
  padding: 22px 28px;
  text-align: center;
  min-width: 160px;
}

.ve-whyus-badge strong {
  display: block;
  font-size: 40px;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  color: var(--ve-dark);
}

.ve-whyus-badge span {
  font-size: 12px;
  font-weight: 600;
  color: var(--ve-dark);
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.ve-whyus-content {
  padding-left: 40px;
}

.ve-whyus-content h2 {
  font-size: 40px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 16px;
}

.ve-whyus-content h2 span {
  color: var(--ve-gold);
}

/* Responsive extras */
@media(max-width:991px) {
  .ve-mvv-grid {
    grid-template-columns: 1fr;
  }

  .ve-contact-cards-grid {
    grid-template-columns: 1fr;
  }

  .ve-process-grid {
    flex-direction: column;
  }

  .ve-process-arrow {
    transform: rotate(90deg);
  }

  .ve-about-text,
  .ve-whyus-content {
    padding-left: 0;
    margin-top: 30px;
  }

  .ve-contact-aside {
    padding-left: 0;
    margin-top: 30px;
  }

  .ve-sidebar {
    padding-left: 0;
    margin-top: 40px;
  }

  .ve-form-row {
    grid-template-columns: 1fr;
  }
}

@media(max-width:767px) {
  .ve-page-hero-content h1 {
    font-size: 30px;
  }

  .ve-testi-grid {
    grid-template-columns: 1fr;
  }

  .ve-nl-form {
    flex-direction: column;
    border-radius: 8px;
  }

  .ve-nl-form input,
  .ve-nl-form button {
    width: 100%;
    border-radius: 8px !important;
  }

  .ve-about-img-2 {
    display: none;
  }
}


/* =========================================
   EARLY BIRD & LUCKY DRAW SECTION
========================================= */

.ve-early-section {
  padding: 90px 0;
  background: #080808;

  position: relative;
  overflow: hidden;
  margin-top: 20px;
}

/* ============================================================
   EARLY BIRD SECTION
============================================================ */

.ve-early-section::before {
  content: "";
  position: absolute;

  top: 0;
  left: 8%;
  right: 8%;

  height: 1px;

  background: linear-gradient(90deg,
      transparent 0%,
      #d4a017 50%,
      transparent 100%);

  z-index: 10;
}

.ve-early-section .ve-section-header {
  margin-bottom: 45px;
}

.ve-early-section .ve-section-header h2 {
  margin-bottom: 15px;
}

.ve-early-section .ve-section-header p {
  max-width: 720px;
  margin: 0 auto;
}


/* =========================================
   COMMON CARDS
========================================= */

.ve-early-card,
.ve-lucky-card {
  height: 100%;
  padding: 35px;
  border: 1px solid rgba(212, 167, 55, 0.45);
  border-radius: 18px;
  background: linear-gradient(145deg, #111111, #050505);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
}


/* =========================================
   CARD HEADERS
========================================= */

.ve-early-card-header,
.ve-lucky-card-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.ve-early-card-header span,
.ve-lucky-card-header span {
  display: block;
  color: #d4a017;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.ve-early-card-header h3,
.ve-lucky-card-header h3 {
  margin: 0;
  color: #ffffff;
  font-size: 22px;
  line-height: 1.35;
}

.ve-early-card-header h3 strong {
  color: #e3b638;
}


/* =========================================
   ICONS
========================================= */

.ve-early-icon,
.ve-lucky-icon {
  width: 65px;
  height: 65px;
  min-width: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #d4a017;
  background: rgba(216, 170, 53, 0.08);
}

.ve-early-icon i,
.ve-lucky-icon i {
  color: #e3b638;
  font-size: 28px;
}


/* =========================================
   FEE BOX
========================================= */

.ve-fee-box {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 25px 15px;
  margin-bottom: 30px;
  border: 1px solid rgba(216, 170, 53, 0.35);
  border-radius: 12px;
  background: rgba(216, 170, 53, 0.04);
}

.ve-fee-item {
  text-align: center;
  flex: 1;
}

.ve-fee-item span {
  display: block;
  color: #bbbbbb;
  font-size: 14px;
  margin-bottom: 5px;
}

.ve-fee-item strong {
  display: block;
  color: #e7b83f;
  font-size: 36px;
  line-height: 1.2;
}

.ve-fee-item.regular strong {
  color: #999999;
  text-decoration: line-through;
  font-size: 28px;
}

.ve-fee-divider {
  width: 1px;
  height: 55px;
  background: rgba(216, 170, 53, 0.35);
}


/* =========================================
   BENEFITS
========================================= */

.ve-benefit-title {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 20px;
}

.ve-benefits {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.ve-benefit {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #cccccc;
  font-size: 15px;
  line-height: 1.5;
}

.ve-benefit i {
  color: #e3b638;
  margin-top: 3px;
}

.ve-benefit strong {
  color: #ffffff;
}


/* =========================================
   LUCKY DRAW TABLE
========================================= */

.ve-lucky-table {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(216, 170, 53, 0.3);
  border-radius: 14px;
  overflow: hidden;
}

.ve-lucky-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 13px 16px;
  border-bottom: 1px solid rgba(216, 170, 53, 0.18);
  color: #eeeeee;
  font-size: 14px;
}

.ve-lucky-row:last-child {
  border-bottom: none;
}

.ve-lucky-row:nth-child(even) {
  background: rgba(216, 170, 53, 0.04);
}

.ve-lucky-row strong {
  color: #e3b638;
  white-space: nowrap;
  font-size: 13px;
}


/* =========================================
   WINNER HIGHLIGHT
========================================= */

.ve-lucky-winner {
  margin-top: 22px;
  padding: 20px;
  text-align: center;
  border-radius: 12px;
  border: 1px solid #d4a017;
  background: rgba(216, 170, 53, 0.08);
}

.ve-lucky-winner span {
  display: block;
  color: #cccccc;
  font-size: 13px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ve-lucky-winner strong {
  display: block;
  color: #e8b93e;
  font-size: 20px;
}

.ve-lucky-winner i {
  margin-right: 8px;
}


/* =========================================
   BOTTOM CTA
========================================= */

.ve-early-cta {
  margin-top: 50px;
}

.ve-early-cta h3 {
  color: #ffffff;
  font-size: 30px;
  margin-bottom: 14px;
}

.ve-early-cta h3 span {
  color: #e3b638;
}

.ve-early-cta p {
  color: #bbbbbb;
  margin-bottom: 25px;
}

.ve-early-cta p strong {
  color: #e3b638;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 991px) {

  .ve-early-card,
  .ve-lucky-card {
    margin-bottom: 25px;
  }

}

@media (max-width: 575px) {

  .ve-early-section {
    padding: 60px 0;
  }

  .ve-early-card,
  .ve-lucky-card {
    padding: 22px;
  }

  .ve-early-card-header,
  .ve-lucky-card-header {
    gap: 12px;
  }

  .ve-early-icon,
  .ve-lucky-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
  }

  .ve-early-icon i,
  .ve-lucky-icon i {
    font-size: 22px;
  }

  .ve-early-card-header h3,
  .ve-lucky-card-header h3 {
    font-size: 17px;
  }

  .ve-fee-item strong {
    font-size: 28px;
  }

  .ve-fee-item.regular strong {
    font-size: 22px;
  }

  .ve-lucky-row {
    padding: 14px 14px;
    font-size: 12px;
  }

  .ve-lucky-row strong {
    font-size: 14px;
  }

  .ve-early-cta h3 {
    font-size: 24px;
  }

}









/* =========================================
   GLOBAL ABACUS CHAMPIONS
   PRIZE STRUCTURE
========================================= */

.ga-prize-section {
  position: relative;
  padding: 100px 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(218, 168, 45, 0.08), transparent 35%),
    #050505;
  overflow: hidden;
}

.ga-prize-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg,
      transparent,
      #d4a017,
      transparent);
}


/* =========================================
   SECTION HEADING
========================================= */

.ga-prize-heading {
  margin-bottom: 45px;
}

.ga-section-tag {
  display: inline-block;
  margin-bottom: 12px;
  color: #dcae35;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.ga-prize-heading h2 {
  margin: 0 0 15px;
  color: #ffffff;
  font-size: 48px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ga-prize-heading h2 span {
  color: #e2b33b;
}

.ga-prize-heading p {
  max-width: 700px;
  margin: 0 auto;
  color: #aaaaaa;
  font-size: 16px;
  line-height: 1.7;
}


/* =========================================
   SUMMARY BOX
========================================= */

.ga-prize-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 30px 35px;
  border: 1px solid rgba(221, 174, 48, 0.55);
  border-radius: 16px;
  background:
    linear-gradient(145deg,
      rgba(218, 169, 47, 0.08),
      rgba(255, 255, 255, 0.015));
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.45),
    inset 0 0 30px rgba(218, 169, 47, 0.025);
}

.ga-summary-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.ga-summary-icon {
  width: 68px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid #dcae35;
  border-radius: 50%;
  background: rgba(220, 174, 53, 0.08);
}

.ga-summary-icon i {
  color: #e4b63e;
  font-size: 30px;
}

.ga-summary-item span {
  display: block;
  color: #cccccc;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ga-summary-item strong {
  display: block;
  margin: 2px 0;
  color: #e7b93f;
  font-size: 38px;
  line-height: 1.2;
}

.ga-summary-item small {
  display: block;
  color: #888888;
  font-size: 14px;
  text-transform: uppercase;
}

.ga-summary-divider {
  width: 1px;
  height: 75px;
  margin: 0 30px;
  background: rgba(220, 174, 53, 0.4);
}


/* =========================================
   SUMMARY NOTE
========================================= */

.ga-prize-note {
  max-width: 850px;
  margin: 20px auto 45px;
  color: #bbbbbb;
  text-align: center;
  font-size: 14px;
}

.ga-prize-note strong {
  color: #e4b63e;
}


/* =========================================
   PRIZE CARDS
========================================= */

.ga-prize-tables {
  row-gap: 30px;
}

.ga-prize-card {
  height: 100%;
  padding: 15px 12px 12px;
  border: 1px solid rgba(221, 174, 48, 0.45);
  border-radius: 15px;
  background:
    linear-gradient(145deg,
      #0d0d0d,
      #050505);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}


/* =========================================
   CARD TITLE
========================================= */

.ga-prize-card-title {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  min-height: 52px;
  margin-bottom: 12px;
  padding: 8px 15px;
  color: #090909;
  background: linear-gradient(90deg,
      #c89420,
      #f2c84b,
      #c89420);
  clip-path: polygon(5% 0,
      95% 0,
      100% 50%,
      95% 100%,
      5% 100%,
      0 50%);
}

.ga-prize-card-title span {
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ga-prize-card-title i {
  font-size: 13px;
}


/* =========================================
   TABLE
========================================= */

.ga-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(220, 174, 53, 0.35);
  border-radius: 8px;
}

.ga-prize-table {
  width: 100%;
  margin: 0;
  border-collapse: collapse;
  color: #ffffff;
}

.ga-prize-table thead th {
  padding: 12px 14px;
  color: #ffffff;
  background: #111111;
  border-right: 1px solid rgba(220, 174, 53, 0.35);
  border-bottom: 1px solid rgba(220, 174, 53, 0.55);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ga-prize-table thead th:last-child {
  border-right: none;
}

.ga-prize-table tbody td {
  padding: 8px 14px;
  border-right: 1px solid rgba(220, 174, 53, 0.25);
  border-bottom: 1px solid rgba(220, 174, 53, 0.22);
  color: #dddddd;
  font-size: 13px;
  text-align: center;
}

.ga-prize-table tbody tr:last-child td {
  border-bottom: none;
}

.ga-prize-table tbody td:last-child {
  border-right: none;
}

.ga-prize-table tbody tr:nth-child(even) {
  background: rgba(220, 174, 53, 0.035);
}

.ga-prize-table tbody tr:hover {
  background: rgba(220, 174, 53, 0.08);
}

.ga-prize-table tbody td:first-child {
  color: #e4b63e;
  font-size: 16px;
  font-weight: 700;
}

.ga-prize-table tbody td:nth-child(2) {
  color: #e4b63e;
  font-size: 14px;
  font-weight: 700;
}

.ga-prize-table tbody td i {
  margin-right: 6px;
  color: #e4b63e;
}


/* =========================================
   BOTTOM NOTE
========================================= */

.ga-prize-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  max-width: 900px;
  margin: 45px auto 0;
  padding: 28px 35px;
  border: 1px solid rgba(220, 174, 53, 0.45);
  border-radius: 16px;
  background: linear-gradient(145deg,
      rgba(220, 174, 53, 0.07),
      rgba(255, 255, 255, 0.01));
}

.ga-trophy-decoration {
  width: 70px;
  height: 70px;
  min-width: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #dcae35;
  border-radius: 50%;
  background: rgba(220, 174, 53, 0.06);
}

.ga-trophy-decoration i {
  color: #e4b63e;
  font-size: 30px;
}

.ga-prize-bottom-content {
  flex: 1;
}

.ga-prize-bottom-content>span {
  display: inline-block;
  margin-bottom: 5px;
  color: #e4b63e;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.ga-prize-bottom-content h3 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 22px;
}

.ga-prize-bottom-content h3 strong {
  color: #e4b63e;
}

.ga-prize-bottom-content p {
  margin: 0;
  color: #aaaaaa;
  font-size: 14px;
}

.ga-prize-bottom-content p strong {
  color: #e4b63e;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

  .ga-prize-heading h2 {
    font-size: 38px;
  }

  .ga-prize-summary {
    padding: 25px;
  }

  .ga-summary-divider {
    margin: 0 15px;
  }

}


@media (max-width: 767px) {

  .ga-prize-section {
    padding: 70px 0;
  }

  .ga-prize-heading h2 {
    font-size: 30px;
  }

  .ga-prize-heading p {
    font-size: 14px;
  }

  .ga-prize-summary {
    flex-direction: column;
    gap: 25px;
  }

  .ga-summary-item {
    width: 100%;
    justify-content: flex-start;
  }

  .ga-summary-divider {
    width: 80%;
    height: 1px;
    margin: 0;
  }

  .ga-summary-item strong {
    font-size: 32px;
  }

  .ga-prize-card-title span {
    font-size: 15px;
  }

  .ga-prize-bottom {
    flex-direction: column;
    text-align: center;
    padding: 25px 20px;
  }

}


@media (max-width: 480px) {

  .ga-prize-section {
    padding: 55px 0;
  }

  .ga-prize-heading h2 {
    font-size: 26px;
  }

  .ga-summary-icon {
    width: 55px;
    height: 55px;
  }

  .ga-summary-icon i {
    font-size: 23px;
  }

  .ga-summary-item strong {
    font-size: 27px;
  }

  .ga-prize-card {
    padding: 14px 7px;
  }

  .ga-prize-card-title {
    min-height: 45px;
  }

  .ga-prize-card-title span {
    font-size: 12px;
  }

  .ga-prize-table thead th,
  .ga-prize-table tbody td {
    padding: 7px 5px;
    font-size: 14px;
  }

  .ga-prize-table tbody td:first-child {
    font-size: 13px;
  }

}












/* =========================================================
   GLOBAL ABACUS CHAMPIONS 2026
   UNIQUE CHAMPIONSHIP SECTION
========================================================= */

.ga-championship-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 20%,
      rgba(220, 174, 53, 0.07),
      transparent 32%),
    radial-gradient(circle at 85% 45%,
      rgba(220, 174, 53, 0.08),
      transparent 30%),
    #050505;
}

.ga-championship-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg,
      transparent,
      #dcae35,
      transparent);
}


/* =========================================================
   HEADING
========================================================= */

.ga-championship-heading {
  margin-bottom: 50px;
}

.ga-championship-heading h2 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 46px;
  font-weight: 700;
  line-height: 1.2;
}

.ga-championship-heading h2 span {
  color: #e4b63e;
}

.ga-championship-heading p {
  max-width: 680px;
  margin: auto;
  color: #999999;
  font-size: 15px;
  line-height: 1.7;
}


/* =========================================================
   MAIN LAYOUT
========================================================= */

.ga-championship-layout {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 25px;
  align-items: stretch;
}


/* =========================================================
   LEFT INFORMATION AREA
========================================================= */

.ga-championship-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}


/* =========================================================
   AGE + LEVEL
========================================================= */

.ga-age-level {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.ga-age-block,
.ga-level-block {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 130px;
  padding: 20px 25px;
  overflow: hidden;
  border-radius: 16px;
  background: #0b0b0b;
}

.ga-age-block {
  border: 1px solid rgba(220, 174, 53, 0.35);
}

.ga-level-block {
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.ga-age-block::after,
.ga-level-block::after {
  content: "";
  position: absolute;
  right: -35px;
  bottom: -45px;
  width: 130px;
  height: 130px;
  border: 1px solid rgba(220, 174, 53, 0.08);
  border-radius: 50%;
}

.ga-big-number {
  color: #e8b83e;
  font-size: 52px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -2px;
}

.ga-big-label span,
.ga-level-label span {
  display: block;
  color: #777777;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.ga-big-label strong,
.ga-level-label strong {
  display: block;
  margin-top: 4px;
  color: #ffffff;
  font-size: 17px;
}

.ga-level-number {
  color: #e8b83e;
  font-size: 31px;
  font-weight: 800;
  white-space: nowrap;
}

.ga-level-number span {
  color: #777777;
  margin: 0 3px;
}


/* =========================================================
   DATE BANNER
========================================================= */

.ga-date-banner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 125px;
  padding: 20px 25px;
  overflow: hidden;
  border-radius: 16px;
  border-left: 4px solid #dcae35;
  background:
    linear-gradient(100deg,
      rgba(220, 174, 53, 0.12),
      rgba(220, 174, 53, 0.025));
}

.ga-date-calendar {
  width: 78px;
  min-width: 78px;
  overflow: hidden;
  border: 1px solid rgba(220, 174, 53, 0.55);
  border-radius: 14px;
  background: #080808;
  text-align: center;
}

.ga-date-calendar span {
  display: block;
  padding: 5px;
  color: #080808;
  background: #dcae35;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2px;
}

.ga-date-calendar strong {
  display: inline-block;
  margin-top: 8px;
  color: #ffffff;
  font-size: 31px;
  line-height: 1;
}

.ga-date-calendar small {
  display: block;
  padding-bottom: 8px;
  color: #dcae35;
  font-size: 14px;
  font-weight: 700;
}

.ga-date-text {
  position: relative;
  z-index: 2;
}

.ga-date-text span {
  display: block;
  margin-bottom: 5px;
  color: #888888;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.ga-date-text strong {
  display: block;
  color: #e8b83e;
  font-size: 24px;
}

.ga-date-text p {
  margin: 5px 0 0;
  color: #777777;
  font-size: 14px;
}

.ga-date-banner>i {
  position: absolute;
  right: 25px;
  color: rgba(220, 174, 53, 0.08);
  font-size: 80px;
}


/* =========================================================
   EVENT STRIP
========================================================= */

.ga-event-strip {
  display: flex;
  align-items: center;
  min-height: 92px;
  padding: 15px 20px;
  border-top: 1px solid rgba(220, 174, 53, 0.2);
  border-bottom: 1px solid rgba(220, 174, 53, 0.2);
  background: rgba(255, 255, 255, 0.012);
}

.ga-event-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 14px;
}

.ga-event-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(220, 174, 53, 0.08);
}

.ga-event-icon i {
  color: #e4b63e;
  font-size: 20px;
}

.ga-event-item span {
  display: block;
  color: #777777;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ga-event-item strong {
  display: block;
  margin-top: 4px;
  color: #ffffff;
  font-size: 15px;
}

.ga-event-line {
  width: 1px;
  height: 45px;
  margin: 0 25px;
  background: rgba(220, 174, 53, 0.25);
}


/* =========================================================
   RECOGNITION STRIP
========================================================= */

.ga-recognition-strip {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 90px;
  padding: 16px 20px;
  border-radius: 14px;
  background:
    linear-gradient(90deg,
      rgba(220, 174, 53, 0.08),
      rgba(220, 174, 53, 0.02));
}

.ga-medal-symbol {
  width: 55px;
  height: 55px;
  min-width: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(145deg,
      #bd8b1d,
      #efc44b,
      #bd8b1d);
}

.ga-medal-symbol i {
  color: #101010;
  font-size: 23px;
}

.ga-recognition-text span {
  display: block;
  color: #888888;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 1.3px;
}

.ga-recognition-text strong {
  display: block;
  margin-top: 3px;
  color: #ffffff;
  font-size: 17px;
}

.ga-recognition-text p {
  margin: 3px 0 0;
  color: #777777;
  font-size: 14px;
}

.ga-recognition-check {
  margin-left: auto;
  color: #e4b63e;
  font-size: 21px;
}


/* =========================================================
   PRIZE SPOTLIGHT
========================================================= */

.ga-prize-spotlight {
  position: relative;
  min-height: 100%;
  padding: 40px 35px;
  overflow: hidden;
  border: 1px solid #dcae35;
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 30%,
      rgba(220, 174, 53, 0.16),
      transparent 45%),
    #090909;
  text-align: center;
}

.ga-prize-spotlight::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  border: 1px solid rgba(220, 174, 53, 0.1);
  border-radius: 16px;
  pointer-events: none;
}

.ga-prize-circle {
  position: absolute;
  border: 1px solid rgba(220, 174, 53, 0.08);
  border-radius: 50%;
}

.circle-one {
  width: 280px;
  height: 280px;
  top: -100px;
  right: -100px;
}

.circle-two {
  width: 220px;
  height: 220px;
  bottom: -100px;
  left: -90px;
}


/* Prize Top */

.ga-prize-top {
  position: relative;
  z-index: 2;
}

.ga-prize-top span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #dcae35;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.ga-prize-top i {
  font-size: 15px;
}


/* Prize Amount */

.ga-prize-amount {
  position: relative;
  z-index: 2;
  margin-top: 35px;
}

.ga-prize-amount small {
  display: block;
  color: #888888;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.ga-prize-amount strong {
  display: inline-block;
  margin-top: 5px;
  color: #f0c445;
  font-size: 82px;
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -4px;
}

.ga-prize-amount span {
  display: block;
  margin-top: 7px;
  color: #ffffff;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 7px;
}


/* Description */

.ga-prize-description {
  position: relative;
  z-index: 2;
  max-width: 270px;
  margin: 22px auto;
  color: #999999;
  font-size: 12px;
  line-height: 1.6;
}


/* Winner Count */

.ga-winner-count {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 15px;
  max-width: 300px;
  margin: 30px auto 0;
  padding: 15px 20px;
  border: 1px solid rgba(220, 174, 53, 0.25);
  border-radius: 12px;
  background: rgba(220, 174, 53, 0.035);
  text-align: left;
}

.ga-winner-number {
  color: #e4b63e;
  font-size: 43px;
  font-weight: 800;
  line-height: 1;
}

.ga-winner-text span {
  display: block;
  color: #777777;
  font-size: 9px;
  text-transform: uppercase;
}

.ga-winner-text strong {
  display: block;
  color: #ffffff;
  font-size: 17px;
}

.ga-winner-text small {
  display: block;
  margin-top: 3px;
  color: #777777;
  font-size: 9px;
}


/* Trophy */

.ga-prize-trophy {
  position: relative;
  z-index: 2;
  margin-top: 25px;
}

.ga-prize-trophy i {
  color: rgba(220, 174, 53, 0.12);
  font-size: 85px;
}


/* =========================================================
   EARLY REGISTRATION BAR
========================================================= */

.ga-early-registration {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 25px;
  padding: 24px 28px;
  border: 1px solid rgba(220, 174, 53, 0.5);
  border-radius: 16px;
  background:
    linear-gradient(100deg,
      rgba(220, 174, 53, 0.09),
      rgba(220, 174, 53, 0.025));
}


/* Early Content */

.ga-early-content {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
}

.ga-early-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #dcae35;
}

.ga-early-icon i {
  color: #080808;
  font-size: 19px;
}

.ga-early-content span {
  display: block;
  color: #dcae35;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.ga-early-content h3 {
  margin: 3px 0;
  color: #ffffff;
  font-size: 20px;
}

.ga-early-content p {
  margin: 0;
  color: #888888;
  font-size: 14px;
}

.ga-early-content p strong {
  color: #e4b63e;
}


/* Early Price */

.ga-early-price {
  display: flex;
  align-items: center;
  gap: 18px;
}

.ga-early-price span {
  display: block;
  margin-bottom: 3px;
  color: #777777;
  font-size: 9px;
  text-transform: uppercase;
}

.ga-early-price strong {
  color: #edbd3f;
  font-size: 32px;
  line-height: 1;
}

.ga-old-price strong {
  color: #777777;
  font-size: 21px;
  text-decoration: line-through;
}

.ga-price-arrow {
  color: #dcae35;
}


/* Register Button */

.ga-championship-register {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 165px;
  padding: 14px 22px;
  border-radius: 8px;
  background: linear-gradient(90deg,
      #bd8b1d,
      #edc149,
      #bd8b1d);
  color: #080808;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.ga-championship-register:hover {
  color: #080808;
  transform: translateY(-2px);
  box-shadow: 0 14px 25px rgba(220, 174, 53, 0.2);
}


/* =========================================================
   LUCKY DRAW BANNER
========================================================= */

.ga-lucky-banner {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 15px;
  padding: 18px 22px;
  border: 1px dashed rgba(220, 174, 53, 0.35);
  border-radius: 13px;
  background: rgba(220, 174, 53, 0.025);
}

.ga-lucky-gift {
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(220, 174, 53, 0.09);
}

.ga-lucky-gift i {
  color: #e4b63e;
  font-size: 21px;
}

.ga-lucky-content {
  flex: 1;
}

.ga-lucky-content span {
  display: block;
  color: #dcae35;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.ga-lucky-content strong {
  display: block;
  margin-top: 3px;
  color: #ffffff;
  font-size: 16px;
}

.ga-lucky-content p {
  margin: 3px 0 0;
  color: #777777;
  font-size: 14px;
}


/* Milestones */

.ga-lucky-milestones {
  display: flex;
  gap: 5px;
}

.ga-lucky-milestones span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border: 1px solid rgba(220, 174, 53, 0.25);
  border-radius: 50%;
  color: #dcae35;
  font-size: 8px;
  font-weight: 700;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

  .ga-championship-layout {
    grid-template-columns: 1fr;
  }

  .ga-prize-spotlight {
    min-height: 500px;
  }

  .ga-early-registration {
    flex-wrap: wrap;
  }

  .ga-early-content {
    min-width: 45%;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

  .ga-championship-section {
    padding: 70px 0;
  }

  .ga-championship-heading {
    margin-bottom: 35px;
  }

  .ga-championship-heading h2 {
    font-size: 31px;
  }

  .ga-age-level {
    grid-template-columns: 1fr;
  }

  .ga-age-block,
  .ga-level-block {
    min-height: 105px;
  }

  .ga-big-number {
    font-size: 45px;
  }

  .ga-date-banner {
    padding: 17px;
  }

  .ga-date-text strong {
    font-size: 18px;
  }

  .ga-date-banner>i {
    display: none;
  }

  .ga-event-strip {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }

  .ga-event-line {
    width: 100%;
    height: 1px;
    margin: 0;
  }

  .ga-prize-spotlight {
    min-height: 450px;
    padding: 35px 22px;
  }

  .ga-prize-amount strong {
    font-size: 68px;
  }

  .ga-early-registration {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
    padding: 22px;
  }

  .ga-early-content {
    width: 100%;
  }

  .ga-early-price {
    width: 100%;
    justify-content: center;
  }

  .ga-championship-register {
    width: 100%;
  }

  .ga-lucky-banner {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .ga-lucky-content {
    width: calc(100% - 70px);
  }

  .ga-lucky-milestones {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 8px;
  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

  .ga-championship-heading h2 {
    font-size: 27px;
  }

  .ga-age-block,
  .ga-level-block {
    padding: 17px;
  }

  .ga-level-number {
    font-size: 27px;
  }

  .ga-date-calendar {
    width: 65px;
    min-width: 65px;
  }

  .ga-date-calendar strong {
    font-size: 27px;
  }

  .ga-date-text strong {
    font-size: 16px;
  }

  .ga-recognition-strip {
    padding: 13px;
  }

  .ga-recognition-text strong {
    font-size: 14px;
  }

  .ga-prize-spotlight {
    min-height: 420px;
  }

  .ga-prize-amount {
    margin-top: 25px;
  }

  .ga-prize-amount strong {
    font-size: 58px;
  }

  .ga-prize-amount span {
    font-size: 16px;
    letter-spacing: 5px;
  }

  .ga-winner-count {
    padding: 13px;
  }

  .ga-winner-number {
    font-size: 37px;
  }

  .ga-early-price strong {
    font-size: 29px;
  }

  .ga-old-price strong {
    font-size: 19px;
  }

  .ga-lucky-milestones span {
    width: 32px;
    height: 32px;
  }

}






















/* =========================================================
   REGISTRATION PAGE
========================================================= */

.ga-register-page {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 10%,
      rgba(220, 174, 53, 0.07),
      transparent 30%),
    radial-gradient(circle at 90% 70%,
      rgba(220, 174, 53, 0.05),
      transparent 30%),
    #050505;
}


/* =========================================================
   HEADER
========================================================= */

.ga-register-header {
  margin-bottom: 50px;
}

.ga-register-tag {
  display: inline-block;
  margin-bottom: 12px;
  color: #dcae35;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.ga-register-header h1 {
  margin: 0 0 15px;
  color: #ffffff;
  font-size: 46px;
  font-weight: 700;
}

.ga-register-header h1 span {
  color: #e4b63e;
}

.ga-register-header p {
  max-width: 650px;
  margin: auto;
  color: #888888;
  font-size: 14px;
  line-height: 1.8;
}


/* =========================================================
   MAIN LAYOUT
========================================================= */

.ga-register-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 25px;
  align-items: start;
}


/* =========================================================
   LEFT SUMMARY
========================================================= */

.ga-register-summary {
  position: sticky;
  top: 30px;
}


/* =========================================================
   EARLY BIRD OFFER
========================================================= */

.ga-register-offer {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 25px;
  border: 1px solid #dcae35;
  border-radius: 18px;
  background:
    radial-gradient(circle at 90% 20%,
      rgba(220, 174, 53, 0.15),
      transparent 45%),
    #090909;
}

.ga-offer-icon {
  width: 58px;
  height: 58px;
  min-width: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(145deg,
      #bd8b1d,
      #efc44b,
      #bd8b1d);
}

.ga-offer-icon i {
  color: #080808;
  font-size: 22px;
}

.ga-register-offer span {
  display: block;
  color: #dcae35;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.ga-register-offer strong {
  display: inline-block;
  margin-top: 3px;
  color: #f0c445;
  font-size: 36px;
  line-height: 1;
}

.ga-register-offer small {
  display: block;
  color: #777777;
  font-size: 14px;
}


/* =========================================================
   DEADLINE
========================================================= */

.ga-register-deadline {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 15px;
  padding: 17px 20px;
  border-left: 3px solid #dcae35;
  background: rgba(220, 174, 53, 0.04);
}

.ga-register-deadline>i {
  color: #e4b63e;
  font-size: 22px;
}

.ga-register-deadline span {
  display: block;
  color: #777777;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ga-register-deadline strong {
  display: block;
  margin-top: 3px;
  color: #ffffff;
  font-size: 14px;
}


/* =========================================================
   QUICK DETAILS
========================================================= */

.ga-register-quick {
  margin-top: 15px;
  padding: 23px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  background: #090909;
}

.ga-quick-title {
  padding-bottom: 15px;
  color: #e4b63e;
  font-size: 12px;
  font-weight: 700;
  border-bottom: 1px solid rgba(220, 174, 53, 0.15);
}

.ga-quick-title i {
  margin-right: 8px;
}

.ga-quick-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.045);
}

.ga-quick-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.ga-quick-row span {
  color: #777777;
  font-size: 14px;
}

.ga-quick-row strong {
  color: #ffffff;
  font-size: 12px;
}


/* =========================================================
   BENEFIT
========================================================= */

.ga-register-benefit {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 15px;
  padding: 18px;
  border-radius: 14px;
  background: rgba(220, 174, 53, 0.055);
}

.ga-register-benefit>i {
  color: #e4b63e;
  font-size: 29px;
}

.ga-register-benefit strong {
  display: block;
  color: #ffffff;
  font-size: 13px;
}

.ga-register-benefit span {
  display: block;
  margin-top: 3px;
  color: #dcae35;
  font-size: 14px;
}


/* =========================================================
   PRIZE
========================================================= */

.ga-register-prize {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 12px;
  padding: 18px;
  border: 1px solid rgba(220, 174, 53, 0.3);
  border-radius: 14px;
}

.ga-register-prize>i {
  color: #e4b63e;
  font-size: 28px;
}

.ga-register-prize span {
  display: block;
  color: #777777;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ga-register-prize strong {
  display: block;
  margin-top: 2px;
  color: #f0c445;
  font-size: 25px;
}


/* =========================================================
   FORM CARD
========================================================= */

.ga-registration-form-card {
  position: relative;
  padding: 38px;
  border: 1px solid rgba(220, 174, 53, 0.25);
  border-radius: 20px;
  background: #090909;
}

.ga-registration-form-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg,
      transparent,
      #dcae35,
      transparent);
}


/* =========================================================
   FORM HEADING
========================================================= */

.ga-form-heading {
  margin-bottom: 30px;
}

.ga-form-heading span {
  color: #dcae35;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.ga-form-heading h2 {
  margin: 5px 0;
  color: #ffffff;
  font-size: 25px;
}

.ga-form-heading p {
  margin: 0;
  color: #777777;
  font-size: 14px;
}


/* =========================================================
   FORM ROW
========================================================= */

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


/* =========================================================
   FORM GROUP
========================================================= */

.ga-form-group {
  margin-bottom: 19px;
}

.ga-form-group label {
  display: block;
  margin-bottom: 7px;
  color: #aaaaaa;
  font-size: 14px;
  font-weight: 600;
}

.ga-form-group label span {
  color: #dcae35;
}


/* =========================================================
   INPUT
========================================================= */

.ga-input-wrap {
  position: relative;
}

.ga-input-wrap>i {
  position: absolute;
  top: 50%;
  left: 16px;
  z-index: 2;
  color: #777777;
  font-size: 13px;
  transform: translateY(-50%);
}

.ga-input-wrap input,
.ga-input-wrap select {
  width: 100%;
  height: 49px;
  padding: 0 15px 0 43px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  outline: none;
  background: #0d0d0d;
  color: #ffffff;
  font-family: inherit;
  font-size: 12px;
  transition: all 0.25s ease;
}

.ga-input-wrap select {
  appearance: auto;
  cursor: pointer;
}

.ga-input-wrap input::placeholder {
  color: #555555;
}

.ga-input-wrap input:focus,
.ga-input-wrap select:focus {
  border-color: #dcae35;
  background: #101010;
  box-shadow: 0 0 0 3px rgba(220, 174, 53, 0.06);
}

.ga-input-wrap input:focus+i {
  color: #dcae35;
}


/* =========================================================
   TERMS
========================================================= */

.ga-form-terms {
  margin: 5px 0 20px;
}

.ga-form-terms label {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: #777777;
  font-size: 14px;
  line-height: 1.6;
  cursor: pointer;
}

.ga-form-terms input {
  margin-top: 3px;
  accent-color: #dcae35;
}


/* =========================================================
   PAYMENT SUMMARY
========================================================= */

.ga-payment-summary {
  padding: 17px 20px;
  border: 1px solid rgba(220, 174, 53, 0.25);
  border-radius: 14px;
  background: rgba(220, 174, 53, 0.04);
}

.ga-payment-summary>div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ga-payment-summary span {
  color: #999999;
  font-size: 12px;
}

.ga-payment-summary strong {
  color: #efc03f;
  font-size: 24px;
}

.ga-payment-summary small {
  display: block;
  margin-top: 4px;
  color: #666666;
  font-size: 9px;
}


/* =========================================================
   SUBMIT BUTTON
========================================================= */

.ga-submit-registration {
  width: 100%;
  height: 52px;
  margin-top: 18px;
  border: 0;
  border-radius: 8px;
  outline: none;
  background: linear-gradient(90deg,
      #bd8b1d,
      #edc149,
      #bd8b1d);
  color: #080808;
  font-family: inherit;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.ga-submit-registration i {
  margin-left: 14px;
}

.ga-submit-registration:hover {
  transform: translateY(-2px);
  box-shadow:
    0 12px 30px rgba(220, 174, 53, 0.2);
}


/* =========================================================
   SECURE NOTE
========================================================= */

.ga-secure-note {
  margin: 13px 0 0;
  color: #555555;
  font-size: 9px;
  text-align: center;
}

.ga-secure-note i {
  margin-right: 5px;
  color: #dcae35;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

  .ga-register-page {
    padding: 75px 0;
  }

  .ga-register-layout {
    grid-template-columns: 1fr;
  }

  .ga-register-summary {
    position: static;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

  .ga-register-header h1 {
    font-size: 34px;
  }

  .ga-registration-form-card {
    padding: 25px 20px;
  }

  .ga-form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

  .ga-register-page {
    padding: 55px 0;
  }

  .ga-register-header h1 {
    font-size: 29px;
  }

  .ga-register-offer {
    padding: 19px;
  }

  .ga-register-offer strong {
    font-size: 31px;
  }

  .ga-registration-form-card {
    padding: 22px 16px;
  }

}



.ve-footer-highlight {
  color: var(--ve-gold);
}








/* =========================================================
   GLOBAL ABACUS CHAMPIONS 2026
   REGISTRATION SECTION
========================================================= */

.ga-register-page {
  position: relative;
  padding: 90px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 15%,
      rgba(220, 174, 53, 0.08),
      transparent 30%),
    radial-gradient(circle at 90% 80%,
      rgba(220, 174, 53, 0.05),
      transparent 30%),
    #050505;
}


.ga-register-page::before {
  content: "";
  position: absolute;
  top: 0;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #d4a017, transparent);
}


/* =========================================================
   HEADER
========================================================= */

.ga-register-header {
  margin-bottom: 45px;
}

.ga-register-tag {
  display: inline-block;
  margin-bottom: 14px;
  color: #dcae35;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.ga-register-header h1 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.2;
}

.ga-register-header h1 span {
  color: #e4b63e;
}

.ga-register-header p {
  max-width: 600px;
  margin: 0 auto;
  color: #888;
  font-size: 13px;
  line-height: 1.7;
}


/* =========================================================
   LEFT SIDE
========================================================= */

.ga-register-summary {
  height: 100%;
}


/* =========================================================
   EARLY BIRD
========================================================= */

.ga-register-offer {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 25px;
  overflow: hidden;
  border: 1px solid #dcae35;
  border-radius: 18px;
  background:
    radial-gradient(circle at 90% 20%,
      rgba(220, 174, 53, 0.15),
      transparent 45%),
    #090909;
}

.ga-register-offer::after {
  content: "EARLY";
  position: absolute;
  right: -20px;
  bottom: -17px;
  color: rgba(220, 174, 53, 0.04);
  font-size: 75px;
  font-weight: 800;
}

.ga-offer-icon {
  position: relative;
  z-index: 2;
  width: 55px;
  height: 55px;
  min-width: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(145deg,
      #b9871c,
      #efc84c,
      #b9871c);
}

.ga-offer-icon i {
  color: #080808;
  font-size: 21px;
}

.ga-register-offer span {
  position: relative;
  z-index: 2;
  display: block;
  color: #dcae35;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.ga-register-offer strong {
  position: relative;
  z-index: 2;
  display: inline-block;
  margin-top: 3px;
  color: #f0c445;
  font-size: 36px;
  line-height: 1;
}

.ga-register-offer small {
  position: relative;
  z-index: 2;
  display: block;
  margin-top: 3px;
  color: #777;
  font-size: 14px;
}


/* =========================================================
   QUICK DETAILS
========================================================= */

.ga-register-quick {
  margin-top: 15px;
  padding: 23px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  background: #090909;
}

.ga-quick-title {
  padding-bottom: 14px;
  color: #e4b63e;
  font-size: 12px;
  font-weight: 700;
  border-bottom: 1px solid rgba(220, 174, 53, 0.15);
}

.ga-quick-title i {
  margin-right: 7px;
}

.ga-quick-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.045);
}

.ga-quick-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.ga-quick-row span {
  color: #777;
  font-size: 14px;
}

.ga-quick-row strong {
  color: #fff;
  font-size: 12px;
}


/* =========================================================
   BENEFIT
========================================================= */

.ga-register-benefit {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 15px;
  padding: 17px 20px;
  border-radius: 14px;
  background:
    linear-gradient(90deg,
      rgba(220, 174, 53, 0.09),
      rgba(220, 174, 53, 0.02));
}

.ga-register-benefit>i {
  color: #e4b63e;
  font-size: 27px;
}

.ga-register-benefit strong {
  display: block;
  color: #fff;
  font-size: 13px;
}

.ga-register-benefit span {
  display: block;
  margin-top: 3px;
  color: #dcae35;
  font-size: 14px;
}


/* =========================================================
   PRIZE
========================================================= */

.ga-register-prize {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 12px;
  padding: 18px 20px;
  overflow: hidden;
  border: 1px solid rgba(220, 174, 53, 0.35);
  border-radius: 14px;
  background: #090909;
}

.ga-register-prize>i {
  color: #e4b63e;
  font-size: 28px;
}

.ga-register-prize span {
  display: block;
  color: #777;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ga-register-prize strong {
  display: block;
  margin-top: 2px;
  color: #f0c445;
  font-size: 25px;
}


/* =========================================================
   RIGHT FORM CARD
========================================================= */

.ga-registration-form-card {
  position: relative;
  padding: 35px;
  border: 1px solid rgba(220, 174, 53, 0.25);
  border-radius: 20px;
  background: #090909;
}

.ga-registration-form-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg,
      transparent,
      #dcae35,
      transparent);
}


/* =========================================================
   FORM HEADING
========================================================= */

.ga-form-heading {
  margin-bottom: 27px;
}

.ga-form-heading>span {
  color: #dcae35;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.ga-form-heading h2 {
  margin: 5px 0;
  color: #fff;
  font-size: 25px;
  font-weight: 700;
}

.ga-form-heading p {
  margin: 0;
  color: #777;
  font-size: 14px;
}


/* =========================================================
   FORM ROW
========================================================= */

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


/* =========================================================
   FORM GROUP
========================================================= */

.ga-form-group {
  margin-bottom: 17px;
}

.ga-form-group label {
  display: block;
  margin-bottom: 7px;
  color: #aaa;
  font-size: 14px;
  font-weight: 600;
}

.ga-form-group label span {
  color: #dcae35;
}


/* =========================================================
   INPUT WRAPPER
========================================================= */

.ga-input-wrap {
  position: relative;
}

.ga-input-wrap>i {
  position: absolute;
  top: 50%;
  left: 15px;
  z-index: 2;
  color: #666;
  font-size: 12px;
  transform: translateY(-50%);
  transition: color 0.25s ease;
}

.ga-input-wrap input,
.ga-input-wrap select {
  width: 100%;
  height: 47px;
  padding: 0 14px 0 42px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  outline: none;
  background: #0d0d0d;
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  transition: all 0.25s ease;
}

.ga-input-wrap input::placeholder {
  color: #555;
}

.ga-input-wrap select {
  cursor: pointer;
}

.ga-input-wrap input:focus,
.ga-input-wrap select:focus {
  border-color: #dcae35;
  background: #101010;
  box-shadow:
    0 0 0 3px rgba(220, 174, 53, 0.05);
}

.ga-input-wrap:focus-within>i {
  color: #dcae35;
}


/* =========================================================
   TERMS
========================================================= */

.ga-form-terms {
  margin: 3px 0 18px;
}

.ga-form-terms label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #777;
  font-size: 9px;
  line-height: 1.6;
  cursor: pointer;
}

.ga-form-terms input {
  margin-top: 3px;
  accent-color: #dcae35;
}


/* =========================================================
   PAYMENT
========================================================= */

.ga-payment-summary {
  padding: 15px 18px;
  border: 1px solid rgba(220, 174, 53, 0.25);
  border-radius: 9px;
  background: rgba(220, 174, 53, 0.04);
}

.ga-payment-summary>div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ga-payment-summary span {
  color: #999;
  font-size: 14px;
}

.ga-payment-summary strong {
  color: #efc03f;
  font-size: 24px;
}


/* =========================================================
   SUBMIT
========================================================= */

.ga-submit-registration {
  width: 100%;
  height: 51px;
  margin-top: 16px;
  border: 0;
  border-radius: 8px;
  outline: none;
  background: linear-gradient(90deg,
      #b9871c,
      #edc149,
      #b9871c);
  color: #080808;
  font-family: inherit;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.ga-submit-registration i {
  margin-left: 9px;
}

.ga-submit-registration:hover {
  transform: translateY(-2px);
  box-shadow:
    0 14px 25px rgba(220, 174, 53, 0.2);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

  .ga-register-page {
    padding: 70px 0;
  }

  .ga-register-header h1 {
    font-size: 38px;
  }

  .ga-register-summary {
    margin-bottom: 25px;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

  .ga-register-page {
    padding: 60px 0;
  }

  .ga-register-header {
    margin-bottom: 30px;
  }

  .ga-register-header h1 {
    font-size: 31px;
  }

  .ga-register-header p {
    font-size: 12px;
  }

  .ga-registration-form-card {
    padding: 25px 20px;
  }

  .ga-form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

  .ga-register-header h1 {
    font-size: 27px;
  }

  .ga-register-offer {
    padding: 20px;
  }

  .ga-register-offer strong {
    font-size: 32px;
  }

  .ga-register-quick {
    padding: 19px;
  }

  .ga-registration-form-card {
    padding: 22px 16px;
  }

  .ga-form-heading h2 {
    font-size: 22px;
  }

}









/* ============================================================
   PRIZE SPOTLIGHT
============================================================ */

.ve-prize-section {
  position: relative;
  padding: 65px 0;
  overflow: hidden;
  background: #050505;
}

.ve-prize-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 8%;
  right: 8%;
  height: 1px;

  background: linear-gradient(90deg,
      transparent,
      #d4a017,
      transparent);

  z-index: 2;
}


/* Main */

.ve-prize-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;

  padding: 35px 45px;

  border: 1px solid rgba(216, 170, 53, 0.25);
  border-radius: 20px;

  background:
    radial-gradient(circle at 75% 50%,
      rgba(216, 170, 53, 0.10),
      transparent 35%),
    #090909;
}


/* Left */

.ve-prize-content {
  max-width: 650px;
}

.ve-prize-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #d4a017;
  font-size: 18px;
  font-weight: 700;
}

.ve-prize-tag i {
  font-size: 13px;
}

.ve-prize-content h2 {
  margin: 9px 0 10px;

  color: #fff;

  font-size: 34px;
  font-weight: 700;
  line-height: 1.15;
}

.ve-prize-content h2 span {
  color: #e5b83f;
}

.ve-prize-content>p {
  max-width: 560px;

  margin: 0;

  color: #888;

  font-size: 12px;
  line-height: 1.7;
}


/* Features */

.ve-prize-features {
  display: flex;
  gap: 30px;

  margin-top: 23px;
}

.ve-prize-features>div {
  display: grid;
  grid-template-columns: 35px auto;
  column-gap: 10px;
  align-items: center;
}

.ve-prize-features i {
  grid-row: span 2;

  width: 35px;
  height: 35px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: rgba(216, 170, 53, 0.08);

  color: #d4a017;

  font-size: 14px;
}

.ve-prize-features strong {
  color: #fff;
  font-size: 12px;
}

.ve-prize-features span {
  color: #777;
  font-size: 9px;
}


/* ============================================================
   PRIZE MONEY
============================================================ */

.ve-prize-money {
  position: relative;
  width: 320x;
  min-width: 320px;
  height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid #d4a017;
  border-radius: 50%;
  background:
    radial-gradient(circle,
      rgba(216, 170, 53, 0.16),
      rgba(216, 170, 53, 0.02) 60%,
      transparent 70%);

  box-shadow:
    0 0 45px rgba(216, 170, 53, 0.08),
    inset 0 0 30px rgba(216, 170, 53, 0.04);
}


/* Inner Ring */

.ve-prize-money::before {
  content: "";

  position: absolute;

  inset: 10px;

  border: 1px dashed rgba(216, 170, 53, 0.35);

  border-radius: 50%;
}


/* Glow */

.ve-prize-glow {
  position: absolute;

  width: 90px;
  height: 90px;

  top: 25px;
  right: 25px;

  border-radius: 50%;

  background: rgba(216, 170, 53, 0.12);

  filter: blur(20px);
}


/* Text */

.ve-prize-money>span {
  position: relative;
  z-index: 2;

  color: #999;

  font-size: 8px;
  font-weight: 700;

  letter-spacing: 2px;
}

.ve-prize-money>strong {
  position: relative;
  z-index: 2;

  margin-top: 3px;

  color: #f0c441;

  font-size: 55px;
  font-weight: 800;

  line-height: 0.95;

  letter-spacing: -3px;
}

.ve-prize-money>small {
  position: relative;
  z-index: 2;

  margin-top: 3px;

  color: #fff;

  font-size: 14px;
  font-weight: 800;

  letter-spacing: 5px;
}

.ve-prize-money>p {
  position: relative;
  z-index: 2;

  margin: 8px 0 0;

  color: #777;

  font-size: 9px;

  line-height: 1.5;

  text-align: center;
}


/* Trophy */

.ve-prize-trophy {
  position: absolute;

  right: 28px;
  bottom: 28px;

  color: rgba(216, 170, 53, 0.10);

  font-size: 34px;
}


/* ============================================================
   TABLET
============================================================ */

@media (max-width: 991px) {

  .ve-prize-inner {
    padding: 35px;
  }

  .ve-prize-money {
    width: 220px;
    min-width: 220px;
    height: 220px;
  }

  .ve-prize-money>strong {
    font-size: 48px;
  }

}


/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 767px) {

  .ve-prize-section {
    padding: 50px 0;
  }

  .ve-prize-inner {
    flex-direction: column;
    text-align: center;
    gap: 30px;
    padding: 30px 20px;
  }

  .ve-prize-content>p {
    margin: auto;
  }

  .ve-prize-features {
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }

  .ve-prize-features>div {
    text-align: left;
  }

  .ve-prize-money {
    width: 220px;
    min-width: 220px;
    height: 220px;
  }

}














/* ============================================================
   HERO - CHAMPIONSHIP CONTENT
============================================================ */

.ve-powered-by {
    color: #888;
    font-size: 30px;
}

.ve-powered-by strong {
    color: #e2b43c;
    font-weight: 700;
}


/* ============================================================
   PRIZE MONEY
============================================================ */

.ve-hero-prize {
    position: relative;

    display: flex;
    align-items: center;
    gap: 22px;

    width: fit-content;

    margin-top: 22px;
    padding: 13px 28px;

    border: 1px solid rgba(220,174,53,0.5);
    border-radius: 12px;

    background:
        linear-gradient(
            90deg,
            rgba(220,174,53,0.10),
            rgba(220,174,53,0.025)
        );

    box-shadow:
        0 0 30px rgba(220,174,53,0.06);
}

.ve-prize-label {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ve-prize-label i {
    color: #e6b83e;
    font-size: 20px;
}

.ve-prize-label span {
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
}

.ve-hero-prize > strong {
    color: #f1c33f;
    font-size: 90px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -1px;
}


/* ============================================================
   EARLY BIRD OFFER
============================================================ */

.ve-hero-offer {
    display: flex;
    align-items: center;
    gap: 15px;

    margin-top: 17px;
}

.ve-early-bird {
    position: relative;

    min-width: 215px;
    padding: 20px 10px 10px;

    border: 1px solid rgba(220,174,53,0.3);
    border-radius: 10px;

    background: rgba(220,174,53,0.045);
}

.ve-early-label {
    display: block;

    color: #e5b83e;

    font-size: 18px;
    font-weight: 700;

    letter-spacing: 1px;
    text-transform: uppercase;
}

.ve-early-label i {
    margin-right: 5px;
}

.ve-offer-price {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-top: 4px;
}

.ve-offer-price strong {
    color: #fff;
    font-size: 45px;
    font-weight: 800;
}

.ve-offer-price del {
    color: #777;
    font-size: 25px;
}

.ve-offer-discount {
    position: absolute;

    top: -9px;
    right: 10px;

    padding: 3px 8px;

    border-radius: 20px;

    background: #dcae35;

    color: #080808;

    font-size: 12px;
    font-weight: 800;
}


/* ============================================================
   APPLY NOW BUTTON
============================================================ */

.ve-apply-btn {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    min-width: 125px;

    padding: 15px 20px;

    border: none;
    border-radius: 8px;

    background: linear-gradient(
        90deg,
        #bd8b1d,
        #efc64b,
        #bd8b1d
    );

    color: #080808;

    font-size: 30px;
    font-weight: 800;

    letter-spacing: 0.7px;

    text-decoration: none;
    text-transform: uppercase;

    overflow: hidden;
    z-index: 1;

    animation: applyButtonGlow 2s ease-in-out infinite;

    transition: box-shadow 0.3s ease;
}

/* ============================================================
   APPLY NOW - NO SIZE CHANGE ON HOVER
============================================================ */

.ve-apply-btn:hover {
     position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    min-width: 125px;

    padding: 15px 20px;

    border: none;
    border-radius: 8px;

    background: linear-gradient(
        90deg,
        #bd8b1d,
        #efc64b,
        #bd8b1d
    );

    color: #080808;

    font-size: 30px;
    font-weight: 800;

    letter-spacing: 0.7px;

    text-decoration: none;
    text-transform: uppercase;

    overflow: hidden;
    z-index: 1;

    animation: applyButtonGlow 2s ease-in-out infinite;

    transition: box-shadow 0.3s ease;
}

/* ============================================================
   MOVING SHINE
============================================================ */

.ve-apply-btn::before {
    content: "";

    position: absolute;

    top: 0;
    left: -120%;

    width: 55%;
    height: 100%;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.45),
        transparent
    );

    transform: skewX(-20deg);

    animation: applyButtonShine 3s ease-in-out infinite;

    z-index: 0;
}


/* ============================================================
   ARROW
============================================================ */

.ve-apply-btn i {
    position: relative;
    z-index: 2;

    font-size: 10px;

    animation: applyArrowMove 1.5s ease-in-out infinite;
}


/* ============================================================
   BUTTON GLOW
============================================================ */

@keyframes applyButtonGlow {

    0%,
    100% {
        box-shadow:
            0 4px 12px rgba(220,174,53,0.10);
    }

    50% {
        box-shadow:
            0 5px 22px rgba(220,174,53,0.30),
            0 0 12px rgba(220,174,53,0.12);
    }

}


/* ============================================================
   SHINE ANIMATION
============================================================ */

@keyframes applyButtonShine {

    0% {
        left: -120%;
    }

    45%,
    100% {
        left: 140%;
    }

}

/* ============================================================
   HERO DESCRIPTION
============================================================ */

.ve-hero-left > p {
    max-width: 570px;

    margin-top: 18px;

    color: #888;

    font-size: 12px;

    line-height: 1.7;
}

.date-banner p{
  font-size: 22px;
  margin-top: 30px;
  color: #ffffff;
  margin-bottom: 20px;
}

/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 767px) {

    .ve-hero-prize {
        width: 100%;
        justify-content: space-between;
    }

    .ve-hero-prize > strong {
        font-size: 31px;
    }

    .ve-hero-offer {
        align-items: stretch;
        flex-direction: column;
    }

    .ve-early-bird {
        width: 100%;
    }

    .ve-apply-btn {
        width: 100%;
    }

}
/* ============================================================
   HERO PREMIUM ANIMATIONS
============================================================ */


/* ------------------------------------------------------------
   PRIZE MONEY - BLINK + GLOW
------------------------------------------------------------ */

.ve-hero-prize {
    animation: prizeBoxGlow 2s ease-in-out infinite;
}

.ve-hero-prize > strong {
    animation: prizeMoneyBlink 1.4s ease-in-out infinite;
}

@keyframes prizeBoxGlow {

    0%,
    100% {
        box-shadow:
            0 0 8px rgba(220,174,53,0.08),
            inset 0 0 10px rgba(220,174,53,0.03);
    }

    50% {
        box-shadow:
            0 0 28px rgba(220,174,53,0.28),
            inset 0 0 20px rgba(220,174,53,0.08);
    }

}

@keyframes prizeMoneyBlink {

    0%,
    100% {
        opacity: 1;
        text-shadow:
            0 0 0 rgba(240,196,65,0);
    }

    50% {
        opacity: 0.72;
        text-shadow:
            0 0 12px rgba(240,196,65,0.8),
            0 0 25px rgba(240,196,65,0.4);
    }

}


/* ------------------------------------------------------------
   TROPHY ICON
------------------------------------------------------------ */

.ve-prize-label i {
    animation: trophyBounce 1.8s ease-in-out infinite;
}

@keyframes trophyBounce {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-4px) rotate(-5deg);
    }

}


/* ------------------------------------------------------------
   CHAMPIONS TITLE - SUBTLE SHINE
------------------------------------------------------------ */

.ve-highlight {
    background: linear-gradient(
        90deg,
        #c99525,
        #ffe071,
        #dcae35,
        #ffe071,
        #c99525
    );

    background-size: 250% auto;

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    animation: goldShine 4s linear infinite;
}

@keyframes goldShine {

    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 250% center;
    }

}


/* ------------------------------------------------------------
   EARLY BIRD BOX - SOFT PULSE
------------------------------------------------------------ */

.ve-early-bird {
    animation: earlyBirdPulse 2.5s ease-in-out infinite;
}

@keyframes earlyBirdPulse {

    0%,
    100% {
        box-shadow:
            0 0 0 rgba(220,174,53,0);
    }

    50% {
        box-shadow:
            0 0 18px rgba(220,174,53,0.14);
    }

}


/* ------------------------------------------------------------
   50% OFF - ATTENTION PULSE
------------------------------------------------------------ */

.ve-offer-discount {
    animation: discountPulse 1.5s ease-in-out infinite;
}

@keyframes discountPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

}


/* ------------------------------------------------------------
   APPLY NOW - GENTLE PULSE
------------------------------------------------------------ */

.ve-apply-btn {
    animation: applyPulse 2.2s ease-in-out infinite;
}

@keyframes applyPulse {

    0%,
    100% {
        box-shadow:
            0 0 0 rgba(220,174,53,0);
    }

    50% {
        box-shadow:
            0 0 20px rgba(220,174,53,0.25);
    }

}


/* ------------------------------------------------------------
   EARLY BIRD STAR
------------------------------------------------------------ */

.ve-early-label i {
    animation: starSpin 2.5s ease-in-out infinite;
}

@keyframes starSpin {

    0%,
    80%,
    100% {
        transform: rotate(0deg) scale(1);
    }

    90% {
        transform: rotate(12deg) scale(1.15);
    }

}


/* ------------------------------------------------------------
   HERO BADGE
------------------------------------------------------------ */

.ve-hero-badge {
    animation: badgeGlow 3s ease-in-out infinite;
}

@keyframes badgeGlow {

    0%,
    100% {
        box-shadow:
            0 0 0 rgba(220,174,53,0);
    }

    50% {
        box-shadow:
            0 0 15px rgba(220,174,53,0.10);
    }

}


/* ------------------------------------------------------------
   RESPECT REDUCED MOTION
------------------------------------------------------------ */

@media (prefers-reduced-motion: reduce) {

    .ve-hero-prize,
    .ve-hero-prize > strong,
    .ve-prize-label i,
    .ve-highlight,
    .ve-early-bird,
    .ve-offer-discount,
    .ve-apply-btn,
    .ve-early-label i,
    .ve-hero-badge {
        animation: none;
    }

}










/* ============================================================
   STUDENT BENEFITS SECTION
============================================================ */

.ve-benefits-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: #050505;
}

.ve-benefits-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 8%;
    right: 8%;
    height: 1px;

    background: linear-gradient(
        90deg,
        transparent,
        #d8aa35,
        transparent
    );
}


/* ============================================================
   CONTENT
============================================================ */

.ve-benefits-content {
    padding-right: 45px;
}

.ve-benefits-content .ve-section-tag {
    display: inline-block;

    margin-bottom: 12px;

    color: #d8aa35;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.ve-benefits-content h2 {
    margin: 0 0 18px;

    color: #ffffff;

    font-size: 42px;
    font-weight: 700;

    line-height: 1.2;
}

.ve-benefits-content h2 span {
    color: #e2b43c;
}

.ve-benefits-content > p {
    max-width: 650px;

    margin: 0 0 35px;

    color: #999999;

    font-size: 15px;
    line-height: 1.8;
}


/* ============================================================
   BENEFIT LIST
============================================================ */

.ve-benefits-list {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 18px;
}

.ve-benefit-item {
    display: flex;
    align-items: flex-start;

    gap: 15px;

    

    padding: 5px 5px 10px 5px;

    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 13px;

    background: rgba(255,255,255,0.025);

    transition: all 0.3s ease;
}

.ve-benefit-item:hover {
    border-color: rgba(216,170,53,0.4);

    background: rgba(216,170,53,0.045);

    transform: translateY(-3px);
}


/* ============================================================
   BENEFIT ICON
============================================================ */

.ve-benefit-icon {
    width: 48px;
    height: 48px;

    min-width: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(216,170,53,0.25);

    border-radius: 50%;

    background: rgba(216,170,53,0.08);

    color: #e2b43c;

    font-size: 18px;
}

.ve-benefit-item strong {
    display: block;

    margin-top: 14px;

    color: #ffffff;

    font-size: 15px;
    font-weight: 700;

    line-height: 1.4;
}

.ve-benefit-item span {
    display: block;

    margin-top: 7px;

    color: #888888;

    font-size: 12px;

    line-height: 1.6;
}


/* ============================================================
   RIGHT IMAGE
============================================================ */

.ve-benefits-image {
    /* position: relative;

    min-height: 520px;

    margin-left: 20px; */
}

.ve-benefits-img {
    width: 100%;
    min-height: 300px;

    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;

    border: 1px solid rgba(216,170,53,0.25);
    border-radius: 22px;
}

/* Image Overlay */

.ve-benefits-image::after {
    content: "";

    position: absolute;

    inset: 0;

    border-radius: 22px;

    background:
        linear-gradient(
            180deg,
            transparent 45%,
            rgba(0,0,0,0.7) 100%
        );

    pointer-events: none;
}


/* ============================================================
   FLOATING CARD
============================================================ */

.ve-benefits-floating {
    position: absolute;

    left: -35px;
    bottom: 35px;

    z-index: 5;

    display: flex;
    align-items: center;

    gap: 15px;

    padding: 18px 23px;

    border: 1px solid rgba(216,170,53,0.4);

    border-radius: 12px;

    background: rgba(8,8,8,0.96);

    box-shadow:
        0 15px 40px rgba(0,0,0,0.5);
}

.ve-benefits-floating > i {
    color: #e2b43c;

    font-size: 28px;
}

.ve-benefits-floating strong {
    display: block;

    color: #ffffff;

    font-size: 14px;
}

.ve-benefits-floating span {
    display: block;

    margin-top: 4px;

    color: #888888;

    font-size: 11px;
}


/* ============================================================
   TABLET
============================================================ */

@media (max-width: 991px) {

    .ve-benefits-content {
        padding-right: 0;

        margin-bottom: 45px;
    }

    .ve-benefits-content h2 {
        font-size: 38px;
    }

    .ve-benefits-image {
        margin-left: 0;
    }

}


/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 767px) {

    .ve-benefits-section {
        padding: 70px 0;
    }

    .ve-benefits-content h2 {
        font-size: 32px;
    }

    .ve-benefits-content > p {
        font-size: 14px;
    }

    .ve-benefits-list {
        grid-template-columns: 1fr;
    }

    .ve-benefit-item {
        min-height: auto;

        padding: 18px;
    }

    .ve-benefit-item strong {
        font-size: 14px;
    }

    .ve-benefit-item span {
        font-size: 11px;
    }

    .ve-benefits-image {
        min-height: 400px;
    }

    .ve-benefits-img {
        height: 400px;
    }

    .ve-benefits-floating {
        left: 15px;
        bottom: 20px;
    }

}


/* ============================================================
   SMALL MOBILE
============================================================ */

@media (max-width: 480px) {

    .ve-benefits-content h2 {
        font-size: 28px;
    }

    .ve-benefit-icon {
        width: 43px;
        height: 43px;
        min-width: 43px;

        font-size: 16px;
    }

}







/* ============================================================
   ABOUT COMPETITION PAGE
============================================================ */


/* ============================================================
   SECTION 1 - ABOUT THE COMPETITION
============================================================ */

.ve-inner-about-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: #050505;
}

.ve-inner-about-section::before {
    content: "";
    position: absolute;

    top: 0;
    left: 8%;
    right: 8%;

    height: 1px;

    background: linear-gradient(
        90deg,
        transparent,
        #d8aa35,
        transparent
    );

    z-index: 2;
}


/* Content */

.ve-inner-about-content {
    padding-right: 45px;
}

.ve-inner-about-content .ve-section-tag {
    display: inline-block;

    margin-bottom: 12px;

    color: #d8aa35;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.ve-inner-about-content h2 {
    margin: 0 0 20px;

    color: #ffffff;

    font-size: 42px;
    font-weight: 700;

    line-height: 1.2;
}

.ve-inner-about-content h2 span {
    color: #e2b43c;
}

.ve-inner-about-content p {
    margin-bottom: 15px;

    color: #999999;

    font-size: 15px;
    line-height: 1.8;
}

.ve-inner-about-content p strong {
    color: #e2b43c;
}


/* Highlight */

.ve-about-highlight {
    display: flex;
    align-items: center;

    gap: 15px;

    margin-top: 25px;

    padding: 18px 20px;

    border-left: 3px solid #d8aa35;

    background:
        linear-gradient(
            90deg,
            rgba(216,170,53,0.09),
            rgba(216,170,53,0.02)
        );
}

.ve-about-highlight > i {
    color: #e2b43c;

    font-size: 25px;
}

.ve-about-highlight strong {
    display: block;

    color: #ffffff;

    font-size: 14px;
}

.ve-about-highlight span {
    display: block;

    margin-top: 4px;

    color: #888888;

    font-size: 11px;

    line-height: 1.5;
}


/* Year Card */

.ve-about-number-card {
    position: relative;

    min-height: 400px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    overflow: hidden;

    border: 1px solid rgba(216,170,53,0.3);

    border-radius: 22px;

    background:
        radial-gradient(
            circle at center,
            rgba(216,170,53,0.12),
            transparent 60%
        ),
        #090909;

    text-align: center;
}

.ve-about-number-card::before {
    content: "";

    position: absolute;

    inset: 15px;

    border: 1px dashed rgba(216,170,53,0.22);

    border-radius: 18px;
}

.ve-about-number-card > i {
    position: relative;
    z-index: 2;

    margin-bottom: 15px;

    color: #e2b43c;

    font-size: 38px;
}

.ve-about-number-card > span {
    position: relative;
    z-index: 2;

    color: #999999;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 2px;
}

.ve-about-number-card > strong {
    position: relative;
    z-index: 2;

    margin: 5px 0;

    color: #eac044;

    font-size: 70px;
    font-weight: 800;

    line-height: 1;
}

.ve-about-number-card > small {
    position: relative;
    z-index: 2;

    color: #ffffff;

    font-size: 14px;
}


/* ============================================================
   SECTION 2 - WHY PARTICIPATE
============================================================ */

.ve-inner-benefits-section {
    position: relative;

    padding: 100px 0;

    overflow: hidden;

    background: #080808;
}

.ve-inner-benefits-section::before {
    content: "";

    position: absolute;

    top: 0;
    left: 8%;
    right: 8%;

    height: 1px;

    background: linear-gradient(
        90deg,
        transparent,
        #d8aa35,
        transparent
    );
}


/* Header */

.ve-inner-benefits-section .ve-section-header {
    max-width: 700px;

    margin: 0 auto 50px;
}

.ve-inner-benefits-section .ve-section-tag {
    display: inline-block;

    margin-bottom: 10px;

    color: #d8aa35;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 1.8px;

    text-transform: uppercase;
}

.ve-inner-benefits-section .ve-section-header h2 {
    margin: 0 0 15px;

    color: #ffffff;

    font-size: 40px;
    font-weight: 700;
}

.ve-inner-benefits-section .ve-section-header h2 span {
    color: #e2b43c;
}

.ve-inner-benefits-section .ve-section-header p {
    margin: 0;

    color: #888888;

    font-size: 14px;

    line-height: 1.8;
}


/* Benefit Card */

.ve-about-benefit {
    height: 100%;

    margin-bottom: 25px;

    padding: 30px 25px;

    border: 1px solid rgba(255,255,255,0.08);

    border-radius: 15px;

    background: #0c0c0c;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.ve-about-benefit:hover {
    transform: translateY(-6px);

    border-color: rgba(216,170,53,0.4);

    box-shadow:
        0 15px 35px rgba(0,0,0,0.35);
}


/* Benefit Icon */

.ve-about-benefit-icon {
    width: 55px;
    height: 55px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 20px;

    border: 1px solid rgba(216,170,53,0.3);

    border-radius: 50%;

    background: rgba(216,170,53,0.07);

    color: #e2b43c;

    font-size: 20px;
}

.ve-about-benefit h4 {
    margin: 0 0 10px;

    color: #ffffff;

    font-size: 17px;
    font-weight: 700;
}

.ve-about-benefit p {
    margin: 0;

    color: #858585;

    font-size: 12px;

    line-height: 1.7;
}


/* ============================================================
   SECTION 3 - COMPETITION DETAILS
============================================================ */

.ve-about-details-section {
    position: relative;

    padding: 100px 0;

    overflow: hidden;

    background: #050505;
}

.ve-about-details-section::before {
    content: "";

    position: absolute;

    top: 0;
    left: 8%;
    right: 8%;

    height: 1px;

    background: linear-gradient(
        90deg,
        transparent,
        #d8aa35,
        transparent
    );
}


/* Header */

.ve-about-details-section .ve-section-header {
    max-width: 700px;

    margin: 0 auto 50px;
}

.ve-about-details-section .ve-section-tag {
    display: inline-block;

    margin-bottom: 10px;

    color: #d8aa35;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 1.8px;

    text-transform: uppercase;
}

.ve-about-details-section .ve-section-header h2 {
    margin: 0 0 15px;

    color: #ffffff;

    font-size: 40px;
}

.ve-about-details-section .ve-section-header h2 span {
    color: #e2b43c;
}

.ve-about-details-section .ve-section-header p {
    margin: 0;

    color: #888888;

    font-size: 14px;

    line-height: 1.8;
}


/* Details Grid */

.ve-about-details-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 16px;
}


/* Detail */

.ve-about-detail {
    position: relative;

    min-height: 145px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    padding: 22px 15px;

    overflow: hidden;

    border: 1px solid rgba(255,255,255,0.08);

    border-radius: 14px;

    background: #090909;

    text-align: center;

    transition: all 0.3s ease;
}

.ve-about-detail:hover {
    transform: translateY(-4px);

    border-color: rgba(216,170,53,0.4);

    background: #0c0c0c;
}

.ve-about-detail > i {
    margin-bottom: 12px;

    color: #dcae35;

    font-size: 23px;
}

.ve-about-detail > span {
    margin-bottom: 5px;

    color: #777777;

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: 0.8px;
}

.ve-about-detail > strong {
    color: #ffffff;

    font-size: 15px;

    line-height: 1.4;
}


/* Prize Detail */

.ve-about-detail-prize {
    border-color: rgba(216,170,53,0.35);

    background:
        radial-gradient(
            circle at center,
            rgba(216,170,53,0.09),
            transparent 70%
        );
}

.ve-about-detail-prize > strong {
    color: #eac044;

    font-size: 22px;
}


/* ============================================================
   PARTICIPANT RECOGNITION
============================================================ */

.ve-about-recognition {
    display: flex;

    align-items: center;

    gap: 20px;

    margin-top: 25px;

    padding: 25px 30px;

    border: 1px solid rgba(216,170,53,0.25);

    border-radius: 15px;

    background:
        linear-gradient(
            90deg,
            rgba(216,170,53,0.07),
            rgba(216,170,53,0.015)
        );
}

.ve-recognition-icon {
    width: 60px;
    height: 60px;

    min-width: 60px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(216,170,53,0.1);

    color: #e2b43c;

    font-size: 25px;
}

.ve-about-recognition strong {
    display: block;

    margin-bottom: 5px;

    color: #ffffff;

    font-size: 17px;
}

.ve-about-recognition p {
    margin: 0;

    color: #888888;

    font-size: 12px;

    line-height: 1.7;
}

.ve-about-recognition p b {
    color: #e2b43c;
}


/* ============================================================
   TABLET
============================================================ */

@media (max-width: 991px) {

    .ve-inner-about-section,
    .ve-inner-benefits-section,
    .ve-about-details-section {
        padding: 75px 0;
    }

    .ve-inner-about-content {
        padding-right: 0;

        margin-bottom: 40px;
    }

    .ve-about-number-card {
        min-height: 350px;
    }

    .ve-about-details-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 767px) {

    .ve-inner-about-section,
    .ve-inner-benefits-section,
    .ve-about-details-section {
        padding: 60px 0;
    }

    .ve-inner-about-content h2 {
        font-size: 32px;
    }

    .ve-inner-about-content p {
        font-size: 14px;
    }

    .ve-about-number-card {
        min-height: 300px;
    }

    .ve-about-number-card > strong {
        font-size: 58px;
    }


    /* Benefits */

    .ve-inner-benefits-section .ve-section-header h2,
    .ve-about-details-section .ve-section-header h2 {
        font-size: 31px;
    }

    .ve-inner-benefits-section .ve-section-header p,
    .ve-about-details-section .ve-section-header p {
        font-size: 13px;
    }

    .ve-about-benefit {
        padding: 25px 22px;
    }

    .ve-about-benefit h4 {
        font-size: 16px;
    }

    .ve-about-benefit p {
        font-size: 12px;
    }


    /* Details */

    .ve-about-details-grid {
        grid-template-columns: 1fr 1fr;

        gap: 12px;
    }

    .ve-about-detail {
        min-height: 130px;
    }

    .ve-about-detail > strong {
        font-size: 13px;
    }


    /* Recognition */

    .ve-about-recognition {
        align-items: flex-start;

        padding: 20px;

        gap: 15px;
    }

    .ve-recognition-icon {
        width: 50px;
        height: 50px;

        min-width: 50px;

        font-size: 21px;
    }

    .ve-about-recognition strong {
        font-size: 15px;
    }

}


/* ============================================================
   SMALL MOBILE
============================================================ */

@media (max-width: 480px) {

    .ve-inner-about-content h2 {
        font-size: 28px;
    }

    .ve-about-number-card > strong {
        font-size: 50px;
    }

    .ve-about-details-grid {
        grid-template-columns: 1fr;
    }

    .ve-about-detail {
        min-height: 115px;
    }

}


/* ============================================================
   RULES & REGULATIONS
============================================================ */

.ve-rules-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: #050505;
}


/* ============================================================
   TOP GOLD LINE
============================================================ */

.ve-rules-section::before {
    content: "";

    position: absolute;

    top: 0;
    left: 8%;
    right: 8%;

    height: 1px;

    background: linear-gradient(
        90deg,
        transparent,
        #d8aa35,
        transparent
    );

    z-index: 2;
}


/* ============================================================
   HEADER
============================================================ */

.ve-rules-header {
    max-width: 800px;

    margin: 0 auto 55px;
}

.ve-rules-header .ve-section-tag {
    display: inline-block;

    margin-bottom: 10px;

    color: #d8aa35;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;
}

.ve-rules-header h2 {
    margin: 0 0 15px;

    color: #ffffff;

    font-size: 45px;
    font-weight: 700;

    line-height: 1.2;
}

.ve-rules-header h2 span {
    color: #e4b63d;
}

.ve-rules-header p {
    max-width: 680px;

    margin: 0 auto;

    color: #929292;

    font-size: 14px;

    line-height: 1.8;
}


/* ============================================================
   RULES GRID
============================================================ */

.ve-rules-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 0;

    border-top: 1px solid rgba(216,170,53,0.22);
    border-left: 1px solid rgba(216,170,53,0.22);

    border-radius: 18px;

    overflow: hidden;

    background: #090909;
}


/* ============================================================
   RULE ITEM
============================================================ */

.ve-rule-item {
    position: relative;

    display: flex;

    align-items: flex-start;

    gap: 20px;

    min-height: 185px;

    padding: 28px 30px;

    border-right: 1px solid rgba(216,170,53,0.22);
    border-bottom: 1px solid rgba(216,170,53,0.22);

    background: #090909;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.ve-rule-item:hover {
    background:
        linear-gradient(
            135deg,
            rgba(216,170,53,0.07),
            rgba(216,170,53,0.015)
        );
}


/* ============================================================
   RULE ICON
============================================================ */

.ve-rule-icon {
    position: relative;

    width: 65px;
    height: 65px;

    min-width: 65px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 2px solid #d8aa35;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(216,170,53,0.12),
            rgba(216,170,53,0.025)
        );

    color: #e4b63d;

    font-size: 23px;

    box-shadow:
        0 0 20px rgba(216,170,53,0.05);
}

.ve-rule-icon::after {
    content: "";

    position: absolute;

    inset: 5px;

    border: 1px dashed rgba(216,170,53,0.25);

    border-radius: 50%;
}


/* ============================================================
   RULE CONTENT
============================================================ */

.ve-rule-content {
    flex: 1;
}

.ve-rule-content > span {
    display: block;

    margin-bottom: 3px;

    color: #d8aa35;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1px;
}

.ve-rule-content h4 {
    margin: 0 0 8px;

    color: #e5b83e;

    font-size: 19px;

    font-weight: 700;

    line-height: 1.3;
}

.ve-rule-content p {
    margin: 0;

    color: #b1b1b1;

    font-size: 13px;

    line-height: 1.65;
}

.ve-rule-content p strong {
    color: #ffffff;

    font-weight: 700;
}


/* ============================================================
   IMPORTANT RULE HIGHLIGHTS
============================================================ */

/* Laptop */

.ve-rule-item:nth-child(2) {
    background:
        linear-gradient(
            135deg,
            rgba(216,170,53,0.07),
            #090909
        );
}

.ve-rule-item:nth-child(2) .ve-rule-icon {
    box-shadow:
        0 0 25px rgba(216,170,53,0.12);
}


/* Internet */

.ve-rule-item:nth-child(3) {
    background:
        linear-gradient(
            135deg,
            rgba(216,170,53,0.045),
            #090909
        );
}


/* Camera */

.ve-rule-item:nth-child(5) {
    background:
        linear-gradient(
            135deg,
            rgba(216,170,53,0.045),
            #090909
        );
}


/* ============================================================
   IMPORTANT NOTICE
============================================================ */

.ve-rules-notice {
    display: flex;

    align-items: center;

    gap: 20px;

    margin-top: 25px;

    padding: 25px 30px;

    border: 1px solid rgba(216,170,53,0.4);

    border-radius: 15px;

    background:
        linear-gradient(
            90deg,
            rgba(216,170,53,0.09),
            rgba(216,170,53,0.02)
        );
}

.ve-rules-notice-icon {
    width: 55px;
    height: 55px;

    min-width: 55px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(216,170,53,0.1);

    color: #e4b63d;

    font-size: 25px;
}

.ve-rules-notice strong {
    display: block;

    margin-bottom: 5px;

    color: #e5b83e;

    font-size: 17px;

    text-transform: uppercase;
}

.ve-rules-notice p {
    margin: 0;

    color: #999;

    font-size: 13px;

    line-height: 1.7;
}

.ve-rules-notice p strong {
    display: inline;

    margin: 0;

    color: #ffffff;

    font-size: inherit;

    text-transform: none;
}


/* ============================================================
   SUBTLE ANIMATION
============================================================ */

.ve-rule-item:hover .ve-rule-icon {
    box-shadow:
        0 0 25px rgba(216,170,53,0.18);

    transition: box-shadow 0.3s ease;
}


/* ============================================================
   TABLET
============================================================ */

@media (max-width: 991px) {

    .ve-rules-section {
        padding: 75px 0;
    }

    .ve-rules-header h2 {
        font-size: 40px;
    }

    .ve-rule-item {
        min-height: 200px;

        padding: 25px 22px;

        gap: 15px;
    }

    .ve-rule-icon {
        width: 58px;
        height: 58px;

        min-width: 58px;

        font-size: 20px;
    }

}


/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 767px) {

    .ve-rules-section {
        padding: 65px 0;
    }

    .ve-rules-header {
        margin-bottom: 35px;
    }

    .ve-rules-header h2 {
        font-size: 32px;
    }

    .ve-rules-header p {
        font-size: 13px;
    }


    /* One Column */

    .ve-rules-grid {
        grid-template-columns: 1fr;

        border-radius: 14px;
    }

    .ve-rule-item {
        min-height: auto;

        padding: 23px 18px;
    }

    .ve-rule-content h4 {
        font-size: 17px;
    }

    .ve-rule-content p {
        font-size: 12px;
    }


    /* Notice */

    .ve-rules-notice {
        align-items: flex-start;

        padding: 20px;

        gap: 14px;
    }

    .ve-rules-notice-icon {
        width: 48px;
        height: 48px;

        min-width: 48px;

        font-size: 21px;
    }

    .ve-rules-notice strong {
        font-size: 15px;
    }

    .ve-rules-notice p {
        font-size: 11px;
    }

}


/* ============================================================
   SMALL MOBILE
============================================================ */

@media (max-width: 480px) {

    .ve-rules-header h2 {
        font-size: 28px;
    }

    .ve-rule-item {
        gap: 13px;
    }

    .ve-rule-icon {
        width: 50px;
        height: 50px;

        min-width: 50px;

        font-size: 17px;
    }

    .ve-rule-content h4 {
        font-size: 16px;
    }

    .ve-rule-content p {
        font-size: 11px;
    }

}


/* ============================================================
   CONTACT PAGE - PREMIUM TYPOGRAPHY
============================================================ */

.ve-contact-cards-section,
.ve-contact-section {
    font-family: inherit;
    background: #000000 !important;
}


/* ============================================================
   PAGE HEADING
============================================================ */

.ve-contact-page-header {
    max-width: 760px;
    margin: 0 auto 55px;
    text-align: center;
}

.ve-contact-page-header .ve-section-tag {
    display: inline-block;

    margin-bottom: 14px;

    color: #d8aa35;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 2px;
    text-transform: uppercase;
}

.ve-contact-page-header h2 {
    margin: 0 0 18px;

    color: #ffffff;

    font-size: 44px;
    font-weight: 700;

    line-height: 1.2;
    letter-spacing: -0.5px;
}

.ve-contact-page-header h2 span {
    color: #e3b63d;
}

.ve-contact-page-header p {
    max-width: 650px;

    margin: 0 auto;

    color: #a3a3a3;

    font-size: 16px;
    font-weight: 400;

    line-height: 1.8;
}


/* ============================================================
   CONTACT CARDS
============================================================ */

.ve-contact-info-card {
    padding: 35px 28px !important;

    background: #050505 !important;

    border: 1px solid rgba(255,255,255,0.10) !important;

    border-radius: 16px;

    text-align: center;
    margin-top: 50px;
}

.ve-contact-info-card h5 {
    margin: 0 0 12px;

    color: #ffffff;

    font-size: 19px;
    font-weight: 700;

    line-height: 1.4;
}

.ve-contact-info-card p {
    margin: 0;

    color: #e3b63d;

    font-size: 17px;
    font-weight: 700;

    line-height: 1.5;
}

.ve-contact-info-card p a {
    color: #e3b63d;

    font-size: 17px;
    font-weight: 700;

    text-decoration: none;
}

.ve-contact-info-card small {
    display: block;

    margin-top: 8px;

    color: #888888;

    font-size: 12px;
    font-weight: 400;

    line-height: 1.6;
}


/* ============================================================
   ICONS
============================================================ */

.ve-ci-icon {
    width: 64px;
    height: 64px;

    margin: 0 auto 20px;

    font-size: 23px;
}


/* ============================================================
   FORM HEADING
============================================================ */

.ve-contact-form-wrap {
    padding: 42px !important;

    background: #050505 !important;

    border: 1px solid rgba(255,255,255,0.10);

    border-radius: 18px;
}

.ve-contact-form-wrap .ve-section-tag {
    color: #d8aa35;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.ve-contact-form-wrap h2 {
    margin: 12px 0 14px;

    color: #ffffff;

    font-size: 36px;
    font-weight: 700;

    line-height: 1.25;
}

.ve-contact-form-wrap h2 span {
    color: #e3b63d;
}

.ve-contact-form-wrap > p {
    margin-bottom: 32px;

    color: #999999;

    font-size: 15px;
    line-height: 1.8;
}


/* ============================================================
   FORM LABELS
============================================================ */

.ve-form-group label {
    display: block;

    margin-bottom: 9px;

    color: #dddddd;

    font-size: 13px;
    font-weight: 600;

    letter-spacing: 0.2px;
}


/* ============================================================
   FORM INPUTS
============================================================ */

.ve-form-group input,
.ve-form-group textarea {
    width: 100%;

    padding: 15px 16px;

    background: #000000 !important;

    border: 1px solid rgba(255,255,255,0.13);

    border-radius: 8px;

    color: #ffffff;

    font-size: 14px;

    line-height: 1.5;

    outline: none;

    transition: 0.3s ease;
}

.ve-form-group input::placeholder,
.ve-form-group textarea::placeholder {
    color: #666666;

    font-size: 13px;
}

.ve-form-group input:focus,
.ve-form-group textarea:focus {
    border-color: #d8aa35;

    box-shadow:
        0 0 0 2px rgba(216,170,53,0.08);
}


/* ============================================================
   QUICK HELP
============================================================ */

.ve-ca-box,
.ve-ca-hours,
.ve-ca-social {
    background: #050505 !important;

    border-color: rgba(255,255,255,0.10);
}

.ve-ca-box {
    padding: 32px !important;
}

.ve-ca-box h4 {
    margin: 10px 0 22px;

    color: #ffffff;

    font-size: 22px;
    font-weight: 700;
}

.ve-ca-list li {
    padding: 12px 0;

    color: #aaaaaa;

    font-size: 14px;

    line-height: 1.5;
}

.ve-ca-list li i {
    color: #d8aa35;

    font-size: 14px;
}


/* ============================================================
   COMPETITION DETAILS
============================================================ */

.ve-ca-hours {
    padding: 28px 30px !important;
}

.ve-ca-hours h5 {
    margin-bottom: 18px;

    color: #ffffff;

    font-size: 18px;
    font-weight: 700;
}

.ve-ca-hours li {
    padding: 11px 0;

    color: #999999;

    font-size: 13px;
}

.ve-ca-hours li strong {
    color: #e3b63d;

    font-size: 13px;
    font-weight: 600;
}


/* ============================================================
   SUPPORT
============================================================ */

.ve-ca-social {
    padding: 30px !important;
}

.ve-ca-social h5 {
    margin-bottom: 8px;

    color: #ffffff;

    font-size: 19px;
    font-weight: 700;
}

.ve-ca-social p {
    margin-bottom: 20px;

    color: #999999;

    font-size: 13px;

    line-height: 1.7;
}

.ve-support-call-btn {
    font-size: 13px;

    padding: 12px 22px;
}


/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 767px) {

    .ve-contact-page-header h2 {
        font-size: 32px;
    }

    .ve-contact-page-header p {
        font-size: 14px;
    }

    .ve-contact-form-wrap {
        padding: 28px 22px !important;
    }

    .ve-contact-form-wrap h2 {
        font-size: 29px;
    }

    .ve-contact-form-wrap > p {
        font-size: 14px;
    }

    .ve-ca-box h4 {
        font-size: 20px;
    }

    .ve-ca-list li {
        font-size: 13px;
    }

}



/* ============================================================
   TERMS & CONDITIONS PAGE
============================================================ */

.ve-terms-section {
    position: relative;

    padding: 100px 0;

    overflow: hidden;

    background: #000000;
}


/* ============================================================
   TOP GOLD LINE
============================================================ */

.ve-terms-section::before {
    content: "";

    position: absolute;

    top: 0;
    left: 8%;
    right: 8%;

    height: 1px;

    background: linear-gradient(
        90deg,
        transparent,
        #d8aa35,
        transparent
    );
}


/* ============================================================
   HEADER
============================================================ */

.ve-terms-header {
    max-width: 780px;

    margin: 0 auto 55px;
}

.ve-terms-header .ve-section-tag {
    display: inline-block;

    margin-bottom: 12px;

    color: #d8aa35;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;
}

.ve-terms-header h1 {
    margin: 0 0 16px;

    color: #ffffff;

    font-size: 46px;
    font-weight: 700;

    line-height: 1.2;
}

.ve-terms-header h1 span {
    color: #e4b63d;
}

.ve-terms-header p {
    max-width: 650px;

    margin: 0 auto;

    color: #999999;

    font-size: 15px;

    line-height: 1.8;
}


/* ============================================================
   TERMS WRAPPER
============================================================ */

.ve-terms-wrapper {
    max-width: 1000px;

    margin: 0 auto;

    border: 1px solid rgba(216,170,53,0.18);

    border-radius: 18px;

    overflow: hidden;

    background: #050505;
}


/* ============================================================
   TERM BLOCK
============================================================ */

.ve-term-block {
    position: relative;

    display: flex;

    gap: 25px;

    padding: 32px 35px;

    border-bottom: 1px solid rgba(255,255,255,0.07);

    background: #050505;

    transition:
        background 0.3s ease,
        padding-left 0.3s ease;
}

.ve-term-block:last-child {
    border-bottom: 0;
}

.ve-term-block:hover {
    background:
        linear-gradient(
            90deg,
            rgba(216,170,53,0.045),
            transparent
        );
}


/* ============================================================
   NUMBER
============================================================ */

.ve-term-number {
    width: 52px;
    height: 52px;

    min-width: 52px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(216,170,53,0.4);

    border-radius: 50%;

    background: rgba(216,170,53,0.06);

    color: #dcae35;

    font-size: 14px;

    font-weight: 800;

    letter-spacing: 0.5px;
}


/* ============================================================
   TERM CONTENT
============================================================ */

.ve-term-content {
    flex: 1;
}

.ve-term-content h3 {
    margin: 0 0 14px;

    color: #ffffff;

    font-size: 21px;

    font-weight: 700;

    line-height: 1.4;
}

.ve-term-content p {
    max-width: 850px;

    margin: 0 0 10px;

    color: #999999;

    font-size: 14px;

    line-height: 1.8;
}

.ve-term-content p:last-child {
    margin-bottom: 0;
}

.ve-term-content strong {
    color: #e3b63d;

    font-weight: 700;
}


/* ============================================================
   LIST
============================================================ */

.ve-term-content ul {
    padding: 0;

    margin: 0;

    list-style: none;
}

.ve-term-content li {
    position: relative;

    padding: 6px 0 6px 22px;

    color: #999999;

    font-size: 14px;

    line-height: 1.7;
}

.ve-term-content li::before {
    content: "";

    position: absolute;

    left: 2px;
    top: 15px;

    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #d8aa35;
}


/* ============================================================
   IMPORTANT TECHNICAL REQUIREMENTS
============================================================ */

.ve-term-important {
    background:
        linear-gradient(
            90deg,
            rgba(216,170,53,0.08),
            rgba(216,170,53,0.015)
        );
}

.ve-term-important .ve-term-number {
    border-color: #d8aa35;

    background: rgba(216,170,53,0.12);

    box-shadow:
        0 0 20px rgba(216,170,53,0.08);
}

.ve-term-important .ve-term-content h3 {
    color: #e6bb43;
}


/* ============================================================
   FINAL NOTICE
============================================================ */

.ve-terms-notice {
    max-width: 1000px;

    margin: 28px auto 0;

    display: flex;

    align-items: flex-start;

    gap: 20px;

    padding: 28px 32px;

    border: 1px solid rgba(216,170,53,0.35);

    border-radius: 16px;

    background:
        linear-gradient(
            100deg,
            rgba(216,170,53,0.09),
            rgba(216,170,53,0.02)
        );
}

.ve-terms-notice > i {
    width: 52px;
    height: 52px;

    min-width: 52px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(216,170,53,0.1);

    color: #e4b63d;

    font-size: 22px;
}

.ve-terms-notice strong {
    display: block;

    margin-bottom: 6px;

    color: #ffffff;

    font-size: 18px;

    font-weight: 700;
}

.ve-terms-notice p {
    margin: 0;

    color: #999999;

    font-size: 13px;

    line-height: 1.7;
}


/* ============================================================
   SUPPORT PHONE NUMBERS
============================================================ */

.ve-terms-phone {
    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 15px;
}

.ve-terms-phone a {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 9px 15px;

    border: 1px solid rgba(216,170,53,0.3);

    border-radius: 7px;

    background: rgba(0,0,0,0.25);

    color: #e3b63d;

    font-size: 12px;

    font-weight: 700;

    text-decoration: none;

    transition: all 0.3s ease;
}

.ve-terms-phone a:hover {
    background: #d8aa35;

    color: #000000;

    border-color: #d8aa35;
}

.ve-terms-phone a i {
    font-size: 11px;
}


/* ============================================================
   TABLET
============================================================ */

@media (max-width: 991px) {

    .ve-terms-section {
        padding: 80px 0;
    }

    .ve-terms-header h1 {
        font-size: 40px;
    }

    .ve-term-block {
        padding: 28px 25px;
    }

}


/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 767px) {

    .ve-terms-section {
        padding: 65px 0;
    }

    .ve-terms-header {
        margin-bottom: 35px;
    }

    .ve-terms-header h1 {
        font-size: 32px;
    }

    .ve-terms-header p {
        font-size: 13px;
    }


    /* Term */

    .ve-term-block {
        gap: 15px;

        padding: 25px 18px;
    }

    .ve-term-number {
        width: 42px;
        height: 42px;

        min-width: 42px;

        font-size: 11px;
    }

    .ve-term-content h3 {
        font-size: 18px;
    }

    .ve-term-content p,
    .ve-term-content li {
        font-size: 12px;
    }


    /* Notice */

    .ve-terms-notice {
        gap: 14px;

        padding: 22px 18px;
    }

    .ve-terms-notice > i {
        width: 45px;
        height: 45px;

        min-width: 45px;

        font-size: 19px;
    }

    .ve-terms-notice strong {
        font-size: 16px;
    }

    .ve-terms-notice p {
        font-size: 11px;
    }

}


/* ============================================================
   SMALL MOBILE
============================================================ */

@media (max-width: 480px) {

    .ve-terms-header h1 {
        font-size: 28px;
    }

    .ve-term-block {
        padding: 22px 15px;
    }

    .ve-term-number {
        width: 38px;
        height: 38px;

        min-width: 38px;
    }

    .ve-term-content h3 {
        font-size: 16px;
    }

    .ve-term-content p,
    .ve-term-content li {
        font-size: 11px;
    }

    .ve-terms-phone {
        flex-direction: column;
    }

    .ve-terms-phone a {
        justify-content: center;
    }

} 




/* ============================================================
   REFUND POLICY
============================================================ */

.ve-refund-section {
    position: relative;

    padding: 100px 0;

    overflow: hidden;

    background: #000000;
}

.ve-refund-section::before {
    content: "";

    position: absolute;

    top: 0;
    left: 8%;
    right: 8%;

    height: 1px;

    background: linear-gradient(
        90deg,
        transparent,
        #d8aa35,
        transparent
    );
}


/* ============================================================
   HEADER
============================================================ */

.ve-refund-header {
    max-width: 760px;

    margin: 0 auto 50px;
}

.ve-refund-header .ve-section-tag {
    display: inline-block;

    margin-bottom: 12px;

    color: #d8aa35;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;
}

.ve-refund-header h1 {
    margin: 0 0 15px;

    color: #ffffff;

    font-size: 46px;
    font-weight: 700;

    line-height: 1.2;
}

.ve-refund-header h1 span {
    color: #e3b63d;
}

.ve-refund-header p {
    margin: 0;

    color: #999999;

    font-size: 15px;

    line-height: 1.8;
}


/* ============================================================
   WRAPPER
============================================================ */

.ve-refund-wrapper {
    max-width: 950px;

    margin: 0 auto;

    border: 1px solid rgba(216,170,53,0.18);

    border-radius: 20px;

    overflow: hidden;

    background: #050505;
}


/* ============================================================
   MAIN POLICY
============================================================ */

.ve-refund-main {
    padding: 45px 35px;

    text-align: center;

    border-bottom: 1px solid rgba(255,255,255,0.07);

    background:
        radial-gradient(
            circle at center,
            rgba(216,170,53,0.10),
            transparent 65%
        );
}

.ve-refund-icon {
    width: 65px;
    height: 65px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin: 0 auto 20px;

    border: 1px solid rgba(216,170,53,0.35);

    border-radius: 50%;

    background: rgba(216,170,53,0.08);

    color: #e3b63d;

    font-size: 25px;
}

.ve-refund-main h2 {
    margin: 0 0 15px;

    color: #ffffff;

    font-size: 30px;

    font-weight: 700;
}

.ve-refund-main h2 span {
    color: #e3b63d;
}

.ve-refund-main p {
    max-width: 680px;

    margin: 0 auto;

    color: #999999;

    font-size: 14px;

    line-height: 1.8;
}

.ve-refund-main p strong {
    color: #ffffff;
}


/* ============================================================
   POLICY POINTS
============================================================ */

.ve-refund-points {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 1px;

    background: rgba(255,255,255,0.07);
}

.ve-refund-point {
    display: flex;

    align-items: flex-start;

    gap: 17px;

    padding: 30px;

    background: #050505;

    transition: background 0.3s ease;
}

.ve-refund-point:hover {
    background: #0a0a0a;
}

.ve-refund-point-icon {
    width: 50px;
    height: 50px;

    min-width: 50px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(216,170,53,0.08);

    color: #dcae35;

    font-size: 18px;
}

.ve-refund-point h4 {
    margin: 0 0 7px;

    color: #ffffff;

    font-size: 17px;

    font-weight: 700;
}

.ve-refund-point p {
    margin: 0;

    color: #888888;

    font-size: 12px;

    line-height: 1.7;
}


/* ============================================================
   NOTICE
============================================================ */

.ve-refund-notice {
    display: flex;

    align-items: flex-start;

    gap: 17px;

    margin: 25px;

    padding: 22px 25px;

    border: 1px solid rgba(216,170,53,0.3);

    border-radius: 12px;

    background: rgba(216,170,53,0.05);
}

.ve-refund-notice > i {
    color: #e3b63d;

    font-size: 22px;

    margin-top: 2px;
}

.ve-refund-notice strong {
    display: block;

    margin-bottom: 5px;

    color: #e3b63d;

    font-size: 15px;
}

.ve-refund-notice p {
    margin: 0;

    color: #888888;

    font-size: 12px;

    line-height: 1.7;
}


/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 767px) {

    .ve-refund-section {
        padding: 65px 0;
    }

    .ve-refund-header h1 {
        font-size: 32px;
    }

    .ve-refund-header p {
        font-size: 13px;
    }

    .ve-refund-main {
        padding: 35px 20px;
    }

    .ve-refund-main h2 {
        font-size: 25px;
    }

    .ve-refund-main p {
        font-size: 13px;
    }

    .ve-refund-points {
        grid-template-columns: 1fr;
    }

    .ve-refund-point {
        padding: 24px 20px;
    }

    .ve-refund-notice {
        margin: 18px;

        padding: 20px;
    }

}


/* ============================================================
   SMALL MOBILE
============================================================ */

@media (max-width: 480px) {

    .ve-refund-header h1 {
        font-size: 28px;
    }

    .ve-refund-main h2 {
        font-size: 22px;
    }

    .ve-refund-point h4 {
        font-size: 16px;
    }

}



/* ============================================================
   PRIVACY POLICY PAGE
============================================================ */

.ve-privacy-section {
    position: relative;

    padding: 100px 0;

    overflow: hidden;

    background: #000000;
}


/* ============================================================
   TOP GOLD LINE
============================================================ */

.ve-privacy-section::before {
    content: "";

    position: absolute;

    top: 0;
    left: 8%;
    right: 8%;

    height: 1px;

    background: linear-gradient(
        90deg,
        transparent,
        #d8aa35,
        transparent
    );
}


/* ============================================================
   HEADER
============================================================ */

.ve-privacy-header {
    max-width: 780px;

    margin: 0 auto 55px;
}

.ve-privacy-header .ve-section-tag {
    display: inline-block;

    margin-bottom: 12px;

    color: #d8aa35;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;
}

.ve-privacy-header h1 {
    margin: 0 0 16px;

    color: #ffffff;

    font-size: 46px;
    font-weight: 700;

    line-height: 1.2;
}

.ve-privacy-header h1 span {
    color: #e4b63d;
}

.ve-privacy-header p {
    max-width: 650px;

    margin: 0 auto;

    color: #999999;

    font-size: 15px;

    line-height: 1.8;
}


/* ============================================================
   PRIVACY WRAPPER
============================================================ */

.ve-privacy-wrapper {
    max-width: 1000px;

    margin: 0 auto;

    overflow: hidden;

    border: 1px solid rgba(216,170,53,0.18);

    border-radius: 18px;

    background: #050505;
}


/* ============================================================
   PRIVACY BLOCK
============================================================ */

.ve-privacy-block {
    position: relative;

    display: flex;

    gap: 25px;

    padding: 32px 35px;

    border-bottom: 1px solid rgba(255,255,255,0.07);

    background: #050505;

    transition:
        background 0.3s ease,
        border-color 0.3s ease;
}

.ve-privacy-block:last-child {
    border-bottom: 0;
}

.ve-privacy-block:hover {
    background:
        linear-gradient(
            90deg,
            rgba(216,170,53,0.045),
            transparent
        );

    border-color: rgba(216,170,53,0.12);
}


/* ============================================================
   NUMBER
============================================================ */

.ve-privacy-number {
    width: 52px;
    height: 52px;

    min-width: 52px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(216,170,53,0.4);

    border-radius: 50%;

    background: rgba(216,170,53,0.06);

    color: #dcae35;

    font-size: 14px;

    font-weight: 800;

    letter-spacing: 0.5px;
}


/* ============================================================
   CONTENT
============================================================ */

.ve-privacy-content {
    flex: 1;
}

.ve-privacy-content h3 {
    margin: 0 0 14px;

    color: #ffffff;

    font-size: 21px;

    font-weight: 700;

    line-height: 1.4;
}

.ve-privacy-content p {
    max-width: 850px;

    margin: 0 0 10px;

    color: #999999;

    font-size: 14px;

    line-height: 1.8;
}

.ve-privacy-content p:last-child {
    margin-bottom: 0;
}

.ve-privacy-content strong {
    color: #e3b63d;

    font-weight: 700;
}


/* ============================================================
   PRIVACY LIST
============================================================ */

.ve-privacy-content ul {
    padding: 0;

    margin: 5px 0 0;

    list-style: none;
}

.ve-privacy-content li {
    position: relative;

    padding: 6px 0 6px 22px;

    color: #999999;

    font-size: 14px;

    line-height: 1.7;
}

.ve-privacy-content li::before {
    content: "";

    position: absolute;

    left: 2px;
    top: 15px;

    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #d8aa35;
}


/* ============================================================
   CHILDREN'S PRIVACY HIGHLIGHT
============================================================ */

.ve-privacy-block:nth-child(3) {
    background:
        linear-gradient(
            90deg,
            rgba(216,170,53,0.07),
            rgba(216,170,53,0.015)
        );
}

.ve-privacy-block:nth-child(3) .ve-privacy-number {
    border-color: #d8aa35;

    background: rgba(216,170,53,0.12);

    box-shadow:
        0 0 20px rgba(216,170,53,0.08);
}


/* ============================================================
   PHONE NUMBERS
============================================================ */

.ve-privacy-phone {
    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 18px;
}

.ve-privacy-phone a {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    padding: 10px 16px;

    border: 1px solid rgba(216,170,53,0.3);

    border-radius: 7px;

    background: rgba(216,170,53,0.04);

    color: #e3b63d;

    font-size: 12px;

    font-weight: 700;

    text-decoration: none;

    transition: all 0.3s ease;
}

.ve-privacy-phone a:hover {
    background: #d8aa35;

    border-color: #d8aa35;

    color: #000000;
}

.ve-privacy-phone a i {
    font-size: 11px;
}


/* ============================================================
   PRIVACY NOTICE
============================================================ */

.ve-privacy-notice {
    max-width: 1000px;

    margin: 28px auto 0;

    display: flex;

    align-items: flex-start;

    gap: 20px;

    padding: 28px 32px;

    border: 1px solid rgba(216,170,53,0.35);

    border-radius: 16px;

    background:
        linear-gradient(
            100deg,
            rgba(216,170,53,0.09),
            rgba(216,170,53,0.02)
        );
}

.ve-privacy-notice > i {
    width: 52px;
    height: 52px;

    min-width: 52px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(216,170,53,0.1);

    color: #e4b63d;

    font-size: 22px;
}

.ve-privacy-notice strong {
    display: block;

    margin-bottom: 6px;

    color: #ffffff;

    font-size: 18px;

    font-weight: 700;
}

.ve-privacy-notice p {
    margin: 0;

    color: #999999;

    font-size: 13px;

    line-height: 1.7;
}


/* ============================================================
   TABLET
============================================================ */

@media (max-width: 991px) {

    .ve-privacy-section {
        padding: 80px 0;
    }

    .ve-privacy-header h1 {
        font-size: 40px;
    }

    .ve-privacy-block {
        padding: 28px 25px;
    }

}


/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 767px) {

    .ve-privacy-section {
        padding: 65px 0;
    }

    .ve-privacy-header {
        margin-bottom: 35px;
    }

    .ve-privacy-header h1 {
        font-size: 32px;
    }

    .ve-privacy-header p {
        font-size: 13px;
    }


    /* Privacy Blocks */

    .ve-privacy-block {
        gap: 15px;

        padding: 25px 18px;
    }

    .ve-privacy-number {
        width: 42px;
        height: 42px;

        min-width: 42px;

        font-size: 11px;
    }

    .ve-privacy-content h3 {
        font-size: 18px;
    }

    .ve-privacy-content p,
    .ve-privacy-content li {
        font-size: 12px;
    }


    /* Notice */

    .ve-privacy-notice {
        gap: 14px;

        padding: 22px 18px;
    }

    .ve-privacy-notice > i {
        width: 45px;
        height: 45px;

        min-width: 45px;

        font-size: 19px;
    }

    .ve-privacy-notice strong {
        font-size: 16px;
    }

    .ve-privacy-notice p {
        font-size: 11px;
    }

}


/* ============================================================
   SMALL MOBILE
============================================================ */

@media (max-width: 480px) {

    .ve-privacy-header h1 {
        font-size: 28px;
    }

    .ve-privacy-block {
        padding: 22px 15px;
    }

    .ve-privacy-number {
        width: 38px;
        height: 38px;

        min-width: 38px;
    }

    .ve-privacy-content h3 {
        font-size: 16px;
    }

    .ve-privacy-content p,
    .ve-privacy-content li {
        font-size: 11px;
    }

    .ve-privacy-phone {
        flex-direction: column;
    }

    .ve-privacy-phone a {
        width: 100%;
    }

}

.error{
    color: red;
    font-size: 11px;
}