/* ============================================
   LANTIER AVOCATS — World-Class Law Firm Site
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  --navy: #1B2A4A;
  --navy-light: #243656;
  --navy-dark: #0F1B32;
  --gold: #C8A951;
  --gold-light: #D4BB6E;
  --gold-dark: #B8963E;
  --dark: #32373C;
  --gray: #727272;
  --gray-light: #999999;
  --light: #F7F5F0;
  --lighter: #FAF9F6;
  --white: #FFFFFF;
  --red: #C0392B;
  --green: #27AE60;

  --font-heading: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;

  --shadow-sm: 0 2px 8px rgba(27,42,74,0.06);
  --shadow-md: 0 4px 20px rgba(27,42,74,0.10);
  --shadow-lg: 0 8px 40px rgba(27,42,74,0.14);
  --shadow-xl: 0 16px 60px rgba(27,42,74,0.18);
  --shadow-gold: 0 4px 20px rgba(200,169,81,0.25);

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}

::selection {
  background: var(--gold);
  color: var(--white);
}

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.3rem); }

p {
  color: var(--gray);
  line-height: 1.8;
  font-size: 1.05rem;
}

.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.text-white { color: var(--white); }

/* --- Layout --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

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

.section-dark {
  background: var(--navy);
}

.section-light {
  background: var(--light);
}

.section-lighter {
  background: var(--lighter);
}

.grid {
  display: grid;
  gap: 32px;
}

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

.flex {
  display: flex;
  align-items: center;
}

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

.text-center { text-align: center; }

/* --- Section Header --- */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-header .overline {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  position: relative;
}

.section-header .overline::before,
.section-header .overline::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.section-header .overline::before { right: calc(100% + 12px); }
.section-header .overline::after { left: calc(100% + 12px); }

.section-header h2 {
  margin-bottom: 20px;
}

.section-header p {
  font-size: 1.1rem;
}

.section-dark .section-header h2 {
  color: var(--white);
}

.section-dark .section-header p {
  color: rgba(255,255,255,0.7);
}

/* --- Gold Divider --- */
.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 20px auto;
  border-radius: 2px;
}

.divider-left {
  margin-left: 0;
}

/* ============================
   NAVIGATION
   ============================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition);
}

.navbar.scrolled {
  background: rgba(27, 42, 74, 0.97);
  padding: 12px 0;
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo .logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--navy);
}

.nav-logo .logo-text {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold) !important;
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--navy) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.nav-cta::after {
  display: none !important;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

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

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

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

.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.35;
  filter: saturate(0.6);
  transition: opacity 1.2s ease, transform 12s ease;
  transform: scale(1.05);
}

.hero:hover .hero-bg-image {
  transform: scale(1.0);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    linear-gradient(135deg, rgba(15,27,50,0.85) 0%, rgba(27,42,74,0.7) 40%, rgba(36,54,86,0.6) 100%),
    radial-gradient(ellipse at 20% 50%, rgba(200,169,81,0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(200,169,81,0.06) 0%, transparent 40%);
  pointer-events: none;
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 250px;
  background: linear-gradient(to top, rgba(15,27,50,0.8), transparent);
  pointer-events: none;
  z-index: 1;
}

/* Geometric decorations */
.hero-decor {
  position: absolute;
  pointer-events: none;
  z-index: 2;
}

.hero-decor-1 {
  top: 15%;
  right: 8%;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(200,169,81,0.1);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.hero-decor-2 {
  bottom: 20%;
  left: 5%;
  width: 200px;
  height: 200px;
  border: 1px solid rgba(200,169,81,0.07);
  transform: rotate(45deg);
  animation: float 10s ease-in-out infinite reverse;
}

.hero-decor-3 {
  top: 30%;
  right: 25%;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.4;
  animation: pulse-glow 3s ease-in-out infinite;
}

.hero-decor-4 {
  bottom: 35%;
  left: 20%;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.3;
  animation: pulse-glow 4s ease-in-out infinite 1s;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
}

.hero .overline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards 0.3s;
}

