@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap");

:root {
  --dark: #1A1F2B;
  --primary: #2D4A5A;
  --primary-light: #3D6070;
  --accent: #D4813D;
  --accent-hover: #C0702D;
  --accent-light: rgba(212,129,61,0.12);
  --light-cream: #F0E6D3;
  --light-bg: #F8F6F3;
  --text-dark: #2C3E50;
  --text-muted: #7F8C8D;
  --white: #FFFFFF;
  --border-light: #E8E3DC;
  --glass-bg: rgba(255,255,255,0.08);
  --glass-border: rgba(255,255,255,0.15);
  --shadow-sm: 0 2px 8px rgba(26,31,43,0.06);
  --shadow-md: 0 8px 30px rgba(26,31,43,0.1);
  --shadow-lg: 0 20px 60px rgba(26,31,43,0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html, body { height: 100%; -moz-osx-font-smoothing: grayscale; -webkit-font-smoothing: antialiased; scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
  color: var(--text-dark);
  background: var(--light-bg);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.25;
  margin: 0;
}

h1 { font-size: clamp(2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-size: clamp(1.1rem, 1.5vw, 1.25rem); }

p { font-size: 16px; line-height: 1.7; color: var(--text-muted); margin: 0; }

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

img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; margin: 0; padding: 0; }
li { display: block; }

.container { max-width: 1200px; }
.container-fluid { padding: 0 30px; }

.section-padding { padding: 100px 0; }
@media (max-width: 767px) { .section-padding { padding: 60px 0; } }

.section-title { margin-bottom: 50px; text-align: center; }
.section-title .subtitle {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 3px;
  display: block;
  margin-bottom: 12px;
}
.section-title h2 { margin-bottom: 16px; }
.section-title p { max-width: 600px; margin: 0 auto; color: var(--text-muted); line-height: 1.7; }

.section-divider { width: 50px; height: 3px; background: linear-gradient(90deg, var(--accent), var(--primary)); margin: 0 auto 20px; border-radius: 2px; }
.section-divider.left { margin: 0 auto 20px; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: var(--white);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 16px 36px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-primary:hover {
  background: var(--accent-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212,129,61,0.3);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 14px 34px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
}
.btn-secondary:hover {
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--primary);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 14px 34px;
  border: 2px solid var(--primary);
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

/* Margin & Padding Utilities */
.mt-10 { margin-top: 10px; }
.mt-15 { margin-top: 15px; }
.mt-20 { margin-top: 20px; }
.mt-25 { margin-top: 25px; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }
.mt-50 { margin-top: 50px; }
.mb-10 { margin-bottom: 10px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mb-40 { margin-bottom: 40px; }
.mb-50 { margin-bottom: 50px; }
.pt-10 { padding-top: 10px; }
.pt-20 { padding-top: 20px; }
.pt-30 { padding-top: 30px; }
.pt-60 { padding-top: 60px; }
.pb-10 { padding-bottom: 10px; }
.pb-20 { padding-bottom: 20px; }
.pb-30 { padding-bottom: 30px; }
.pb-60 { padding-bottom: 60px; }

/* Preloader */
.preloader {
  position: fixed;
  left: 0; top: 0;
  width: 100%; height: 100%;
  z-index: 999999;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease;
}
.preloader.preloader-hidden {
  pointer-events: none !important;
}
.preloader .loader-spinner {
  width: 50px; height: 50px;
  border: 3px solid rgba(255,255,255,0.1);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Header */
.header-top {
  background: var(--dark);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
  z-index: 101;
}
.header-top .contact-info,
.header-top .quick_link li {
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.header-top .contact-info i,
.header-top .quick_link li i {
  color: var(--accent);
  font-size: 15px;
}
.header-top .quick_link li { margin-right: 20px; }
.header-top .quick_link li:last-child { margin-right: 0; }
.header_top_right { display: flex; align-items: center; justify-content: flex-end; gap: 20px; }
@media (max-width: 767px) { .header-top { display: none; } }

/* Google Translate Flags */
.translate-flags { display: flex; align-items: center; gap: 4px; }
.translate-flags .flag-btn {
  background: none;
  border: none;
  cursor: pointer !important;
  padding: 5px 10px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter', sans-serif;
  transition: color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}
.translate-flags .flag-btn:hover {
  color: var(--white);
  background: rgba(255,255,255,0.1);
  transform: translateY(-1px);
}
.translate-flags .flag-btn.active {
  color: var(--accent);
  background: rgba(212,129,61,0.12);
}
.translate-flags .flag-btn .flag-icon {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  cursor: pointer !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.translate-flags .flag-btn:hover .flag-icon {
  transform: scale(1.15);
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.translate-flags .flag-btn .flag-icon img {
  display: block;
  border-radius: 2px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.2);
  cursor: pointer !important;
}
.translate-flags .divider {
  color: rgba(255,255,255,0.2);
  font-size: 14px;
}

/* Header Navigation */
.header-area { position: relative; z-index: 100; }
.header-area .navigation {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0 30px;
  height: 72px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.header-inner-box { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.header-inner-box .logo { display: flex; align-items: center; }
.header-inner-box .logo img { height: 45px; width: auto; }
.logo-img { height: 42px; width: auto; transition: opacity 0.3s ease; }
.logo-img-dark { display: none; }
.header-area.is-sticky .logo-img-light { display: none; }
.header-area.is-sticky .logo-img-dark { display: block; }

/* Navigation links */
.main-menu .navbar { padding: 0; }
.main-menu .navbar-nav { gap: 4px; align-items: center; }
.main-menu .nav-item { position: relative; }
.main-menu .nav-link {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  padding: 10px 18px;
  border-radius: 8px;
  transition: all 0.25s ease;
  position: relative;
  letter-spacing: 0.2px;
}
.main-menu .nav-link::after { display: none; }
.main-menu .nav-link:hover {
  color: var(--accent);
  background: rgba(212,129,61,0.08);
}
.main-menu .nav-link.active {
  color: var(--white);
  background: linear-gradient(135deg, var(--accent), #c0722f);
  box-shadow: 0 2px 12px rgba(212,129,61,0.3);
}

/* Header CTA button */
.header-btn { margin-left: 20px; }
.header-btn .btn-primary {
  padding: 10px 24px;
  font-size: 13px;
  font-weight: 600;
  gap: 8px;
  background: var(--dark);
  border-radius: 8px;
  transition: all 0.25s ease;
}
.header-btn .btn-primary:hover {
  background: var(--accent);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(212,129,61,0.3);
}

/* Sticky header */
.header-area.is-sticky .sticky-area {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  animation: slideDown 0.35s ease;
}
.header-area.is-sticky .navigation {
  background: rgba(26,31,43,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}
.header-area.is-sticky .main-menu .nav-link { color: rgba(255,255,255,0.75); }
.header-area.is-sticky .main-menu .nav-link:hover {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}
.header-area.is-sticky .main-menu .nav-link.active {
  color: var(--white);
  background: linear-gradient(135deg, var(--accent), #c0722f);
}
.header-area.is-sticky .header-btn .btn-primary { background: var(--accent); }
.header-area.is-sticky .header-btn .btn-primary:hover { background: #c0722f; }
@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

/* Mobile hamburger */
.navbar-toggler {
  border: none;
  padding: 0;
  width: 28px;
  height: 20px;
  position: relative;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  background: transparent;
  z-index: 1001;
}
.navbar-toggler:focus { box-shadow: none; }
.navbar-toggler span {
  display: block;
  width: 100%;
  height: 2.5px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.header-area.is-sticky .navbar-toggler span { background: var(--white); }
.navbar-toggler span:nth-child(1) { width: 100%; }
.navbar-toggler span:nth-child(2) { width: 70%; }
.navbar-toggler span:nth-child(3) { width: 100%; }

/* Mobile menu overlay */
@media (max-width: 991px) {
  .navbar-toggler { display: flex; }
  .header-btn { display: none; }
  .main-menu .navbar-collapse {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: rgba(26,31,43,0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    z-index: 1000;
    display: flex !important;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;
  }
  .main-menu .navbar-collapse.show {
    opacity: 1;
    visibility: visible;
  }
  .main-menu .navbar-nav {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 0 30px;
  }
  .main-menu .nav-link {
    color: rgba(255,255,255,0.8);
    font-size: 22px;
    font-weight: 700;
    padding: 14px 30px;
    border-radius: 12px;
    width: 100%;
    text-align: center;
    transition: all 0.25s ease;
  }
  .main-menu .nav-link:hover {
    color: var(--white);
    background: rgba(255,255,255,0.08);
  }
  .main-menu .nav-link.active {
    color: var(--white);
    background: linear-gradient(135deg, var(--accent), #c0722f);
    box-shadow: 0 4px 20px rgba(212,129,61,0.35);
  }
  .main-menu .sub-menu {
    position: static;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    text-align: center;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
  }
  .main-menu .nav-item:hover .sub-menu { max-height: 500px; }
  .main-menu .sub-menu a { color: rgba(255,255,255,0.6); font-size: 16px; padding: 8px 0; }
  .main-menu .sub-menu a:hover { color: var(--accent); background: transparent; }
  .mobile-close-btn {
    position: absolute;
    top: 24px;
    right: 24px;
    background: rgba(255,255,255,0.1);
    border: none;
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 10px;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 1001;
  }
  .mobile-close-btn:hover { background: rgba(255,255,255,0.2); }
}
    background: none;
    border: none;
    color: var(--white);
    font-size: 32px;
    cursor: pointer;
    z-index: 1001;
  }
  .header-btn { display: none; }
}

/* ============================================================
   HERO SECTION — Redesigned
   ============================================================ */
.hero-section {
  position: relative;
  min-height: 96vh;
  background: #0d1117 !important;
  padding-bottom: 20px;
}
.hero-section > .container {
  position: relative;
  z-index: 3;
}

/* — Solid dark background with subtle accent glows — */
.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 5% 10%, rgba(45,74,90,0.4) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 95% 90%, rgba(180,100,40,0.12) 0%, transparent 50%);
  z-index: 0;
}

/* — Diagonal line pattern — */
.hero-grid-pattern {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    repeating-linear-gradient(
      135deg,
      rgba(255,255,255,0.04) 0px,
      rgba(255,255,255,0.04) 1px,
      transparent 1px,
      transparent 18px
    ),
    repeating-linear-gradient(
      45deg,
      rgba(255,255,255,0.025) 0px,
      rgba(255,255,255,0.025) 1px,
      transparent 1px,
      transparent 18px
    );
}

/* — Bottom gradient for smooth transition into next section — */
.hero-overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, #0d1117);
  z-index: 2;
}

/* — Floating ambient shapes — */
.hero-floating-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}
.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
}
.hero-shape-1 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(212,129,61,0.28), transparent 70%);
  top: -120px; left: -120px;
  animation: heroFloatA 22s ease-in-out infinite;
}
.hero-shape-2 {
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(61,96,112,0.3), transparent 70%);
  bottom: -80px; right: -60px;
  animation: heroFloatB 28s ease-in-out infinite;
}
.hero-shape-3 {
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(212,129,61,0.2), transparent 70%);
  top: 35%; right: 10%;
  animation: heroFloatA 18s ease-in-out infinite 4s;
}
.hero-shape-4 {
  width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(255,255,255,0.1), transparent 70%);
  bottom: 20%; left: 8%;
  animation: heroFloatB 20s ease-in-out infinite 2s;
}
.hero-shape-5 {
  width: 100px; height: 100px;
  background: radial-gradient(circle, rgba(212,129,61,0.22), transparent 70%);
  top: 15%; left: 45%;
  animation: heroFloatA 16s ease-in-out infinite 6s;
}
@keyframes heroFloatA {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25%  { transform: translate(40px, -50px) scale(1.08); }
  50%  { transform: translate(-20px, 30px) scale(0.95); }
  75%  { transform: translate(30px, 20px) scale(1.05); }
}
@keyframes heroFloatB {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(-35px, 40px) scale(1.1); }
  66%  { transform: translate(25px, -25px) scale(0.92); }
}

/* — Particle dots (JS-generated) — */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.hero-particle {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(212,129,61,0.35);
  animation: particleDrift linear infinite;
}
@keyframes particleDrift {
  0%   { transform: translateY(0) translateX(0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateY(-100vh) translateX(40px); opacity: 0; }
}

/* — Content layout — */
.hero-content {
  position: relative;
  z-index: 2;
  padding: 100px 0 60px;
}
.hero-content .row {
  align-items: center;
}

/* — EU badge — */
.hero-eu-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 7px 20px 7px 12px;
  border-radius: 50px;
  margin-bottom: 28px;
  animation: heroFadeInUp 0.7s ease both;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.hero-eu-badge:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.18);
}
.eu-flag-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34,197,94,0.5);
  animation: pulseDot 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 8px rgba(34,197,94,0.5); }
  50%      { box-shadow: 0 0 16px rgba(34,197,94,0.8); }
}
.eu-badge-text {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* — Headline — */
.hero-text-col h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 22px;
  animation: heroFadeInUp 0.7s ease 0.1s both;
}
.highlight-eu {
  background: linear-gradient(135deg, var(--accent), #E8A870, #FFD700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: gradientText 4s ease infinite;
}
@keyframes gradientText {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

/* — Description — */
.hero-description {
  color: rgba(255,255,255,0.65);
  font-size: 16px;
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 34px;
  animation: heroFadeInUp 0.7s ease 0.2s both;
}

/* — CTA buttons — */
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
  animation: heroFadeInUp 0.7s ease 0.3s both;
}
.hero-btn-magnetic {
  position: relative;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.25,0.46,0.45,0.94), box-shadow 0.35s ease;
}
.hero-btn-magnetic::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.hero-btn-magnetic:hover::after { opacity: 1; }
.hero-btn-magnetic:active { transform: scale(0.97); }

