/* ============================================================
   MAJID TRADERS - PREMIUM CORPORATE WEBSITE
   Main Stylesheet | Version 1.0.0
   ============================================================ */

/* ---- IMPORT FONTS ---- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* ---- CSS CUSTOM PROPERTIES ---- */
:root {
  /* Brand Colors */
  --primary:        #0B3D91;
  --primary-dark:   #082d6b;
  --primary-light:  #1a5cbf;
  --secondary:      #D4AF37;
  --secondary-dark: #b8962e;
  --secondary-light:#e8c84a;

  /* Neutrals */
  --white:          #FFFFFF;
  --bg:             #FFFFFF;
  --accent:         #F5F5F5;
  --text:           #333333;
  --text-light:     #6B7280;
  --text-lighter:   #9CA3AF;
  --border:         #E5E7EB;

  /* Gradients */
  --grad-primary:   linear-gradient(135deg, #0B3D91 0%, #1a5cbf 50%, #0B3D91 100%);
  --grad-hero:      linear-gradient(135deg, #071e47 0%, #0B3D91 40%, #0f4fa8 70%, #071e47 100%);
  --grad-gold:      linear-gradient(135deg, #D4AF37 0%, #f0d060 50%, #D4AF37 100%);
  --grad-card:      linear-gradient(145deg, rgba(255,255,255,0.15), rgba(255,255,255,0.05));

  /* Glass */
  --glass-bg:       rgba(255,255,255,0.08);
  --glass-border:   rgba(255,255,255,0.18);
  --glass-shadow:   0 8px 32px rgba(0,0,0,0.2);

  /* Shadows */
  --shadow-sm:      0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md:      0 4px 16px rgba(0,0,0,0.10), 0 2px 4px rgba(0,0,0,0.06);
  --shadow-lg:      0 10px 40px rgba(0,0,0,0.12), 0 4px 6px rgba(0,0,0,0.05);
  --shadow-xl:      0 20px 60px rgba(0,0,0,0.15), 0 8px 16px rgba(0,0,0,0.08);
  --shadow-blue:    0 8px 30px rgba(11,61,145,0.30);
  --shadow-gold:    0 8px 30px rgba(212,175,55,0.35);

  /* Typography */
  --font-primary:   'Poppins', sans-serif;
  --font-secondary: 'Inter', sans-serif;

  /* Sizes */
  --nav-height:     80px;
  --container-max:  1280px;
  --radius-sm:      6px;
  --radius-md:      12px;
  --radius-lg:      20px;
  --radius-xl:      30px;

  /* Transitions */
  --ease:           cubic-bezier(0.4, 0, 0.2, 1);
  --spring:         cubic-bezier(0.34, 1.56, 0.64, 1);
  --trans-fast:     0.2s var(--ease);
  --trans-mid:      0.35s var(--ease);
  --trans-slow:     0.6s var(--ease);
}

/* ---- 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-secondary);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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; }

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--accent); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary-dark); }

/* ---- SELECTION ---- */
::selection { background: var(--primary); color: var(--white); }

/* ============================================================
   LOADING SCREEN
   ============================================================ */
#loading-screen {
  position: fixed;
  inset: 0;
  background: var(--grad-hero);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.6s var(--ease), visibility 0.6s var(--ease);
}

#loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-logo {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

.loader-logo-icon {
  width: 64px;
  height: 64px;
  background: var(--grad-gold);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--primary-dark);
  font-weight: 900;
  animation: pulse-glow 1.5s ease-in-out infinite;
}

.loader-logo-text {
  color: var(--white);
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 1px;
}

.loader-logo-text span {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--secondary);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.loader-bar-wrapper {
  width: 240px;
  height: 3px;
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
  overflow: hidden;
}

.loader-bar {
  height: 100%;
  width: 0%;
  background: var(--grad-gold);
  border-radius: 2px;
  animation: loadProgress 2s var(--ease) forwards;
}

@keyframes loadProgress {
  0%   { width: 0%; }
  60%  { width: 70%; }
  100% { width: 100%; }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212,175,55,0.4); }
  50%       { box-shadow: 0 0 0 20px rgba(212,175,55,0); }
}

/* ============================================================
   NAVIGATION
   ============================================================ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 10000;
  padding: 0 2rem;
  background: #071e47 !important;
  border-bottom: 1.5px solid var(--secondary) !important;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-logo-icon {
  width: 44px;
  height: 44px;
  background: #0b2559;
  border: 1.5px solid var(--secondary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--secondary);
  flex-shrink: 0;
  transition: transform var(--trans-fast);
}
.nav-logo:hover .nav-logo-icon {
  transform: rotate(-5deg) scale(1.05);
}

.nav-logo-text {
  color: var(--white);
}

.nav-logo-text strong {
  display: block;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.3px;
  line-height: 1.2;
}

.nav-logo-text small {
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--secondary);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Nav Links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  position: relative;
  color: rgba(255,255,255,0.85);
  font-family: var(--font-secondary);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition: all var(--trans-fast);
  white-space: nowrap;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: calc(100% - 20px);
  height: 2px;
  background: var(--secondary);
  border-radius: 1px;
  transition: transform var(--trans-mid);
}
.nav-link:hover,
.nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: translateX(-50%) scaleX(1);
}

/* Nav CTA */
.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.btn-nav-quote {
  background: var(--grad-gold);
  color: var(--primary-dark);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.8rem;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  transition: all var(--trans-fast);
  white-space: nowrap;
  letter-spacing: 0.3px;
}

