*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --dark: #1a0a0a;
  --dark-brown: #2a1210;
  --red: #c41e1e;
  --red-hover: #e02525;
  --cream: #f5f0eb;
  --light-gray: #f0ece8;
  --white: #ffffff;
  --text-dark: #1a1a1a;
  --text-muted: #6b6b6b;
  --border: #e0d8d0;
  --font-main: 'Inter', sans-serif;
  --font-display: 'Playfair Display', serif;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --dur-fast: 160ms;
  --dur-base: 220ms;
  --transition-smooth:
    transform var(--dur-base) var(--ease-out),
    opacity var(--dur-base) var(--ease-out),
    background-color var(--dur-base) var(--ease-out),
    color var(--dur-base) var(--ease-out),
    border-color var(--dur-base) var(--ease-out),
    box-shadow var(--dur-base) var(--ease-out);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--cream);
  overflow-x: hidden;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

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

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ===== HEADER ===== */
.header {
  position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-sizing: border-box;
  z-index: 1000;
  background: var(--cream);
  padding: 0 40px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header.scrolled {
  background: rgba(245, 240, 235, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: transform 0.3s ease;
}

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

.header-logo img {
  height: 60px;
  width: auto;
}

.header-logo span {
  color: var(--text-dark);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.5px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header-nav a {
  color: var(--text-dark);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition-smooth);
  position: relative;
}

.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.3s ease;
}

.header-nav a:hover {
  color: var(--red);
}

.header-nav a:hover::after {
  width: 100%;
}

/* ===== SERVICES DROPDOWN ===== */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
}

.dropdown-arrow {
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  margin-top: -3px;
}

.dropdown-menu {
  display: flex;
  flex-direction: column;
}

@media (min-width: 769px) {
  .dropdown:hover .dropdown-arrow {
    transform: rotate(-135deg);
    margin-top: 2px;
  }

  .dropdown .dropdown-menu {
    position: absolute;
    top: calc(100% + 16px);
    left: 50%;
    min-width: 236px;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 22px 50px rgba(26,10,10,0.16), 0 6px 16px rgba(26,10,10,0.08);
    border-top: 3px solid var(--red);
    opacity: 0;
    visibility: hidden;
    transform-origin: top center;
    transform: translate(-50%, -6px) scale(0.96);
    transition:
      opacity var(--dur-base) var(--ease-out),
      transform var(--dur-base) var(--ease-out),
      visibility 0s linear var(--dur-base);
    z-index: 1001;
  }

  .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0) scale(1);
    transition:
      opacity var(--dur-base) var(--ease-out),
      transform var(--dur-base) var(--ease-out),
      visibility 0s linear 0s;
  }

  .dropdown-menu a {
    padding: 13px 22px;
    font-size: 13px;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border);
  }

  .dropdown-menu a::after {
    content: none;
  }

  .dropdown-menu a:last-child {
    border-bottom: none;
  }

  .dropdown-menu a:hover {
    background: var(--cream);
    color: var(--red);
    transform: translateX(4px);
  }
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-phone {
  color: var(--text-muted);
  font-size: 13px;
  text-decoration: none;
  transition: var(--transition-smooth);
}

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

.header-cta {
  background: var(--red);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: var(--transition-smooth);
  border: 2px solid var(--red);
}

.header-cta:hover {
  background: transparent;
  color: var(--red);
  transform: translateY(-2px);
}

.mobile-cta {
  display: none;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  transition: var(--transition-smooth);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 60px;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10,5,5,0.75) 0%, rgba(10,5,5,0.4) 50%, rgba(10,5,5,0.6) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 40px;
}

.hero-breadcrumb {
  font-size: 11px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 5px;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeInUp 420ms var(--ease-out) forwards 0s;
}

.hero-title {
  font-family: var(--font-main);
  font-size: 56px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeInUp 420ms var(--ease-out) forwards 60ms;
}

.hero-subtitle {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  animation: fadeInUp 420ms var(--ease-out) forwards 120ms;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 420ms var(--ease-out) forwards 180ms;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  padding: 14px 32px;
  border: 2px solid var(--red);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: inline-block;
  position: relative;
  overflow: hidden;
}

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

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

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(196,30,30,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 14px 32px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: inline-block;
}

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

