/* =====================================================================
   VERITAS GLOBAL DOCUMENTS CLEARING - MAIN STYLESHEET
   Author: Veritas Global | Premium Corporate Theme
   Colors: Deep Navy Blue, Luxury Gold, Pure White, Soft Gray
   ===================================================================== */

/* ---------- CSS RESET ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Poppins', sans-serif;
  background: #ffffff;
  color: #1a2b4a;
  line-height: 1.7;
  overflow-x: hidden;
  font-weight: 400;
}


.nav-logo{
    display:flex;
    align-items:center;
    text-decoration:none;
}

.nav-logo img{
    width:126px;      /* Desktop Logo Size */
    height:auto;
    display:block;
    transition:all .35s ease;
}

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

/* Laptop */
@media (max-width:1200px){
    .nav-logo img{
        width:240px;
    }
}

/* Tablet */
@media (max-width:992px){
    .nav-logo img{
        width:210px;
    }
}

/* Mobile */
@media (max-width:768px){
    .nav-logo img{
        width:120px;
    }
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: all .35s ease; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; }

/* ---------- CSS VARIABLES ---------- */
:root {
  /* Brand Colors */
  --navy: #0a1f44;
  --navy-deep: #061533;
  --navy-light: #1a3a6b;
  --gold: #c9a227;
  --gold-light: #e6c75a;
  --gold-dark: #a8841c;
  --white: #ffffff;
  --gray: #f6f7f9;
  --gray-2: #eef0f4;
  --gray-text: #6b7280;
  --dark-text: #1a2b4a;

  /* Gradients */
  --grad-navy: linear-gradient(135deg, #0a1f44 0%, #1a3a6b 100%);
  --grad-gold: linear-gradient(135deg, #c9a227 0%, #e6c75a 100%);
  --grad-hero: linear-gradient(135deg, rgba(6,21,51,.92) 0%, rgba(10,31,68,.85) 100%);

  /* Shadows */
  --shadow-sm: 0 4px 12px rgba(10,31,68,.06);
  --shadow-md: 0 10px 30px rgba(10,31,68,.10);
  --shadow-lg: 0 25px 60px rgba(10,31,68,.15);
  --shadow-gold: 0 10px 30px rgba(201,162,39,.30);
  --shadow-card: 0 15px 40px rgba(10,31,68,.12);

  /* Radius */
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  /* Transitions */
  --trans: all .35s cubic-bezier(.4,0,.2,1);
  --trans-slow: all .6s cubic-bezier(.4,0,.2,1);

  /* Fonts */
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Poppins', sans-serif;
  --font-alt: 'Manrope', sans-serif;
  --font-outfit: 'Outfit', sans-serif;
}

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); }
p { color: #4a5568; font-size: 1rem; }
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.text-white { color: #fff !important; }
.gradient-text {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ---------- LAYOUT ---------- */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}
.section {
  padding: 100px 0;
  position: relative;
}
.section-sm { padding: 70px 0; }
.section-title-wrap { text-align: center; margin-bottom: 60px; }
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-outfit);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  position: relative;
  padding: 0 30px;
}
.section-eyebrow::before, .section-eyebrow::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 20px;
  height: 2px;
  background: var(--grad-gold);
}
.section-eyebrow::before { left: 0; }
.section-eyebrow::after { right: 0; }
.section-title { margin-bottom: 16px; }
.section-subtitle {
  max-width: 640px;
  margin: 0 auto;
  color: var(--gray-text);
  font-size: 1.05rem;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 34px;
  border-radius: 50px;
  font-family: var(--font-outfit);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .5px;
  position: relative;
  overflow: hidden;
  transition: var(--trans);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--grad-gold);
  color: var(--navy-deep);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(201,162,39,.45); }
.btn-navy {
  background: var(--grad-navy);
  color: #fff;
  box-shadow: var(--shadow-md);
}
.btn-navy:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.4);
}
.btn-outline:hover { background: #fff; color: var(--navy); border-color: #fff; }
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline-gold:hover { background: var(--gold); color: var(--navy-deep); }
.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  box-shadow: 0 10px 30px rgba(37,211,102,.35);
}
.btn-whatsapp:hover { transform: translateY(-3px); }
.btn i { font-size: 1rem; }
.btn-ripple { position: relative; overflow: hidden; }
.btn-ripple .ripple-effect {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
  transform: scale(0);
  animation: ripple .6s linear;
  pointer-events: none;
}

