/* ===========================
   DIMEX 2000 COMPANY - Premium Corporate CSS
   =========================== */

/* CSS Variables */
:root {
  --primary: #0A1628;
  --primary-light: #142240;
  --gold: #C9A84C;
  --gold-light: #E8C96A;
  --gold-dark: #A8892C;
  --white: #FFFFFF;
  --gray-50: #F8F9FA;
  --gray-100: #F0F2F5;
  --gray-200: #E0E4EA;
  --gray-300: #C8CDD6;
  --gray-500: #8A90A0;
  --gray-700: #454D5F;
  --gray-900: #1A1F2E;
  --success: #27AE60;
  --font-primary: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  --shadow-sm: 0 2px 8px rgba(10, 22, 40, 0.08);
  --shadow-md: 0 8px 24px rgba(10, 22, 40, 0.12);
  --shadow-lg: 0 16px 48px rgba(10, 22, 40, 0.16);
  --shadow-xl: 0 24px 64px rgba(10, 22, 40, 0.24);
  --radius: 8px;
  --radius-lg: 16px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* Container */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
@media (max-width: 768px) { .container { padding: 0 16px; } }

/* ===========================
   NAVBAR
   =========================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: var(--transition);
  padding: 0;
}
.navbar.scrolled {
  background: var(--primary);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(20px);
}
.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 16px;
}
/* Desktop: logo | spacer | nav-menu | nav-right */
.nav-logo { flex-shrink: 0; }
.nav-menu { flex: 1; justify-content: flex-end; }
.nav-right { flex-shrink: 0; order: 3; }
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name {
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 1px;
}
.logo-sub {
  font-family: var(--font-primary);
  font-size: 10px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 3px;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
}
.nav-link:hover, .nav-link.active {
  color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
}
.nav-link .fa-chevron-down { font-size: 10px; transition: var(--transition); }
.nav-item:hover .fa-chevron-down { transform: rotate(180deg); }

/* CTA Nav Button */
.nav-cta {
  background: var(--gold) !important;
  color: var(--primary) !important;
  font-weight: 700 !important;
  border-radius: 6px;
  padding: 8px 20px !important;
}
.nav-cta:hover {
  background: var(--gold-light) !important;
  color: var(--primary) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(201,168,76,0.4);
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
  border: 1px solid var(--gray-100);
}
.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown li a {
  display: block;
  padding: 10px 16px;
  font-size: 14px;
  color: var(--gray-700);
  border-radius: var(--radius);
  transition: var(--transition);
  font-weight: 500;
}
.dropdown li a:hover {
  background: var(--gray-50);
  color: var(--primary);
  padding-left: 20px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 2px;
}

/* ===========================
   HERO SECTION
   =========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--primary);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.35;
  transition: opacity 1.5s ease;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 22, 40, 0.85) 0%,
    rgba(10, 22, 40, 0.6) 50%,
    rgba(10, 22, 40, 0.4) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  padding-top: 120px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.4);
  color: var(--gold);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 32px;
  animation: fadeInUp 0.6s ease both;
}
.hero-title {
  font-family: var(--font-primary);
  font-size: clamp(42px, 7vw, 88px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease 0.1s both;
}
.hero-title .gold { color: var(--gold); }
.hero-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255, 255, 255, 0.75);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 48px;
  font-weight: 300;
  animation: fadeInUp 0.6s ease 0.2s both;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 80px;
  animation: fadeInUp 0.6s ease 0.3s both;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 40px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  animation: fadeInUp 0.6s ease 0.4s both;
}
.hero-stat { text-align: center; }
.hero-stat-number {
  font-family: var(--font-primary);
  font-size: 48px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.hero-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  font-weight: 400;
  line-height: 1.4;
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounce 2s infinite;
  z-index: 2;
}
.hero-scroll i { font-size: 20px; }

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius);
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--primary);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}
.btn-dark {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-dark:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn-lg { padding: 20px 40px; font-size: 16px; }

/* ===========================
   SECTION BASE
   =========================== */
.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }
.section-dark { background: var(--primary); }
.section-light { background: var(--gray-50); }
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-tag::before {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background: var(--gold);
}
.section-title {
  font-family: var(--font-primary);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--primary);
}
.section-title.white { color: var(--white); }
.section-desc {
  font-size: 17px;
  color: var(--gray-500);
  line-height: 1.7;
  max-width: 600px;
}
.section-desc.white { color: rgba(255,255,255,0.65); }
.section-header { margin-bottom: 60px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-desc { margin: 0 auto; }

/* ===========================
   FEATURES / HIGHLIGHTS
   =========================== */
.highlights { background: var(--gray-50); }
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.highlight-card {
  background: var(--white);
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.highlight-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: var(--gold);
  transform: scaleY(0);
  transition: var(--transition);
  transform-origin: bottom;
}
.highlight-card:hover::before { transform: scaleY(1); }
.highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.highlight-icon {
  width: 64px;
  height: 64px;
  background: rgba(201, 168, 76, 0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 28px;
  color: var(--gold);
}
.highlight-title {
  font-family: var(--font-primary);
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}
.highlight-text { font-size: 15px; color: var(--gray-500); line-height: 1.7; }

/* ===========================
   SERVICES SECTION
   =========================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  group: true;
}
.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover img { transform: scale(1.08); }
.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.95) 0%, rgba(10,22,40,0.3) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  transition: var(--transition);
}
.service-icon {
  width: 52px;
  height: 52px;
  background: var(--gold);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--primary);
  margin-bottom: 16px;
}
.service-name {
  font-family: var(--font-primary);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.service-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
}
.service-card:hover .service-desc {
  opacity: 1;
  transform: translateY(0);
}
.service-arrow {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  opacity: 0;
  transform: translateX(-10px);
  transition: var(--transition);
}
.service-card:hover .service-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ===========================
   PORTFOLIO SECTION
   =========================== */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.portfolio-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}
.portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}
.portfolio-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.portfolio-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.portfolio-card:hover .portfolio-img img { transform: scale(1.05); }
.portfolio-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.portfolio-body { padding: 32px; }
.portfolio-title {
  font-family: var(--font-primary);
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
  line-height: 1.3;
}
.portfolio-desc { font-size: 14px; color: var(--gray-500); line-height: 1.7; margin-bottom: 20px; }
.portfolio-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.portfolio-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--gray-700);
}
.portfolio-meta-item i { color: var(--gold); font-size: 14px; }

