*, *::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: #ede8e3;
  --white: #ffffff;
  --text-dark: #1a1a1a;
  --text-muted: #6b6b6b;
  --border: #e0d8d0;
  --font-display: 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  --dark-bg: #0f0808;
  --dark-bg-2: #1a0e0e;
  --dark-red: #2a0f0f;
  --red-accent: #c62828;
  --red-hover: #e53935;
  --light-beige: #e8e0d8;
  --light-bg: #f7f3ef;
  --white: #ffffff;
  --text-light: #f0e8e0;
  --text-muted: #706152;
  --text-dark: #1a1a1a;
  --border-color: #3a2020;
  --card-bg: #1e1010;
  --font: 'Inter', sans-serif;
  --whatsapp-green: #25D366;
  --whatsapp-hover: #20BD5A;
  --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: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== HEADER ===== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--white); padding: 0 40px; height: 60px;
  display: flex; align-items: center; justify-content: space-between;
  transition: var(--transition-smooth);
}
.header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.1); height: 56px; }
.header-logo { display: flex; align-items: center; gap: 8px; transition: var(--transition-smooth); }
.header-logo:hover { transform: scale(1.05); }
.header-logo img { height: 60px; width: auto; }
.header-nav { 
  display: flex; 
  align-items: center; 
  gap: 28px; 
}
.header-nav a { 
  font-size: 13px; 
  font-weight: 500; 
  color: #333; 
  position: relative; 
  padding: 4px 0; 
  text-decoration: none;
}

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

/* Dropdown Menu */
.dropdown { position: relative; }
.dropdown-menu {
  position: absolute; top: 100%; left: 0;
  background: var(--white); min-width: 220px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  border-top: 3px solid var(--red-accent);
  opacity: 0; visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition-smooth);
  z-index: 1001;
}
.dropdown:hover .dropdown-menu {
  opacity: 1; visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block; padding: 12px 20px;
  font-size: 13px; color: #333;
  border-bottom: 1px solid #f0f0f0;
}
.dropdown-menu a:hover {
  background: var(--light-bg);
  color: var(--red-accent);
  padding-left: 24px;
}
.dropdown-menu a:last-child { border-bottom: none; }

.header-right { 
  display: flex; 
  align-items: center; 
  gap: 20px;
  height: 100%;
}
.header-phone { 
  font-size: 13px; 
  color: #555; 
  font-weight: 500; 
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  height: fit-content;
  margin: auto 0;
}
.header-phone:hover { color: var(--red-accent); }
.btn-header {
  background: var(--red-accent); color: var(--white); padding: 10px 22px;
  font-size: 13px; font-weight: 600; border: none; cursor: pointer;
  transition: var(--transition-smooth); display: inline-block; border-radius: 2px;
  align-self: center;
  margin: auto 0;
}
.btn-header:hover { background: var(--red-hover); transform: translateY(-2px); box-shadow: 0 4px 15px rgba(198,40,40,0.4); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; z-index: 1001; }
.hamburger span { width: 24px; height: 2px; background: #333; transition: var(--transition-smooth); transform-origin: center; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== MOBILE NAV ===== */
.mobile-nav {
  display: none; position: fixed; top: 60px; left: 0; right: 0;
  background: var(--white); padding: 0 40px; border-bottom: 1px solid #e0e0e0;
  z-index: 999; flex-direction: column; max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.mobile-nav.open { max-height: 500px; padding: 20px 40px; }
.mobile-nav a { font-size: 15px; font-weight: 500; color: #333; padding: 12px 0; border-bottom: 1px solid #eee; }
.mobile-nav a:hover { color: var(--red-accent); padding-left: 8px; }
.mobile-nav .btn-header { margin-top: 12px; text-align: center; }
.mobile-dropdown { display: none; flex-direction: column; padding-left: 16px; margin-top: 8px; }
.mobile-dropdown.open { display: flex; }
.mobile-dropdown a { font-size: 14px; padding: 8px 0; border: none; }
/* ===== HERO ===== */
.hero {
  position: relative; min-height: 700px;
  background: var(--dark); color: var(--white);
  padding: 140px 40px 80px;
  display: flex; align-items: center;
  overflow: hidden;
}

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

@keyframes slowZoom {
  from { transform: scale(1); }
  to { transform: scale(1.1); }
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,10,10,0.92) 0%, rgba(26,10,10,0.82) 50%, rgba(26,10,10,0.88) 100%);
  z-index: 1;
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 900px; margin: 0 auto; width: 100%;
  text-align: center;
}

.hero-breadcrumb {
  font-size: 11px; color: rgba(255,255,255,0.5);
  text-transform: uppercase; letter-spacing: 2px;
  margin-bottom: 16px;
  opacity: 0; animation: fadeInUp 420ms var(--ease-out) forwards 0s;
}

.hero-breadcrumb a {
  color: rgba(255,255,255,0.5); text-decoration: none;
  transition: color 0.3s ease;
}

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

.hero-label {
  font-size: 10px; color: var(--red);
  text-transform: uppercase; letter-spacing: 3px;
  font-weight: 600; margin-bottom: 20px;
  opacity: 0; animation: fadeInUp 420ms var(--ease-out) forwards 60ms;
}

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

.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 180ms;
}

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