.hero-tags {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeInUp 420ms var(--ease-out) forwards 180ms;
}

.hero-tag {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  padding: 8px 18px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  backdrop-filter: blur(10px);
  transition: var(--transition-smooth);
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.1);
}

.hero-tag:hover {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-3px);
}

/* Logo Carousel */
.logo-carousel-section {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  background: rgba(255,255,255,0.95);
  padding: 20px 0;
  overflow: hidden;
  opacity: 0;
  animation: fadeIn 420ms var(--ease-out) forwards 240ms;
}

.logo-carousel-label {
  text-align: center;
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.logo-carousel-track {
  display: flex;
  animation: scrollLogos 30s linear infinite;
  width: max-content;
}

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

.logo-carousel-item {
  flex-shrink: 0;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 20px;
  transition: transform 0.3s ease;
}

.logo-carousel-item:hover {
  transform: scale(1.15);
}

.logo-carousel-item img {
  height: 40px;
  width: auto;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.logo-carousel-item:hover img {
  opacity: 1;
}

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

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--dark);
  padding: 40px 40px;
  display: flex;
  justify-content: center;
  gap: 100px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 420ms var(--ease-out), transform 420ms var(--ease-out);
}

.stat-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.stat-number {
  font-size: 48px;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  display: inline-block;
}

.stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 8px;
}

/* ===== THREE CARDS SECTION ===== */
.three-cards {
  background: var(--cream);
  padding: 100px 40px;
}

.three-cards-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Services Card */
.card-services {
  background: var(--white);
  border-radius: 8px;
  padding: 36px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.04);
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
  opacity: 0;
  transform: translateY(40px);
}

.card-services.visible {
  opacity: 1;
  transform: translateY(0);
}

.card-services:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.card-label {
  font-size: 11px;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 8px;
}

.card-title {
  font-family: var(--font-main);
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.service-list {
  list-style: none;
}

.service-list li {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-decoration: none;
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 500;
}

.service-list li:last-child {
  border-bottom: none;
}

.service-list li:hover {
  color: var(--red);
  padding-left: 12px;
}

.service-list li .arrow {
  color: var(--red);
  font-size: 18px;
  transition: transform 0.3s ease;
}

.service-list li:hover .arrow {
  transform: translateX(6px);
}

.service-link{
  display:flex;
  justify-content:space-between;
  align-items:center;
  width:100%;
  text-decoration:none;
  color:inherit;
}

.service-content{
  display:flex;
  align-items:center;
  gap:14px;
}

.service-icon{
  color: var(--red);
  font-size: 22px;
  width: 28px;
  text-align:center;
}

.service-list li:hover .service-icon{
  transform: scale(1.1);
  transition: .3s ease;
}
/* Why Us Card */
.card-whyus {
  background: var(--dark);
  border-radius: 8px;
  padding: 36px;
  color: var(--white);
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
  opacity: 0;
  transform: translateY(40px);
}

.card-whyus.visible {
  opacity: 1;
  transform: translateY(0);
}

.card-whyus:hover {
  transform: translateY(-8px);
}

.card-whyus .card-label {
  color: var(--red);
}

.card-whyus .card-title {
  color: var(--white);
  margin-bottom: 20px;
}

.whyus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.whyus-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 16px;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.whyus-item:hover {
  background: rgba(196,30,30,0.2);
  border-color: var(--red);
  transform: translateY(-3px);
}

.whyus-item.highlight {
  background: var(--red);
  border-color: var(--red);
}

.whyus-item.highlight:hover {
  background: var(--red-hover);
  transform: translateY(-3px) scale(1.02);
}

.whyus-item-number {
  font-size: 10px;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 6px;
}

.whyus-item.highlight .whyus-item-number {
  color: rgba(255,255,255,0.8);
}

.whyus-item-text {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
}

.whyus-item.full-width {
  grid-column: 1 / -1;
}

/* Track Record Card */
.card-track {
  background: var(--white);
  border-radius: 8px;
  padding: 36px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.04);
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
  opacity: 0;
  transform: translateY(40px);
}

.card-track.visible {
  opacity: 1;
  transform: translateY(0);
}