.hero .overline::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards 0.5s;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero .hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 600px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards 0.7s;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards 0.9s;
}

/* Page Hero (inner pages) */
.page-hero {
  position: relative;
  padding: 180px 0 100px;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(200,169,81,0.06) 0%, transparent 50%);
  pointer-events: none;
}

.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
}

.page-hero .breadcrumb a {
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}

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

.page-hero .breadcrumb .separator {
  color: var(--gold);
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero p {
  color: rgba(255,255,255,0.65);
  font-size: 1.15rem;
  max-width: 600px;
}

/* ============================
   BUTTONS
   ============================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.5px;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

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

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}

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

.btn-outline:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

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

.btn-dark:hover {
  background: var(--navy-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.88rem;
}

.btn-lg {
  padding: 20px 48px;
  font-size: 1.05rem;
}

.btn .btn-arrow {
  transition: transform var(--transition);
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* ============================
   STATS BAR
   ============================ */
.stats-bar {
  background: var(--white);
  padding: 50px 0;
  margin-top: -60px;
  position: relative;
  z-index: 10;
}

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

.stat-item {
  text-align: center;
  padding: 30px 20px;
  border-radius: var(--radius-md);
  transition: all var(--transition);
  position: relative;
}

.stat-item::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  opacity: 0.3;
}

.stat-item:last-child::after {
  display: none;
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-number .stat-suffix {
  font-size: 2rem;
  color: var(--gold);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--gray);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ============================
   ABOUT / VALUES
   ============================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-content .overline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.about-content .overline::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.about-content h2 {
  margin-bottom: 24px;
}

.about-content p {
  margin-bottom: 16px;
}

.about-visual {
  position: relative;
}

.about-visual .visual-box {
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-visual .visual-box img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}

.about-visual .visual-box:hover img {
  transform: scale(1.05);
}

.about-visual .visual-box .visual-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 32px;
  background: linear-gradient(to top, rgba(15,27,50,0.95) 0%, rgba(15,27,50,0.6) 60%, transparent 100%);
}

.about-visual .visual-quote {
  position: relative;
  z-index: 1;
}

.about-visual .visual-quote blockquote {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--white);
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 12px;
}

.about-visual .visual-quote blockquote::before {
  content: '\201C';
  font-size: 3rem;
  color: var(--gold);
  line-height: 0;
  vertical-align: -0.4em;
  margin-right: 4px;
}

.about-visual .visual-quote .quote-author {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.about-visual .accent-border {
  position: absolute;
  bottom: -8px;
  right: -8px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  opacity: 0.3;
  z-index: -1;
}

/* About Secondary Image */
.about-image-secondary {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-top: 24px;
}

.about-image-secondary img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-image-secondary:hover img {
  transform: scale(1.05);
}

/* Image Banner Section */
.image-banner {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.image-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-banner .banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(15,27,50,0.7), rgba(27,42,74,0.5));
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-banner .banner-overlay blockquote {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--white);
  font-style: italic;
  text-align: center;
  max-width: 700px;
  padding: 0 24px;
  line-height: 1.5;
}

.image-banner .banner-overlay blockquote span {
  color: var(--gold);
}

/* Service Card Images */
.service-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card-img {
  transform: scale(1.03);
}

/* CTA with background image */
.cta-section-image {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.cta-section-image .cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.4);
}

.cta-section-image .cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(15,27,50,0.92), rgba(27,42,74,0.88));
}

.cta-section-image .container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta-section-image h2 {
  color: var(--white);
  margin-bottom: 20px;
}

.cta-section-image p {
  color: rgba(255,255,255,0.7);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto 36px;
}

/* Testimonials bg image */
.testimonials-bg {
  position: relative;
}

.testimonials-bg .section-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.04;
  pointer-events: none;
}

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.value-card {
  text-align: center;
  padding: 40px 28px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.value-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);
  transition: transform var(--transition);
}

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

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