.btn-primary {
  background: var(--red); color: var(--white);
  padding: 14px 28px; 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 28px; border: 1px solid rgba(255,255,255,0.3);
  border-radius: 4px; font-size: 14px; font-weight: 500;
  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.08);
  transform: translateY(-3px);
}

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

.hero-tag {
  font-size: 10px; color: rgba(255,255,255,0.6);
  text-transform: uppercase; letter-spacing: 2px;
  font-weight: 500;
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--cream);
  padding: 50px 40px;
  border-bottom: 1px solid var(--border);
}

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

.stat-item {
  padding: 24px 32px;
  border-right: 1px solid var(--border);
  transition: var(--transition-smooth);
  text-align: center;
}

.stat-item:last-child { border-right: none; }

.stat-item:hover {
  background: var(--white);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

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

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

.stat-text {
  font-size: 13px; color: var(--text-muted);
  line-height: 1.5;
}

/* ===== SECTION COMMON ===== */
.section { padding: 100px 40px; }
.section-dark { background: var(--dark); color: var(--white); }
.section-dark-brown {
  background: linear-gradient(135deg, var(--dark-brown) 0%, var(--dark) 100%);
  color: var(--white);
}
.section-light { background: var(--cream); }
.section-white { background: var(--white); }

.section-inner { max-width: 1200px; margin: 0 auto; }

.section-label {
  font-size: 10px; color: var(--red);
  text-transform: uppercase; letter-spacing: 3px;
  font-weight: 600; margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: 40px; font-weight: 800;
  line-height: 1.2; margin-bottom: 24px;
}

.section-subtitle {
  font-size: 15px; color: rgba(255,255,255,0.75);
  line-height: 1.8; margin-bottom: 20px;
}

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

.about-highlight {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-left: 3px solid var(--red);
  border-radius: 4px; padding: 28px;
  margin-top: 32px;
  transition: var(--transition-smooth);
}

.about-highlight:hover {
  background: rgba(255,255,255,0.08);
  transform: translateX(4px);
  border-left-width: 5px;
}

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

.about-highlight-text {
  font-size: 16px; font-weight: 600;
  line-height: 1.5; color: var(--white);
}

/* ===== PRINCIPLES ===== */
.principles-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 40px; margin-top: 48px;
}

.principle-item {
  padding-top: 24px;
  border-top: 2px solid var(--red);
  transition: transform 0.3s ease;
}

.principle-item:hover { transform: translateY(-6px); }

.principle-label {
  font-size: 12px; color: var(--red);
  font-weight: 700; margin-bottom: 12px;
  font-style: italic;
}

.principle-title {
  font-size: 18px; font-weight: 700;
  margin-bottom: 12px; color: var(--white);
}

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

/* ===== ONE CONTRACT ===== */
.contract-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}

.contract-highlight {
  background: var(--dark);
  border-radius: 4px; padding: 28px;
  margin-top: 32px; color: var(--white);
  transition: transform 0.3s ease;
}

.contract-highlight:hover { transform: translateY(-4px); }

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

.contract-highlight-text {
  font-size: 14px; line-height: 1.6;
  color: rgba(255,255,255,0.85);
}

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