.btn-nav-quote:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border-radius: var(--radius-sm);
  transition: background var(--trans-fast);
}

.nav-toggle:hover { background: rgba(255,255,255,0.1); }

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--trans-mid);
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 100px 0;
}

.section-sm {
  padding: 60px 0;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(11,61,145,0.08);
  color: var(--primary);
  border: 1px solid rgba(11,61,145,0.2);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--primary-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-title span {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.75;
}

.section-divider {
  width: 60px;
  height: 3px;
  background: var(--grad-gold);
  border-radius: 2px;
  margin: 20px auto 0;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 14px 32px;
  border-radius: var(--radius-md);
  transition: all var(--trans-mid);
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  opacity: 0;
  transition: opacity var(--trans-fast);
}

.btn:hover::before { opacity: 1; }

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

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(11,61,145,0.4);
}

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

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(212,175,55,0.45);
}

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

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

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

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

.btn-lg {
  padding: 17px 40px;
  font-size: 0.95rem;
}

.btn-icon {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 50%;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--grad-hero);
  overflow: hidden;
}

/* Particle Canvas */
#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

/* Animated grid lines */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
}

/* Glow orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  animation: float-orb 8s ease-in-out infinite;
}

.hero-orb-1 {
  width: 500px;
  height: 500px;
  background: rgba(11,61,145,0.5);
  top: -150px;
  right: -100px;
  animation-delay: 0s;
}

.hero-orb-2 {
  width: 350px;
  height: 350px;
  background: rgba(212,175,55,0.2);
  bottom: -100px;
  left: 10%;
  animation-delay: 3s;
}

.hero-orb-3 {
  width: 250px;
  height: 250px;
  background: rgba(26,92,191,0.3);
  top: 30%;
  left: -50px;
  animation-delay: 5s;
}

@keyframes float-orb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(30px, -20px) scale(1.05); }
  66%       { transform: translate(-20px, 30px) scale(0.97); }
}

/* World map SVG overlay */
.hero-worldmap {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 58%;
  max-width: 800px;
  opacity: 0.06;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
  padding-top: calc(var(--nav-height) + 60px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  width: 100%;
}

.hero-text { max-width: 660px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(212,175,55,0.15);
  border: 1px solid rgba(212,175,55,0.4);
  color: var(--secondary);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 28px;
  animation: fadeInDown 0.8s var(--ease) 0.2s both;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--secondary);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

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

.hero-headline {
  font-family: var(--font-primary);
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
  text-shadow: 
    0 1px 0 #062359, 
    0 2px 0 #051a44, 
    0 3px 0 #041230, 
    0 4px 0 #020a1c, 
    0 5px 0 #01040a, 
    0 6px 1px rgba(0,0,0,.2), 
    0 0 5px rgba(0,0,0,.2), 
    0 1px 3px rgba(0,0,0,.4), 
    0 3px 5px rgba(0,0,0,.3), 
    0 5px 10px rgba(0,0,0,.3), 
    0 10px 10px rgba(0,0,0,.25), 
    0 20px 20px rgba(0,0,0,.2);
  transform-style: preserve-3d;
  animation: hero3dEntrance 1.5s cubic-bezier(0.2, 0.8, 0.2, 1) 0.4s both;
}

@keyframes hero3dEntrance {
  0% {
    opacity: 0;
    transform: rotateX(25deg) translateY(40px) translateZ(-100px);
  }
  100% {
    opacity: 1;
    transform: rotateX(0deg) translateY(0) translateZ(0);
  }
}

.hero-headline .highlight {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subheading {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.8;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s var(--ease) 0.6s both;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s var(--ease) 0.8s both;
}

/* Hero stats strip */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  animation: fadeInUp 0.8s var(--ease) 1s both;
}

.hero-stat-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform var(--trans-mid), box-shadow var(--trans-mid);
}

.hero-stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-gold);
}

.hero-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--glass-shadow);
}

.hero-stat-value {
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 1.9rem;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}

.hero-stat-value .suffix {
  font-size: 1rem;
  color: var(--secondary);
}

.hero-stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.5px;
}

/* ============================================================
   TRUST BADGES STRIP
   ============================================================ */
.trust-strip {
  background: var(--primary-dark);
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.trust-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.7);
  font-size: 0.82rem;
  font-weight: 500;
  white-space: nowrap;
}

.trust-item i {
  color: var(--secondary);
  font-size: 1.1rem;
}

/* ============================================================
   STATS SECTION
   ============================================================ */
.stats-section {
  padding: 90px 0;
  background: linear-gradient(135deg, #f8f9ff 0%, var(--white) 50%, #f0f4ff 100%);
  position: relative;
}

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

.stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all var(--trans-mid);
  box-shadow: var(--shadow-sm);
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--grad-primary);
  transform: scaleX(0);
  transition: transform var(--trans-slow);
}

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

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

.stat-card:nth-child(2)::before,
.stat-card:nth-child(4)::before {
  background: var(--grad-gold);
}

.stat-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 20px;
  transition: transform var(--trans-mid);
}

.stat-card:hover .stat-icon { transform: scale(1.1) rotate(-5deg); }

.stat-icon-blue { background: rgba(11,61,145,0.1); color: var(--primary); }
.stat-icon-gold { background: rgba(212,175,55,0.15); color: var(--secondary-dark); }