@keyframes heroFadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* — Trust indicator row — */
.hero-trust-row {
  display: flex;
  align-items: center;
  gap: 0;
  animation: heroFadeInUp 0.7s ease 0.45s both;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 20px;
}
.hero-trust-item:first-child { padding-left: 0; }
.hero-trust-icon {
  width: 36px; height: 36px;
  min-width: 36px;
  border-radius: 10px;
  background: rgba(212,129,61,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--accent);
  transition: background 0.3s ease, transform 0.3s ease;
}
.hero-trust-item:hover .hero-trust-icon {
  background: rgba(212,129,61,0.22);
  transform: scale(1.1);
}
.hero-trust-text strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.hero-trust-text span {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  line-height: 1.2;
}
.hero-trust-divider {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

/* ============================================================
   HERO IMAGE COMPOSITION
   ============================================================ */
.hero-visual-col {
  animation: heroFadeInUp 0.8s ease 0.25s both;
}
.hero-images {
  position: relative;
  padding: 20px 20px 20px 40px;
}

/* Ambient glow behind carousel */
.hero-img-glow {
  position: absolute;
  top: 10%; left: 5%; right: -5%; bottom: 0;
  background: radial-gradient(ellipse at center, rgba(212,129,61,0.15) 0%, transparent 70%);
  filter: blur(40px);
  z-index: 0;
  animation: glowPulse 6s ease-in-out infinite alternate;
}
@keyframes glowPulse {
  0%   { opacity: 0.5; transform: scale(1); }
  100% { opacity: 0.8; transform: scale(1.05); }
}

/* Main carousel */
.hero-img-main {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow:
    0 25px 60px rgba(0,0,0,0.45),
    0 0 0 1px rgba(255,255,255,0.08);
  z-index: 1;
  transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94), box-shadow 0.5s ease;
}
.hero-img-main.owl-carousel {
  display: block !important;
}
.hero-img-main:hover {
  box-shadow:
    0 30px 70px rgba(0,0,0,0.5),
    0 0 0 1px rgba(255,255,255,0.12),
    0 0 40px rgba(212,129,61,0.08);
}
.hero-img-main .owl-stage-outer {
  border-radius: 18px;
  overflow: hidden;
}
.hero-img-main .item img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.hero-img-main:hover .item img {
  transform: scale(1.03);
}
.hero-img-main .owl-item { backface-visibility: hidden; }

