/* ============================================================
   ADAM GROUP INTERNATIONAL — Design System CSS
   ============================================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

/* ============================================================
   1. CSS Variables / Design Tokens
   ============================================================ */
:root {
  /* Brand Colors */
  --navy: #1A2B5E;
  --navy-dark: #0F1A3A;
  --navy-light: #253474;
  --gold: #B8963E;
  --gold-light: #D4AF7A;
  --gold-dark: #9A7A2E;
  --gold-pale: #F5EDDC;

  /* Neutral Colors */
  --white: #FFFFFF;
  --gray-50: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E1;
  --gray-400: #94A3B8;
  --gray-500: #64748B;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1E293B;
  --gray-900: #0F172A;

  /* Semantic Colors */
  --text-primary: #1E293B;
  --text-secondary: #64748B;
  --text-muted: #94A3B8;
  --bg-primary: #FFFFFF;
  --bg-secondary: #F8FAFC;
  --bg-tertiary: #F1F5F9;
  --border: #E2E8F0;
  --border-light: #F1F5F9;

  /* Typography */
  --font-heading: 'Manrope', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Font Sizes */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Border Radius */
  --radius-sm: 4px;
  --radius: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -1px rgba(0,0,0,0.04);
  --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -2px rgba(0,0,0,0.04);
  --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.08), 0 10px 10px -5px rgba(0,0,0,0.04);
  --shadow-xl: 0 25px 50px -12px rgba(0,0,0,0.15);
  --shadow-navy: 0 4px 20px rgba(26,43,94,0.15);
  --shadow-gold: 0 4px 20px rgba(184,150,62,0.25);

  /* Transitions */
  --transition: all 0.3s ease;
  --transition-fast: all 0.15s ease;
  --transition-slow: all 0.5s ease;

  /* Z-Index */
  --z-header: 1000;
  --z-dropdown: 1001;
  --z-modal: 1100;
  --z-toast: 1200;

  /* Container */
  --container-max: 1280px;
  --container-pad: 1.5rem;
}

/* ============================================================
   2. Reset & Base
   ============================================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--bg-primary);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.25;
  font-weight: 700;
  color: var(--text-primary);
}

/* ============================================================
   3. Utilities
   ============================================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.section {
  padding: var(--space-20) 0;
}

.section-sm {
  padding: var(--space-12) 0;
}

.section-lg {
  padding: var(--space-32) 0;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--gold-pale);
  color: var(--gold-dark);
  font-size: var(--text-sm);
  font-weight: 600;
  font-family: var(--font-heading);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  border: 1px solid rgba(184,150,62,0.2);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: var(--space-4);
}

.section-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.section-title {
  font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
  font-weight: 800;
  color: var(--navy);
  margin-bottom: var(--space-4);
  letter-spacing: -0.02em;
}

.section-title .accent {
  color: var(--gold);
}

.section-subtitle {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  max-width: 640px;
  line-height: 1.7;
}

.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* ============================================================
   4. Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.875rem 1.75rem;
  font-size: var(--text-base);
  font-weight: 600;
  font-family: var(--font-heading);
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(184,150,62,0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.btn-secondary:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-navy);
}

.btn-navy:hover {
  background: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(26,43,94,0.3);
}

.btn-sm {
  padding: 0.625rem 1.25rem;
  font-size: var(--text-sm);
}

.btn-lg {
  padding: 1.125rem 2.25rem;
  font-size: var(--text-lg);
}

/* Arrow icon in button */
.btn-arrow::after {
  content: '→';
  transition: transform 0.2s ease;
}
.btn-arrow:hover::after {
  transform: translateX(4px);
}