/* ---------- PAGE LOADER ---------- */
.loader-overlay {
  position: fixed;
  inset: 0;
  background: var(--navy-deep);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
  transition: opacity .6s ease, visibility .6s ease;
}
.loader-overlay.hidden { opacity: 0; visibility: hidden; }
.loader {
  width: 70px;
  height: 70px;
  border: 4px solid rgba(201,162,39,.2);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
.loader-text {
  font-family: var(--font-outfit);
  color: var(--gold);
  letter-spacing: 4px;
  font-size: .85rem;
  font-weight: 600;
}

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10000;
  padding: 18px 0;
  transition: var(--trans);
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(10,31,68,.06);
}
.navbar.scrolled {
  padding: 12px 0;
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow-sm);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--navy);
  letter-spacing: .5px;
}
.nav-logo .logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--grad-navy);
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 1.3rem;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.nav-logo .logo-mark::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(201,162,39,.25) 100%);
}
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo-text small {
  font-size: .6rem;
  letter-spacing: 2.5px;
  color: var(--gold);
  font-weight: 600;
  font-family: var(--font-outfit);
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-link {
  position: relative;
  padding: 10px 16px;
  font-family: var(--font-outfit);
  font-weight: 500;
  font-size: .92rem;
  color: var(--navy);
  border-radius: 8px;
  transition: var(--trans);
}
.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--grad-gold);
  transition: width .35s ease;
}
.nav-link:hover::after, .nav-link.active::after { width: 22px; }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-outfit);
  font-weight: 600;
  color: var(--navy);
  font-size: .9rem;
}
.nav-phone i { color: var(--gold); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  height: 32px;
  justify-content: center;
  align-items: center;
  z-index: 10001;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--navy);
  border-radius: 3px;
  transition: var(--trans);
}
.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-deep);
  padding-top: 90px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1512453979798-5ea266f8880c?w=1920&q=80') center/cover no-repeat;
  transform: scale(1.05);
  animation: slowZoom 20s ease-in-out infinite alternate;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--grad-hero);
}
.hero-shapes { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .5;
  animation: floatShape 12s ease-in-out infinite;
}
.shape-1 { width: 380px; height: 380px; background: var(--gold); top: -80px; right: -60px; opacity: .18; }
.shape-2 { width: 300px; height: 300px; background: var(--navy-light); bottom: -60px; left: -40px; opacity: .4; animation-delay: -4s; }
.shape-3 { width: 200px; height: 200px; background: var(--gold-light); top: 40%; left: 45%; opacity: .12; animation-delay: -8s; }
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: rgba(201,162,39,.15);
  border: 1px solid rgba(201,162,39,.4);
  border-radius: 50px;
  color: var(--gold-light);
  font-family: var(--font-outfit);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 26px;
  backdrop-filter: blur(8px);
}
.hero-title {
  color: #fff;
  max-width: 820px;
  margin-bottom: 24px;
}
.hero-title .accent {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-subtitle {
  color: rgba(255,255,255,.82);
  font-size: 1.15rem;
  max-width: 620px;
  margin-bottom: 38px;
  font-family: var(--font-alt);
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 50px;
  margin-top: 60px;
  flex-wrap: wrap;
}
.hero-stat .num {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.hero-stat .label {
  color: rgba(255,255,255,.7);
  font-size: .85rem;
  margin-top: 6px;
  letter-spacing: .5px;
}
.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.6);
  font-size: .75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 3;
  animation: bounce 2s infinite;
}
.hero-scroll i { display: block; text-align: center; margin-top: 6px; }