/* Carousel dots */
.hero-img-main .owl-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 5;
}
.hero-img-main .owl-dot span {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: all 0.35s ease;
}
.hero-img-main .owl-dot.active span,
.hero-img-main .owl-dot:hover span {
  background: var(--accent);
  width: 24px;
  border-radius: 4px;
  box-shadow: 0 0 12px rgba(212,129,61,0.4);
}

/* Floating accent images */
.hero-img-float {
  position: absolute;
  border-radius: 14px;
  overflow: hidden;
  border: 3px solid rgba(255,255,255,0.85);
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  z-index: 4;
  transition: transform 0.45s cubic-bezier(0.25,0.46,0.45,0.94), box-shadow 0.45s ease;
}
.hero-img-float:hover {
  transform: scale(1.08) translateY(-4px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.4);
}
.hero-img-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-img-float-1 {
  width: 130px; height: 130px;
  bottom: 25px; left: -5px;
  animation: heroFloatA 14s ease-in-out infinite 1s;
}
.hero-img-float-2 {
  width: 110px; height: 110px;
  top: 5px; right: 5px;
  animation: heroFloatB 16s ease-in-out infinite 3s;
}

/* Floating badges */
.hero-badge-float {
  position: absolute;
  bottom: 110px; right: -6px;
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  color: var(--white);
  padding: 10px 18px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 8px 24px rgba(212,129,61,0.45);
  z-index: 5;
  animation: badgeFloat 3.5s ease-in-out infinite;
  transition: transform 0.3s ease;
}
.hero-badge-float:hover {
  transform: translateY(-4px) scale(1.05);
}
.hero-badge-float i { font-size: 14px; }
.hero-badge-float-2 {
  bottom: auto; top: 40px; right: auto; left: -10px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  box-shadow: 0 8px 24px rgba(45,74,90,0.45);
  animation: badgeFloat 4s ease-in-out infinite 1s;
}
@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
/* ============================================================
   CTA MODERN — Full redesign
   ============================================================ */
.cta-modern {
  position: relative;
  background: #0d1117;
  overflow: hidden;
  padding: 0 0 80px;
}
.cta-wave-top {
  position: relative;
  z-index: 2;
  margin-top: -1px;
}
.cta-wave-top svg {
  display: block;
  width: 100%;
  height: auto;
}

/* Background grid pattern */
.cta-bg-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 10%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 10%, transparent 80%);
}

/* Ambient glows */
.cta-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  pointer-events: none;
}
.cta-glow-1 {
  width: 400px; height: 400px;
  background: rgba(212,129,61,0.1);
  top: -100px; left: -100px;
  animation: ctaGlowPulse 8s ease-in-out infinite;
}
.cta-glow-2 {
  width: 300px; height: 300px;
  background: rgba(45,74,90,0.15);
  bottom: -80px; right: -60px;
  animation: ctaGlowPulse 10s ease-in-out infinite 3s;
}
@keyframes ctaGlowPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.15); }
}

/* Grid layout */
.cta-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  align-items: center;
  padding-top: 40px;
}

/* Content side */
.cta-content { max-width: 580px; }

.cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--accent);
  margin-bottom: 18px;
  animation: ctaFadeUp 0.6s ease both;
}
.cta-eyebrow-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulseDot 2s ease-in-out infinite;
}

.cta-heading {
  color: var(--white);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  animation: ctaFadeUp 0.6s ease 0.1s both;
}
.cta-heading-accent {
  background: linear-gradient(135deg, var(--accent), #E8A870, #FFD700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: gradientText 4s ease infinite;
}

.cta-desc {
  color: rgba(255,255,255,0.6);
  font-size: 15px;
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 30px;
  animation: ctaFadeUp 0.6s ease 0.2s both;
}

/* Buttons */
.cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  animation: ctaFadeUp 0.6s ease 0.3s both;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}
.cta-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.cta-btn:hover::after { opacity: 1; }

.cta-btn-primary {
  background: linear-gradient(135deg, var(--accent), #c0702d);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(212,129,61,0.3);
}
.cta-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(212,129,61,0.45);
}
.cta-btn-arrow {
  transition: transform 0.35s ease;
  font-size: 13px;
}
.cta-btn-primary:hover .cta-btn-arrow {
  transform: translateX(4px);
}

.cta-btn-outline {
  background: rgba(255,255,255,0.06);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.15);
}
.cta-btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.25);
  transform: translateY(-3px);
}

@keyframes ctaFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Trust grid (right side) */
.cta-trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.cta-trust-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  transition: all 0.35s ease;
  animation: ctaCardPop 0.5s ease both;
}
.cta-trust-card:nth-child(1) { animation-delay: 0.3s; }
.cta-trust-card:nth-child(2) { animation-delay: 0.4s; }
.cta-trust-card:nth-child(3) { animation-delay: 0.5s; }
.cta-trust-card:nth-child(4) { animation-delay: 0.6s; }

.cta-trust-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(212,129,61,0.25);
  transform: translateY(-2px);
}

.cta-trust-icon {
  width: 40px; height: 40px;
  min-width: 40px;
  border-radius: 10px;
  background: rgba(212,129,61,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 18px;
}

.cta-trust-info {
  display: flex;
  flex-direction: column;
}
.cta-trust-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.cta-trust-label {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.3px;
}

@keyframes ctaCardPop {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}

/* — Responsive — */
@media (max-width: 991px) {
  .cta-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }
  .cta-content { max-width: 100%; }
  .cta-desc { max-width: 100%; margin-left: auto; margin-right: auto; }
  .cta-btns { justify-content: center; }
  .cta-trust-grid { max-width: 400px; margin: 0 auto; }
}
@media (max-width: 767px) {
  .cta-modern { padding: 0 0 60px; }
  .cta-heading { font-size: clamp(1.4rem, 6vw, 1.8rem); }
  .cta-desc { font-size: 14px; }
  .cta-btns { flex-direction: column; width: 100%; }
  .cta-btn { justify-content: center; width: 100%; }
  .cta-trust-grid {
    grid-template-columns: 1fr;
    max-width: 300px;
  }
  .cta-trust-card { padding: 14px 16px; }
}

/* Trusted / Certifications Strip */
.trusted-strip {
  background: var(--white);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 24px 0;
}
.trusted-strip .trusted-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.trusted-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.trusted-logos .logo-placeholder {
  height: 30px;
  opacity: 0.4;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 1px;
}

/* About Section */
.about-section { position: relative; }
.about-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-image-wrap img {
  width: 100%;
  min-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.about-experience-badge {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: var(--accent);
  color: var(--white);
  padding: 20px 28px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 10px 30px rgba(212,129,61,0.3);
}
.about-experience-badge .number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 36px;
  font-weight: 700;
  display: block;
  line-height: 1;
}
.about-experience-badge .text {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 30px; }
.about-feature {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  padding: 18px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.about-feature i {
  font-size: 22px;
  color: var(--accent);
  flex-shrink: 0;
}
.about-feature span {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
}

/* Materials Categories */
.materials-section { background: var(--white); }
.material-card {
  background: var(--light-bg);
  padding: 32px 24px;
  border-radius: var(--radius);
  text-align: center;
  transition: var(--transition);
  border: 1px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.material-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--primary-light));
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}
.material-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--border-light); }
.material-card:hover::before { transform: scaleX(1); }
.material-card .mat-icon {
  width: 60px; height: 60px;
  background: var(--accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.material-card .mat-icon i { font-size: 26px; color: var(--accent); }
.material-card h4 { font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.material-card p { font-size: 13px; color: var(--text-muted); }
.material-card .mat-forms {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  justify-content: center;
}
.material-card .mat-forms span {
  background: var(--white);
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 500;
  color: var(--primary);
}

/* Process Section */
.process-section {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.process-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: radial-gradient(ellipse 60% 50% at 20% 50%, rgba(212,129,61,0.08), transparent);
  pointer-events: none;
}
.process-section .section-title h2,
.process-section .section-title .subtitle { color: var(--white); }
.process-section .section-title p { color: rgba(255,255,255,0.6); }

.process-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  position: relative;
}
.process-timeline::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 60px;
  right: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--primary-light), var(--accent));
  opacity: 0.3;
}
@media (max-width: 991px) {
  .process-timeline { grid-template-columns: 1fr; gap: 16px; }
  .process-timeline::before { display: none; }
}