.card-track:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.project-list {
  list-style: none;
}

.project-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-decoration: none;
  color: var(--text-dark);
  font-size: 14px;
}

.project-list li:last-child {
  border-bottom: none;
}

.project-list li:hover {
  color: var(--red);
  padding-left: 8px;
}

.project-number {
  background: var(--red);
  color: var(--white);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.project-list li:hover .project-number {
  transform: scale(1.1);
}

.more-projects {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  color: var(--red);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition-smooth);
  cursor: pointer;
  padding: 8px 0;
}

.more-projects:hover {
  gap: 16px;
  color: var(--red-hover);
}

/* ===== ABOUT SECTION ===== */
.about-section {
  padding: 100px 40px;
  background: var(--white);
}

.about-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-left {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 420ms var(--ease-out), transform 420ms var(--ease-out);
}

.about-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.about-left .card-label {
  margin-bottom: 8px;
}

.about-title {
  font-family: var(--font-main);
  font-size: 36px;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 24px;
}

.about-principle {
  background: var(--dark);
  border-radius: 8px;
  padding: 32px;
  color: var(--white);
  margin-top: 32px;
  transition: transform 0.3s ease;
}

.about-principle:hover {
  transform: translateY(-4px);
}

.about-principle-label {
  font-size: 10px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.about-principle-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.about-principle-text {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

.about-right {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 420ms var(--ease-out) 60ms, transform 420ms var(--ease-out) 60ms;
}

.about-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.about-right p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

/* ===== TRUSTED BY ===== */
.trusted-section {
  padding: 100px 40px;
  background: var(--light-gray);
}

.trusted-header {
  max-width: 1200px;
  margin: 0 auto 50px;
  text-align: center;
}

.trusted-header .card-label {
  margin-bottom: 8px;
}

.trusted-title {
  font-family: var(--font-main);
  font-size: 36px;
  font-weight: 800;
  color: var(--text-dark);
}

.trusted-logos {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.trusted-logo-item {
  background: var(--white);
  border-radius: 8px;
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90px;
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  opacity: 0;
  transform: scale(0.9);
}

.trusted-logo-item.visible {
  opacity: 1;
  transform: scale(1);
}

.trusted-logo-item:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.trusted-logo-item img {
  max-height: 40px;
  max-width: 100%;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.trusted-logo-item:hover img {
  opacity: 1;
}

/* ===== CERTIFICATIONS ===== */
.cert-section {
  background: var(--dark);
  padding: 100px 40px;
  color: var(--white);
}

.cert-content {
  max-width: 1200px;
  margin: 0 auto;
}

.cert-content .card-label {
  margin-bottom: 8px;
}

.cert-title {
  font-family: var(--font-main);
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.3;
}

.cert-subtitle {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 48px;
  max-width: 600px;
}

.cert-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.cert-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 32px;
  border-left: 4px solid var(--red);
  /* The hover thickens the left accent. An inset shadow does that on the
     compositor; animating border-left-width would trigger layout. */
  box-shadow: inset 2px 0 0 0 transparent;
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out),
              background-color var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out);
  opacity: 0;
  transform: translateY(30px);
}

.cert-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.cert-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-6px);
  box-shadow: inset 2px 0 0 0 var(--red);
}

.cert-card-label {
  font-size: 10px;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 12px;
}

