/* ============================================
   VG DOCUMENTS CLEARING SERVICES - MAIN STYLES
   Theme: Red / Black / White Premium Corporate
============================================ */

:root {
  --red: #D9000D;
  --red-dark: #B8000A;
  --red-darker: #8C0008;
  --black: #111111;
  --charcoal: #1A1A1A;
  --dark-2: #222222;
  --white: #FFFFFF;
  --light: #F6F6F6;
  --light-2: #FAFAFA;
  --gray-100: #F2F3F5;
  --gray-200: #E8E8E8;
  --gray-300: #D4D4D4;
  --gray-500: #8B8B8B;
  --gray-700: #4A4A4A;
  --text: #1A1A1A;
  --text-soft: #5A5A5A;
  --shadow-sm: 0 2px 6px rgba(17,17,17,0.06);
  --shadow-md: 0 8px 24px rgba(17,17,17,0.08);
  --shadow-lg: 0 20px 50px rgba(17,17,17,0.12);
  --shadow-red: 0 14px 30px rgba(217,0,13,0.25);
  --radius: 14px;
  --radius-lg: 20px;
  --container: 1240px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

ul {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-weight: 800;
  color: var(--black);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* =================== PRELOADER =================== */
.preloader {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-logo {
  max-width: 180px;
  margin-bottom: 28px;
  animation: preloaderPulse 1.4s ease-in-out infinite;
}

.preloader-bar {
  width: 160px;
  height: 2px;
  background: #eee;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.preloader-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--red);
  animation: preloaderSlide 1.2s ease-in-out infinite;
}

@keyframes preloaderPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(0.97); opacity: 0.7; }
}

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

/* =================== TYPOGRAPHY HELPERS =================== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--red);
  margin-bottom: 18px;
}

.eyebrow::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--red);
}

.eyebrow.on-dark {
  color: #ff5158;
}
.eyebrow.on-dark::before {
  background: #ff5158;
}

.section {
  padding: 110px 0;
  position: relative;
}

.section-tight {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.section-title h2 {
  font-size: clamp(30px, 3.8vw, 50px);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.025em;
}

.section-title p {
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.7;
}

.section-title.left {
  text-align: left;
  margin: 0 0 50px;
}

/* =================== BUTTONS =================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 50px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.2px;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
  min-height: 50px;
  white-space: nowrap;
  border: 2px solid transparent;
}

.btn .arrow {
  display: inline-flex;
  transition: transform 0.3s var(--ease);
}

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

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

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(217,0,13,0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

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

.btn-dark:hover {
  background: var(--red);
}

.btn-outline {
  background: transparent;
  color: var(--black);
  border-color: var(--gray-300);
}

.btn-outline:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
}

.btn-whatsapp:hover {
  background: #1ebd5b;
  transform: translateY(-2px);
}

.btn-block {
  width: 100%;
}

.btn-sm {
  padding: 11px 22px;
  font-size: 13px;
  min-height: 42px;
}

/* =================== NAVBAR =================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.35s var(--ease);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(17,17,17,0.08);
  border-bottom-color: var(--gray-200);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 92px;
  gap: 30px;
  transition: height 0.3s var(--ease);
}

.navbar.scrolled .nav-wrap {
  height: 76px;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo img {
  max-height: 120px;
  width: auto;
  object-fit: contain;
  transition: max-height 0.3s var(--ease);
}

.navbar.scrolled .nav-logo img {
  max-height: 98px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  justify-content: center;
}

.nav-menu a {
  position: relative;
  padding: 10px 14px;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--black);
  display: inline-flex;
  align-items: center;
  transition: color 0.25s var(--ease);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s var(--ease);
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--red);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  transform: scaleX(1);
}

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

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--black);
}

.nav-phone i {
  color: var(--red);
}

.nav-cta .btn {
  padding: 12px 22px;
  font-size: 14px;
  min-height: 44px;
}

.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--light);
  position: relative;
  z-index: 1100;
  flex-shrink: 0;
}

.hamburger span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 22px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: all 0.3s var(--ease);
}

.hamburger span:nth-child(1) { transform: translate(-50%, calc(-50% - 6px)); }
.hamburger span:nth-child(3) { transform: translate(-50%, calc(-50% + 6px)); }

.hamburger.active span:nth-child(1) { transform: translate(-50%, -50%) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translate(-50%, -50%) rotate(-45deg); }

/* =================== MOBILE MENU =================== */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 380px;
  height: 100vh;
  background: #fff;
  z-index: 1050;
  transition: right 0.4s var(--ease);
  box-shadow: -10px 0 40px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid var(--gray-200);
}