/* ---------- GLASS CARD ---------- */
.glass-card {
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* ---------- ABOUT SECTION ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-image-wrap { position: relative; }
.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-image img { width: 100%; height: 520px; object-fit: cover; transition: transform .8s ease; }
.about-image-wrap:hover .about-image img { transform: scale(1.05); }
.about-badge {
  position: absolute;
  bottom: -28px;
  right: -28px;
  background: var(--grad-navy);
  color: #fff;
  padding: 28px 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.about-badge .num { font-family: var(--font-heading); font-size: 2.6rem; font-weight: 800; color: var(--gold); line-height: 1; }
.about-badge .label { font-size: .8rem; margin-top: 4px; letter-spacing: 1px; }
.about-content .section-eyebrow { padding-left: 0; }
.about-content .section-eyebrow::before { display: none; }
.about-content h2 { margin-bottom: 20px; }
.about-content p { margin-bottom: 16px; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 28px 0; }
.about-feature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.about-feature i {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 10px;
  background: rgba(201,162,39,.12);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-size: 1rem;
}
.about-feature span { font-weight: 600; color: var(--navy); font-size: .95rem; }

/* ---------- SERVICES SECTION ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(10,31,68,.05);
  transition: var(--trans);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--grad-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s ease;
}
.service-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-card); border-color: rgba(201,162,39,.2); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: var(--grad-navy);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-size: 1.8rem;
  margin-bottom: 24px;
  transition: var(--trans);
}
.service-card:hover .service-icon { background: var(--grad-gold); color: var(--navy-deep); transform: rotate(-8deg) scale(1.05); }
.service-card h3 { margin-bottom: 12px; }
.service-card p { font-size: .95rem; margin-bottom: 18px; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-weight: 600;
  font-size: .9rem;
  font-family: var(--font-outfit);
}
.service-link i { transition: transform .3s ease; }
.service-card:hover .service-link i { transform: translateX(5px); }

/* ---------- WHY CHOOSE US ---------- */
.why-section { background: var(--gray); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: var(--trans);
  border: 1px solid rgba(10,31,68,.05);
}
.why-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-card); }
.why-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: rgba(201,162,39,.1);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  transition: var(--trans);
}
.why-card:hover .why-icon { background: var(--grad-gold); color: var(--navy-deep); transform: scale(1.1); }
.why-card h4 { font-size: 1.05rem; margin-bottom: 8px; }
.why-card p { font-size: .88rem; }

/* ---------- PROCESS SECTION ---------- */
.process-section { background: var(--navy-deep); position: relative; overflow: hidden; }
.process-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1920&q=80') center/cover;
  opacity: .06;
}
.process-section .section-title, .process-section .section-subtitle { color: #fff; }
.process-section .section-subtitle { color: rgba(255,255,255,.7); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  position: relative;
}
.process-step {
  text-align: center;
  position: relative;
  padding: 30px 16px;
}
.process-step-num {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: rgba(201,162,39,.12);
  border: 2px solid var(--gold);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  position: relative;
  z-index: 2;
  transition: var(--trans);
}
.process-step:hover .process-step-num { background: var(--grad-gold); color: var(--navy-deep); transform: scale(1.1); }
.process-step h4 { color: #fff; margin-bottom: 8px; font-size: 1.1rem; }
.process-step p { color: rgba(255,255,255,.65); font-size: .88rem; }
.process-arrow {
  position: absolute;
  top: 62px;
  right: -18px;
  color: var(--gold);
  font-size: 1.2rem;
  z-index: 1;
}

/* ---------- STATS SECTION ---------- */
.stats-section {
  background: var(--grad-navy);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.stat-item .stat-number {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
}
.stat-item .stat-label {
  color: rgba(255,255,255,.8);
  font-size: 1rem;
  letter-spacing: .5px;
}
.stat-item .stat-icon {
  color: var(--gold);
  font-size: 1.5rem;
  margin-bottom: 14px;
  opacity: .8;
}

/* ---------- INDUSTRIES ---------- */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.industry-card {
  background: #fff;
  border: 1px solid rgba(10,31,68,.06);
  border-radius: var(--radius);
  padding: 28px 16px;
  text-align: center;
  transition: var(--trans);
}
.industry-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.industry-card i { font-size: 1.8rem; color: var(--gold); margin-bottom: 12px; }
.industry-card span { font-size: .85rem; font-weight: 600; color: var(--navy); }

/* ---------- TESTIMONIALS ---------- */
.testimonials-section { background: var(--gray); }
.testimonial-slider { position: relative; overflow: hidden; }
.testimonial-track {
  display: flex;
  transition: transform .6s cubic-bezier(.4,0,.2,1);
}
.testimonial-card {
  min-width: 100%;
  padding: 0 12px;
}
.testimonial-inner {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-card);
  position: relative;
  max-width: 820px;
  margin: 0 auto;
}
.testimonial-inner::before {
  content: '\201C';
  position: absolute;
  top: 10px;
  left: 30px;
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--gold);
  opacity: .2;
  line-height: 1;
}
.testimonial-stars { color: var(--gold); margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-text { font-size: 1.1rem; color: var(--dark-text); margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 16px; }
.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
}
.testimonial-name { font-weight: 700; color: var(--navy); }
.testimonial-role { font-size: .85rem; color: var(--gray-text); }
.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 36px;
}
.t-nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(10,31,68,.1);
  color: var(--navy);
  display: grid;
  place-items: center;
  transition: var(--trans);
}
.t-nav-btn:hover { background: var(--grad-gold); color: var(--navy-deep); border-color: var(--gold); }
.t-dots { display: flex; justify-content: center; gap: 8px; margin-top: 20px; }
.t-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(10,31,68,.15); transition: var(--trans); cursor: pointer; }
.t-dot.active { background: var(--gold); width: 30px; border-radius: 5px; }