.service-list-numbered li {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  display: flex; gap: 20px;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.service-list-numbered li:hover { padding-left: 8px; }
.service-list-numbered li:last-child { border-bottom: none; }

.service-num {
  font-size: 12px; color: var(--red);
  font-weight: 700; min-width: 24px;
}

.service-name {
  font-size: 16px; font-weight: 700;
  color: var(--text-dark); margin-bottom: 4px;
  transition: color 0.3s ease;
}

.service-list-numbered li:hover .service-name { color: var(--red); }

.service-desc {
  font-size: 13px; color: var(--text-muted);
  line-height: 1.5;
}

/* ===== LEADERSHIP ===== */
.leadership-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: center;
}
.leadership-grid .fade-in-right{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.leader-name {
  font-size: 24px; font-weight: 800;
  color: var(--white); margin-bottom: 4px;
}

.leader-role {
  font-size: 12px; color: var(--red);
  text-transform: uppercase; letter-spacing: 2px;
  font-weight: 600;
}

.language-tags {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-top: 24px;
}

.lang-tag {
  padding: 6px 14px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--white);
  transition: var(--transition-smooth);
  cursor: pointer;
}

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

/* ===== CERTIFICATIONS ===== */
.cert-table {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 32px;
}

.cert-row {
  display: grid;
  grid-template-columns: 150px 1fr 200px;
  border-bottom: 1px solid var(--border);
  transition: background 0.3s ease;
}

.cert-row:last-child { border-bottom: none; }
.cert-row:hover { background: var(--cream); }

.cert-row-header {
  padding: 16px 20px;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--text-muted);
  background: var(--light-gray);
}

.cert-cell {
  padding: 16px 20px;
  font-size: 14px;
  display: flex; align-items: center;
}

.cert-cell-name {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
}

.cert-status {
  font-size: 10px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--text-muted);
  padding: 4px 12px;
  background: var(--light-gray);
  border-radius: 4px;
  display: inline-flex; align-items: center; gap: 6px;
}

.cert-status::before {
  content: ''; width: 6px; height: 6px;
  background: #d4a574; border-radius: 50%;
}

.cert-note {
  font-size: 12px; color: var(--text-muted);
  margin-top: 16px; line-height: 1.6;
}

/* ===== FAQ ===== */
.faq-section-inner { max-width: 984px; margin: 0 auto; }

.faq-title {
  font-family: var(--font-display);
  font-size: 40px; font-weight: 800;
  margin-bottom: 40px; color: var(--white);
}

.faq-item {
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px; margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item:hover { border-color: rgba(255,255,255,0.2); }

.faq-question {
  padding: 20px 24px;
  display: flex; justify-content: space-between;
  align-items: center; cursor: pointer;
  font-size: 14px; font-weight: 600;
  color: var(--white);
  transition: background 0.3s ease;
  background: rgba(255,255,255,0.03);
}

.faq-question:hover { background: rgba(255,255,255,0.06); }

.faq-icon {
  color: var(--red); font-size: 18px;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon { 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: 20px;
}

.faq-answer-inner {
  /* No vertical padding at rest — see index.css for the reason. */
  padding: 0 24px;
  font-size: 13px; color: rgba(255,255,255,0.7);
  line-height: 1.7;
}


/* ===== CTA ===== */
.cta-section-inner {
  max-width: 1200px; margin: 0 auto;
  background: var(--dark-red);
  border-radius: 8px; padding: 60px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; color: var(--white);
  transition: transform 0.3s ease;
}

.cta-section-inner:hover { transform: translateY(-4px); }

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

.cta-title {
  font-family: var(--font-display);
  font-size: 36px; font-weight: 800;
  margin-bottom: 16px; line-height: 1.2;
}

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

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

.cta-btn-white {
  background: var(--white); color: var(--red);
  padding: 14px 28px; 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-link {
  color: rgba(255,255,255,0.85); font-size: 13px;
  text-decoration: none; transition: color 0.3s ease;
}

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

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

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

.cta-step:hover { padding-left: 8px; }
.cta-step:last-child { border-bottom: none; }

.cta-step-number {
  font-size: 13px; font-weight: 700;
  color: rgba(255,255,255,0.6); min-width: 20px;
}

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

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

/* ===== FOOTER ===== */
.footer {
  background: var(--dark); padding: 60px 40px 30px;
  color: var(--white);
  border-top: 1px solid rgba(255,255,255,0.08);
}

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

.footer-logo img { height: 80px; 
  margin-bottom: 16px; 
  transition: var(--transition-smooth);
    }

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

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

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

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }

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

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

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

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

.footer-contact-value {
  font-size: 13px; 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: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 12px;
}

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

/* This file never resets the UA default link color, so the developer
   credit link rendered browser-default blue (2.05:1) instead of
   inheriting the muted white around it. */
.footer-bottom-text a {
  color: inherit;
}

/* ===== WHATSAPP ===== */
.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:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37,211,102,0.6);
}