.mobile-menu-header img {
  max-height: 48px;
  width: auto;
}

.mobile-close {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--black);
}

.mobile-nav {
  padding: 18px 0;
  flex: 1;
}

.mobile-nav a {
  display: block;
  padding: 16px 28px;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--black);
  border-left: 3px solid transparent;
  transition: all 0.25s var(--ease);
}

.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--red);
  background: var(--light);
  border-left-color: var(--red);
}

.mobile-cta {
  padding: 24px;
  border-top: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-cta .btn {
  width: 100%;
}

/* =================== HERO =================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 100px;
  overflow: hidden;
  color: #fff;
  background: #0a0a0a;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  animation: kenburns 22s ease-in-out infinite alternate;
  z-index: 1;
}

@keyframes kenburns {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.55) 50%, rgba(10,10,10,0.7) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 880px;
}

.hero h1 {
  font-size: clamp(40px, 5vw, 76px);
  font-weight: 800;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.hero h1 .accent {
  color: var(--red);
  position: relative;
  display: inline-block;
}

.hero p.lead {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  max-width: 640px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 32px;
}

.hero-call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 500;
}

.hero-call i {
  color: var(--red);
  font-size: 18px;
}

.hero-call a {
  color: #fff;
  font-weight: 700;
  border-bottom: 1px dashed rgba(255,255,255,0.4);
  padding-bottom: 2px;
}

.hero-call a:hover {
  color: var(--red);
  border-color: var(--red);
}

.hero-decor {
  position: absolute;
  right: -50px;
  top: 50%;
  transform: translateY(-50%);
  width: 480px;
  height: 480px;
  border: 1px solid rgba(217,0,13,0.15);
  border-radius: 50%;
  z-index: 2;
}

.hero-decor::before {
  content: '';
  position: absolute;
  inset: 60px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50%;
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: rgba(255,255,255,0.6);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

.hero-scroll .line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--red), transparent);
}

/* =================== TRUST STRIP =================== */
.trust-strip {
  background: #fff;
  padding: 50px 0;
  border-bottom: 1px solid var(--gray-200);
  position: relative;
  z-index: 5;
  margin-top: -60px;
  border-radius: 18px;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
  box-shadow: var(--shadow-lg);
  left: 0;
  right: 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.trust-card {
  padding: 24px 30px;
  display: flex;
  align-items: center;
  gap: 18px;
  position: relative;
}

.trust-card:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--gray-200);
}

.trust-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.trust-card h4 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 4px;
}

.trust-card p {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.5;
}

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

.about-image {
  position: relative;
}

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

.about-image-main::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(17,17,17,0.4));
  z-index: 2;
}

.about-image-main img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

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

.about-image-tag {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: #fff;
  padding: 18px 24px;
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 3;
}

.about-image-tag .tag-num {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 22px;
}

.about-image-tag p {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--black);
  line-height: 1.3;
}

.about-image-tag small {
  display: block;
  font-size: 12px;
  color: var(--text-soft);
  font-weight: 500;
  margin-top: 2px;
}

.about-image-decor {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  border: 2px solid var(--red);
  border-radius: 16px;
  z-index: -1;
  opacity: 0.4;
}

.about-image-decor2 {
  position: absolute;
  bottom: -20px;
  right: 40%;
  width: 80px;
  height: 80px;
  background: var(--red);
  border-radius: 50%;
  z-index: -1;
  opacity: 0.15;
}

.about-text h2 {
  font-size: clamp(28px, 3.4vw, 44px);
  margin-bottom: 24px;
  letter-spacing: -0.025em;
}