/* ============================================================
   5. Header / Navigation
   ============================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-header);
  transition: var(--transition);
  padding: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  height: 80px;
  padding: 0 var(--container-pad);
  max-width: var(--container-max);
  margin: 0 auto;
}

.header.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}



.logo {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-shrink: 0;
}

.logo-emblem {
  height: 44px;
  width: auto;
  object-fit: contain;
  transition: var(--transition);
}

.logo:hover .logo-emblem {
  transform: scale(1.05);
}



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

.logo-name {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.logo-sub {
  font-size: var(--text-xs);
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 480px) {
  .logo-name { font-size: 1.125rem; }
  .logo-sub { font-size: 10px; }
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-left: max(1rem, 2vw);
}

.header-right {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-left: 2rem;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: var(--space-2) var(--space-3);
  font-size: var(--text-sm);
  font-weight: 600;
  font-family: var(--font-heading);
  color: var(--text-primary);
  border-radius: var(--radius);
  transition: var(--transition-fast);
  white-space: nowrap;
}



.nav-link:hover {
  color: var(--gold);
  background: rgba(184,150,62,0.08);
}

.nav-link.active {
  color: var(--gold);
}

/* Header Density optimization for standard desktops */
.header-slogan {
  display: none !important;
}
.header-contact-block > div {
  flex-direction: column !important;
  align-items: flex-end !important;
  gap: 2px !important;
}

@media (max-width: 1550px) and (min-width: 1025px) {
  .header-inner {
    gap: var(--space-4);
  }
  .nav-link {
    padding: var(--space-2) var(--space-2);
    font-size: 13px;
  }
  .header-right {
    gap: var(--space-3);
  }
}

.nav-link .chevron {
  width: 14px;
  height: 14px;
  opacity: 0.6;
  transition: transform 0.2s ease;
}

.nav-item:hover .chevron {
  transform: rotate(180deg);
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  min-width: 260px;
  padding: var(--space-2);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-8px);
  transition: all 0.2s ease;
  z-index: var(--z-dropdown);
}

.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-link {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-primary);
  border-radius: var(--radius);
  transition: var(--transition-fast);
}

.dropdown-link:hover {
  background: var(--gray-50);
  color: var(--navy);
}

.dropdown-link .dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Header right */
.header-right {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-shrink: 0;
}

/* Language switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  background: var(--gray-100);
  border-radius: var(--radius-full);
  padding: 3px;
}

.lang-btn {
  padding: 4px 10px;
  font-size: var(--text-xs);
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--text-secondary);
  border-radius: var(--radius-full);
  transition: var(--transition-fast);
  letter-spacing: 0.05em;
}

.lang-btn.active,
.lang-btn:hover {
  background: var(--navy);
  color: var(--white);
}

.header-phone {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  transition: color 0.2s;
}



.header-phone:hover {
  color: var(--gold);
}

.header-socials {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-right: var(--space-2);
}

.header-socials .social-link {
  width: 32px;
  height: 32px;
  background: var(--gray-100);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.header-socials .social-link svg {
  width: 14px;
  height: 14px;
  color: var(--navy);
  opacity: 0.7;
}

.header-socials .social-link:hover {
  background: var(--navy);
  border-color: var(--navy);
}

.header-socials .social-link:hover svg {
  color: var(--white);
  opacity: 1;
}

.header-cta {
  display: none;
}

@media (min-width: 1100px) {
  .header-cta {
    display: inline-flex;
  }
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}



.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: calc(var(--z-header) - 1);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-xl);
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-nav-link {
  font-size: var(--text-lg);
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--navy);
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-nav-toggle .chevron {
  transition: transform 0.3s ease;
}

.mobile-nav-toggle.open .chevron {
  transform: rotate(180deg);
}

.mobile-nav-sub {
  display: none;
  padding-left: var(--space-4);
}

.mobile-nav-sub a {
  display: block;
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-base);
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-light);
}

.mobile-nav-sub a:hover {
  color: var(--gold);
}

.mobile-lang {
  display: flex;
  gap: var(--space-3);
  padding: var(--space-4);
}

.mobile-lang button {
  padding: var(--space-2) var(--space-4);
  font-weight: 700;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-heading);
}

.mobile-lang button.active {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

/* ============================================================
   6. Hero Section
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero_bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.35;
  transform: scale(1.05);
  animation: heroZoom 20s ease infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15,26,58,0.97) 0%,
    rgba(26,43,94,0.92) 50%,
    rgba(26,43,94,0.80) 100%
  );
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  background: rgba(184,150,62,0.15);
  border-radius: 50%;
  animation: float linear infinite;
}

@keyframes float {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100px) rotate(720deg); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
  padding: 140px var(--container-pad) var(--space-20);
  max-width: var(--container-max);
  margin: 0 auto;
  width: 100%;
}

.hero-left {
  max-width: 620px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(184,150,62,0.15);
  border: 1px solid rgba(184,150,62,0.3);
  color: var(--gold-light);
  font-size: var(--text-sm);
  font-weight: 600;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-6);
  letter-spacing: 0.05em;
  animation: fadeInDown 0.8s ease forwards;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: var(--space-6);
  letter-spacing: -0.03em;
  animation: fadeInUp 0.8s 0.2s ease both;
}

.hero-title .accent {
  color: var(--gold);
  display: block;
}

.hero-subtitle {
  font-size: var(--text-xl);
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: var(--space-8);
  animation: fadeInUp 0.8s 0.4s ease both;
}

.hero-cta {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  animation: fadeInUp 0.8s 0.6s ease both;
}

/* Hero Stats */
.hero-right {
  animation: fadeInRight 0.8s 0.4s ease both;
}