/* ===========================
   STATS SECTION
   =========================== */
.stats-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  position: relative;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-primary);
  font-size: 64px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 12px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}
.stat-suffix { font-size: 36px; }
.stat-label {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  font-weight: 400;
  line-height: 1.4;
}
.stat-divider {
  width: 1px;
  background: rgba(255,255,255,0.1);
  align-self: stretch;
}

/* ===========================
   ABOUT / SPLIT SECTION
   =========================== */
.split-section { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.split-section.reverse { direction: rtl; }
.split-section.reverse > * { direction: ltr; }
.split-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.split-img-wrap img { width: 100%; height: 500px; object-fit: cover; }
.split-img-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--gold);
  color: var(--primary);
  padding: 16px 24px;
  border-radius: var(--radius);
  text-align: center;
  font-weight: 700;
}
.split-img-badge .badge-num {
  font-family: var(--font-primary);
  font-size: 32px;
  font-weight: 900;
  display: block;
}
.split-img-badge .badge-text { font-size: 12px; }
.split-content {}
.split-list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.split-list-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--gray-50);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
}
.split-list-item i {
  font-size: 20px;
  color: var(--gold);
  margin-top: 2px;
  flex-shrink: 0;
}
.split-list-item-content h4 {
  font-family: var(--font-primary);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
  font-size: 15px;
}
.split-list-item-content p { font-size: 14px; color: var(--gray-500); }

/* ===========================
   TESTIMONIALS
   =========================== */
.testimonials { background: var(--gray-50); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.testimonial-card {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
  position: relative;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.testimonial-quote {
  font-size: 60px;
  color: var(--gold);
  line-height: 0.5;
  margin-bottom: 24px;
  font-family: Georgia, serif;
}
.testimonial-text {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 28px;
}
.testimonial-stars {
  color: var(--gold);
  font-size: 14px;
  margin-bottom: 20px;
  letter-spacing: 2px;
}
.testimonial-author { display: flex; align-items: center; gap: 16px; }
.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 18px;
  color: var(--white);
  flex-shrink: 0;
}
.testimonial-name { font-weight: 700; color: var(--primary); font-size: 15px; }
.testimonial-role { font-size: 13px; color: var(--gray-500); }

/* ===========================
   CERTIFICATIONS
   =========================== */
.certs-section { background: var(--primary); }
.certs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.cert-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 48px 32px;
  text-align: center;
  transition: var(--transition);
}
.cert-card:hover {
  background: rgba(201,168,76,0.1);
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-4px);
}
.cert-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: rgba(201,168,76,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: var(--gold);
}
.cert-name {
  font-family: var(--font-primary);
  font-size: 22px;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 8px;
}
.cert-org { font-size: 14px; color: rgba(255,255,255,0.6); margin-bottom: 16px; }
.cert-desc { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.7; }

/* ===========================
   CTA BANNER
   =========================== */
.cta-banner {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
  padding: 80px 0;
}
.cta-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cta-text h2 {
  font-family: var(--font-primary);
  font-size: 40px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 12px;
}
.cta-text p { font-size: 17px; color: rgba(10,22,40,0.75); }
.cta-actions { display: flex; gap: 16px; flex-shrink: 0; }