.stat-number {
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 2.6rem;
  color: var(--primary-dark);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-number .unit {
  font-size: 1.2rem;
  color: var(--secondary-dark);
}

.stat-label {
  font-size: 0.88rem;
  color: var(--text-light);
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section {
  padding: 100px 0;
  background: var(--white);
}

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

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: all var(--trans-mid);
  box-shadow: var(--shadow-sm);
  group: '';
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-primary);
  opacity: 0;
  transition: opacity var(--trans-slow);
  z-index: 0;
}

.service-card:hover::before { opacity: 1; }

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

.service-card > * { position: relative; z-index: 1; }

.service-icon {
  width: 70px;
  height: 70px;
  background: rgba(11,61,145,0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 24px;
  transition: all var(--trans-mid);
}

.service-card:hover .service-icon {
  background: rgba(255,255,255,0.2);
  color: var(--secondary);
  transform: rotate(-5deg) scale(1.05);
}

.service-card-title {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--primary-dark);
  margin-bottom: 12px;
  transition: color var(--trans-fast);
}

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

.service-card-desc {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.75;
  transition: color var(--trans-fast);
}

.service-card:hover .service-card-desc { color: rgba(255,255,255,0.8); }

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  transition: all var(--trans-fast);
}

.service-card:hover .service-card-link {
  color: var(--secondary);
  gap: 10px;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f0f4ff 0%, #f8f9ff 100%);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-visual {
  position: relative;
}

.why-main-card {
  background: var(--grad-primary);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  color: var(--white);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.why-main-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

.why-main-card-icon {
  font-size: 3rem;
  color: var(--secondary);
  margin-bottom: 20px;
}

.why-main-card h3 {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.why-main-card p {
  opacity: 0.82;
  line-height: 1.8;
  font-size: 0.95rem;
}

.why-floating-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 22px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
}

.why-floating-badge-icon {
  width: 44px;
  height: 44px;
  background: var(--grad-gold);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  font-size: 1.2rem;
}

.why-floating-badge-text strong {
  display: block;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary-dark);
}

.why-floating-badge-text span {
  font-size: 0.78rem;
  color: var(--text-light);
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: all var(--trans-mid);
  box-shadow: var(--shadow-sm);
}

.why-feature:hover {
  transform: translateX(8px);
  border-color: var(--primary-light);
  box-shadow: var(--shadow-blue);
}

.why-feature-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.why-feature-body h4 {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1rem;
  color: var(--primary-dark);
  margin-bottom: 6px;
}

.why-feature-body p {
  font-size: 0.86rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ============================================================
   CLIENTS SECTION (HOMEPAGE STRIP)
   ============================================================ */
.clients-strip {
  padding: 80px 0;
  background: var(--white);
  overflow: hidden;
}

.clients-ticker {
  position: relative;
  overflow: hidden;
}

.clients-ticker::before,
.clients-ticker::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
}

.clients-ticker::before {
  left: 0;
  background: linear-gradient(to right, var(--white), transparent);
}

.clients-ticker::after {
  right: 0;
  background: linear-gradient(to left, var(--white), transparent);
}

.clients-track {
  display: flex;
  gap: 60px;
  animation: ticker 30s linear infinite;
  width: max-content;
}

.clients-track:hover { animation-play-state: paused; }

@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.client-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 32px;
  min-width: 160px;
  white-space: nowrap;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--text-light);
  letter-spacing: 0.5px;
  transition: all var(--trans-mid);
  box-shadow: var(--shadow-sm);
}

.client-logo-item:hover {
  border-color: var(--primary-light);
  color: var(--primary);
  box-shadow: var(--shadow-blue);
  transform: scale(1.03);
}

/* ============================================================
   PROJECTS SECTION (HOMEPAGE PREVIEW)
   ============================================================ */
.projects-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--accent) 0%, var(--white) 100%);
}

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

.project-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--trans-mid);
}

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

.project-card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: linear-gradient(135deg, #0B3D91, #1a5cbf);
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-card-image-icon {
  font-size: 4rem;
  color: rgba(255,255,255,0.3);
}

.project-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--secondary);
  color: var(--primary-dark);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 100px;
  letter-spacing: 0.5px;
}

.project-status {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
}

.status-completed {
  background: rgba(16,185,129,0.2);
  color: #10b981;
  border: 1px solid rgba(16,185,129,0.3);
}

.project-card-body {
  padding: 24px;
}

.project-card-client {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.project-card-title {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--primary-dark);
  margin-bottom: 10px;
  line-height: 1.35;
}

.project-card-desc {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 16px;
}

.project-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.project-card-value {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--secondary-dark);
}

.project-card-year {
  font-size: 0.8rem;
  color: var(--text-lighter);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section {
  padding: 100px 0;
  background: var(--grad-primary);
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 40px 40px;
}

.testimonials-section .section-title { color: var(--white); }
.testimonials-section .section-badge {
  background: rgba(212,175,55,0.15);
  border-color: rgba(212,175,55,0.4);
  color: var(--secondary);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
  z-index: 1;
}

.testimonial-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: all var(--trans-mid);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  left: 24px;
  font-size: 4.5rem;
  font-family: Georgia, serif;
  color: var(--secondary);
  opacity: 0.5;
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.12);
}

.testimonial-stars {
  color: var(--secondary);
  font-size: 0.9rem;
  margin-bottom: 20px;
  padding-top: 24px;
}