.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
  width: 100%;
}

.hero-stat {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: var(--space-8) var(--space-6);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.hero-stat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.hero-stat:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(184, 150, 62, 0.4);
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold);
}

.hero-stat:hover::before {
  opacity: 1;
}

.hero-stat-icon {
  width: 48px;
  height: 48px;
  background: rgba(184, 150, 62, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  transition: transform 0.3s ease;
}

.hero-stat:hover .hero-stat-icon {
  transform: scale(1.1) rotate(5deg);
  background: rgba(184, 150, 62, 0.2);
}

.hero-stat-icon svg {
  width: 24px;
  height: 24px;
  color: var(--gold-light);
}

.hero-stat-num {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: var(--space-2);
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.hero-stat-label {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: rgba(255,255,255,0.5);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: fadeIn 1s 1.5s ease both;
  cursor: pointer;
  z-index: 2;
}

.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255,255,255,0.35);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-wheel {
  width: 4px;
  height: 8px;
  background: var(--gold-light);
  border-radius: 2px;
  animation: scrollDown 2s ease infinite;
}

@keyframes scrollDown {
  0% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(8px); opacity: 0.3; }
  100% { transform: translateY(0); opacity: 1; }
}

/* ============================================================
   7. Services Section
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-12);
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-6px);
  border-color: transparent;
}

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

.service-icon {
  width: 56px;
  height: 56px;
  background: var(--gold-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--gold);
}

.service-icon svg {
  width: 28px;
  height: 28px;
  color: var(--gold);
  transition: var(--transition);
}

.service-card:hover .service-icon svg {
  color: var(--white);
}

.service-title {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--space-3);
  line-height: 1.3;
}

.service-desc {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-6);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--gold);
  font-family: var(--font-heading);
  transition: var(--transition-fast);
}

.service-link:hover {
  gap: var(--space-3);
  color: var(--gold-dark);
}

.service-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s;
}

.service-link:hover svg {
  transform: translateX(4px);
}

/* ============================================================
   8. Stats / Trust Section
   ============================================================ */
.stats-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  padding: var(--space-8) var(--space-4);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: var(--space-3);
  display: block;
}

.stat-label {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  line-height: 1.4;
}

/* ============================================================
   9. Why Us / Trust Items
   ============================================================ */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-12);
}

.trust-item {
  padding: var(--space-8);
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.trust-item:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-pale);
  transform: translateY(-4px);
}

.trust-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--gold-pale), rgba(212,175,122,0.2));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-icon svg {
  width: 24px;
  height: 24px;
  color: var(--gold);
}

.trust-title {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}

.trust-text {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================================
   10. Process Steps
   ============================================================ */
.process-section {
  background: var(--bg-secondary);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-12);
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  z-index: 0;
}

.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.step-number {
  width: 64px;
  height: 64px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-5);
  font-size: var(--text-xl);
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--gold-light);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px var(--gold), var(--shadow-navy);
  transition: var(--transition);
}

.process-step:hover .step-number {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 0 0 3px var(--white), var(--shadow-gold);
  transform: scale(1.1);
}

.step-title {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--space-3);
  line-height: 1.3;
}

.step-text {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================================
   11. About Section (Homepage)
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.about-badge-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-5) var(--space-6);
  text-align: center;
  box-shadow: var(--shadow-gold);
  min-width: 150px;
}

.about-badge-float .num {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: 800;
  line-height: 1;
  display: block;
}

.about-badge-float .lbl {
  font-size: var(--text-sm);
  opacity: 0.9;
  line-height: 1.3;
  margin-top: 4px;
}