.whatsapp-float svg { width: 32px; height: 32px; fill: white; }

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed; bottom: 100px; right: 36px; width: 44px; height: 44px;
  background: var(--red-accent); 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(198,40,40,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; }
}

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

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

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

.fade-in.visible { opacity: 1; transform: translateY(0); }

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

.fade-in-left.visible { opacity: 1; transform: translateY(0); }

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

.fade-in-right.visible { opacity: 1; transform: translateY(0); }

/* Stagger delays */
.delay-1 { transition-delay: 60ms; }
.delay-2 { transition-delay: 120ms; }
.delay-3 { transition-delay: 180ms; }
.delay-4 { transition-delay: 0.4s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-grid, .contract-grid, .leadership-grid, .cta-section-inner {
    grid-template-columns: 1fr; gap: 40px;
  }
  .principles-grid { grid-template-columns: 1fr; }
  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .header { padding: 0 20px; }
  .header-left { gap: 20px; }
  .header-nav, .header-phone, .header-right .btn-header { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }
  .dropdown-menu { display: none; position: static; box-shadow: none; border: none; padding: 0; opacity: 1; visibility: visible; transform: none; }
  .dropdown:hover .dropdown-menu { display: none; }
  .mobile-dropdown.open { display: flex; }

  .hero { padding: 100px 20px 60px; min-height: 600px; }
  .hero-title { font-size: 36px; }
  .hero-tags { gap: 16px; }
  .hero-buttons { flex-direction: column; }
  
  .section { padding: 60px 20px; }
  .section-title { font-size: 32px; }
  
  .stats-bar { padding: 30px 20px; }
  .stats-bar-inner { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); padding: 24px 0; }
  .stat-item:last-child { border-bottom: none; }
  .stat-number { font-size: 48px; }
  
  .cert-row { grid-template-columns: 1fr; }
  .cert-row-header { display: none; }
  
  .cta-section-inner { padding: 40px 28px; }
  .cta-title { font-size: 28px; }
  
  .footer { padding: 40px 20px 20px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .whatsapp-float { bottom: 20px; right: 20px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 28px; }
  .hero-buttons { flex-direction: column; }
  .btn-primary, .btn-outline { width: 100%; text-align: center; }
  .stat-number { font-size: 40px; }
  .section-title { font-size: 28px; }
}
/* Remove all link underlines */
a,
a:hover,
a:focus,
a:active,
a:visited {
    text-decoration: none !important;
}

/* Navbar links */
.header-nav a,
.mobile-nav a,
.dropdown-menu a,
.mobile-dropdown a {
    text-decoration: none !important;
    border-bottom: none !important;
}

/* Mobile navbar */
.mobile-nav a:hover,
.mobile-nav a:focus,
.mobile-nav a:active {
    text-decoration: none !important;
}

/* ===== FAQ SCREENSHOT-STYLE LEFT TITLE / RIGHT FAQ LIST ===== */
#faq .faq-title,
#faq .section-label {
  text-align: left !important;
}

#faq .faq-item {
  width: 80%;
  margin-left: auto;
  margin-right: 0;
}

@media (max-width: 900px) {
  .faq-section-inner {
    max-width: 100%;
  }

  #faq .faq-item {
    width: 100%;
    margin-left: 0;
  }
}

/* ===== FAQ WHITE THEME ===== */
#faq {
  background: #ffffff !important;
  color: #1a1a1a !important;
}

#faq .section-label {
  color: #c41e1e !important;
}

#faq .faq-title {
  color: #1a1a1a !important;
}

#faq .faq-item {
  background: #ffffff !important;
  border: 1px solid #e0d8d0 !important;
}

#faq .faq-item:hover {
  border-color: #d2c8be !important;
}

#faq .faq-question {
  color: #2b2b2b !important;
  background: #ffffff !important;
}

#faq .faq-question:hover {
  background: #fafafa !important;
}

#faq .faq-answer-inner {
  color: #555555 !important;
}

#faq .faq-icon {
  color: var(--red) !important;
}

/* Certifications & Compliance remains hidden until needed. */
#certifications {
  display: none !important;
}