.value-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(200,169,81,0.1), rgba(200,169,81,0.05));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.value-card:hover .value-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  transform: scale(1.1);
}

.value-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  transition: stroke var(--transition);
}

.value-card:hover .value-icon svg {
  stroke: var(--navy);
}

.value-card h4 {
  margin-bottom: 12px;
  font-size: 1.15rem;
}

.value-card p {
  font-size: 0.95rem;
  color: var(--gray);
}

/* ============================
   SERVICE CARDS
   ============================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 32px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.04);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(to bottom, var(--gold), var(--gold-light));
  transition: height var(--transition-slow);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(200,169,81,0.15);
}

.service-card:hover::before {
  height: 100%;
}

.service-card .service-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(200,169,81,0.12);
  line-height: 1;
  margin-bottom: 16px;
}

.service-card .service-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(200,169,81,0.1), rgba(200,169,81,0.05));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all var(--transition);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  transform: scale(1.08);
}

.service-card .service-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  transition: stroke var(--transition);
}

.service-card:hover .service-icon svg {
  stroke: var(--navy);
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  transition: color var(--transition);
}

.service-card:hover h3 {
  color: var(--gold-dark);
}

.service-card p {
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.service-card .service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition);
}

.service-card .service-link svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
  transition: transform var(--transition);
}

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

/* Service detail (services page) */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.service-detail:nth-child(even) {
  direction: rtl;
}

.service-detail:nth-child(even) > * {
  direction: ltr;
}

.service-detail-content .overline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.service-detail-content h3 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.service-detail-content p {
  margin-bottom: 16px;
}

.service-detail-content ul {
  margin-bottom: 24px;
}

.service-detail-content ul li {
  padding: 6px 0 6px 24px;
  color: var(--gray);
  position: relative;
  font-size: 0.95rem;
}

.service-detail-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 8px;
  border: 2px solid var(--gold);
  border-radius: 50%;
}

.service-detail-visual {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: var(--radius-lg);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}

.service-detail-visual .detail-icon {
  width: 100px;
  height: 100px;
  background: rgba(200,169,81,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-detail-visual .detail-icon svg {
  width: 48px;
  height: 48px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.2;
}

/* ============================
   TEAM SECTION
   ============================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 32px;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid rgba(0,0,0,0.04);
}

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

.team-card-photo {
  position: relative;
  height: 320px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  overflow: hidden;
}

.team-card-photo .photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-card-photo .photo-placeholder svg {
  width: 80px;
  height: 80px;
  stroke: rgba(200,169,81,0.3);
  fill: none;
  stroke-width: 1;
}

.team-card-photo .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 24px 24px;
  background: linear-gradient(to top, rgba(15,27,50,0.95), transparent);
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--transition);
}

.team-card:hover .overlay {
  opacity: 1;
  transform: translateY(0);
}

.team-card-photo .overlay .specialties {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.team-card-photo .overlay .specialties span {
  padding: 4px 12px;
  background: rgba(200,169,81,0.2);
  border: 1px solid rgba(200,169,81,0.3);
  border-radius: 20px;
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 500;
}

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

.team-card-info h4 {
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.team-card-info .role {
  color: var(--gold);
  font-size: 0.88rem;
  font-weight: 500;
  margin-bottom: 12px;
}

.team-card-info p {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 16px;
  line-height: 1.6;
}

.team-card-info .contact-links {
  display: flex;
  gap: 12px;
}

.team-card-info .contact-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.team-card-info .contact-links a:hover {
  background: var(--gold);
}

.team-card-info .contact-links a svg {
  width: 16px;
  height: 16px;
  stroke: var(--gray);
  fill: none;
  stroke-width: 2;
  transition: stroke var(--transition);
}

.team-card-info .contact-links a:hover svg {
  stroke: var(--navy);
}

/* ============================
   TESTIMONIALS
   ============================ */
.testimonials-wrapper {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-card {
  min-width: 100%;
  padding: 0 40px;
}

.testimonial-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-inner .quote-mark {
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--gold);
  line-height: 0.5;
  margin-bottom: 24px;
  opacity: 0.5;
}

.testimonial-inner blockquote {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--navy);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 32px;
}

.testimonial-inner .author {
  font-weight: 600;
  color: var(--navy);
  font-size: 1rem;
}

.testimonial-inner .author span {
  color: var(--gray);
  font-weight: 400;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

.testimonial-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(200,169,81,0.2);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}

.testimonial-dots .dot.active {
  background: var(--gold);
  width: 30px;
  border-radius: 5px;
}

/* ============================
   CTA SECTION
   ============================ */
.cta-section {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border: 1px solid rgba(200,169,81,0.08);
  border-radius: 50%;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  border: 1px solid rgba(200,169,81,0.06);
  border-radius: 50%;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.cta-section p {
  color: rgba(255,255,255,0.7);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto 36px;
  position: relative;
  z-index: 1;
}

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

/* ============================
   CONTACT SECTION
   ============================ */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 80px;
}

.contact-card {
  text-align: center;
  padding: 48px 32px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid rgba(0,0,0,0.04);
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(200,169,81,0.15);
}

.contact-card .card-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(200,169,81,0.1), rgba(200,169,81,0.05));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.contact-card:hover .card-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  transform: scale(1.1);
}