/* ===========================
   PAGE HERO (Inner Pages)
   =========================== */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
  border-radius: 50%;
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.page-hero-tag::before {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background: var(--gold);
}
.page-hero h1 {
  font-family: var(--font-primary);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.1;
}
.page-hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  line-height: 1.7;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.breadcrumb a { color: rgba(255,255,255,0.7); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb i { font-size: 10px; }

/* ===========================
   VALUES GRID
   =========================== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.value-card {
  padding: 40px 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
  text-align: center;
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.value-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--gold);
  margin: 0 auto 24px;
}
.value-name {
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}
.value-desc { font-size: 14px; color: var(--gray-500); line-height: 1.7; }

/* ===========================
   CONTACT PAGE
   =========================== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}
.contact-info-list { display: flex; flex-direction: column; gap: 24px; }
.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}
.contact-info-card:hover { box-shadow: var(--shadow-md); border-color: var(--gold); }
.contact-info-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-info-content h4 { font-weight: 700; color: var(--primary); margin-bottom: 4px; }
.contact-info-content p, .contact-info-content a { font-size: 15px; color: var(--gray-500); transition: color 0.2s; }
.contact-info-content a:hover { color: var(--gold); }

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-group label { font-size: 14px; font-weight: 600; color: var(--primary); }
.form-group input, .form-group textarea, .form-group select {
  padding: 14px 18px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 15px;
  font-family: var(--font-body);
  color: var(--gray-900);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-submit { width: 100%; }

/* ===========================
   CAREERS PAGE
   =========================== */
.why-join-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.why-card {
  padding: 36px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.why-card:hover {
  background: rgba(201,168,76,0.1);
  border-color: rgba(201,168,76,0.3);
}
.why-icon {
  width: 56px;
  height: 56px;
  background: rgba(201,168,76,0.15);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--gold);
  margin-bottom: 20px;
}
.why-title { font-family: var(--font-primary); font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.why-text { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.7; }

.jobs-list { display: flex; flex-direction: column; gap: 20px; }
.job-card {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
  cursor: pointer;
}
.job-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
  transform: translateX(4px);
}
.job-icon {
  width: 64px;
  height: 64px;
  background: rgba(201,168,76,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--gold);
  flex-shrink: 0;
}
.job-content { flex: 1; }
.job-title { font-family: var(--font-primary); font-size: 18px; font-weight: 700; color: var(--primary); margin-bottom: 6px; }
.job-details {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.job-detail {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--gray-500);
}
.job-detail i { color: var(--gold); }
.job-badge {
  background: rgba(201,168,76,0.1);
  color: var(--gold-dark);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

/* ===========================
   LINER UV PAGE
   =========================== */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  left: 39px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), rgba(201,168,76,0.1));
}
.process-step {
  display: flex;
  gap: 32px;
  padding: 40px 0;
  align-items: flex-start;
}
.step-num {
  width: 80px;
  height: 80px;
  background: var(--primary);
  border: 3px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-primary);
  font-size: 24px;
  font-weight: 800;
  color: var(--gold);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.step-content { padding-top: 16px; }
.step-title {
  font-family: var(--font-primary);
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}
.step-desc { font-size: 15px; color: var(--gray-500); line-height: 1.7; }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
}
.benefit-icon { font-size: 24px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.benefit-title { font-weight: 700; color: var(--white); margin-bottom: 6px; font-size: 15px; }
.benefit-text { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.6; }

/* ===========================
   FOOTER
   =========================== */
.footer { background: var(--gray-900); }
.footer-top { padding: 80px 0 60px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.footer-logo-name {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 800;
  color: var(--white);
}
.footer-logo-sub {
  font-size: 9px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 3px;
}
.footer-desc { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 24px; }
.footer-certs { display: flex; gap: 8px; flex-wrap: wrap; }
.cert-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
}
.footer-links h4, .footer-services h4, .footer-contact h4 {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.footer-links ul, .footer-services ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links ul a, .footer-services ul a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}
.footer-links ul a:hover, .footer-services ul a:hover {
  color: var(--gold);
  padding-left: 4px;
}
.footer-links ul a i, .footer-services ul a i { font-size: 10px; }
.footer-contact { display: flex; flex-direction: column; gap: 16px; }
.footer-contact h4 { margin-bottom: 8px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}
.contact-item i { color: var(--gold); font-size: 16px; margin-top: 2px; flex-shrink: 0; }
.contact-item a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.contact-item a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
  display: flex;
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.3); }