.process-step {
  text-align: center;
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 36px 20px 28px;
  transition: var(--transition);
}
.process-step:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(212,129,61,0.3);
  transform: translateY(-4px);
}
.process-step .step-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  background: rgba(212,129,61,0.15);
  width: 36px;
  height: 36px;
  line-height: 36px;
  border-radius: 50%;
  display: inline-block;
  margin-bottom: 16px;
}
.process-step .step-icon {
  width: 60px; height: 60px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.process-step .step-icon i { font-size: 26px; color: var(--accent); }
.process-step h4 { color: var(--white); font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.process-step p { color: rgba(255,255,255,0.5); font-size: 13px; }
.process-step .step-connector {
  position: absolute;
  top: 50px;
  right: -24px;
  color: rgba(255,255,255,0.15);
  font-size: 16px;
}
@media (max-width: 991px) { .process-step .step-connector { display: none; } }

/* Stats Counter */
.stats-section {
  background: var(--white);
  position: relative;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.stats-item { text-align: center; padding: 40px 20px; }
.stats-item .stat-icon i { font-size: 40px; color: var(--accent); }
.stats-item .stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 44px;
  font-weight: 700;
  color: var(--dark);
  margin: 12px 0 4px;
}
.stats-item .stat-label {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
}
@media (max-width: 767px) { .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
@media (max-width: 575px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }

/* Why Choose Us */
.choose-section {
  background: var(--light-bg);
  position: relative;
  overflow: hidden;
}
.choose-shape {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,129,61,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.choose-card {
  background: var(--white);
  border-radius: 16px;
  padding: 44px 28px 32px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  height: 100%;
  text-align: center;
}
.choose-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), #e8a870);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.choose-card:hover::before { opacity: 1; }
.choose-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}
.choose-num {
  position: absolute;
  top: 14px;
  right: 18px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: rgba(0,0,0,0.05);
  letter-spacing: 1.5px;
  user-select: none;
}
.choose-card .choose-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(212,129,61,0.1), rgba(45,74,90,0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: background 0.4s ease, transform 0.4s ease;
}
.choose-card:hover .choose-icon {
  background: linear-gradient(135deg, var(--accent), #e8a870);
  transform: scale(1.08);
}
.choose-card .choose-icon i {
  font-size: 28px;
  color: var(--accent);
  transition: color 0.4s ease;
}
.choose-card:hover .choose-icon i { color: var(--white); }
.choose-card h4 { font-size: 18px; font-weight: 600; margin-bottom: 12px; }
.choose-card p { font-size: 14px; color: var(--text-light); margin: 0; line-height: 1.65; }

/* Featured Products */
.featured-products { background: var(--white); }
.product-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.product-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: var(--transition);
}
.product-card:hover img { transform: scale(1.05); }
.product-card .product-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(26,31,43,0.85));
  color: var(--white);
}
.product-card .product-overlay h5 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin: 0;
}
.product-card .product-overlay span {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
}

/* Testimonials */
.testimonial-section { background: var(--light-bg); }
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  margin: 10px;
  border: 1px solid var(--border-light);
}
.testimonial-card .testi-stars { color: #F4B740; font-size: 14px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card .testi-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-dark);
  font-style: italic;
  margin-bottom: 20px;
}
.testimonial-card .testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-card .testi-author .avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  color: var(--accent);
  font-size: 18px;
  flex-shrink: 0;
}
.testimonial-card .testi-author .info h6 {
  font-size: 14px;
  font-weight: 600;
  margin: 0;
}
.testimonial-card .testi-author .info span {
  font-size: 12px;
  color: var(--text-muted);
}

/* FAQ */
/* ============================================================
   FAQ Section
   ============================================================ */
.faq-section {
  background: #0d1117;
  position: relative;
  overflow: hidden;
}
.faq-section .section-title .subtitle { color: var(--accent); }
.faq-section .section-title h2 { color: var(--white); }
.faq-section .section-title p { color: rgba(255,255,255,0.55); max-width: 540px; margin: 0 auto; }

/* Background dot pattern */
.faq-bg-dots {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: radial-gradient(circle, rgba(212,129,61,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 10%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 10%, transparent 75%);
}
.faq-section .container { position: relative; z-index: 1; }

/* Two-column layout: accordion + side card */
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
  margin-top: 48px;
}

/* Accordion */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-accordion .faq-item {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.3s ease, background 0.3s ease;
  background: rgba(255,255,255,0.03);
}
.faq-accordion .faq-item:hover {
  border-color: rgba(212,129,61,0.3);
  background: rgba(255,255,255,0.05);
}
.faq-accordion .faq-item.active {
  border-color: rgba(212,129,61,0.4);
  background: rgba(255,255,255,0.06);
}

/* Question button */
.faq-accordion .faq-question {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  cursor: pointer;
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  transition: color 0.3s ease;
}
.faq-accordion .faq-item.active .faq-question { color: var(--white); }

.faq-q-icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 10px;
  background: rgba(212,129,61,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--accent);
  transition: background 0.3s ease, transform 0.3s ease;
}
.faq-accordion .faq-item.active .faq-q-icon {
  background: var(--accent);
  color: var(--white);
  transform: scale(1.05);
}

.faq-q-text { flex: 1; line-height: 1.4; }

.faq-q-toggle {
  width: 30px;
  height: 30px;
  min-width: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
}
.faq-q-toggle i {
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s ease;
}
.faq-accordion .faq-item.active .faq-q-toggle {
  background: var(--accent);
  transform: rotate(45deg);
}
.faq-accordion .faq-item.active .faq-q-toggle i { color: var(--white); }

/* Answer */
.faq-accordion .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25,0.46,0.45,0.94), padding 0.3s ease;
  padding: 0 22px 0 74px;
}
.faq-accordion .faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 22px 20px 74px;
}
.faq-accordion .faq-answer p {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,0.5);
}

/* Side card */
.faq-side-card {
  background: linear-gradient(160deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 36px 28px;
  text-align: center;
  position: sticky;
  top: 120px;
}
.faq-side-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(212,129,61,0.15), rgba(212,129,61,0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--accent);
  margin: 0 auto 20px;
}
.faq-side-card h4 {
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.faq-side-card p {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 24px;
}
.faq-side-card .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ============================================================
   FAQ Responsive
   ============================================================ */
@media (max-width: 991px) {
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .faq-side { order: -1; }
  .faq-side-card {
    position: static;
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
    padding: 24px 28px;
  }
  .faq-side-icon { margin: 0; flex-shrink: 0; }
  .faq-side-card h4 { margin-bottom: 4px; }
  .faq-side-card p { margin-bottom: 0; flex: 1; }
}
@media (max-width: 575px) {
  .faq-accordion .faq-question {
    padding: 15px 16px;
    font-size: 13.5px;
    gap: 10px;
  }
  .faq-q-icon { width: 34px; height: 34px; min-width: 34px; font-size: 14px; }
  .faq-q-toggle { width: 26px; height: 26px; min-width: 26px; }
  .faq-q-toggle i { font-size: 14px; }
  .faq-accordion .faq-answer { padding-left: 60px; }
  .faq-accordion .faq-item.active .faq-answer { padding-left: 60px; }
  .faq-side-card { flex-direction: column; text-align: center; padding: 28px 20px; }
  .faq-side-icon { margin-bottom: 0; }
  .faq-side-card p { margin-bottom: 20px; }
}

/* CTA Banner */
/* ============================================================
   CTA BANNER V2 — Above footer
   ============================================================ */
.cta-banner-v2 {
  position: relative;
  background: #0d1117;
  padding: 90px 0;
  overflow: hidden;
}

/* Dot pattern background */
.cta2-bg-dots {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: radial-gradient(circle, rgba(212,129,61,0.08) 1.2px, transparent 1.2px);
  background-size: 24px 24px;
  mask-image: radial-gradient(ellipse 80% 70% at 20% 50%, black 10%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 20% 50%, black 10%, transparent 70%);
}

/* Diagonal line pattern */
.cta2-bg-lines {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(255,255,255,0.015) 40px,
    rgba(255,255,255,0.015) 41px
  );
  mask-image: linear-gradient(to right, transparent 10%, black 50%, transparent 90%);
  -webkit-mask-image: linear-gradient(to right, transparent 10%, black 50%, transparent 90%);
}