.about-text h2 .accent {
  color: var(--red);
}

.about-text p {
  color: var(--text-soft);
  margin-bottom: 18px;
  font-size: 16px;
  line-height: 1.75;
}

.about-checklist {
  margin: 30px 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.about-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--black);
}

.about-check i {
  color: var(--red);
  background: rgba(217,0,13,0.08);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* =================== SERVICES =================== */
.services-section {
  background: var(--light);
}

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

.service-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid transparent;
  transition: all 0.4s var(--ease);
  position: relative;
  display: flex;
  flex-direction: column;
}

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

.service-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

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

.service-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(17,17,17,0.5));
}

.service-num {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  background: var(--red);
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 50px;
  letter-spacing: 1px;
}

.service-icon {
  position: absolute;
  bottom: -22px;
  right: 22px;
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--red);
  z-index: 3;
  box-shadow: var(--shadow-md);
  transition: all 0.3s var(--ease);
}

.service-card:hover .service-icon {
  background: var(--red);
  color: #fff;
  transform: rotate(-8deg) scale(1.05);
}

.service-body {
  padding: 32px 26px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-body h3 {
  font-size: 21px;
  margin-bottom: 12px;
  transition: color 0.3s var(--ease);
}

.service-card:hover .service-body h3 {
  color: var(--red);
}

.service-body p {
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 20px;
  flex: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: auto;
  transition: all 0.3s var(--ease);
}

.service-link .arrow {
  width: 30px;
  height: 30px;
  background: var(--light);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: all 0.3s var(--ease);
}

.service-card:hover .service-link {
  color: var(--red);
}

.service-card:hover .service-link .arrow {
  background: var(--red);
  color: #fff;
  transform: translateX(4px);
}

/* =================== WHY CHOOSE =================== */
.why-section {
  background: #fff;
}

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

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

.why-image img {
  width: 100%;
  height: 580px;
  object-fit: cover;
}

.why-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(17,17,17,0.4));
}

.why-image .badge {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: var(--red);
  color: #fff;
  padding: 18px 26px;
  border-radius: 14px;
  z-index: 2;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.4;
  max-width: 240px;
}

.why-image .badge strong {
  display: block;
  font-size: 18px;
  font-weight: 800;
}

.why-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 30px;
}

.why-feature {
  padding: 24px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--gray-200);
  transition: all 0.3s var(--ease);
}

.why-feature:hover {
  border-color: var(--red);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.why-feature-icon {
  width: 50px;
  height: 50px;
  background: rgba(217,0,13,0.1);
  color: var(--red);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
  transition: all 0.3s var(--ease);
}

.why-feature:hover .why-feature-icon {
  background: var(--red);
  color: #fff;
}

.why-feature h4 {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 8px;
}

.why-feature p {
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.6;
}

/* =================== COMPANY FORMATION =================== */
.cf-section {
  background: var(--charcoal);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cf-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(217,0,13,0.15), transparent);
  pointer-events: none;
}

.cf-section::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(217,0,13,0.1), transparent);
  pointer-events: none;
}

.cf-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.cf-text h2 {
  color: #fff;
  font-size: clamp(28px, 3.4vw, 44px);
  margin-bottom: 22px;
}

.cf-text h2 .accent {
  color: var(--red);
}

.cf-text > p {
  color: rgba(255,255,255,0.75);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 30px;
}

.cf-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.cf-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #fff;
}

.cf-item i {
  color: var(--red);
  background: rgba(217,0,13,0.15);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 2px;
}

.cf-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.cf-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 24px;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}

.cf-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--red);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s var(--ease);
}

.cf-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-4px);
  border-color: rgba(217,0,13,0.3);
}

.cf-card:hover::before {
  transform: scaleY(1);
}

.cf-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(217,0,13,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--red);
  margin-bottom: 16px;
}

.cf-card h4 {
  color: #fff;
  font-size: 17px;
  margin-bottom: 8px;
}

.cf-card p {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  line-height: 1.6;
}

/* =================== PROCESS =================== */
.process-section {
  background: var(--light);
}