.testimonial-text {
  color: rgba(255,255,255,0.85);
  font-size: 0.92rem;
  line-height: 1.85;
  margin-bottom: 28px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--grad-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-primary);
  font-weight: 700;
  color: var(--primary-dark);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.testimonial-author-name {
  font-family: var(--font-primary);
  font-weight: 600;
  color: var(--white);
  font-size: 0.9rem;
}

.testimonial-author-role {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
}

/* ============================================================
   TEAM SECTION
   ============================================================ */
.team-section {
  padding: 100px 0;
  background: var(--white);
}

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

.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--trans-mid);
  box-shadow: var(--shadow-sm);
}

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

.team-card-image {
  height: 240px;
  background: linear-gradient(135deg, #0B3D91 0%, #1a5cbf 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.team-card-image::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(7,30,71,0.7), transparent);
}

.team-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 4px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 2rem;
  color: var(--white);
  z-index: 1;
}

.team-card-body {
  padding: 24px;
}

.team-card-name {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary-dark);
  margin-bottom: 4px;
}

.team-card-role {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--secondary-dark);
  margin-bottom: 4px;
  letter-spacing: 0.3px;
}

.team-card-qual {
  font-size: 0.78rem;
  color: var(--text-lighter);
  margin-bottom: 14px;
}

.team-card-exp {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(11,61,145,0.08);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.team-card-bio {
  font-size: 0.83rem;
  color: var(--text-light);
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  padding: 100px 0;
  background: var(--grad-hero);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,...') no-repeat center;
  opacity: 0.04;
}

.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.cta-orb-1 {
  width: 400px; height: 400px;
  background: rgba(212,175,55,0.15);
  top: -100px; right: -100px;
}

.cta-orb-2 {
  width: 300px; height: 300px;
  background: rgba(26,92,191,0.3);
  bottom: -80px; left: -80px;
}

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

.cta-title {
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.2;
}

.cta-title span {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   INDUSTRIES SECTION
   ============================================================ */
.industries-section {
  padding: 100px 0;
  background: var(--white);
}

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

.industry-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
  transition: all var(--trans-mid);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  cursor: default;
}

.industry-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-primary);
  opacity: 0;
  transition: opacity var(--trans-slow);
}

.industry-card:hover::after { opacity: 1; }

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

.industry-card > * { position: relative; z-index: 1; }

.industry-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(11,61,145,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--primary);
  margin: 0 auto 20px;
  transition: all var(--trans-mid);
}

.industry-card:hover .industry-icon {
  background: rgba(255,255,255,0.2);
  color: var(--secondary);
}

.industry-title {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-dark);
  transition: color var(--trans-fast);
  margin-bottom: 10px;
}

.industry-card:hover .industry-title { color: var(--white); }

.industry-desc {
  font-size: 0.82rem;
  color: var(--text-light);
  transition: color var(--trans-fast);
  line-height: 1.65;
}

.industry-card:hover .industry-desc { color: rgba(255,255,255,0.8); }

/* ============================================================
   CERTIFICATIONS
   ============================================================ */
.certs-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f0f4ff 0%, #f8f9ff 100%);
}

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

.cert-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--trans-mid);
  box-shadow: var(--shadow-sm);
}

.cert-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.cert-icon {
  width: 72px;
  height: 72px;
  background: var(--grad-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--secondary);
  margin: 0 auto 20px;
  transition: transform var(--trans-mid);
}

.cert-card:hover .cert-icon { transform: scale(1.1) rotate(-5deg); }

.cert-title {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.cert-desc {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.7;
}

.cert-badge {
  display: inline-block;
  background: rgba(16,185,129,0.1);
  color: #10b981;
  border: 1px solid rgba(16,185,129,0.3);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  margin-top: 14px;
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section {
  padding: 100px 0;
  background: var(--white);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.faq-visual {
  padding: 20px;
}

.faq-visual-card {
  background: var(--grad-primary);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  color: var(--white);
  text-align: center;
  box-shadow: var(--shadow-xl);
}

.faq-visual-icon {
  font-size: 4rem;
  color: var(--secondary);
  margin-bottom: 24px;
}

.faq-visual-card h3 {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.faq-visual-card p {
  opacity: 0.82;
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 28px;
}

.faq-items { display: flex; flex-direction: column; gap: 14px; }

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow var(--trans-fast);
}

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

.faq-question {
  width: 100%;
  text-align: left;
  padding: 22px 24px;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--primary-dark);
  transition: color var(--trans-fast);
}

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

.faq-question i {
  font-size: 0.8rem;
  color: var(--primary);
  transition: transform var(--trans-mid);
  flex-shrink: 0;
}

.faq-item.open .faq-question i { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--trans-slow);
}

.faq-item.open .faq-answer { max-height: 400px; }

.faq-answer-inner {
  padding: 0 24px 22px;
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.8;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f0f4ff 0%, #f8f9ff 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 20px; }

.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: all var(--trans-mid);
  box-shadow: var(--shadow-sm);
}

.contact-card:hover {
  border-color: var(--primary-light);
  transform: translateX(6px);
  box-shadow: var(--shadow-blue);
}

.contact-card-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  background: var(--grad-primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-size: 1.2rem;
}

.contact-card-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-lighter);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.contact-card-value {
  font-weight: 600;
  color: var(--primary-dark);
  font-size: 0.9rem;
  line-height: 1.5;
}