/* ===========================
   ANIMATIONS
   =========================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 20%, 53%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40%, 43% { transform: translateX(-50%) translateY(-8px); }
  70% { transform: translateX(-50%) translateY(-4px); }
}
@keyframes countUp {
  from { opacity: 0; }
  to { opacity: 1; }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .highlights-grid,
  .services-grid,
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .split-section { grid-template-columns: 1fr; gap: 48px; }
  .contact-layout { grid-template-columns: 1fr; }
  .cta-banner .container { flex-direction: column; text-align: center; }
}
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-menu {
    position: fixed;
    top: 0; right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--primary);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 100px 24px 40px;
    transition: right 0.3s ease;
    overflow-y: auto;
  }
  .nav-menu.open { right: 0; }
  .nav-item { width: 100%; }
  .nav-link { width: 100%; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .dropdown {
    position: static;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    border: none;
    padding-left: 16px;
  }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .certs-grid { grid-template-columns: 1fr; }
  .why-join-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-card { padding: 32px 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .highlights-grid,
  .services-grid,
  .values-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

/* Map placeholder */
.map-placeholder {
  height: 400px;
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed var(--gray-200);
  overflow: hidden;
  position: relative;
}
.map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ===========================
   LANGUAGE SWITCHER
   =========================== */
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 24px;
  padding: 4px 12px;
  backdrop-filter: blur(8px);
}
.lang-btn {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  padding: 2px 6px;
  border-radius: 12px;
  transition: var(--transition);
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.lang-btn:hover { color: var(--white); background: rgba(255,255,255,0.1); }
.lang-btn.active { color: var(--gold); font-weight: 700; }
.lang-divider { color: rgba(255,255,255,0.2); font-size: 11px; }
.lang-flag { font-size: 14px; }

/* Hide mobile lang in desktop */
.nav-lang-mobile { display: none !important; }

@media (max-width: 768px) {
  .nav-right { gap: 12px; }
  .lang-switcher { display: none; }
  .nav-lang-mobile {
    display: flex !important;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .nav-lang-mobile .nav-link {
    border-bottom: none !important;
    padding: 0 !important;
    width: auto !important;
    font-size: 13px;
    color: rgba(255,255,255,0.7);
  }
  .nav-lang-mobile .nav-link.active { color: var(--gold); font-weight: 700; }
}

/* ===========================
   GDPR COOKIE BANNER
   =========================== */
.gdpr-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9000;
  background: var(--primary);
  border-top: 2px solid var(--gold);
  box-shadow: 0 -8px 40px rgba(0,0,0,0.4);
  padding: 20px 24px;
  animation: slideUpBanner 0.4s cubic-bezier(0.4,0,0.2,1);
}
@keyframes slideUpBanner {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
.gdpr-banner-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.gdpr-banner-icon {
  font-size: 28px;
  color: var(--gold);
  flex-shrink: 0;
}
.gdpr-banner-content { flex: 1; min-width: 220px; }
.gdpr-banner-title {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.gdpr-banner-text {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin-bottom: 8px;
}
.gdpr-banner-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.gdpr-link {
  font-size: 12px;
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: opacity 0.2s;
}
.gdpr-link:hover { opacity: 0.8; }
.gdpr-sep { color: rgba(255,255,255,0.3); font-size: 12px; }
.gdpr-banner-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.gdpr-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-primary);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  letter-spacing: 0.3px;
}
.gdpr-btn-primary { background: var(--gold); color: var(--primary); }
.gdpr-btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.gdpr-btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
}
.gdpr-btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.gdpr-btn-secondary {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.1);
}
.gdpr-btn-secondary:hover { background: rgba(255,255,255,0.15); color: var(--white); }
.gdpr-btn-full { width: 100%; justify-content: center; }

@media (max-width: 768px) {
  .gdpr-banner-inner { flex-direction: column; align-items: stretch; }
  .gdpr-banner-icon { display: none; }
  .gdpr-banner-actions { flex-direction: column; }
  .gdpr-btn { width: 100%; justify-content: center; }
}

/* ===========================
   GDPR PREFERENCES MODAL
   =========================== */