.process-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 30px;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--red) 0, var(--red) 6px, transparent 6px, transparent 12px);
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 2;
}

.process-num {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--red);
  margin: 0 auto 22px;
  position: relative;
  transition: all 0.3s var(--ease);
}

.process-step:hover .process-num {
  background: var(--red);
  color: #fff;
  transform: scale(1.08);
  box-shadow: var(--shadow-red);
}

.process-step h4 {
  font-size: 19px;
  margin-bottom: 10px;
}

.process-step p {
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.6;
  max-width: 240px;
  margin: 0 auto;
}

/* =================== TRAVEL HIGHLIGHT =================== */
.travel-highlight {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

.travel-highlight-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.travel-highlight::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.88), rgba(10,10,10,0.6));
  z-index: 2;
}

.travel-content {
  position: relative;
  z-index: 3;
  max-width: 700px;
}

.travel-content h2 {
  color: #fff;
  font-size: clamp(28px, 3.4vw, 46px);
  margin-bottom: 22px;
}

.travel-content h2 .accent {
  color: var(--red);
}

.travel-content p {
  color: rgba(255,255,255,0.85);
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 32px;
}

.travel-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 30px;
  margin-bottom: 36px;
}

.travel-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 15px;
}

.travel-feat i {
  color: var(--red);
}

/* =================== FAQ =================== */
.faq-section {
  background: #fff;
}

.faq-wrap {
  max-width: 880px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  margin-bottom: 14px;
  overflow: hidden;
  transition: all 0.3s var(--ease);
}

.faq-item.active {
  border-color: var(--red);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 26px;
  text-align: left;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--black);
  background: transparent;
  transition: color 0.3s var(--ease);
}

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

.faq-question .icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--red);
  flex-shrink: 0;
  transition: all 0.3s var(--ease);
}

.faq-item.active .faq-question .icon {
  background: var(--red);
  color: #fff;
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}

.faq-answer-inner {
  padding: 0 26px 24px;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.7;
}

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

/* =================== CTA BANNER =================== */
.cta-banner {
  position: relative;
  padding: 90px 60px;
  background: var(--charcoal);
  border-radius: 24px;
  color: #fff;
  overflow: hidden;
  text-align: center;
  margin: 0 24px;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  border: 2px solid rgba(217,0,13,0.3);
  border-radius: 50%;
  z-index: 0;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  border: 2px solid rgba(217,0,13,0.2);
  border-radius: 50%;
  z-index: 0;
}

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

.cta-banner h2 {
  color: #fff;
  font-size: clamp(28px, 3.5vw, 46px);
  margin-bottom: 18px;
}

.cta-banner h2 .accent {
  color: var(--red);
}

.cta-banner p {
  color: rgba(255,255,255,0.8);
  font-size: 17px;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =================== PAGE HERO =================== */
.page-hero {
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: center;
  padding: 160px 0 100px;
  color: #fff;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.85), rgba(10,10,10,0.55));
  z-index: 2;
}

.page-hero-content {
  position: relative;
  z-index: 3;
  max-width: 820px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
}

.breadcrumb a:hover { color: var(--red); }
.breadcrumb i { font-size: 10px; color: var(--red); }
.breadcrumb .current { color: var(--red); }

.page-hero h1 {
  font-size: clamp(34px, 4.5vw, 60px);
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: -0.025em;
}

.page-hero h1 .accent { color: var(--red); }

.page-hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  max-width: 680px;
  line-height: 1.7;
}