/* ---------- FAQ ---------- */
.faq-section { background: var(--gray); }
.faq-search {
  max-width: 560px;
  margin: 0 auto 40px;
  position: relative;
}
.faq-search input {
  width: 100%;
  padding: 16px 24px 16px 54px;
  border: 2px solid rgba(10,31,68,.08);
  border-radius: 50px;
  font-size: .95rem;
  background: #fff;
  transition: var(--trans);
}
.faq-search input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 4px rgba(201,162,39,.1); }
.faq-search i {
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
}
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: #fff;
  border-radius: var(--radius);
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(10,31,68,.05);
  transition: var(--trans);
}
.faq-item.active { box-shadow: var(--shadow-md); border-color: rgba(201,162,39,.3); }
.faq-question {
  width: 100%;
  padding: 22px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--navy);
  transition: var(--trans);
}
.faq-question:hover { color: var(--gold); }
.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(201,162,39,.1);
  color: var(--gold);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: var(--trans);
}
.faq-item.active .faq-icon { background: var(--grad-gold); color: var(--navy-deep); transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .4s ease;
}
.faq-answer-inner { padding: 0 28px 22px; color: var(--gray-text); }
.faq-item.active .faq-answer { max-height: 400px; }

/* ---------- CONTACT CTA ---------- */
.cta-section {
  background: var(--grad-navy);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}