.contact-card .card-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  transition: stroke var(--transition);
}

.contact-card:hover .card-icon svg {
  stroke: var(--navy);
}

.contact-card h4 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.contact-card p {
  font-size: 0.95rem;
}

.contact-card a {
  color: var(--gold);
  font-weight: 500;
}

.contact-card a:hover {
  text-decoration: underline;
}

/* Contact Form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h3 {
  margin-bottom: 16px;
}

.contact-info p {
  margin-bottom: 24px;
}

.contact-info .info-list {
  margin-bottom: 32px;
}

.contact-info .info-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.contact-info .info-item:last-child {
  border-bottom: none;
}

.contact-info .info-item .icon {
  width: 44px;
  height: 44px;
  background: var(--light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info .info-item .icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.contact-info .info-item .details h5 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray);
  margin-bottom: 4px;
}

.contact-info .info-item .details p {
  font-size: 1rem;
  color: var(--navy);
  font-weight: 500;
}

/* Map */
.map-container {
  margin-top: 60px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map-container iframe {
  display: block;
  width: 100%;
  height: 400px;
  border: none;
}

/* ============================
   FORMS
   ============================ */
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-md);
}

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

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

.form-group label .required {
  color: var(--red);
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  background: var(--lighter);
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--dark);
  transition: all var(--transition);
}

.form-control:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(200,169,81,0.1);
}

.form-control::placeholder {
  color: var(--gray-light);
}

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

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23727272' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  cursor: pointer;
}

/* File Upload */
.file-upload-zone {
  border: 2px dashed rgba(200,169,81,0.3);
  border-radius: var(--radius-md);
  padding: 48px 32px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  background: var(--lighter);
  position: relative;
}

.file-upload-zone:hover,
.file-upload-zone.drag-over {
  border-color: var(--gold);
  background: rgba(200,169,81,0.05);
  transform: scale(1.01);
}