.cert-card-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.cert-card-text {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

/* ===============================
   COMPLIANCE SHOWCASE
================================ */

.compliance-showcase{
    background:var(--dark);
    padding:100px 20px;
    overflow:hidden;
}

.compliance-container{
    max-width:1200px;
    margin:auto;
}

.compliance-header{
    text-align:center;
    margin-bottom:50px;
}

.compliance-tag{
    display:inline-block;
    letter-spacing:3px;
    font-size:12px;
    font-weight:600;
    margin-bottom:15px;
}

.compliance-header h2{
    font-size:40px;
    font-weight:600;
    line-height:1.1;
    color:var(--white);
}


.compliance-card img {
  width: 100%;
  opacity: 60%;
}

.compliance-card{
    position:relative;
    background:rgba(255,255,255,0.05);
    border-radius:20px;
    padding:20px 15px;
    min-height:150px;
    overflow:hidden;
    transition:.45s ease;
    animation:cardFade 420ms var(--ease-out) forwards;
}

.compliance-card::before{
    content:'';
    position:absolute;
    left:0;
    top:0;
    width:0;
    height:4px;
    background:var(--red-hover);
    transition:.45s ease;
}

.compliance-card:hover::before{
    width:100%;
}

.compliance-card:hover{
    background: rgba(255,255,255,0.08);
    transform:translateY(-10px);
    border-color:var(--red);
}

.card-number{
    position:absolute;
    top:20px;
    right:20px;
    font-size:12px;
    color:var(--white);
    font-weight:500;
}

.icon-box{
    width:56px;
    height:56px;
    border-radius:16px;
    background:var(--red);
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:25px;
    transition:.4s;
}

.icon-box i{
    color:var(--white);
    font-size:22px;
}

.compliance-card:hover .icon-box{
    transform:rotate(-8deg) scale(1.08);
}

.compliance-card h3{
    font-size:20px;
    font-weight:800;
    color:var(--white);
    margin-bottom:8px;
}

.compliance-card p{
    color:var(--white);
    font-size:15px;
}


/* Entrance Animation */

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

/* Tablet */

@media(max-width:991px){

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

    .compliance-header h2{
        font-size:42px;
    }
}

/* Mobile */

@media(max-width:768px){

    .compliance-showcase{
        padding:70px 15px;
    }

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

    .compliance-header h2{
        font-size:32px;
    }

    .compliance-card{
        min-height:auto;
    }
}
/* ===== LEADERSHIP ===== */
.leadership-section {
  padding: 100px 40px;
  background: var(--cream);
}

.leadership-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.leadership-left {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 420ms var(--ease-out), transform 420ms var(--ease-out);
}

.leadership-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.leadership-left .card-label {
  margin-bottom: 8px;
}

.leadership-title {
  font-family: var(--font-main);
  font-size: 36px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 32px;
}

.leadership-photo {
  width: 100%;
  max-width: 450px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
  transition: transform 0.4s ease;
}

.leadership-photo:hover {
  transform: translateY(-8px);
}

.leadership-photo img {
  width: 100%;
  height: auto;
  display: block;
}

.leadership-photo::after {
  content: '';
  position: absolute;
  bottom: -15px;
  right: -15px;
  width: 80px;
  height: 80px;
  background: var(--red);
  border-radius: 8px;
  z-index: -1;
  transition: var(--transition-smooth);
}

.leadership-photo:hover::after {
  transform: scale(1.1);
}

.leadership-name {
  font-size: 28px;
  font-weight: 800;
  margin-top: 32px;
  color: var(--text-dark);
}

.leadership-role {
  font-size: 13px;
  color: var(--red);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 6px;
}

.leadership-right {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 420ms var(--ease-out) 60ms, transform 420ms var(--ease-out) 60ms;
}

.leadership-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.leadership-right .section-sublabel {
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
}

.timeline {
  margin-bottom: 40px;
}

.timeline-item {
  display: flex;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  transition: var(--transition-smooth);
}

.timeline-item:hover {
  padding-left: 8px;
}

.timeline-year {
  font-size: 13px;
  font-weight: 700;
  color: var(--red);
  min-width: 60px;
  flex-shrink: 0;
}

.timeline-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.leadership-bio {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 32px;
}

.how-works-label {
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.how-works-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

.language-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.lang-tag {
  padding: 8px 18px;
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-dark);
  transition: var(--transition-smooth);
  cursor: pointer;
}

.lang-tag:hover {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  transform: translateY(-2px);
}

/* ===== COVERAGE ===== */
.coverage-section {
  background: var(--dark);
  padding: 100px 40px;
  color: var(--white);
}

.coverage-content {
  max-width: 1200px;
  margin: 0 auto;
}

.coverage-content .card-label {
  margin-bottom: 8px;
}

.coverage-title {
  font-family: var(--font-main);
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 20px;
}

.coverage-text {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  max-width: 700px;
  margin-bottom: 40px;
}

.coverage-label {
  font-size: 10px;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.coverage-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.coverage-tag {
  padding: 10px 20px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  transition: var(--transition-smooth);
  cursor: pointer;
}

.coverage-tag:hover {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-3px);
}

/* ===== FAQ ===== */
.faq-section {
  padding: 100px 40px;
  background: var(--light-gray);
}

.faq-content {
  max-width: 800px;
  margin: 0 auto;
}

.faq-content .card-label {
  text-align: center;
  margin-bottom: 8px;
}

.faq-title {
  font-family: var(--font-main);
  font-size: 36px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 50px;
  color: var(--text-dark);
}

.faq-item {
  background: var(--white);
  border-radius: 8px;
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
  opacity: 0;
  transform: translateY(20px);
}

.faq-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.faq-item:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.faq-question {
  padding: 24px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
  transition: var(--transition-smooth);
  user-select: none;
}

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

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--text-muted);
  transition: var(--transition-smooth);
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  opacity: 0;
  transition:
    grid-template-rows var(--dur-base) var(--ease-out),
    opacity 200ms var(--ease-out);
}