.cta-section::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: var(--gold);
  border-radius: 50%;
  filter: blur(120px);
  opacity: .15;
  top: -100px;
  right: -100px;
}
.cta-content { text-align: center; position: relative; z-index: 2; }
.cta-content h2 { color: #fff; margin-bottom: 16px; }
.cta-content p { color: rgba(255,255,255,.8); margin-bottom: 32px; font-size: 1.1rem; }

/* ---------- GALLERY ---------- */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.gallery-filter {
  padding: 10px 24px;
  border-radius: 50px;
  background: #fff;
  border: 1px solid rgba(10,31,68,.1);
  color: var(--navy);
  font-weight: 600;
  font-size: .88rem;
  font-family: var(--font-outfit);
  transition: var(--trans);
}
.gallery-filter.active, .gallery-filter:hover { background: var(--grad-gold); color: var(--navy-deep); border-color: var(--gold); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,21,51,.85), transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: var(--trans);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay h4 { color: #fff; margin-bottom: 4px; }
.gallery-overlay span { color: var(--gold); font-size: .85rem; }
.gallery-zoom {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  backdrop-filter: blur(8px);
  color: #fff;
  display: grid;
  place-items: center;
  opacity: 0;
  transition: var(--trans);
}
.gallery-item:hover .gallery-zoom { opacity: 1; }
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(6,21,51,.95);
  z-index: 99998;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox.active { display: flex; animation: fadeIn .3s ease; }
.lightbox img { max-width: 90%; max-height: 85vh; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  transition: var(--trans);
}
.lightbox-close:hover { background: var(--gold); color: var(--navy-deep); }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  transition: var(--trans);
}
.lightbox-nav:hover { background: var(--gold); color: var(--navy-deep); }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

/* ---------- BLOG ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(10,31,68,.05);
  transition: var(--trans);
}
.blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-card); }
.blog-image { position: relative; overflow: hidden; aspect-ratio: 16/10; }
.blog-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.blog-card:hover .blog-image img { transform: scale(1.08); }
.blog-category {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--grad-gold);
  color: var(--navy-deep);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 600;
  font-family: var(--font-outfit);
}
.blog-content { padding: 28px; }
.blog-meta { display: flex; gap: 16px; font-size: .82rem; color: var(--gray-text); margin-bottom: 12px; }
.blog-meta i { color: var(--gold); margin-right: 4px; }
.blog-content h3 { font-size: 1.2rem; margin-bottom: 10px; line-height: 1.4; }
.blog-content p { font-size: .92rem; margin-bottom: 16px; }
.blog-link { color: var(--gold); font-weight: 600; font-size: .9rem; }

/* ---------- CONTACT PAGE ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: start;
}
.contact-info-cards { display: flex; flex-direction: column; gap: 20px; }
.contact-info-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: #fff;
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid rgba(10,31,68,.06);
  transition: var(--trans);
}
.contact-info-card:hover { box-shadow: var(--shadow-md); transform: translateX(6px); border-color: var(--gold); }
.contact-info-icon {
  width: 54px;
  height: 54px;
  min-width: 54px;
  border-radius: 14px;
  background: var(--grad-navy);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-size: 1.3rem;
}
.contact-info-card h4 { font-size: 1rem; margin-bottom: 4px; }
.contact-info-card p { font-size: .9rem; margin: 0; }
.contact-form-wrap {
  background: #fff;
  padding: 44px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: .88rem;
  color: var(--navy);
  margin-bottom: 8px;
  font-family: var(--font-outfit);
}
.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid rgba(10,31,68,.08);
  border-radius: var(--radius-sm);
  font-size: .95rem;
  color: var(--navy);
  background: var(--gray);
  transition: var(--trans);
}
.form-control:focus { outline: none; border-color: var(--gold); background: #fff; box-shadow: 0 0 0 4px rgba(201,162,39,.08); }
textarea.form-control { resize: vertical; min-height: 130px; }
.form-error { color: #e74c3c; font-size: .8rem; margin-top: 4px; display: none; }
.form-success {
  display: none;
  background: rgba(37,211,102,.1);
  border: 1px solid rgba(37,211,102,.3);
  color: #128C7E;
  padding: 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  text-align: center;
  font-weight: 600;
}
.form-success.show { display: block; animation: fadeIn .4s ease; }
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-top: 40px;
  height: 420px;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* ---------- 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: 3px;
  background: var(--grad-gold);
}
.timeline-item {
  position: relative;
  width: 50%;
  padding: 20px 40px;
}
.timeline-item:nth-child(odd) { left: 0; text-align: right; }
.timeline-item:nth-child(even) { left: 50%; }
.timeline-dot {
  position: absolute;
  top: 30px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--grad-gold);
  border: 4px solid #fff;
  box-shadow: 0 0 0 3px var(--gold);
  z-index: 2;
}
.timeline-item:nth-child(odd) .timeline-dot { right: -10px; }
.timeline-item:nth-child(even) .timeline-dot { left: -10px; }
.timeline-content {
  background: #fff;
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(10,31,68,.05);
}
.timeline-year {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 6px;
}
.timeline-content h4 { margin-bottom: 6px; }
.timeline-content p { font-size: .9rem; }

/* ---------- VALUES / MISSION ---------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.value-card {
  background: #fff;
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  text-align: center;
  border: 1px solid rgba(10,31,68,.05);
  transition: var(--trans);
}
.value-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-card); }
.value-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: rgba(201,162,39,.1);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-size: 1.8rem;
}
.value-card h3 { margin-bottom: 10px; }

/* ---------- SERVICE DETAIL PAGES ---------- */
.page-hero {
  position: relative;
  padding: 160px 0 90px;
  background: var(--grad-navy);
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: var(--gold);
  border-radius: 50%;
  filter: blur(100px);
  opacity: .15;
  top: -100px;
  right: -50px;
}
.page-hero-content { position: relative; z-index: 2; text-align: center; }
.page-hero-content h1 { color: #fff; margin-bottom: 16px; }
.breadcrumb { display: flex; justify-content: center; gap: 8px; color: rgba(255,255,255,.7); font-size: .9rem; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .current { color: var(--gold); }
.service-detail-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 50px;
  align-items: center;
}
.service-detail-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.service-detail-image img { width: 100%; height: 480px; object-fit: cover; }
.service-detail-list { display: grid; gap: 16px; margin-top: 24px; }
.service-detail-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.service-detail-list i { color: var(--gold); margin-top: 4px; }
.sidebar-card {
  background: var(--grad-navy);
  color: #fff;
  padding: 36px;
  border-radius: var(--radius-lg);
}
.sidebar-card h3 { color: #fff; margin-bottom: 20px; }
.sidebar-card ul { display: grid; gap: 14px; }
.sidebar-card li { display: flex; gap: 10px; align-items: center; color: rgba(255,255,255,.85); }
.sidebar-card i { color: var(--gold); }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,.7);
  padding: 80px 0 0;
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
}
.footer-col h4 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--grad-gold);
  border-radius: 3px;
}
.footer-about p { color: rgba(255,255,255,.6); font-size: .92rem; margin-bottom: 18px; }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.footer-logo .logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--grad-gold);
  color: var(--navy-deep);
  display: grid;
  place-items: center;
  font-size: 1.3rem;
}
.footer-logo-text { font-family: var(--font-heading); font-weight: 800; color: #fff; font-size: 1.2rem; }
.footer-links { display: grid; gap: 12px; }
.footer-links a { color: rgba(255,255,255,.6); font-size: .92rem; display: flex; align-items: center; gap: 8px; }
.footer-links a i { color: var(--gold); font-size: .7rem; }
.footer-links a:hover { color: var(--gold); padding-left: 5px; }
.footer-contact-item { display: flex; gap: 12px; margin-bottom: 14px; font-size: .92rem; }
.footer-contact-item i { color: var(--gold); margin-top: 4px; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: grid;
  place-items: center;
  color: #fff;
  transition: var(--trans);
}
.footer-social a:hover { background: var(--grad-gold); color: var(--navy-deep); transform: translateY(-3px); }
.footer-newsletter { margin-top: 18px; }
.footer-newsletter form { display: flex; gap: 8px; }
.footer-newsletter input {
  flex: 1;
  padding: 12px 16px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.06);
  color: #fff;
  font-size: .88rem;
}
.footer-newsletter input::placeholder { color: rgba(255,255,255,.4); }
.footer-newsletter input:focus { outline: none; border-color: var(--gold); }
.footer-newsletter button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--grad-gold);
  color: var(--navy-deep);
  display: grid;
  place-items: center;
  transition: var(--trans);
}
.footer-newsletter button:hover { transform: scale(1.08); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 24px 0;
  text-align: center;
  font-size: .88rem;
}
.footer-bottom-links { display: flex; justify-content: center; gap: 24px; margin-top: 8px; }
.footer-bottom-links a:hover { color: var(--gold); }