.file-upload-zone .upload-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background: rgba(200,169,81,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.file-upload-zone:hover .upload-icon {
  background: rgba(200,169,81,0.2);
  transform: scale(1.1);
}

.file-upload-zone .upload-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.file-upload-zone h4 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.file-upload-zone p {
  font-size: 0.9rem;
  color: var(--gray);
}

.file-upload-zone .browse-link {
  color: var(--gold);
  font-weight: 600;
  text-decoration: underline;
}

.file-upload-zone input[type="file"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

/* File List */
.file-list {
  margin-top: 20px;
}

.file-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: var(--lighter);
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
  border: 1px solid rgba(0,0,0,0.04);
  animation: slideIn 0.3s ease;
}

.file-item .file-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.file-item .file-info .file-icon {
  width: 36px;
  height: 36px;
  background: rgba(200,169,81,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.file-item .file-info .file-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.file-item .file-name {
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--navy);
}

.file-item .file-size {
  font-size: 0.8rem;
  color: var(--gray);
}

.file-item .file-remove {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  background: transparent;
  border: none;
}

.file-item .file-remove:hover {
  background: rgba(192,57,43,0.1);
}

.file-item .file-remove svg {
  width: 16px;
  height: 16px;
  stroke: var(--red);
  fill: none;
  stroke-width: 2;
}

/* Form Messages */
.form-success {
  display: none;
  text-align: center;
  padding: 60px 40px;
}

.form-success.show {
  display: block;
  animation: fadeUp 0.5s ease;
}

.form-success .success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: rgba(39,174,96,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-success .success-icon svg {
  width: 36px;
  height: 36px;
  stroke: var(--green);
  fill: none;
  stroke-width: 2;
}

.form-success h3 {
  margin-bottom: 12px;
}

/* Input validation states */
.form-control.error {
  border-color: var(--red);
  background: rgba(192,57,43,0.03);
}

.form-control.valid {
  border-color: var(--green);
}

.error-message {
  color: var(--red);
  font-size: 0.8rem;
  margin-top: 4px;
  display: none;
}

.form-group.has-error .error-message {
  display: block;
  animation: slideIn 0.3s ease;
}

/* ============================
   ZONES / REGIONS
   ============================ */
.zones-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.zones-list .zone-tag {
  padding: 8px 20px;
  background: rgba(200,169,81,0.08);
  border: 1px solid rgba(200,169,81,0.2);
  border-radius: 30px;
  font-size: 0.9rem;
  color: var(--navy);
  font-weight: 500;
  transition: all var(--transition);
}

.zones-list .zone-tag:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* ============================
   FOOTER
   ============================ */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
}

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

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

.footer-col .footer-logo .logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--navy);
}

.footer-col .footer-logo .logo-text {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}

.footer-col .footer-logo .logo-text span {
  color: var(--gold);
}

.footer-col p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

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

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gold);
}

.footer-col .footer-links li {
  margin-bottom: 12px;
}

.footer-col .footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.92rem;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-col .footer-links a::before {
  content: '';
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.footer-col .footer-links a:hover {
  color: var(--gold);
}

.footer-col .footer-links a:hover::before {
  width: 12px;
}

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

.footer-col .footer-contact-item .icon {
  width: 36px;
  height: 36px;
  background: rgba(200,169,81,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-col .footer-contact-item .icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.footer-col .footer-contact-item p {
  font-size: 0.9rem;
}

.footer-col .footer-contact-item a {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
}

.footer-bottom a {
  color: var(--gold);
}

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

/* ============================
   SCROLL ANIMATIONS
   ============================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

/* Stagger children */
.stagger-children .reveal:nth-child(1) { transition-delay: 0.1s; }
.stagger-children .reveal:nth-child(2) { transition-delay: 0.2s; }
.stagger-children .reveal:nth-child(3) { transition-delay: 0.3s; }
.stagger-children .reveal:nth-child(4) { transition-delay: 0.4s; }
.stagger-children .reveal:nth-child(5) { transition-delay: 0.5s; }
.stagger-children .reveal:nth-child(6) { transition-delay: 0.6s; }
.stagger-children .reveal:nth-child(7) { transition-delay: 0.7s; }
.stagger-children .reveal:nth-child(8) { transition-delay: 0.8s; }
.stagger-children .reveal:nth-child(9) { transition-delay: 0.9s; }
.stagger-children .reveal:nth-child(10) { transition-delay: 1.0s; }

/* ============================
   KEYFRAMES
   ============================ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

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

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

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

/* Loading spinner for buttons */
.btn.loading {
  pointer-events: none;
  opacity: 0.8;
}

.btn.loading::after {
  content: '';
  width: 18px;
  height: 18px;
  border: 2px solid transparent;
  border-top-color: currentColor;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  margin-left: 8px;
}

/* ============================
   SCROLL TO TOP
   ============================ */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition);
  border: none;
  box-shadow: var(--shadow-gold);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--gold-dark);
  transform: translateY(-4px);
}