.contact-card-value a:hover { color: var(--primary); }

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  box-shadow: var(--shadow-lg);
}

.contact-form h3 {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.contact-form-subtitle {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 32px;
}

.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.full { grid-column: 1 / -1; }

.form-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.3px;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  background: var(--accent);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  color: var(--text);
  transition: all var(--trans-fast);
  outline: none;
}

.form-control:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(11,61,145,0.1);
}

.form-control::placeholder { color: var(--text-lighter); }

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

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-section {
  padding: 100px 0;
  background: var(--white);
}

.gallery-filter {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.gallery-filter-btn {
  padding: 9px 22px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-light);
  background: var(--white);
  cursor: pointer;
  transition: all var(--trans-fast);
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-blue);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  aspect-ratio: 1;
  background: linear-gradient(135deg, #0B3D91, #1a5cbf);
  transition: transform var(--trans-mid);
}

.gallery-item:hover { transform: scale(1.03); }

.gallery-item:nth-child(3n+1) { grid-row: span 2; }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7,30,71,0.8);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  transition: opacity var(--trans-mid);
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay i {
  font-size: 1.8rem;
  color: var(--white);
}

.gallery-overlay span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

.gallery-item-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(255,255,255,0.25);
}

/* ============================================================
   PAGE HERO (INNER PAGES)
   ============================================================ */
.page-hero {
  background: var(--grad-hero);
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

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

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
}

.breadcrumb a {
  color: var(--secondary);
  transition: color var(--trans-fast);
}

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

.breadcrumb i { font-size: 0.65rem; }

.page-hero-title {
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.page-hero-title span {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ============================================================
   ABOUT TIMELINE
   ============================================================ */
.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), var(--secondary), var(--primary));
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  margin-bottom: 60px;
  align-items: center;
}

.timeline-item:nth-child(even) .timeline-content { order: 3; text-align: left; }
.timeline-item:nth-child(even) .timeline-empty { order: 1; }
.timeline-item:nth-child(odd) .timeline-content { text-align: right; }

.timeline-dot {
  width: 50px;
  height: 50px;
  background: var(--grad-primary);
  border: 4px solid var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-size: 1rem;
  box-shadow: var(--shadow-blue);
  z-index: 1;
  position: relative;
  flex-shrink: 0;
}

.timeline-year {
  display: block;
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 4px;
}

.timeline-content h4 {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1rem;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.timeline-content p {
  font-size: 0.86rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ============================================================
   CLIENTS PAGE FULL
   ============================================================ */
.clients-full-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.client-full-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--trans-mid);
  box-shadow: var(--shadow-sm);
}

.client-full-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary-light);
  box-shadow: var(--shadow-blue);
}

.client-full-icon {
  width: 68px;
  height: 68px;
  background: rgba(11,61,145,0.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--primary);
  margin: 0 auto 16px;
}

.client-full-name {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary-dark);
  margin-bottom: 6px;
}

.client-full-type {
  font-size: 0.75rem;
  color: var(--text-lighter);
  letter-spacing: 0.5px;
}

.clients-stat-banner {
  background: var(--grad-primary);
  border-radius: var(--radius-xl);
  padding: 60px 48px;
  text-align: center;
  margin: 70px 0;
  position: relative;
  overflow: hidden;
}

.clients-stat-banner::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}

.clients-stat-value {
  font-family: var(--font-primary);
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 4rem);
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.clients-stat-label {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}

/* ============================================================
   FLOATING BUTTONS
   ============================================================ */
.float-buttons {
  position: fixed;
  bottom: 28px;
  right: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--white);
  box-shadow: var(--shadow-xl);
  transition: all var(--trans-mid);
  position: relative;
  overflow: hidden;
}

.float-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  opacity: 0;
  transition: opacity var(--trans-fast);
}

.float-btn:hover::before { opacity: 1; }
.float-btn:hover { transform: scale(1.1); }

.float-whatsapp {
  background: #25D366;
}

.float-top {
  background: var(--grad-primary);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--trans-mid), transform var(--trans-mid);
}

.float-top.visible {
  opacity: 1;
  pointer-events: auto;
}

/* WhatsApp Tooltip */
.float-whatsapp::after {
  content: 'Chat on WhatsApp';
  position: absolute;
  right: 68px;
  top: 50%;
  transform: translateY(-50%);
  background: #25D366;
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  opacity: 0;
  transition: opacity var(--trans-fast);
  pointer-events: none;
}

.float-whatsapp:hover::after { opacity: 1; }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(7,30,71,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 32px;
  z-index: 9000;
  transform: translateY(100%);
  transition: transform 0.5s var(--ease);
}

#cookie-banner.show { transform: translateY(0); }

.cookie-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  flex: 1;
  min-width: 200px;
}

.cookie-text a { color: var(--secondary); text-decoration: underline; }

.cookie-buttons { display: flex; gap: 12px; }

.btn-cookie-accept {
  background: var(--secondary);
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  transition: all var(--trans-fast);
}

.btn-cookie-accept:hover { background: var(--secondary-light); }

.btn-cookie-decline {
  color: rgba(255,255,255,0.6);
  font-size: 0.82rem;
  padding: 10px 16px;
  transition: color var(--trans-fast);
}

.btn-cookie-decline:hover { color: var(--white); }

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: linear-gradient(180deg, #071e47 0%, #040f24 100%);
  color: rgba(255,255,255,0.75);
}