.about-text p {
  color: var(--text-secondary);
  font-size: var(--text-lg);
  line-height: 1.7;
  margin-bottom: var(--space-5);
}

.about-list {
  margin: var(--space-6) 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.about-list-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-base);
  color: var(--text-primary);
}

.about-list-item::before {
  content: '';
  width: 20px;
  height: 20px;
  background: var(--gold-pale);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23B8963E' d='M10.3 3.3L5 8.6 1.7 5.3 1 6l4 4 6-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px;
}

/* ============================================================
   12. Testimonials
   ============================================================ */
.testimonials-section {
  background: var(--bg-secondary);
}

.testimonials-slider {
  margin-top: var(--space-12);
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: var(--space-6);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
  flex: 0 0 calc(33.333% - var(--space-4));
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: var(--space-4);
}

.star {
  color: var(--gold);
  font-size: var(--text-lg);
}

.testimonial-text {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-6);
  font-style: italic;
}

.testimonial-text::before {
  content: '"';
  font-size: 2rem;
  color: var(--gold);
  font-family: Georgia, serif;
  line-height: 0;
  vertical-align: -0.5em;
  margin-right: 4px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.author-avatar {
  width: 48px;
  height: 48px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: var(--text-lg);
  color: var(--gold-light);
  flex-shrink: 0;
}

.author-name {
  font-weight: 700;
  font-size: var(--text-base);
  color: var(--navy);
  font-family: var(--font-heading);
}

.author-company {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: var(--space-3);
  margin-top: var(--space-8);
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  color: var(--navy);
}

.slider-btn:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--white);
}

.slider-btn svg {
  width: 18px;
  height: 18px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: var(--space-2);
  margin-top: var(--space-5);
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-300);
  cursor: pointer;
  transition: var(--transition);
}

.slider-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* ============================================================
   13. Form Section
   ============================================================ */
.form-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  position: relative;
  overflow: hidden;
}

.form-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(184,150,62,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-16);
  align-items: start;
  position: relative;
  z-index: 1;
}

.form-left .section-badge {
  background: rgba(184,150,62,0.15);
  border-color: rgba(184,150,62,0.3);
  color: var(--gold-light);
}

.form-left .section-badge::before {
  background: var(--gold);
}

.form-left .section-title {
  color: var(--white);
}

.form-left .section-subtitle {
  color: rgba(255,255,255,0.7);
}

.form-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  margin-top: var(--space-8);
}

.form-feature {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.form-feature-icon {
  width: 44px;
  height: 44px;
  background: rgba(184,150,62,0.15);
  border: 1px solid rgba(184,150,62,0.25);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.form-feature-icon svg {
  width: 20px;
  height: 20px;
  color: var(--gold-light);
}

.form-feature-text {
  color: rgba(255,255,255,0.8);
  font-size: var(--text-base);
}

/* Form card */
.form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-10);
  box-shadow: var(--shadow-xl);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.form-label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-primary);
  font-family: var(--font-heading);
}

.form-label .required {
  color: #ef4444;
  margin-left: 2px;
}

.form-input,
.form-select,
.form-textarea {
  padding: 0.875rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: var(--text-base);
  color: var(--text-primary);
  background: var(--white);
  transition: var(--transition-fast);
  outline: none;
  width: 100%;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,150,62,0.12);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
}

.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='%2364748B' d='M3 6l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 2.5rem;
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

.form-privacy {
  font-size: var(--text-xs);
  color: var(--text-muted);
  line-height: 1.5;
}

.form-submit {
  width: 100%;
  justify-content: center;
}

/* Form Messages */
.form-success,
.form-error {
  display: none;
  padding: var(--space-4);
  border-radius: var(--radius);
  font-size: var(--text-sm);
  font-weight: 500;
}

.form-success {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.form-error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* ============================================================
   14. Page Hero (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  padding: 140px var(--container-pad) var(--space-20);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Crect x='0' y='0' width='1' height='80'/%3E%3Crect x='0' y='0' width='80' height='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.page-hero h1 {
  font-size: clamp(var(--text-3xl), 5vw, var(--text-5xl));
  font-weight: 800;
  color: var(--white);
  margin-bottom: var(--space-4);
  letter-spacing: -0.02em;
}

.page-hero p {
  font-size: var(--text-xl);
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
  justify-content: center;
}

.breadcrumb a,
.breadcrumb span {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.5);
}