.scroll-top svg {
  width: 20px;
  height: 20px;
  stroke: var(--navy);
  fill: none;
  stroke-width: 2.5;
}

/* ============================
   PAGE LOADER
   ============================ */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--navy-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.loaded {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  text-align: center;
}

.loader-logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
}

.loader-logo span {
  color: var(--gold);
}

.loader-bar {
  width: 200px;
  height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
  margin: 0 auto;
}

.loader-bar::after {
  content: '';
  display: block;
  width: 40%;
  height: 100%;
  background: var(--gold);
  border-radius: 2px;
  animation: loaderSlide 1.5s ease infinite;
}

@keyframes loaderSlide {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(350%); }
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .service-detail { grid-template-columns: 1fr; gap: 40px; }
  .service-detail:nth-child(even) { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bar .container { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }

  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: var(--navy-dark);
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding: 40px;
    transition: right var(--transition);
    box-shadow: -10px 0 40px rgba(0,0,0,0.3);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    font-size: 1.1rem;
    padding: 8px 0;
  }

  .nav-cta {
    margin-top: 16px;
    text-align: center;
    width: 100%;
    justify-content: center;
  }

  .hero-content {
    padding: 0 8px;
  }

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

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

  .stats-bar .container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .stat-item::after { display: none; }

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

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

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

  .form-card {
    padding: 32px 24px;
  }

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

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

  .page-hero {
    padding: 140px 0 70px;
  }

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

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

  .zones-list { gap: 8px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section { padding: 50px 0; }

  .stats-bar .container { grid-template-columns: 1fr; }

  .stat-number { font-size: 2.5rem; }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.7rem; }

  .btn { padding: 14px 28px; font-size: 0.9rem; }
  .btn-lg { padding: 16px 32px; }
}

/* ============================
   ACCESSIBILITY
   ============================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .reveal, .reveal-left, .reveal-right, .reveal-scale {
    opacity: 1;
    transform: none;
  }
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  padding: 8px 16px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 600;
  z-index: 10000;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 0;
}

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

.faq-section .section-header {
  margin-bottom: 48px;
}

.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.08);
  overflow: hidden;
}

.faq-item:first-child {
  border-top: 1px solid rgba(0,0,0,0.08);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  cursor: pointer;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  transition: color var(--transition);
  gap: 16px;
}

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

.faq-question .faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  position: relative;
  transition: transform var(--transition);
}

.faq-question .faq-icon::before,
.faq-question .faq-icon::after {
  content: '';
  position: absolute;
  background: var(--gold);
  border-radius: 1px;
}

.faq-question .faq-icon::before {
  width: 16px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-question .faq-icon::after {
  width: 2px;
  height: 16px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform var(--transition), opacity var(--transition);
}

.faq-item.active .faq-question .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 0 0 0;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 0 20px 0;
}

.faq-answer p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.8;
}

/* ============================
   ANSWER CAPSULE (GEO)
   ============================ */
.answer-capsule {
  background: var(--lighter);
  border-left: 4px solid var(--gold);
  padding: 20px 24px;
  margin: 20px 0 32px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.98rem;
  color: var(--gray);
  line-height: 1.8;
}

.page-hero .answer-capsule {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.75);
  border-left-color: var(--gold);
}

/* ============================
   DATE MODIFIED
   ============================ */
.date-modified {
  text-align: center;
  padding: 16px 0;
  font-size: 0.82rem;
  color: var(--gray-light);
  border-top: 1px solid rgba(0,0,0,0.06);
  margin-top: 0;
}

/* ============================
   PRINT STYLES
   ============================ */
@media print {
  .navbar, .scroll-top, .page-loader, .hero-decor { display: none; }
  .hero { min-height: auto; padding: 40px 0; }
  .section { padding: 30px 0; }
  * { color: #000 !important; background: #fff !important; box-shadow: none !important; }
}