/* =================== CONTACT =================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
}

.contact-info-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 30px;
}

.contact-info-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 24px;
  transition: all 0.3s var(--ease);
}

.contact-info-card:hover {
  border-color: var(--red);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.contact-info-card .icon {
  width: 50px;
  height: 50px;
  background: rgba(217,0,13,0.1);
  color: var(--red);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 14px;
}

.contact-info-card h4 {
  font-size: 14px;
  color: var(--text-soft);
  font-weight: 600;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-info-card p, .contact-info-card a {
  color: var(--black);
  font-weight: 700;
  font-size: 16px;
  font-family: 'Manrope', sans-serif;
  line-height: 1.5;
  display: block;
}

.contact-info-card a:hover { color: var(--red); }

.contact-form {
  background: #fff;
  padding: 40px;
  border-radius: 18px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.contact-form h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.contact-form p.lead {
  color: var(--text-soft);
  font-size: 15px;
  margin-bottom: 28px;
}

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

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

.form-group label {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: var(--black);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-control {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  font-family: inherit;
  font-size: 15px;
  color: var(--black);
  background: #fff;
  transition: all 0.25s var(--ease);
}

.form-control:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(217,0,13,0.1);
}

.form-control.error {
  border-color: var(--red);
  background: rgba(217,0,13,0.03);
}

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

.form-msg {
  font-size: 12px;
  color: var(--red);
  margin-top: 4px;
  display: none;
}

.form-msg.show {
  display: block;
}

.form-success {
  background: rgba(37, 211, 102, 0.1);
  color: #1e8e4a;
  padding: 14px 18px;
  border-radius: 10px;
  margin-bottom: 18px;
  font-size: 14px;
  display: none;
  border-left: 3px solid #25D366;
}

.form-success.show { display: block; }

.map-wrap {
  border-radius: 18px;
  overflow: hidden;
  margin-top: 60px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  height: 420px;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* =================== FOOTER =================== */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red) 0%, var(--red-dark) 50%, var(--red) 100%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 50px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  max-width: 200px;
  background: #fff;
  padding: 12px 16px;
  border-radius: 12px;
  margin-bottom: 20px;
}

.footer-about p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer h4 {
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}

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

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

.footer ul li a {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  transition: all 0.25s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer ul li a:hover {
  color: var(--red);
  transform: translateX(4px);
}

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

.footer-contact-item i {
  color: var(--red);
  background: rgba(217,0,13,0.15);
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item .label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 2px;
  display: block;
}

.footer-contact-item p, .footer-contact-item a {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Manrope', sans-serif;
  display: block;
  line-height: 1.5;
}

.footer-contact-item a:hover { color: var(--red); }

.footer-bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

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

/* =================== FLOATING WHATSAPP =================== */
.float-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: all 0.3s var(--ease);
  animation: pulse-green 2.5s ease-in-out infinite;
}

.float-whatsapp:hover {
  transform: scale(1.1);
  background: #1ebd5b;
}

.float-whatsapp .tooltip {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  color: var(--black);
  padding: 8px 14px;
  border-radius: 8px;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 13px;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s var(--ease);
}

.float-whatsapp .tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: #fff;
}

.float-whatsapp:hover .tooltip {
  opacity: 1;
  visibility: visible;
  right: 76px;
}

@keyframes pulse-green {
  0%, 100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.6), 0 0 0 12px rgba(37, 211, 102, 0); }
}

/* =================== MOBILE CALL BAR =================== */
.mobile-call-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: #fff;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  padding: 10px 14px;
  gap: 10px;
  border-top: 1px solid var(--gray-200);
}

.mobile-call-bar a {
  flex: 1;
  padding: 12px;
  border-radius: 10px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.mobile-call-bar .call-btn {
  background: var(--black);
  color: #fff;
}

.mobile-call-bar .wa-btn {
  background: #25D366;
  color: #fff;
}

/* =================== SCROLL TO TOP =================== */
.scroll-top {
  position: fixed;
  bottom: 95px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--black);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s var(--ease);
  cursor: pointer;
  box-shadow: var(--shadow-md);
}

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

.scroll-top:hover {
  background: var(--red);
  transform: translateY(-3px);
}

/* =================== REVEAL ANIMATIONS =================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

.reveal-up { transform: translateY(40px); }
.reveal-down { transform: translateY(-40px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-left.visible, .reveal-right.visible, .reveal-up.visible, .reveal-down.visible {
  transform: translate(0, 0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* =================== HERO ANIMATIONS =================== */
.hero .anim-1, .hero .anim-2, .hero .anim-3, .hero .anim-4 {
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 0.9s var(--ease) forwards;
}