.breadcrumb a:hover {
  color: var(--gold-light);
}

.breadcrumb .sep {
  color: rgba(255,255,255,0.3);
}

.breadcrumb .current {
  color: var(--gold-light);
}

/* ============================================================
   15. Service Detail Pages
   ============================================================ */
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: start;
}

.service-image {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-top: var(--space-6);
}

.benefit-item {
  display: flex;
  gap: var(--space-4);
  padding: var(--space-5);
  background: var(--gray-50);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.benefit-item:hover {
  background: var(--white);
  box-shadow: var(--shadow);
  border-color: var(--border);
}

.benefit-icon {
  width: 44px;
  height: 44px;
  background: var(--gold-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-icon svg {
  width: 22px;
  height: 22px;
  color: var(--gold);
}

.benefit-content h4 {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--space-1);
}

.benefit-content p {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Steps for service pages */
.steps-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-top: var(--space-6);
  counter-reset: steps;
}

.step-item {
  display: flex;
  gap: var(--space-5);
  padding: var(--space-6);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  counter-increment: steps;
  position: relative;
}

.step-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--gold-pale);
}

.step-num {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: 800;
  color: var(--gold-light);
}

.step-content h4 {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--space-2);
}

.step-content p {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Docs list */
.docs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-6);
}

.doc-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-5);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: var(--text-sm);
  color: var(--text-primary);
  font-weight: 500;
  transition: var(--transition);
}

.doc-item:hover {
  border-color: var(--gold-pale);
  box-shadow: var(--shadow-sm);
}

.doc-item::before {
  content: '';
  width: 10px;
  height: 10px;
  min-width: 10px;
  background: var(--gold);
  border-radius: 50%;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-top: var(--space-6);
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.open {
  box-shadow: var(--shadow);
}

.faq-question {
  padding: var(--space-5) var(--space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--navy);
  font-family: var(--font-heading);
  gap: var(--space-4);
}

.faq-question:hover {
  color: var(--gold);
}

.faq-icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  background: var(--gray-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.faq-item.open .faq-icon {
  background: var(--gold);
  transform: rotate(180deg);
}

.faq-icon svg {
  width: 14px;
  height: 14px;
  color: var(--navy);
  transition: color 0.2s;
}

.faq-item.open .faq-icon svg {
  color: var(--white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer-inner {
  padding: 0 var(--space-6) var(--space-5);
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================================
   16. CTA Section (inline)
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  padding: var(--space-16) 0;
  text-align: center;
}

.cta-section h2 {
  font-size: clamp(var(--text-2xl), 3.5vw, var(--text-4xl));
  font-weight: 800;
  color: var(--white);
  margin-bottom: var(--space-4);
}

.cta-section p {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.85);
  margin-bottom: var(--space-8);
}

/* ============================================================
   17. Footer
   ============================================================ */
.footer {
  background: #0A132C !important;
  color: #FFFFFF !important;
  padding: var(--space-16) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr 1.5fr;
  gap: var(--space-10);
  padding-bottom: var(--space-12);
}

.footer-brand .logo-name {
  color: var(--white);
}

.footer-desc {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.7) !important;
  line-height: 1.7;
  margin: var(--space-4) 0 var(--space-6);
}

.footer-socials {
  display: flex;
  gap: var(--space-3);
}

.social-link {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.social-link svg {
  width: 16px;
  height: 16px;
  color: rgba(255,255,255,0.7);
}

.social-link:hover svg {
  color: var(--white);
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-5);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-link {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.7) !important;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.footer-link:hover {
  color: var(--gold-light);
}

.footer-link::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.5;
  flex-shrink: 0;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.55);
  margin-bottom: var(--space-4);
}

.footer-contact-icon {
  width: 32px;
  height: 32px;
  background: rgba(184,150,62,0.15);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: -2px;
}

.footer-contact-icon svg {
  width: 14px;
  height: 14px;
  color: var(--gold-light);
}

.footer-contact-value {
  color: #FFFFFF !important;
  font-weight: 500;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: var(--space-5) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.footer-copyright {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.4);
}

.footer-privacy {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}

.footer-privacy:hover {
  color: var(--gold-light);
}

/* ============================================================
   18. Cookie Banner
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: var(--space-5);
  left: var(--space-5);
  right: var(--space-5);
  max-width: 480px;
  background: var(--navy-dark);
  color: rgba(255,255,255,0.85);
  border-radius: var(--radius-lg);
  padding: var(--space-5) var(--space-6);
  box-shadow: var(--shadow-xl);
  z-index: var(--z-toast);
  display: none;
  align-items: center;
  gap: var(--space-4);
  border: 1px solid rgba(184,150,62,0.2);
}

.cookie-banner.show {
  display: flex;
}

.cookie-text {
  font-size: var(--text-sm);
  line-height: 1.5;
  flex: 1;
}

.cookie-actions {
  display: flex;
  gap: var(--space-2);
  flex-shrink: 0;
}

/* ============================================================
   19. Animations & Scroll Reveal
   ============================================================ */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

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

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Scroll reveal classes */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ============================================================
   20. Page Sections (About, Contacts)
   ============================================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-10);
}