.gdpr-modal {
  position: fixed;
  inset: 0;
  z-index: 9100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.gdpr-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10,22,40,0.75);
  backdrop-filter: blur(4px);
  cursor: pointer;
}
.gdpr-modal-box {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  width: 100%;
  max-width: 540px;
  overflow: hidden;
  animation: popIn 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes popIn {
  from { transform: scale(0.85); opacity: 0; }
  to   { transform: scale(1);    opacity: 1; }
}
.gdpr-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px 20px;
  border-bottom: 1px solid var(--gray-100);
  background: var(--primary);
}
.gdpr-modal-header h3 {
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}
.gdpr-modal-close {
  background: rgba(255,255,255,0.1);
  border: none;
  color: var(--white);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 14px;
}
.gdpr-modal-close:hover { background: rgba(255,255,255,0.2); }
.gdpr-modal-body { padding: 24px 28px; display: flex; flex-direction: column; gap: 0; }
.gdpr-category {
  padding: 20px 0;
  border-bottom: 1px solid var(--gray-100);
}
.gdpr-category:last-child { border-bottom: none; }
.gdpr-category-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}
.gdpr-category-name {
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}
.gdpr-category-desc { font-size: 13px; color: var(--gray-500); line-height: 1.6; }
.gdpr-always-on {
  font-size: 11px;
  font-weight: 700;
  color: var(--success);
  background: rgba(39,174,96,0.1);
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}
/* Toggle switch */
.gdpr-toggle { position: relative; display: inline-block; width: 48px; height: 26px; flex-shrink: 0; }
.gdpr-toggle input { opacity: 0; width: 0; height: 0; }
.gdpr-toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--gray-300);
  border-radius: 13px;
  cursor: pointer;
  transition: 0.3s;
}
.gdpr-toggle-slider::before {
  content: '';
  position: absolute;
  width: 20px; height: 20px;
  left: 3px; bottom: 3px;
  background: var(--white);
  border-radius: 50%;
  transition: 0.3s;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.gdpr-toggle input:checked + .gdpr-toggle-slider { background: var(--gold); }
.gdpr-toggle input:checked + .gdpr-toggle-slider::before { transform: translateX(22px); }
.gdpr-toggle-wrap { flex-shrink: 0; margin-top: 2px; }
.gdpr-modal-footer { padding: 20px 28px; border-top: 1px solid var(--gray-100); }

/* ===========================
   GDPR REOPEN BUTTON
   =========================== */
.gdpr-reopen {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 8900;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  border: 2px solid var(--gold);
  color: var(--gold);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  display: none; /* shown by JS after consent */
}
.gdpr-reopen:hover { background: var(--gold); color: var(--primary); transform: scale(1.1); }
.gdpr-reopen.visible { display: flex; }

/* ===========================
   FOOTER LEGAL / COOKIE BTN
   =========================== */
.footer-legal-link {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s;
  font-family: inherit;
}
.footer-legal-link:hover { color: var(--gold); }
.footer-cookie-settings { font-size: 13px; }

/* ===========================
   LEGAL / PRIVACY PAGES
   =========================== */
.legal-content {
  max-width: 860px;
  margin: 0 auto;
}
.legal-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  padding: 20px 24px;
  background: var(--gray-50);
  border-radius: var(--radius);
  border-left: 4px solid var(--gold);
  font-size: 14px;
  color: var(--gray-700);
}
.legal-meta span { display: flex; align-items: center; gap: 8px; }
.legal-meta i { color: var(--gold); }
.legal-content h2 {
  font-family: var(--font-primary);
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  margin: 36px 0 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gray-100);
}
.legal-content h3 {
  font-family: var(--font-primary);
  font-size: 17px;
  font-weight: 700;
  color: var(--primary);
  margin: 24px 0 8px;
}
.legal-content p {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 16px;
}
.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}
.legal-content ul li {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 6px;
}
.legal-content a { color: var(--gold); text-decoration: underline; }
.legal-content a:hover { opacity: 0.8; }
.legal-highlight {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  padding: 24px 28px;
  border-radius: var(--radius-lg);
  margin: 32px 0;
  font-size: 15px;
  line-height: 1.7;
}
.legal-highlight strong { color: var(--gold); }
.legal-contact-box {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin: 32px 0;
}
.legal-contact-box h3 { margin-top: 0 !important; }
.legal-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 15px;
  color: var(--gray-700);
}
.legal-contact-item i { color: var(--gold); width: 20px; }
.legal-contact-item a { color: var(--primary); font-weight: 600; }

/* Cookie table */
.cookie-table-wrap { margin: 16px 0 24px; overflow-x: auto; }
.cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.cookie-table th {
  background: var(--primary);
  color: var(--white);
  padding: 12px 16px;
  text-align: left;
  font-family: var(--font-primary);
  font-weight: 600;
}
.cookie-table td {
  padding: 10px 16px;
  border-bottom: 1px solid var(--gray-100);
  color: var(--gray-700);
  line-height: 1.5;
}
.cookie-table tr:nth-child(even) td { background: var(--gray-50); }
.cookie-manage-box {
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  padding: 24px 28px;
  border-radius: var(--radius-lg);
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.cookie-manage-box i { font-size: 28px; color: var(--gold); flex-shrink: 0; }
.cookie-manage-box div { flex: 1; min-width: 180px; }
.cookie-manage-box strong { display: block; font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.cookie-manage-box p { font-size: 13px; color: rgba(255,255,255,0.7); margin: 0; }
.cookie-manage-box .btn { flex-shrink: 0; }

/* ===========================
   GDPR BANNER
   =========================== */
.gdpr-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--primary);
  border-top: 3px solid var(--gold);
  box-shadow: 0 -8px 40px rgba(0,0,0,0.35);
  transform: translateY(100%);
  transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
}
.gdpr-banner.visible { transform: translateY(0); }
.gdpr-banner-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.gdpr-banner-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: rgba(201,168,76,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--gold);
}
.gdpr-banner-content { flex: 1; min-width: 220px; }
.gdpr-banner-title {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.gdpr-banner-text { font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.6; }
.gdpr-banner-links { margin-top: 8px; display: flex; gap: 8px; align-items: center; }
.gdpr-link { font-size: 12px; color: var(--gold); text-decoration: underline; }
.gdpr-link:hover { opacity: 0.8; }
.gdpr-sep { color: rgba(255,255,255,0.3); font-size: 12px; }
.gdpr-banner-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  flex-shrink: 0;
}
.gdpr-btn {
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  font-family: var(--font-primary);
  transition: var(--transition);
  white-space: nowrap;
}
.gdpr-btn-primary { background: var(--gold); color: var(--primary); }
.gdpr-btn-primary:hover { background: var(--gold-light); }
.gdpr-btn-outline { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.3); }
.gdpr-btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.gdpr-btn-secondary { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.75); }
.gdpr-btn-secondary:hover { background: rgba(255,255,255,0.14); }
.gdpr-btn-full { width: 100%; padding: 14px; font-size: 15px; }