.footer-top {
  padding: 80px 0 60px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo-icon {
  width: 46px;
  height: 46px;
  background: var(--grad-gold);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-primary);
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--primary-dark);
  flex-shrink: 0;
}

.footer-logo-text strong {
  display: block;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
}

.footer-logo-text small {
  font-size: 0.65rem;
  color: var(--secondary);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer-brand-desc {
  font-size: 0.87rem;
  line-height: 1.85;
  margin-bottom: 28px;
  max-width: 340px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: all var(--trans-fast);
  border: 1px solid rgba(255,255,255,0.08);
}

.footer-social-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-col-title {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 30px; height: 2px;
  background: var(--secondary);
  border-radius: 1px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.6);
  transition: all var(--trans-fast);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-link::before {
  content: '›';
  color: var(--secondary);
  font-size: 1.1rem;
  line-height: 1;
}

.footer-link:hover { color: var(--white); padding-left: 6px; }

.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.footer-contact-item i {
  color: var(--secondary);
  font-size: 0.9rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact-item span {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

.footer-newsletter {
  display: flex;
  gap: 0;
  margin-top: 20px;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.footer-newsletter input {
  flex: 1;
  padding: 12px 16px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-right: none;
  color: var(--white);
  font-size: 0.85rem;
  outline: none;
}

.footer-newsletter input::placeholder { color: rgba(255,255,255,0.35); }

.footer-newsletter button {
  background: var(--secondary);
  color: var(--primary-dark);
  padding: 12px 18px;
  font-weight: 700;
  font-size: 0.85rem;
  transition: background var(--trans-fast);
}

.footer-newsletter button:hover { background: var(--secondary-light); }

.footer-bottom {
  padding: 24px 0;
}

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

.footer-copyright {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

.footer-copyright span { color: var(--secondary); }

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  transition: color var(--trans-fast);
}

.footer-bottom-links a:hover { color: var(--secondary); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@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 fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to   { opacity: 1; transform: scale(1); }
}

/* AOS override defaults */
[data-aos] { pointer-events: none; }
[data-aos].aos-animate { pointer-events: auto; }

/* ============================================================
   RESPONSIVE DESIGN
   ============================================================ */
@media (max-width: 1100px) {
  .services-grid     { grid-template-columns: repeat(2, 1fr); }
  .team-grid         { grid-template-columns: repeat(2, 1fr); }
  .footer-grid       { grid-template-columns: 1fr 1fr; gap: 40px; }
  .hero-content      { grid-template-columns: 1fr; }
  .hero-stats        { display: none; }
  .stats-grid        { grid-template-columns: repeat(2, 1fr); }
  .projects-grid     { grid-template-columns: repeat(2, 1fr); }
  .clients-full-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .industries-grid   { grid-template-columns: repeat(2, 1fr); }
  .certs-grid        { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid      { grid-template-columns: repeat(3, 1fr); }
}
/* Mobile menu default hidden */
.nav-mobile { display: none; }

@media (max-width: 900px) {
  .nav-menu, .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  /* Mobile menu */
  .nav-mobile {
    position: fixed;
    inset: 0;
    background: rgba(7,30,71,0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transform: translateX(100%);
    transition: transform var(--trans-slow);
  }

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

  .nav-mobile .nav-link {
    font-size: 1.3rem;
    padding: 14px 28px;
    width: 100%;
    text-align: center;
  }

  .why-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .certs-grid { grid-template-columns: 1fr 1fr; }
  .timeline::before { left: 24px; }
  .timeline-item {
    grid-template-columns: auto 1fr;
    gap: 20px;
  }
  .timeline-item:nth-child(even) .timeline-content { order: 2; text-align: left; }
  .timeline-item:nth-child(odd) .timeline-content { text-align: left; }
  .timeline-empty { display: none !important; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .clients-full-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  :root { --nav-height: 64px; }
  .section { padding: 70px 0; }
  .container { padding: 0 1.25rem; }
  .hero-content { padding: 0 1.25rem; padding-top: var(--nav-height); }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .services-grid    { grid-template-columns: 1fr; }
  .stats-grid       { grid-template-columns: 1fr 1fr; }
  .projects-grid    { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .industries-grid  { grid-template-columns: 1fr; }
  .certs-grid       { grid-template-columns: 1fr; }
  .team-grid        { grid-template-columns: 1fr; }
  .gallery-grid     { grid-template-columns: repeat(2, 1fr); }
  .clients-full-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .contact-form     { padding: 32px 24px; }
  .cta-buttons      { flex-direction: column; align-items: center; }
  .float-buttons    { bottom: 16px; right: 16px; }
  .trust-strip-inner { gap: 20px; }
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.text-center  { text-align: center; }
.text-left    { text-align: left; }
.text-gold    { color: var(--secondary); }
.text-primary { color: var(--primary); }
.text-white   { color: var(--white); }
.text-muted   { color: var(--text-light); }
.fw-bold      { font-weight: 700; }
.fw-medium    { font-weight: 500; }
.mt-auto      { margin-top: auto; }
.mb-0         { margin-bottom: 0; }
.d-flex       { display: flex; }
.align-center { align-items: center; }
.gap-16       { gap: 16px; }
.hidden       { display: none !important; }

/* ============================================================
   404 PAGE
   ============================================================ */
.error-page {
  min-height: 100vh;
  background: var(--grad-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.error-code {
  font-family: var(--font-primary);
  font-weight: 900;
  font-size: 10rem;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 20px;
}

.error-title {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 16px;
}

.error-desc {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  margin-bottom: 40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* Search bar */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(7,30,71,0.97);
  backdrop-filter: blur(20px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--trans-mid);
}

.search-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.search-box {
  width: 100%;
  max-width: 700px;
}

.search-input-wrapper {
  display: flex;
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.search-input {
  flex: 1;
  padding: 18px 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.2rem;
  outline: none;
}

.search-input::placeholder { color: rgba(255,255,255,0.4); }

.search-submit {
  padding: 18px 24px;
  background: var(--secondary);
  color: var(--primary-dark);
  font-size: 1.1rem;
  transition: background var(--trans-fast);
}

.search-submit:hover { background: var(--secondary-light); }

.search-close {
  position: absolute;
  top: 24px;
  right: 28px;
  color: rgba(255,255,255,0.7);
  font-size: 1.6rem;
  cursor: pointer;
  transition: color var(--trans-fast);
}

.search-close:hover { color: var(--white); }

/* ============================================================
   SHARED PAGE COMPONENTS (used across all inner pages)
   ============================================================ */

.page-hero {
  background: var(--grad-hero);
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px,transparent 1px),
                    linear-gradient(90deg,rgba(255,255,255,0.03) 1px,transparent 1px);
  background-size: 60px 60px;
}
.page-hero::after {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(212,175,55,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.page-hero-content {
  position: relative; z-index: 2;
  text-align: center;
}
.page-hero-title {
  font-family: var(--font-primary);
  font-weight: 900;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  animation: fadeInUp 0.7s ease both;
}
.page-hero-title span {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.8;
  animation: fadeInUp 0.7s ease 0.15s both;
}

/* ---- BREADCRUMB ---- */
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.78rem;
  margin-bottom: 24px;
  animation: fadeIn 0.5s ease both;
}
.breadcrumb a {
  color: rgba(255,255,255,0.65);
  transition: color var(--trans-fast);
}
.breadcrumb a:hover { color: var(--secondary); }
.breadcrumb span { color: var(--secondary); font-weight: 600; }
.breadcrumb i { color: rgba(255,255,255,0.35); font-size: 0.6rem; }

/* ---- CLIENTS STAT BANNER ---- */
.clients-stat-banner {
  background: var(--grad-primary);
  border-radius: var(--radius-xl);
  padding: 36px 48px;
  text-align: center;
  color: var(--white);
  box-shadow: var(--shadow-blue);
  max-width: 700px;
  margin: -30px auto 0;
  position: relative;
  z-index: 5;
}
.clients-stat-value {
  font-family: var(--font-primary);
  font-weight: 900;
  font-size: 2.4rem;
  color: var(--secondary);
  line-height: 1;
  margin-bottom: 8px;
}
.clients-stat-label {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}

/* ---- CLIENTS FULL GRID ---- */
.clients-full-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.client-full-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}
.client-full-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-light);
}
.client-full-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(11,61,145,0.09);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 14px;
  transition: all 0.3s;
}
.client-full-card:hover .client-full-icon {
  background: var(--primary);
  color: var(--secondary);
}
.client-full-name {
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--primary-dark);
  margin-bottom: 4px;
}
.client-full-type {
  font-size: 0.74rem;
  color: var(--text-lighter);
  line-height: 1.4;
}
@media (max-width: 900px) { .clients-full-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .clients-full-grid { grid-template-columns: 1fr; } }

/* ---- TIMELINE ---- */
.timeline {
  position: relative;
  max-width: 900px;
  margin: 60px auto 0;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), var(--secondary), var(--primary));
}
.timeline-item {
  display: grid;
  grid-template-columns: 1fr 50px 1fr;
  gap: 0;
  align-items: center;
  margin-bottom: 60px;
}
.timeline-content {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 28px;
  box-shadow: var(--shadow-md);
  transition: all 0.3s;
}
.timeline-content:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-light);
}
.timeline-item:nth-child(even) .timeline-content {
  grid-column: 3;
}
.timeline-year {
  display: inline-block;
  background: var(--grad-gold);
  color: var(--primary-dark);
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 0.8rem;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 10px;
}
.timeline-content h4 {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-dark);
  margin-bottom: 8px;
}
.timeline-content p {
  font-size: 0.84rem;
  color: var(--text-light);
  line-height: 1.7;
}
.timeline-dot {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--grad-primary);
  border: 4px solid var(--white);
  box-shadow: var(--shadow-blue);
  display: flex; align-items: center; justify-content: center;
  color: var(--secondary);
  font-size: 1rem;
  z-index: 2;
  justify-self: center;
}
.timeline-empty { }
@media (max-width: 700px) {
  .timeline::before { left: 20px; }
  .timeline-item { grid-template-columns: 40px 1fr; }
  .timeline-dot { width: 40px; height: 40px; font-size: 0.85rem; }
  .timeline-empty { display: none; }
  .timeline-item:nth-child(even) .timeline-content { grid-column: 2; }
  .timeline-content { margin-left: 0; }
}

/* ---- TESTIMONIALS ---- */
.testimonials-section {
  background: var(--grad-hero);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.testimonials-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 80% 20%, rgba(212,175,55,0.08) 0%, transparent 50%);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative; z-index: 2;
}
.testimonial-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all 0.35s;
}
.testimonial-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.testimonial-stars {
  color: var(--secondary);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testimonial-text {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px;
  position: relative;
}
.testimonial-text::before {
  content: '\201C';
  font-size: 3rem;
  color: rgba(212,175,55,0.3);
  line-height: 0;
  vertical-align: -0.6em;
  margin-right: 6px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--grad-gold);
  color: var(--primary-dark);
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.testimonial-author-name {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--white);
}
.testimonial-author-role {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
}
@media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* ---- GALLERY FILTER BUTTONS ---- */
.gallery-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.gallery-filter-btn {
  padding: 9px 22px;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--text-light);
  background: var(--white);
  cursor: pointer;
  transition: all 0.2s;
}
.gallery-filter-btn:hover,
.gallery-filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-blue);
}