.value-card {
  padding: var(--space-8);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  text-align: center;
  transition: var(--transition);
}

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

.value-icon {
  width: 70px;
  height: 70px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-5);
}

.value-icon svg {
  width: 32px;
  height: 32px;
  color: var(--gold);
}

.value-title {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--space-3);
}

.value-text {
  color: var(--text-secondary);
  font-size: var(--text-base);
  line-height: 1.7;
}

/* Contacts */
.contacts-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-bottom: var(--space-12);
}

.contact-card {
  padding: var(--space-8);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  text-align: center;
  transition: var(--transition);
}

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

.contact-card-icon {
  width: 64px;
  height: 64px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-5);
}

.contact-card-icon svg {
  width: 28px;
  height: 28px;
  color: var(--gold-light);
}

.contact-card-title {
  font-size: var(--text-sm);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  margin-bottom: var(--space-3);
  font-family: var(--font-heading);
}

.contact-card-value {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--navy);
  font-family: var(--font-heading);
  line-height: 1.3;
}

.contact-card-sub {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-top: var(--space-2);
}

/* ============================================================
   21. Responsive  
   ============================================================ */
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-grid::before {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 1340px) {
  .nav { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: block; }
  .header-cta { display: none !important; }
  .header-contact-block { display: none !important; }
}

/* Mobile Call Icon (Hidden on Desktop) */
.mobile-call-link {
  display: none;
  width: 40px;
  height: 40px;
  background: var(--gold-pale);
  border: 1px solid var(--gold-pale);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: var(--transition);
}

.mobile-call-link:hover {
  background: var(--gold);
  color: var(--white);
}

@media (max-width: 768px) {
  .lang-switcher {
    display: flex !important;
    transform: scale(0.9);
  }
  
  .mobile-call-link {
    display: flex;
    margin-right: 0.25rem;
  }
  
  .header-contact-block {
    display: none !important;
  }

  .hero-content {
    grid-template-columns: 1fr;
    padding-top: 120px;
  }

  .hero-right {
    display: none;
  }

  .hero-left {
    text-align: center;
    max-width: 100%;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-badge {
    margin: 0 auto var(--space-6);
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-image-wrap {
    order: -1;
  }

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

  .service-detail-grid {
    grid-template-columns: 1fr;
  }

  .contacts-info-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --container-pad: 1rem;
    --space-20: 4rem;
    --space-16: 3rem;
    --space-12: 2.5rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

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

  .testimonials-track {
    flex-direction: column;
  }

  .testimonial-card {
    flex: 0 0 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .footer-socials {
    display: flex !important;
    justify-content: center;
    margin-top: var(--space-4);
  }

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

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

  .docs-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }

  .stat-item {
    padding: var(--space-6);
    border: 1px solid rgba(255,255,255,0.05);
  }

  .header-inner {
    height: 70px;
  }

  .mobile-menu {
    top: 70px;
  }

  .hero-stat-grid {
    display: none;
  }
}

@media (max-width: 480px) {
  .process-grid {
    grid-template-columns: 1fr;
  }

  .hero-cta {
    flex-direction: column;
  }

  .hero-cta .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================================
   22. Back to Top
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-6);
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: var(--gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  box-shadow: var(--shadow-lg);
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
}