/* Ambient glows */
.cta2-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  z-index: 0;
  pointer-events: none;
}
.cta2-glow-1 {
  width: 450px; height: 450px;
  background: rgba(212,129,61,0.08);
  top: -150px; left: -100px;
  animation: cta2Glow 10s ease-in-out infinite;
}
.cta2-glow-2 {
  width: 350px; height: 350px;
  background: rgba(45,74,90,0.12);
  bottom: -120px; right: -80px;
  animation: cta2Glow 12s ease-in-out infinite 4s;
}
.cta2-glow-3 {
  width: 200px; height: 200px;
  background: rgba(212,129,61,0.06);
  top: 50%; left: 60%;
  animation: cta2Glow 8s ease-in-out infinite 2s;
}
@keyframes cta2Glow {
  0%, 100% { opacity: 0.5; transform: scale(1) translate(0, 0); }
  50% { opacity: 1; transform: scale(1.2) translate(10px, -10px); }
}

/* Main layout */
.cta2-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 50px;
  align-items: center;
}

/* Content */
.cta2-content { max-width: 620px; }

.cta2-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--accent);
  margin-bottom: 18px;
  animation: cta2FadeUp 0.5s ease both;
}
.cta2-eyebrow-icon {
  width: 30px; height: 30px;
  border-radius: 8px;
  background: rgba(212,129,61,0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.cta2-heading {
  color: var(--white);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  animation: cta2FadeUp 0.5s ease 0.1s both;
}
.cta2-heading-highlight {
  background: linear-gradient(135deg, var(--accent), #E8A870, #FFD700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: gradientText 4s ease infinite;
}

.cta2-desc {
  color: rgba(255,255,255,0.55);
  font-size: 15px;
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 30px;
  animation: cta2FadeUp 0.5s ease 0.2s both;
}

/* Buttons */
.cta2-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  animation: cta2FadeUp 0.5s ease 0.3s both;
}
.cta2-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}
.cta2-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.12), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.cta2-btn:hover::after { opacity: 1; }

.cta2-btn-primary {
  background: linear-gradient(135deg, var(--accent), #c0702d);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(212,129,61,0.3);
}
.cta2-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(212,129,61,0.45);
}

.cta2-btn-outline {
  background: rgba(255,255,255,0.06);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.15);
}
.cta2-btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.25);
  transform: translateY(-3px);
}

@keyframes cta2FadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Stats column (right side) */
.cta2-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px 32px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  animation: cta2FadeUp 0.5s ease 0.4s both;
}
.cta2-stat {
  text-align: center;
  flex: 1;
}
.cta2-stat-num {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1.2;
  margin-bottom: 4px;
}
.cta2-stat-label {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.3px;
}
.cta2-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

/* — Responsive — */
@media (max-width: 991px) {
  .cta2-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }
  .cta2-content { max-width: 100%; }
  .cta2-desc { max-width: 100%; margin-left: auto; margin-right: auto; }
  .cta2-btns { justify-content: center; }
  .cta2-stats { max-width: 420px; margin: 0 auto; }
}
@media (max-width: 767px) {
  .cta-banner-v2 { padding: 60px 0; }
  .cta2-heading { font-size: clamp(1.4rem, 6vw, 1.8rem); }
  .cta2-desc { font-size: 14px; }
  .cta2-btns { flex-direction: column; width: 100%; }
  .cta2-btn { justify-content: center; width: 100%; }
  .cta2-stats {
    flex-direction: column;
    gap: 16px;
    padding: 24px 20px;
    max-width: 260px;
  }
  .cta2-stat-divider {
    width: 40px; height: 1px;
  }
}

/* Footer */
.footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-widget { margin-bottom: 30px; }
.footer-widget h5 {
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.footer-widget h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--accent);
}
.footer-widget p,
.footer-widget li {
  color: rgba(255,255,255,0.55);
  font-size: 14px;
  line-height: 1.8;
}
.footer-widget li { display: block; margin-bottom: 8px; }
.footer-widget a {
  color: rgba(255,255,255,0.55);
  font-size: 14px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-widget a:hover { color: var(--accent); padding-left: 4px; }
.footer-widget a i { font-size: 12px; }

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}
.footer-contact li i {
  color: var(--accent);
  font-size: 18px;
  margin-top: 3px;
  flex-shrink: 0;
}
.footer-contact li span { color: rgba(255,255,255,0.55); font-size: 14px; }

.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 16px;
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
  margin-top: 20px;
}
.footer-bottom .copyright {
  color: rgba(255,255,255,0.4);
  font-size: 13px;
}
.footer-bottom .copyright a { color: var(--accent); }
.footer-bottom .footer-links { display: flex; gap: 20px; justify-content: flex-end; }
.footer-bottom .footer-links a {
  color: rgba(255,255,255,0.4);
  font-size: 13px;
}
.footer-bottom .footer-links a:hover { color: var(--accent); }

/* Breadcrumb */
.breadcroumb-area {
  position: relative;
  padding: 120px 0 80px;
  background: var(--dark);
  overflow: hidden;
}
.breadcroumb-area::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 30% 30%, rgba(212,129,61,0.12), transparent),
    radial-gradient(ellipse 50% 40% at 80% 80%, rgba(45,74,90,0.2), transparent);
  pointer-events: none;
}
.breadcroumb-area .overlay-2 { position: absolute; inset: 0; background: rgba(26,31,43,0.4); }
.breadcroumb-title { position: relative; z-index: 2; }
.breadcroumb-title h1 {
  color: var(--white);
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 700;
  margin-bottom: 8px;
}
.breadcroumb-title h6 {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  font-weight: 400;
  font-family: 'Inter', sans-serif;
}
.breadcroumb-title h6 a { color: var(--accent); }
.breadcroumb-title h6 a:hover { color: var(--accent-hover); }

/* What We Do Page */
.wwd-services .service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  border: 1px solid var(--border-light);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.service-card .service-icon {
  width: 60px; height: 60px;
  background: var(--accent-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-card .service-icon i { font-size: 28px; color: var(--accent); }
.service-card h4 { font-size: 18px; font-weight: 600; margin-bottom: 12px; }
.service-card p { font-size: 14px; }

.values-grid .value-item {
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  transition: var(--transition);
  height: 100%;
}
.value-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.value-item .value-icon {
  width: 70px; height: 70px;
  background: var(--accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.value-item .value-icon i { font-size: 30px; color: var(--accent); }
.value-item h4 { font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.value-item p { font-size: 13px; color: var(--text-muted); }

/* Products Page */
.products-page .gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 991px) { .products-page .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 767px) { .products-page .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .products-page .gallery-grid { grid-template-columns: 1fr; } }

.products-page .gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  aspect-ratio: 1;
}
.products-page .gallery-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.products-page .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.products-page .gallery-item:hover img { transform: scale(1.08); }
.products-page .gallery-item .gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px 18px;
  background: linear-gradient(transparent, rgba(26,31,43,0.85));
  opacity: 0;
  transition: var(--transition);
}
.products-page .gallery-item:hover .gallery-overlay { opacity: 1; }
.products-page .gallery-item .gallery-overlay span {
  color: var(--white);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 500;
}

/* Magnific Popup custom overrides */
.mfp-bg { background: rgba(26,31,43,0.95); }
.mfp-figure figure { display: flex; align-items: center; justify-content: center; min-height: 300px; }
.mfp-figure img { max-height: 80vh; object-fit: contain; border-radius: var(--radius); }
.mfp-figure .mfp-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  text-align: center;
  padding: 16px 0;
}
.mfp-arrow {
  opacity: 0.8;
  transition: var(--transition);
}
.mfp-arrow:hover { opacity: 1; }
.mfp-arrow:after, .mfp-arrow:before { display: none; }
.mfp-arrow-left:before {
  content: '\f060';
  font-family: 'Line Awesome Free';
  font-weight: 900;
  font-size: 24px;
  color: var(--white);
}
.mfp-arrow-right:before {
  content: '\f061';
  font-family: 'Line Awesome Free';
  font-weight: 900;
  font-size: 24px;
  color: var(--white);
}
.mfp-close { font-size: 40px; color: var(--white); opacity: 0.8; }

/* Contact Page */
.contact-info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 36px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  height: 100%;
}
.contact-info-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 28px;
}
.contact-detail {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-detail .cd-icon {
  width: 50px; height: 50px;
  background: var(--accent-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail .cd-icon i { font-size: 20px; color: var(--accent); }
.contact-detail .cd-content h6 { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.contact-detail .cd-content p,
.contact-detail .cd-content a {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
  display: block;
  line-height: 1.6;
}

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 36px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
}
.contact-form-wrap .form-control {
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text-dark);
  transition: var(--transition);
  margin-bottom: 16px;
}
.contact-form-wrap .form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-light);
  outline: none;
}
.contact-form-wrap textarea.form-control { min-height: 120px; resize: vertical; }
.contact-form-wrap select.form-control { appearance: auto; }
.contact-form-wrap .conditional-fields {
  max-height: 0;
  overflow: hidden;
  transition: var(--transition);
}
.contact-form-wrap .conditional-fields.show {
  max-height: 600px;
}