/* GDPR Modal */
.gdpr-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.gdpr-modal.visible { opacity: 1; }
.gdpr-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
}
.gdpr-modal-box {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  width: 90%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
  transform: scale(0.95);
  transition: transform 0.3s;
}
.gdpr-modal.visible .gdpr-modal-box { transform: scale(1); }
.gdpr-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px 20px;
  border-bottom: 1px solid var(--gray-100);
}
.gdpr-modal-header h3 {
  font-family: var(--font-primary);
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
}
.gdpr-modal-close {
  width: 36px; height: 36px;
  border: none;
  background: var(--gray-100);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-700);
  font-size: 16px;
  transition: var(--transition);
}
.gdpr-modal-close:hover { background: var(--gray-200); color: var(--primary); }
.gdpr-modal-body { padding: 20px 28px; }
.gdpr-category {
  padding: 18px 0;
  border-bottom: 1px solid var(--gray-100);
}
.gdpr-category:last-child { border-bottom: none; }
.gdpr-category-header { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.gdpr-category-name { font-weight: 700; font-size: 15px; color: var(--primary); margin-bottom: 4px; }
.gdpr-category-desc { font-size: 13px; color: var(--gray-500); line-height: 1.5; }
.gdpr-always-on { font-size: 12px; font-weight: 600; color: var(--success); white-space: nowrap; }
.gdpr-toggle { position: relative; display: inline-block; width: 44px; height: 24px; flex-shrink: 0; }
.gdpr-toggle input { opacity: 0; width: 0; height: 0; }
.gdpr-toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--gray-200);
  border-radius: 24px;
  cursor: pointer;
  transition: 0.3s;
}
.gdpr-toggle-slider::before {
  content: '';
  position: absolute;
  width: 18px; height: 18px;
  left: 3px; bottom: 3px;
  background: var(--white);
  border-radius: 50%;
  transition: 0.3s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.gdpr-toggle input:checked + .gdpr-toggle-slider { background: var(--gold); }
.gdpr-toggle input:checked + .gdpr-toggle-slider::before { transform: translateX(20px); }
.gdpr-toggle-wrap { display: flex; align-items: center; }
.gdpr-modal-footer { padding: 16px 28px 24px; }

/* GDPR Reopen button */
.gdpr-reopen {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 9000;
  width: 46px; height: 46px;
  background: var(--primary);
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-size: 18px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}
.gdpr-reopen:hover { background: var(--gold); color: var(--primary); transform: scale(1.1); }

/* ===========================
   LANGUAGE SWITCHER
   =========================== */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-right: 8px;
}
.lang-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
  letter-spacing: 0.5px;
  text-decoration: none;
}
.lang-btn:hover, .lang-btn.active {
  color: var(--gold);
  background: rgba(201,168,76,0.12);
}
.lang-divider { color: rgba(255,255,255,0.2); font-size: 14px; }
.lang-flag { font-size: 14px; }

/* Mobile lang switcher */
.nav-lang-mobile { display: none; }
.nav-lang-mobile { display: none !important; }
@media (max-width: 1024px) {
  .lang-switcher { display: none; }
  .nav-lang-mobile {
    display: flex !important;
    gap: 12px;
    padding: 12px 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .nav-lang-mobile a { font-size: 14px; padding: 8px 12px; background: rgba(255,255,255,0.06); border-radius: 6px; }
  .nav-lang-mobile a.active { color: var(--gold); background: rgba(201,168,76,0.12); }
}

/* ===========================
   VALUES GRID (Misiune)
   =========================== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .values-grid { grid-template-columns: 1fr; } }
.value-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.value-icon {
  width: 64px; height: 64px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(201,168,76,0.12), rgba(201,168,76,0.06));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--gold);
}
.value-name { font-family: var(--font-primary); font-size: 18px; font-weight: 800; color: var(--primary); margin-bottom: 12px; }
.value-desc { font-size: 14px; color: var(--gray-500); line-height: 1.7; }

/* ===========================
   WHY JOIN GRID (Cariere)
   =========================== */
.why-join-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .why-join-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .why-join-grid { grid-template-columns: 1fr; } }
.why-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
}
.why-card:hover { background: rgba(201,168,76,0.08); border-color: rgba(201,168,76,0.25); transform: translateY(-4px); }
.why-icon {
  width: 64px; height: 64px;
  margin: 0 auto 20px;
  background: rgba(201,168,76,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--gold);
}
.why-title { font-family: var(--font-primary); font-size: 17px; font-weight: 800; color: var(--white); margin-bottom: 12px; }
.why-text { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.7; }