.hero .anim-1 { animation-delay: 0.2s; }
.hero .anim-2 { animation-delay: 0.4s; }
.hero .anim-3 { animation-delay: 0.6s; }
.hero .anim-4 { animation-delay: 0.8s; }

@keyframes heroFadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.page-hero .anim-1, .page-hero .anim-2, .page-hero .anim-3 {
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 0.9s var(--ease) forwards;
}

.page-hero .anim-1 { animation-delay: 0.2s; }
.page-hero .anim-2 { animation-delay: 0.4s; }
.page-hero .anim-3 { animation-delay: 0.6s; }

/* =================== SECTION BACKGROUNDS =================== */
.bg-light { background: var(--light); }
.bg-white { background: #fff; }
.bg-dark { background: var(--charcoal); color: #fff; }

/* =================== RESPONSIVE =================== */
@media (max-width: 1199px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 1 / -1; margin-top: 20px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 991px) {
  .section { padding: 80px 0; }
  .section-tight { padding: 60px 0; }

  .nav-menu, .nav-phone { display: none; }
  .nav-cta .btn { display: none; }
  .hamburger { display: flex; align-items: center; justify-content: center; }

  .nav-wrap { height: 80px; }
  .nav-logo img { max-height: 92px; }
  .navbar.scrolled .nav-wrap { height: 70px; }

  .hero { min-height: 90vh; padding: 130px 0 80px; }
  .hero h1 { font-size: 38px; }
  .hero-decor { display: none; }

  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .trust-strip { margin: -40px 16px 0; padding: 30px 20px; }
  .trust-card { padding: 16px; }
  .trust-card:not(:last-child)::after { display: none; }

  .about-grid, .why-grid, .cf-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-image-main img, .why-image img { height: 380px; }

  .process-timeline {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .process-timeline::before {
    top: 0;
    bottom: 0;
    left: 40px;
    right: auto;
    width: 2px;
    height: auto;
    background: repeating-linear-gradient(180deg, var(--red) 0, var(--red) 6px, transparent 6px, transparent 12px);
  }
  .process-step { text-align: left; display: flex; gap: 24px; align-items: flex-start; }
  .process-num { margin: 0; flex-shrink: 0; width: 80px; height: 80px; }
  .process-step h4, .process-step p { text-align: left; max-width: none; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-bottom .container { justify-content: center; text-align: center; }

  .mobile-call-bar { display: flex; }
  .float-whatsapp { display: none; }
  body { padding-bottom: 70px; }

  .cta-banner { padding: 60px 30px; margin: 0 16px; }
}

@media (max-width: 767px) {
  .container { padding: 0 18px; }
  .section { padding: 64px 0; }

  .hero h1 { font-size: 34px; }
  .hero p.lead { font-size: 16px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }

  .services-grid { grid-template-columns: 1fr; gap: 22px; }
  .about-checklist, .why-features, .cf-list, .cf-cards, .contact-info-cards, .travel-features, .form-row {
    grid-template-columns: 1fr;
  }

  .page-hero { min-height: 350px; padding: 130px 0 70px; }
  .page-hero h1 { font-size: 30px; }
  .breadcrumb { font-size: 11px; }

  .contact-form { padding: 28px 22px; }
  .map-wrap { height: 300px; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer { padding-top: 60px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 30px; }
  .section-title h2 { font-size: 26px; }
  .section-title p { font-size: 15px; }
  .cta-banner { padding: 50px 22px; }
  .cta-banner h2 { font-size: 24px; }
  .cta-actions { flex-direction: column; }
  .cta-actions .btn { width: 100%; }

  .about-image-tag { left: 12px; right: 12px; bottom: 12px; }
  .why-image .badge { left: 16px; right: 16px; bottom: 16px; }
}

/* =================== UTILITIES =================== */
.text-center { text-align: center; }
.mt-4 { margin-top: 32px; }
.mb-4 { margin-bottom: 32px; }
.d-flex { display: flex; }
.gap-2 { gap: 14px; }

/* =================== REDUCED MOTION =================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero-bg { animation: none; }
  .float-whatsapp { animation: none; }
}