/* ---- FLOAT BUTTONS ---- */
.float-buttons {
  position: fixed;
  bottom: 28px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 900;
}
.float-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--spring);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.float-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}
.float-whatsapp {
  background: #25D366;
  color: var(--white);
  animation: pulse-green 3s ease-in-out infinite;
}
@keyframes pulse-green {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50%       { box-shadow: 0 4px 35px rgba(37,211,102,0.7); }
}
.float-top {
  background: var(--white);
  color: var(--primary);
  border: 1px solid var(--border);
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s, transform 0.3s var(--spring), box-shadow 0.3s;
}
.float-top.visible {
  opacity: 1; pointer-events: auto;
}

/* ---- COOKIE BANNER ---- */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 8000;
  transform: translateY(100%);
  transition: transform 0.4s var(--ease);
}
#cookie-banner.show { transform: translateY(0); }
.cookie-inner {
  background: var(--primary-dark);
  border-top: 3px solid var(--secondary);
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-text {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}
.cookie-text a {
  color: var(--secondary);
  text-decoration: underline;
}
.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.btn-cookie-accept {
  background: var(--secondary);
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 9px 20px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-cookie-accept:hover { background: var(--secondary-light); }
.btn-cookie-decline {
  background: transparent;
  color: rgba(255,255,255,0.6);
  font-size: 0.82rem;
  padding: 9px 20px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all 0.2s;
}
.btn-cookie-decline:hover { color: var(--white); border-color: rgba(255,255,255,0.5); }

/* ---- LOADING SCREEN ---- */
#loading-screen {
  position: fixed;
  inset: 0;
  background: var(--grad-hero);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
#loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  animation: fadeIn 0.5s ease;
}
.loader-logo-icon {
  width: 56px; height: 56px;
  background: var(--grad-gold);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-primary);
  font-weight: 900; font-size: 1.3rem;
  color: var(--primary-dark);
  box-shadow: var(--shadow-gold);
}
.loader-logo-text {
  color: var(--white);
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.2;
}
.loader-logo-text span {
  display: block;
  font-size: 0.68rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 400;
  margin-top: 3px;
}
.loader-bar-wrapper {
  width: 220px;
  height: 3px;
  background: rgba(255,255,255,0.15);
  border-radius: 3px;
  overflow: hidden;
}
.loader-bar {
  height: 100%;
  background: var(--grad-gold);
  border-radius: 3px;
  animation: loader-progress 1.8s ease-in-out forwards;
}
@keyframes loader-progress {
  0%   { width: 0%; }
  30%  { width: 45%; }
  70%  { width: 75%; }
  90%  { width: 92%; }
  100% { width: 100%; }
}