/* ===========================
   JOBS LIST (Cariere)
   =========================== */
.jobs-list { display: flex; flex-direction: column; gap: 16px; }
.job-card {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.job-card:hover { border-color: var(--gold); box-shadow: var(--shadow-md); transform: translateX(4px); }
.job-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--gold);
  flex-shrink: 0;
}
.job-content { flex: 1; }
.job-title { font-family: var(--font-primary); font-size: 17px; font-weight: 800; color: var(--primary); margin-bottom: 10px; }
.job-details { display: flex; gap: 16px; flex-wrap: wrap; }
.job-detail { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--gray-500); }
.job-detail i { color: var(--gold); font-size: 12px; }
.job-badge {
  padding: 6px 16px;
  background: rgba(39,174,96,0.1);
  color: var(--success);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

/* ===========================
   BENEFITS GRID (Liner UV)
   =========================== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 768px) { .benefits-grid { grid-template-columns: 1fr; } }
.benefit-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}
.benefit-item:hover { background: rgba(201,168,76,0.08); border-color: rgba(201,168,76,0.2); }
.benefit-icon {
  width: 52px; height: 52px;
  background: rgba(201,168,76,0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--gold);
  flex-shrink: 0;
}
.benefit-title { font-family: var(--font-primary); font-size: 15px; font-weight: 800; color: var(--white); margin-bottom: 8px; }
.benefit-text { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.7; }

/* ===========================
   PROCESS STEPS (Liner UV)
   =========================== */
.process-steps { display: flex; flex-direction: column; gap: 0; }
.process-step {
  display: flex;
  gap: 32px;
  padding: 36px 0;
  border-bottom: 1px solid var(--gray-100);
  align-items: flex-start;
}
.process-step:last-child { border-bottom: none; }
.step-num {
  font-family: var(--font-primary);
  font-size: 48px;
  font-weight: 900;
  color: var(--gold);
  opacity: 0.2;
  line-height: 1;
  flex-shrink: 0;
  width: 72px;
  transition: opacity 0.3s;
}
.process-step:hover .step-num { opacity: 0.7; }
.step-title { font-family: var(--font-primary); font-size: 20px; font-weight: 800; color: var(--primary); margin-bottom: 10px; }
.step-desc { font-size: 15px; color: var(--gray-500); line-height: 1.75; }

/* ===========================
   RESPONSIVE FIXES
   =========================== */
@media (max-width: 768px) {
  .gdpr-banner-inner { flex-direction: column; align-items: flex-start; padding: 20px 16px; }
  .gdpr-banner-actions { width: 100%; flex-direction: column; }
  .gdpr-btn { width: 100%; text-align: center; }
  .cta-banner .container { flex-direction: column; align-items: flex-start; }
  .cta-actions { width: 100%; flex-direction: column; }
  .job-card { flex-direction: column; align-items: flex-start; }
  .process-step { gap: 16px; }
  .step-num { font-size: 36px; width: 50px; }
}


/* ============================================================
   CHATBOT WIDGET
   ============================================================ */

/* --- Bubble trigger --- */
.chatbot-widget {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.chatbot-bubble {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0A1628 0%, #142240 100%);
  border: 2px solid #C9A84C;
  box-shadow: 0 4px 20px rgba(10,22,40,0.4), 0 0 0 0 rgba(201,168,76,0.4);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s;
  position: relative;
  animation: chatbot-pulse 2.5s infinite;
}

@keyframes chatbot-pulse {
  0%   { box-shadow: 0 4px 20px rgba(10,22,40,0.4), 0 0 0 0 rgba(201,168,76,0.4); }
  70%  { box-shadow: 0 4px 20px rgba(10,22,40,0.4), 0 0 0 12px rgba(201,168,76,0); }
  100% { box-shadow: 0 4px 20px rgba(10,22,40,0.4), 0 0 0 0 rgba(201,168,76,0); }
}

.chatbot-bubble:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(10,22,40,0.5);
  animation: none;
}

.chatbot-bubble-active {
  animation: none;
  border-color: #E8C96A;
}

.chatbot-bubble-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.chatbot-bubble-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 20px;
  height: 20px;
  background: #E74C3C;
  border-radius: 50%;
  border: 2px solid white;
  color: white;
  font-size: 10px;
  font-weight: 800;
  display: none;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
}

/* --- Chat window --- */
.chatbot-window {
  width: 360px;
  height: 520px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(10,22,40,0.25), 0 4px 16px rgba(10,22,40,0.1);
  display: none;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(16px) scale(0.95);
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.34,1.2,0.64,1), opacity 0.3s ease;
  border: 1px solid rgba(10,22,40,0.08);
}