/* Google Translate — hide banner & toolbar, keep combo functional */
.goog-te-banner-frame.skiptranslate { display: none !important; }
body { top: 0 !important; position: relative !important; }
/* Hide Google's default widget chrome but keep the <select> working */
.goog-te-gadget-simple { font-size: 0 !important; line-height: 0 !important; border: none !important; padding: 0 !important; background: transparent !important; height: 0 !important; overflow: hidden !important; position: absolute !important; opacity: 0 !important; pointer-events: none !important; }
.goog-te-gadget-simple .goog-te-menu-value { display: none !important; }
.goog-te-gadget-simple img { display: none !important; }
/* Hide the floating Google bar that appears on translation */
.goog-te-banner-frame { display: none !important; }
body .goog-te-banner-frame { display: none !important; }
.skiptranslate { position: static !important; }
.skiptranslate .goog-te-gadget-simple { position: static !important; opacity: 1 !important; pointer-events: auto !important; height: auto !important; overflow: visible !important; }
#google_translate_element { position: static !important; }
#google_translate_element .goog-te-gadget-simple { position: absolute !important; opacity: 0 !important; height: 0 !important; pointer-events: none !important; }

/* Go top */
.go-top {
  width: 46px; height: 46px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99;
  font-size: 18px;
  box-shadow: 0 4px 15px rgba(212,129,61,0.3);
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
}
.go-top.visible {
  opacity: 1;
  visibility: visible;
}
.go-top:hover {
  background: var(--accent-hover);
  transform: translateY(-3px);
  color: var(--white);
}

/* WOW re-init */
.wow { visibility: hidden; }
.animated { visibility: visible; }

/* Responsive helpers */
@media (max-width: 991px) {
  .container-fluid { padding: 0 20px; }
  .header-area .navigation { padding: 0 20px; }
}

/* Hero button overrides (kept for CTA strip compatibility) */
.hero-btns .btn-primary {
  padding: 18px 40px;
  font-size: 13px;
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  box-shadow: 0 8px 30px rgba(212,129,61,0.3);
}
.hero-btns .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(212,129,61,0.4);
}
.hero-btns .btn-secondary {
  padding: 16px 38px;
  font-size: 13px;
  border-width: 2px;
}

/* Hero bottom wave divider */
.hero-wave-divider {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  z-index: 3;
  line-height: 0;
}
.hero-wave-divider svg { width: 100%; height: auto; display: block; }

/* EU Specialist Section - Parallax */
.eu-specialist-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.eu-bg-wrapper {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  overflow: hidden;
  z-index: 0;
}
.eu-bg-image {
  position: absolute;
  top: -20px; left: -20px; right: -20px; bottom: -20px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.eu-bg-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(26,31,43,0.93) 0%, rgba(45,74,90,0.82) 50%, rgba(26,31,43,0.93) 100%);
}

/* EU Map Card (glassmorphism) */
.eu-map-card {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 32px;
  color: var(--white);
}
.eu-map-head {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.eu-map-flag { display: flex; align-items: center; }
.eu-map-flag img { border-radius: 3px; display: block; }
.eu-map-svg { margin-bottom: 24px; }
.eu-map-svg svg { width: 100%; height: auto; display: block; }
.eu-pts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.eu-pt {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  padding: 10px 14px;
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
}
.eu-pt i { color: var(--accent); font-size: 16px; }

/* EU Content Card (white) */
.eu-content-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 36px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.eu-content-card .subtitle {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  margin-bottom: 12px;
}
.eu-content-card h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.3;
}
.eu-divider {
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  border-radius: 2px;
  margin-bottom: 20px;
}
.eu-content-card > p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
}
.eu-benefits-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.eu-benefits-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-dark);
}
.eu-benefits-list li i { color: var(--accent); font-size: 17px; }
.eu-stats-row {
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.eu-stat-item {
  text-align: center;
  padding: 14px 24px;
  background: var(--light-bg);
  border-radius: 12px;
  flex: 1;
  min-width: 80px;
}
.eu-stat-num {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1.2;
}
.eu-stat-lbl {
  display: block;
  font-size: 11px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}
.eu-content-card .btn-primary { font-size: 14px; padding: 12px 30px; }

/* Parallax Section */
.parallax-section {
  position: relative;
  background: var(--dark);
  padding: 120px 0;
  overflow: hidden;
}
.parallax-section .parallax-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  opacity: 0.15;
}
.parallax-section .parallax-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,31,43,0.92), rgba(45,74,90,0.85));
}
.parallax-content { position: relative; z-index: 2; }
.parallax-content h2 { color: var(--white); margin-bottom: 20px; }
.parallax-content p { color: rgba(255,255,255,0.7); max-width: 600px; }

/* Certifications Strip */
.cert-strip {
  background: var(--white);
  padding: 40px 0;
  border-bottom: 1px solid var(--border-light);
}
.cert-strip .cert-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  text-align: center;
}
.cert-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 48px;
}
.cert-item {
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0.5;
  transition: var(--transition);
}
.cert-item:hover { opacity: 0.8; }
.cert-item .cert-icon {
  width: 40px; height: 40px;
  border: 2px solid var(--border-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--primary);
}
.cert-item .cert-name {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Global Reach Section */
.global-section {
  background: #0d1117;
  position: relative;
  overflow: hidden;
}
/* Network pattern background */
.global-network-pattern {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    radial-gradient(circle, rgba(61,96,112,0.2) 1.5px, transparent 1.5px),
    radial-gradient(circle, rgba(212,129,61,0.12) 1px, transparent 1px);
  background-size: 40px 40px, 60px 60px;
  background-position: 0 0, 20px 20px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 20%, transparent 80%);
}
.global-section .container { position: relative; z-index: 1; }
.global-section .section-title .subtitle { color: var(--accent); }
.global-section .section-title h2 { color: var(--white); }
.global-section .section-title p { color: rgba(255,255,255,0.6); }
.global-map-visual {
  position: relative;
  text-align: center;
  padding: 40px 0;
}
.global-map-visual .map-placeholder {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.08;
}
.global-connection-dots {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 30px;
}
.global-dot {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}
.global-dot:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.12);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}
.global-dot-hq {
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 18px rgba(212,129,61,0.35);
}
.global-dot-hq:hover {
  box-shadow: 0 6px 24px rgba(212,129,61,0.45);
  background: linear-gradient(135deg, var(--accent-hover), var(--accent));
}
.global-dot .dot-flag {
  display: flex;
  align-items: center;
  line-height: 1;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.25);
}
.global-dot .dot-flag img {
  display: block;
  width: 28px;
  height: 20px;
  object-fit: cover;
}