/* ---- BTN-NAV-QUOTE (navbar CTA) ---- */
.btn-nav-quote {
  background: var(--grad-gold);
  color: var(--primary-dark);
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 10px 20px;
  border-radius: 100px;
  transition: all 0.3s;
  white-space: nowrap;
  box-shadow: var(--shadow-gold);
  letter-spacing: 0.3px;
}
.btn-nav-quote:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212,175,55,0.5);
  color: var(--primary-dark);
}

/* ---- GENERAL BTN OUTLINE ---- */
.btn-outline-primary {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 12px 28px;
  border-radius: 100px;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.88rem;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.3s;
  cursor: pointer;
}
.btn-outline-primary:hover {
  background: var(--primary);
  color: var(--white);
}

/* ---- ANIMATIONS ---- */
@keyframes float-orb {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-20px) scale(1.05); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pin-bounce {
  0%, 100% { transform: translate(-50%, -100%); }
  50%       { transform: translate(-50%, -115%); }
}

/* ---- DATA ANIMATE ---- */
[data-animate] {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-animate="up"]    { transform: translateY(40px); }
[data-animate="left"]  { transform: translateX(-40px); }
[data-animate="right"] { transform: translateX(40px); }
[data-animate="scale"] { transform: scale(0.92); }
[data-animate].animated {
  opacity: 1;
  transform: none;
}

[data-stagger] > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-stagger] > *.animated {
  opacity: 1;
  transform: none;
}

/* ---- RESPONSIVE FIXES ---- */
@media (max-width: 900px) {
  .page-hero { padding: calc(var(--nav-height) + 56px) 0 56px; }
  .testimonials-section { padding: 64px 0; }
}
@media (max-width: 640px) {
  .cookie-inner { padding: 16px 20px; }
  .float-buttons { bottom: 20px; right: 16px; }
  .float-btn { width: 48px; height: 48px; font-size: 1.1rem; }
}