/* ---------- FLOATING BUTTONS ---------- */
.float-buttons {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9990;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.4rem;
  box-shadow: var(--shadow-lg);
  transition: var(--trans);
  position: relative;
}
.float-btn:hover { transform: scale(1.1) translateY(-3px); }
.float-btn .tooltip {
  position: absolute;
  right: 70px;
  background: var(--navy);
  color: #fff;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: .82rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: var(--trans);
  font-family: var(--font-outfit);
  font-weight: 500;
}
.float-btn:hover .tooltip { opacity: 1; visibility: visible; right: 76px; }
.float-whatsapp { background: linear-gradient(135deg, #25D366, #128C7E); }
.float-call { background: var(--grad-gold); color: var(--navy-deep); }
.float-top {
  background: var(--grad-navy);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}
.float-top.show { opacity: 1; visibility: visible; transform: translateY(0); }

/* ---------- PAGE HEADER (inner pages generic) ---------- */
.page-header {
  background: var(--grad-navy);
  padding: 140px 0 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 60px;
  background: #fff;
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-header h1 { color: #fff; margin-bottom: 12px; }
.page-header p { color: rgba(255,255,255,.75); max-width: 600px; margin: 0 auto; }

/* ---------- MISC ---------- */
.bg-gray { background: var(--gray); }
.bg-navy { background: var(--navy-deep); }
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.divider {
  width: 70px;
  height: 4px;
  background: var(--grad-gold);
  border-radius: 4px;
  margin: 0 auto 24px;
}
.scroll-reveal { opacity: 0; transform: translateY(40px); transition: opacity .8s ease, transform .8s ease; }
.scroll-reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-left.revealed, .reveal-right.revealed { transform: translateX(0); }