.chatbot-window.chatbot-open {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* --- Header --- */
.chatbot-header {
  background: linear-gradient(135deg, #0A1628 0%, #142240 100%);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}

.chatbot-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.chatbot-avatar {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.chatbot-header-info { line-height: 1.3; }

.chatbot-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 13px;
  color: white;
  letter-spacing: 0.3px;
}

.chatbot-status {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  gap: 5px;
}

.chatbot-status-dot {
  width: 7px;
  height: 7px;
  background: #27AE60;
  border-radius: 50%;
  display: inline-block;
  animation: status-blink 2s infinite;
}

@keyframes status-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.chatbot-close-btn {
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.08);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  flex-shrink: 0;
}

.chatbot-close-btn:hover { background: rgba(255,255,255,0.18); }

/* --- Messages --- */
.chatbot-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #F8F9FB;
  scroll-behavior: smooth;
}

.chatbot-messages::-webkit-scrollbar { width: 4px; }
.chatbot-messages::-webkit-scrollbar-track { background: transparent; }
.chatbot-messages::-webkit-scrollbar-thumb { background: #C8CDD6; border-radius: 2px; }

.chatbot-msg {
  display: flex;
  flex-direction: column;
  max-width: 85%;
  animation: chatbot-msg-in 0.25s ease forwards;
}

@keyframes chatbot-msg-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.chatbot-msg-user {
  align-self: flex-end;
  align-items: flex-end;
}

.chatbot-msg-bot {
  align-self: flex-start;
  align-items: flex-start;
}

.chatbot-msg-bubble {
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 13.5px;
  line-height: 1.55;
  word-break: break-word;
}

.chatbot-msg-user .chatbot-msg-bubble {
  background: linear-gradient(135deg, #0A1628, #142240);
  color: white;
  border-bottom-right-radius: 4px;
}

.chatbot-msg-bot .chatbot-msg-bubble {
  background: white;
  color: #1A1F2E;
  border: 1px solid #E8EAF0;
  border-bottom-left-radius: 4px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

.chatbot-msg-time {
  font-size: 10px;
  color: #A0A8B8;
  margin-top: 3px;
  padding: 0 2px;
}

/* --- Typing indicator --- */
.chatbot-typing {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 12px 16px !important;
  min-width: 56px;
}

.chatbot-typing span {
  width: 7px;
  height: 7px;
  background: #C9A84C;
  border-radius: 50%;
  animation: typing-bounce 1.2s infinite;
}

.chatbot-typing span:nth-child(2) { animation-delay: 0.2s; }
.chatbot-typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing-bounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.5; }
  30% { transform: translateY(-6px); opacity: 1; }
}

/* --- Quick replies --- */
.chatbot-quick {
  padding: 8px 14px 4px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  background: #F8F9FB;
  border-top: 1px solid #ECEEF2;
  flex-shrink: 0;
}

.chatbot-quick-btn {
  background: white;
  border: 1px solid #D4D8E2;
  border-radius: 20px;
  padding: 6px 12px;
  font-size: 12px;
  color: #454D5F;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  white-space: nowrap;
}

.chatbot-quick-btn:hover {
  background: #0A1628;
  border-color: #0A1628;
  color: #C9A84C;
  transform: translateY(-1px);
}

/* --- Input area --- */
.chatbot-input-area {
  padding: 10px 14px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  background: white;
  border-top: 1px solid #ECEEF2;
  flex-shrink: 0;
}

.chatbot-input {
  flex: 1;
  border: 1px solid #D4D8E2;
  border-radius: 12px;
  padding: 10px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  color: #1A1F2E;
  resize: none;
  outline: none;
  transition: border-color 0.2s;
  background: #F8F9FB;
  max-height: 120px;
  line-height: 1.45;
  overflow-y: auto;
}

.chatbot-input:focus {
  border-color: #C9A84C;
  background: white;
}

.chatbot-input::placeholder { color: #A0A8B8; }

.chatbot-send-btn {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, #0A1628, #142240);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s, background 0.2s;
}

.chatbot-send-btn:hover {
  background: linear-gradient(135deg, #142240, #1a2d50);
  transform: scale(1.06);
}

.chatbot-send-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* --- Footer note --- */
.chatbot-footer-note {
  background: white;
  text-align: center;
  font-size: 10.5px;
  color: #A0A8B8;
  padding: 5px 14px 8px;
  border-top: 1px solid #ECEEF2;
  flex-shrink: 0;
}

.chatbot-footer-note a {
  color: #C9A84C;
  text-decoration: none;
}

.chatbot-footer-note a:hover { text-decoration: underline; }

/* --- Mobile adjustments --- */
@media (max-width: 480px) {
  .chatbot-widget {
    bottom: 16px;
    right: 16px;
  }
  .chatbot-window {
    width: calc(100vw - 32px);
    height: 480px;
    border-radius: 16px;
  }
  .chatbot-bubble {
    width: 54px;
    height: 54px;
  }
}

/* Push GDPR reopen button up when chatbot is present */
.gdpr-reopen {
  bottom: 100px !important;
}