/* Section dividers */
.section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--primary-light));
  border-radius: 2px;
  margin: 0 auto 20px;
}
.section-divider.left { margin: 0 0 20px; }

/* Enhanced testimonial arrows */
.testimonial-carousel .owl-dots { margin-top: 30px; text-align: center; }
.testimonial-carousel .owl-dot {
  display: inline-block;
  width: 10px; height: 10px;
  background: var(--border-light);
  border-radius: 50%;
  margin: 0 5px;
  transition: var(--transition);
}
.testimonial-carousel .owl-dot.active {
  background: var(--accent);
  width: 28px;
  border-radius: 5px;
}

/* Enhanced Footer */
.footer { 
  background: linear-gradient(180deg, var(--dark) 0%, #0F141D 100%);
  border-top: none;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--primary-light), var(--accent), var(--primary-light));
  background-size: 300% 100%;
  animation: gradientMove 4s linear infinite;
}
@keyframes gradientMove {
  0% { background-position: 0% 0%; }
  100% { background-position: 300% 0%; }
}
.footer .row.pt-60 { padding-top: 80px; }
.footer-widget h5 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 24px;
  padding-bottom: 14px;
  letter-spacing: 0.5px;
}
.footer-widget h5::after {
  width: 24px;
  height: 2px;
}
.footer-widget p { line-height: 1.9; }
.footer-widget li { margin-bottom: 10px; }
.footer-widget a { font-size: 14px; gap: 10px; }
.footer-widget a i { font-size: 10px; }
.footer-widget a:hover { padding-left: 6px; }

.footer-contact li { gap: 14px; margin-bottom: 16px; }
.footer-contact li i { font-size: 16px; width: 20px; text-align: center; }

.footer-social { gap: 8px; }
.footer-social a {
  width: 36px; height: 36px;
  font-size: 14px;
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.06);
}
.footer-social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.footer-newsletter { margin-top: 20px; }
.footer-newsletter .newsletter-form {
  display: flex;
  gap: 8px;
}
.footer-newsletter .newsletter-form input {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 13px;
  color: var(--white);
  font-family: 'Inter', sans-serif;
}
.footer-newsletter .newsletter-form input::placeholder { color: rgba(255,255,255,0.3); }
.footer-newsletter .newsletter-form input:focus { outline: none; border-color: var(--accent); }
.footer-newsletter .newsletter-form button {
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 10px 16px;
  cursor: pointer;
  transition: var(--transition);
  font-size: 16px;
  display: flex;
  align-items: center;
}
.footer-newsletter .newsletter-form button:hover { background: var(--accent-hover); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
  margin-top: 30px;
}
.footer-bottom .copyright { 
  color: rgba(255,255,255,0.35); 
  font-size: 13px;
  letter-spacing: 0.3px;
}
.footer-bottom .copyright a { color: var(--accent); font-weight: 600; }
.footer-bottom .footer-links { gap: 24px; }
.footer-bottom .footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  position: relative;
}
.footer-bottom .footer-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: var(--transition);
}
.footer-bottom .footer-links a:hover::after { width: 100%; }
.footer-bottom .footer-links a:hover { color: var(--accent); }

/* Featured Products enhanced */
.products-carousel .owl-dots { margin-top: 24px; text-align: center; }
.products-carousel .owl-dot {
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--border-light);
  border-radius: 50%;
  margin: 0 4px;
  transition: var(--transition);
}
.products-carousel .owl-dot.active {
  background: var(--accent);
  width: 24px;
  border-radius: 4px;
}

/* Responsive enhancements */
@media (max-width: 991px) {
  .hero-section { min-height: auto; }
  .hero-content { padding: 80px 0 40px; }
  .hero-text-col { text-align: center; }
  .hero-description { margin-left: auto; margin-right: auto; }
  .hero-btns { justify-content: center; }
  .hero-trust-row { justify-content: center; flex-wrap: wrap; }
  .hero-trust-item { padding: 0 14px; }
  .hero-eu-badge { font-size: 11px; }
  .hero-images { padding: 20px 0 0; }
  .hero-img-main .item img { height: 380px; }
  .hero-img-float-1 { width: 100px; height: 100px; bottom: 15px; }
  .hero-img-float-2 { width: 85px; height: 85px; }
  .hero-badge-float { padding: 8px 14px; font-size: 11px; right: 0; }
  .hero-badge-float-2 { left: 0; }
  .eu-pts-grid { grid-template-columns: 1fr; }
  .eu-content-card { padding: 32px 24px; }
  .eu-stats-row { gap: 12px; }
  .eu-stat-item { padding: 12px 16px; }
}

@media (max-width: 767px) {
  .hero-content { padding: 70px 0 30px; }
  .hero-text-col h1 { font-size: clamp(1.6rem, 7vw, 2.2rem); }
  .hero-description { font-size: 14.5px; line-height: 1.7; }
  .hero-eu-badge { font-size: 10px; padding: 5px 14px; }
  .eu-badge-text { font-size: 10px; }
  .hero-btns { flex-direction: column; width: 100%; gap: 12px; }
  .hero-btns .btn-primary,
  .hero-btns .btn-secondary { justify-content: center; width: 100%; padding: 16px 24px; }
  .hero-trust-row { flex-direction: column; gap: 12px; }
  .hero-trust-divider { width: 40px; height: 1px; }
  .hero-trust-item { padding: 0; }
  .hero-images { padding: 10px 0 0; }
  .hero-img-main .item img { height: 280px; }
  .hero-img-float { display: none; }
  .hero-badge-float { display: none; }
  .hero-grid-pattern { opacity: 0.03; }
  .hero-shape-1 { width: 250px; height: 250px; }
  .hero-shape-2 { width: 200px; height: 200px; }
  .hero-shape-3, .hero-shape-4, .hero-shape-5 { display: none; }
  .about-features { grid-template-columns: 1fr; }
  .choose-card { padding: 28px 20px; }
  .contact-form-wrap,
  .contact-info-card { padding: 28px 20px; }
  .eu-specialist-section { padding: 60px 0; }
  .eu-bg-image { background-attachment: scroll; }
  .eu-map-card { padding: 24px; }
  .eu-content-card { padding: 28px 20px; }
  .eu-stats-row { flex-direction: column; }
  .eu-stat-item { min-width: auto; }
  .cert-logos { gap: 24px; flex-wrap: wrap; }
  .parallax-section { padding: 80px 0; }
  .parallax-section .parallax-bg { background-attachment: scroll; }
  .global-connection-dots { gap: 8px; }
  .footer { text-align: center; }
  .footer .row.pt-60 { padding-top: 50px; }
  .footer-widget { margin-bottom: 36px; }
  .footer-widget h5::after { left: 50%; transform: translateX(-50%); }
  .footer-widget a { justify-content: center; }
  .footer-contact li { justify-content: center; }
  .footer-social { justify-content: center; }
  .footer-newsletter .newsletter-form { max-width: 320px; margin: 0 auto; }
  .footer-bottom .footer-links { justify-content: center; margin-top: 8px; gap: 16px; }
  .footer-bottom .copyright { text-align: center; }
  .breadcroumb-area { padding: 100px 0 60px; }
}

/* Cookie Consent Banner */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 99999;
  background: rgba(26,31,43,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: none;
  animation: slideUp 0.5s ease;
}
.cookie-consent.show { display: block; }
@keyframes slideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}
.cookie-consent-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}
.cookie-text h4 {
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cookie-text h4 i { color: var(--accent); font-size: 16px; }
.cookie-text p {
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
  max-width: 700px;
}
.cookie-text p a {
  color: var(--accent);
  text-decoration: underline;
}
.cookie-text p a:hover { color: #E8A870; }
.cookie-btns {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.btn-cookie {
  padding: 10px 22px;
  border-radius: 8px;
  border: none;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn-cookie-accept {
  background: var(--accent);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-cookie-accept:hover {
  background: #c0722f;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(212,129,61,0.3);
}
.btn-cookie-reject {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.15);
}
.btn-cookie-reject:hover {
  background: rgba(255,255,255,0.18);
  color: var(--white);
}
/* ============ Career Intro Stats ============ */
.career-intro-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.cis-item { display: flex; flex-direction: column; align-items: center; }
.cis-num { font-size: 28px; font-weight: 700; color: var(--accent); line-height: 1.2; }
.cis-lbl { font-size: 13px; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.5px; }
.cis-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.15); }

/* ============ Career Perk Cards ============ */
.perk-card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px 28px 32px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  height: 100%;
}
.perk-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.perk-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 26px;
  color: var(--white);
}
.perk-card h4 { font-size: 18px; margin-bottom: 10px; }
.perk-card p { font-size: 14px; color: var(--text-light); margin: 0; line-height: 1.6; }