.faq-answer > * { min-height: 0; }

.faq-item.active .faq-answer {
  grid-template-rows: 1fr;
  opacity: 1;
}

.faq-item.active .faq-answer-inner {
  padding-bottom: 24px;
}

.faq-answer-inner {
  /* No vertical padding at rest: padding on the grid child would keep
     the collapsed 0fr row propped open. It returns when .active. */
  padding: 0 28px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}


/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--dark);
  padding: 100px 40px;
}

.cta-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}

.cta-left {
  background: linear-gradient(135deg, var(--red) 0%, #8b1515 100%);
  border-radius: 12px;
  padding: 56px;
  color: var(--white);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 420ms var(--ease-out), transform 420ms var(--ease-out);
}

.cta-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.cta-left:hover {
  transform: translateY(-6px);
}

.cta-title {
  font-family: var(--font-main);
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.cta-text {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.cta-btn-white {
  background: var(--white);
  color: var(--red);
  padding: 14px 32px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition-smooth);
  display: inline-block;
}

.cta-btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.cta-phone {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.cta-phone:hover {
  color: var(--white);
}

.cta-right {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 420ms var(--ease-out) 60ms, transform 420ms var(--ease-out) 60ms;
}

.cta-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.cta-right .cta-step-label {
  font-size: 10px;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 32px;
}

.cta-step {
  display: flex;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: var(--transition-smooth);
}

.cta-step:hover {
  padding-left: 12px;
}

.cta-step-number {
  font-size: 16px;
  font-weight: 700;
  color: var(--red);
  min-width: 32px;
  height: 32px;
  background: rgba(196,30,30,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-step-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}

.cta-step-text {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

/* ===== FOOTER ===== */
.footer {
  background: #0d0505;
  padding: 70px 40px 30px;
  color: var(--white);
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 50px;
}

.footer-logo img {
  height: 80px;
  margin-bottom: 20px;
}

.footer-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer-cr {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

.footer-heading {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
  font-weight: 600;
}

.footer-links {
  list-style: none;
}

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

.footer-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition-smooth);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--white);
  transform: translateX(4px);
}

.footer-contact-item {
  margin-bottom: 20px;
}

.footer-contact-label {
  font-size: 10px;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.footer-contact-value {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}

.footer-contact-value a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact-value a:hover {
  color: var(--white);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom-text {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

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

.footer-bottom-links span,
.footer-bottom-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .three-cards-grid {
    grid-template-columns: 1fr;
  }
  
  .about-grid,
  .leadership-grid,
  .cta-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .cert-grid {
    grid-template-columns: 1fr;
  }
  
  .trusted-logos {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  .hero-title {
    font-size: 42px;
  }
}

@media (max-width: 768px) {
  .header {
    width: 100%;
    padding: 0 16px;
  }
  
  .header-nav {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    max-width: 100%;
    background: var(--cream);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    border-top: 1px solid var(--border);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  }
  
  .header-nav.active {
    display: flex;
  }
  
  .header-nav a {
    color: var(--text-dark);
  }
  
  .header-nav a:hover {
    color: var(--red);
  }

  .dropdown {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .dropdown-toggle {
    justify-content: space-between;
    width: 100%;
  }

  .dropdown.open .dropdown-arrow {
    transform: rotate(-135deg);
    margin-top: 2px;
  }

  .dropdown .dropdown-menu {
    max-height: 0;
    overflow: hidden;
    padding-left: 16px;
    border-left: 2px solid var(--border);
    margin-top: 0;
    transition: max-height 0.4s ease, margin-top 0.4s ease;
  }

  .dropdown.open .dropdown-menu {
    max-height: 320px;
    margin-top: 12px;
  }

  .dropdown-menu a {
    padding: 10px 0;
    font-size: 13px;
    color: var(--text-muted);
  }

  .dropdown-menu a::after {
    content: none;
  }

  .dropdown-menu a:hover {
    color: var(--red);
    padding-left: 6px;
  }
  
  .header-phone {
    display: none;
  }
  
  .header-cta {
    display: none;
  }

  /* Selector must out-specify `.header-nav a { color: var(--text-dark) }`
     above, which otherwise wins and paints near-black text on the red
     button (2.94:1 — below the 4.5:1 minimum). */
  .header-nav a.mobile-cta {
    display: inline-block;
    background: var(--red);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    margin-top: 4px;
    border: 2px solid var(--red);
  }

  .mobile-cta:hover {
    background: transparent;
    color: var(--red);
  }
  
  .mobile-toggle {
    display: flex;
  }
  
  .hero {
    min-height: 600px;
  }
  
  .hero-title {
    font-size: 32px;
  }
  
  .hero-subtitle {
    font-size: 15px;
  }
  
  .hero-content {
    padding: 0 20px;
  }
  
  .stats-bar {
    gap: 50px;
    padding: 32px 20px;
  }
  
  .stat-number {
    font-size: 36px;
  }
  
  .three-cards,
  .about-section,
  .trusted-section,
  .cert-section,
  .leadership-section,
  .coverage-section,
  .faq-section,
  .cta-section {
    padding: 80px 20px;
  }
  
  .about-title,
  .trusted-title,
  .faq-title,
  .leadership-title {
    font-size: 28px;
  }
  
  .cert-title,
  .coverage-title {
    font-size: 26px;
  }
  
  .trusted-logos {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer {
    padding: 50px 20px 24px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .cta-left {
    padding: 40px 28px;
  }
  
  .cta-title {
    font-size: 26px;
  }
  
  .whyus-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .header-logo img {
    height: 52px;
  }

  .hero-title {
    font-size: 26px;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-primary,
  .btn-outline {
    width: 100%;
    max-width: 280px;
  }
  
  .hero-tags {
    gap: 8px;
  }
  
  .hero-tag {
    font-size: 10px;
    padding: 6px 14px;
  }
  
  .stats-bar {
    gap: 32px;
  }
  
  .stat-number {
    font-size: 28px;
  }
  
  .trusted-logos {
    grid-template-columns: 1fr 1fr;
  }
  
  .coverage-tags {
    gap: 8px;
  }
  
  .coverage-tag {
    font-size: 11px;
    padding: 8px 16px;
  }
  
  .language-tags {
    gap: 8px;
  }
  
  .lang-tag {
    font-size: 10px;
    padding: 6px 14px;
  }
}
/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 100px;
  right: 36px;
  width: 44px;
  height: 44px;
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out);
  z-index: 998;
  box-shadow: 0 4px 15px rgba(196,30,30,0.4);
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--red-hover); transform: translateY(-3px); }
@media (max-width: 768px) {
  .scroll-top { bottom: 100px; right: 24px; width: 40px; height: 40px; }
}
/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition-smooth);
  animation: whatsappPulse 2s infinite;
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #25D366;
  z-index: -1;
}

.whatsapp-float:hover {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
  animation-play-state: paused;
}

.whatsapp-float:hover::before {
  animation-play-state: paused;
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: white;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover svg {
  transform: scale(1.1);
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: var(--dark);
  color: var(--white);
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out);
  pointer-events: none;
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid var(--dark);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

@keyframes whatsappPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@keyframes whatsappRipple {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 55px;
    height: 55px;
    bottom: 20px;
    right: 20px;
  }
  
  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
  
  .whatsapp-tooltip {
    display: none;
  }
}

@media (max-width: 480px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 16px;
    right: 16px;
  }
  
  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }
}