/* ============ Job Cards ============ */
.job-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.job-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
}
.job-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}
.job-card-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 32px;
}
.job-card-left { display: flex; align-items: flex-start; gap: 20px; flex: 1; }
.job-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(212,129,61,0.12), rgba(212,129,61,0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--accent);
}
.job-card-left h4 { font-size: 17px; margin-bottom: 6px; }
.job-card-left p { font-size: 13.5px; color: var(--text-light); margin: 0; line-height: 1.6; }
.job-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 10px; }
.job-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--primary);
  background: rgba(45,74,90,0.08);
  padding: 3px 10px;
  border-radius: 6px;
  font-weight: 500;
}
.job-tag i { font-size: 11px; }
.btn-job {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 28px;
  border-radius: 8px;
  background: var(--accent);
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.3s ease, transform 0.3s ease;
}
.btn-job:hover {
  background: #c0722f;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212,129,61,0.3);
}

/* ============ Career CTA ============ */
.career-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--dark) 0%, #2a2f3b 100%);
}
.career-cta-inner h2 { font-size: 32px; color: var(--white); margin-bottom: 14px; }
.career-cta-inner p { font-size: 16px; color: rgba(255,255,255,0.6); max-width: 540px; margin: 0 auto 28px; line-height: 1.7; }
.career-cta-inner .btn-primary { font-size: 16px; padding: 14px 36px; }

/* ============ Career Responsive ============ */
@media (max-width: 991px) {
  .job-card-body { flex-direction: column; align-items: stretch; }
  .job-card-left { flex-direction: column; align-items: flex-start; }
  .btn-job { align-self: flex-start; }
}
@media (max-width: 767px) {
  .career-intro-stats { gap: 16px; }
  .cis-divider { display: none; }
  .cis-num { font-size: 22px; }
  .job-card-body { padding: 20px; }
  .job-icon { width: 44px; height: 44px; min-width: 44px; font-size: 18px; }
  .career-cta { padding: 60px 0; }
  .career-cta-inner h2 { font-size: 24px; }
}
@media (max-width: 767px) {
  .cookie-consent-inner { flex-direction: column; gap: 16px; padding: 0 20px; }
  .cookie-text p { max-width: 100%; }
  .cookie-btns { width: 100%; }
  .btn-cookie { flex: 1; justify-content: center; text-align: center; }
}

/* ============================================================
   CAREER PAGE V2 — Redesigned
   ============================================================ */

/* Hero */
.career-hero {
  position: relative;
  background: #0d1117;
  padding: 120px 0 60px;
  overflow: hidden;
}
.career-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 30%, rgba(45,74,90,0.3), transparent 60%),
    radial-gradient(ellipse 40% 40% at 80% 70%, rgba(212,129,61,0.08), transparent 50%);
}
.career-hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(212,129,61,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 10%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 10%, transparent 70%);
}
.career-hero-glow {
  position: absolute;
  width: 400px; height: 400px;
  background: rgba(212,129,61,0.06);
  border-radius: 50%;
  filter: blur(100px);
  top: -100px; right: -100px;
}
.career-hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}
.career-hero-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  text-decoration: none;
  margin-bottom: 20px;
  transition: color 0.3s ease;
}
.career-hero-back:hover { color: var(--accent); }
.career-hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 14px;
}
.career-hero-sub {
  color: rgba(255,255,255,0.55);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 32px;
}
.career-hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}
.chs-item { text-align: center; }
.chs-num {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1.2;
}
.chs-lbl {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
}
.chs-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
}

/* Section eyebrow (shared) */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--accent);
  margin-bottom: 12px;
}

/* Perks */
.career-perks-v2 {
  position: relative;
  background: var(--light-bg);
  padding: 60px 0;
  overflow: hidden;
}
.career-perks-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.02) 1px, transparent 1px);
  background-size: 40px 40px;
}
.career-perks-header {
  text-align: center;
  margin-bottom: 36px;
}
.career-perks-header h2 {
  color: var(--dark);
  font-size: clamp(1.5rem, 3vw, 2rem);
}
.career-perks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}
.cp-card {
  background: var(--white);
  border-radius: 16px;
  padding: 28px 24px;
  border: 1px solid rgba(0,0,0,0.05);
  transition: all 0.35s ease;
}
.cp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  border-color: rgba(212,129,61,0.15);
}
.cp-card-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
  margin-bottom: 16px;
}
.cp-card h4 {
  color: var(--dark);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
}
.cp-card p {
  color: var(--text-muted);
  font-size: 13.5px;
  line-height: 1.6;
  margin: 0;
}

/* Jobs */
.career-jobs-v2 {
  background: #0d1117;
  padding: 60px 0;
}
.career-jobs-header {
  text-align: center;
  margin-bottom: 36px;
}
.career-jobs-header h2 { color: var(--white); font-size: clamp(1.5rem, 3vw, 2rem); }
.career-jobs-header p { color: rgba(255,255,255,0.5); font-size: 15px; margin-top: 8px; }

.career-jobs-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cj-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 26px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  transition: all 0.35s ease;
}
.cj-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(212,129,61,0.2);
  transform: translateX(4px);
}
.cj-card-icon {
  width: 44px; height: 44px;
  min-width: 44px;
  border-radius: 12px;
  background: rgba(212,129,61,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 18px;
}
.cj-card-info { flex: 1; }
.cj-card-info h4 {
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
}
.cj-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.cj-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.05);
  padding: 3px 10px;
  border-radius: 20px;
}
.cj-tag i { font-size: 10px; }
.cj-card-info p {
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
}
.cj-apply {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  background: linear-gradient(135deg, var(--accent), #c0702d);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.35s ease;
  flex-shrink: 0;
}
.cj-apply:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212,129,61,0.35);
}
.cj-apply i { font-size: 12px; transition: transform 0.3s ease; }
.cj-apply:hover i { transform: translateX(3px); }

/* CTA */
.career-cta-v2 {
  position: relative;
  background: var(--dark);
  padding: 60px 0;
  overflow: hidden;
}
.career-cta-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(212,129,61,0.05) 1px, transparent 1px);
  background-size: 20px 20px;
  mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 10%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 10%, transparent 70%);
}
.career-cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 36px 44px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
}
.career-cta-content h2 {
  color: var(--white);
  font-size: clamp(1.3rem, 2.5vw, 1.6rem);
  margin-bottom: 6px;
}
.career-cta-content p {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  margin: 0;
}
.career-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  background: linear-gradient(135deg, var(--accent), #c0702d);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.35s ease;
  flex-shrink: 0;
}
.career-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(212,129,61,0.4);
}

/* — Responsive — */
@media (max-width: 991px) {
  .career-perks-grid { grid-template-columns: repeat(2, 1fr); }
  .career-hero-stats { flex-wrap: wrap; gap: 16px; }
}
@media (max-width: 767px) {
  .career-hero { padding: 100px 0 40px; }
  .career-hero-title { font-size: 2rem; }
  .career-perks-v2 { padding: 40px 0; }
  .career-perks-grid { grid-template-columns: 1fr; gap: 12px; }
  .cp-card { padding: 22px 20px; }
  .career-jobs-v2 { padding: 40px 0; }
  .cj-card { flex-direction: column; align-items: stretch; padding: 20px; gap: 14px; }
  .cj-apply { justify-content: center; }
  .career-cta-v2 { padding: 40px 0; }
  .career-cta-inner { flex-direction: column; text-align: center; padding: 28px 24px; }
  .career-cta-btn { justify-content: center; width: 100%; }
}
