/* ========================================
   BRANDFILLS — MAIN STYLESHEET
   Dark: Black + Orange | Light: White + Orange
   ======================================== */

:root {
  --orange: #FF6B00;
  --orange-light: #FF8C33;
  --orange-dark: #CC5500;
  --orange-glow: rgba(255, 107, 0, 0.15);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'Bebas Neue', sans-serif;
  --font-heading: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow: 0 4px 24px rgba(0,0,0,0.12);
  --shadow-orange: 0 4px 24px rgba(255,107,0,0.25);
}

/* DARK THEME (default) */
[data-theme="dark"] {
  --bg: #0a0a0a;
  --bg2: #111111;
  --bg3: #1a1a1a;
  --bg4: #222222;
  --border: rgba(255,255,255,0.08);
  --text: #f0f0f0;
  --text2: #a0a0a0;
  --text3: #666666;
  --card-bg: #141414;
  --nav-bg: rgba(10,10,10,0.95);
  --footer-bg: #060606;
  --input-bg: #1a1a1a;
}

/* LIGHT THEME */
[data-theme="light"] {
  --bg: #ffffff;
  --bg2: #f8f8f8;
  --bg3: #f0f0f0;
  --bg4: #e8e8e8;
  --border: rgba(0,0,0,0.08);
  --text: #111111;
  --text2: #555555;
  --text3: #999999;
  --card-bg: #ffffff;
  --nav-bg: rgba(255,255,255,0.95);
  --footer-bg: #0a0a0a;
  --input-bg: #f5f5f5;
}

/* RESET & BASE */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  transition: background 0.3s, color 0.3s;
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* SCROLLBAR */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 3px; }

/* TYPOGRAPHY */
h1,h2,h3,h4,h5 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; }
.display-font { font-family: var(--font-display); letter-spacing: 0.02em; }

/* ========= NAVBAR ========= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--nav-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; }
.logo-text {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--orange);
  letter-spacing: 0.05em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text2);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: var(--transition);
  letter-spacing: 0.02em;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--text);
  background: var(--orange-glow);
}
.bf-btn-sm {
  background: var(--orange) !important;
  color: white !important;
  padding: 8px 20px !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  transition: var(--transition) !important;
}
.bf-btn-sm:hover {
  background: var(--orange-dark) !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-orange);
}
.nav-actions { display: flex; align-items: center; gap: 12px; }
.theme-toggle {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--bg3);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}
.theme-toggle:hover { background: var(--bg4); }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px; padding: 8px;
  width: 40px;
}
.nav-hamburger span {
  display: block; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ========= HERO SLIDER ========= */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  margin-top: 70px;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-fallback {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg3) 50%, var(--bg) 100%);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; text-align: center; padding: 40px;
}
.hero-fallback h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7rem);
  color: var(--text);
  letter-spacing: 0.05em;
  line-height: 0.9;
}
.hero-fallback h1 span { color: var(--orange); }
.hero-fallback p {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--text2);
  margin: 20px 0 32px;
  font-family: var(--font-heading);
}
.hero-dots {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 5;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer; transition: var(--transition);
}
.hero-dot.active { background: var(--orange); width: 24px; border-radius: 4px; }
.hero-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 5;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,107,0,0.8);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; cursor: pointer;
  transition: var(--transition);
  border: none;
}
.hero-arrow:hover { background: var(--orange); transform: translateY(-50%) scale(1.1); }
.hero-arrow.prev { left: 20px; }
.hero-arrow.next { right: 20px; }

/* ========= BUTTONS ========= */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600; font-size: 0.95rem;
  padding: 14px 32px; border-radius: 50px;
  transition: var(--transition);
  letter-spacing: 0.02em;
}
.btn-primary {
  background: var(--orange); color: white;
  box-shadow: var(--shadow-orange);
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,107,0,0.4);
}
.btn-outline {
  border: 2px solid var(--orange); color: var(--orange);
}
.btn-outline:hover {
  background: var(--orange); color: white;
  transform: translateY(-2px);
}
.btn-ghost {
  color: var(--text2);
  border: 1px solid var(--border);
}
.btn-ghost:hover { color: var(--text); background: var(--bg3); }

/* ========= SECTION BASE ========= */
.section { padding: 100px 0; }
.section-alt { background: var(--bg2); }
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange-glow);
  color: var(--orange);
  border: 1px solid rgba(255,107,0,0.3);
  padding: 6px 16px; border-radius: 50px;
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 20px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}
.section-title span { color: var(--orange); }
.section-subtitle {
  color: var(--text2);
  font-size: 1.1rem;
  max-width: 600px;
  line-height: 1.7;
}
.section-header { margin-bottom: 60px; }
.section-header.center { text-align: center; }
.section-header.center .section-subtitle { margin: 0 auto; }

/* ========= CARDS ========= */
.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}
.card:hover {
  border-color: rgba(255,107,0,0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.card-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  display: block;
}
.card-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.card-text { color: var(--text2); font-size: 0.95rem; line-height: 1.7; }

/* GRID */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; align-items: center; }

/* ========= SERVICES SECTION ========= */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transition: var(--transition);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  border-color: rgba(255,107,0,0.2);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* ========= PACKAGES ========= */
.packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; align-items: start; }
.package-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: var(--transition);
  position: relative;
}
.package-card.popular {
  border-color: var(--orange);
  transform: scale(1.03);
  box-shadow: 0 0 40px rgba(255,107,0,0.15);
}
.popular-badge {
  position: absolute;
  top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--orange);
  color: white;
  padding: 4px 20px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}
.package-name {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.package-subtitle { color: var(--text2); font-size: 0.9rem; margin-bottom: 24px; }
.package-price {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--orange);
  letter-spacing: 0.02em;
  line-height: 1;
}
.package-price sup { font-size: 1.5rem; }
.package-price small {
  font-size: 1rem;
  color: var(--text2);
  font-family: var(--font-body);
}
.package-divider { border: none; border-top: 1px solid var(--border); margin: 24px 0; }
.package-features { margin-bottom: 32px; }
.package-features li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--text2);
  border-bottom: 1px solid var(--border);
}
.package-features li:last-child { border: none; }
.package-features li::before {
  content: '✓';
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ========= CLIENTS SLIDER ========= */
.clients-section { padding: 60px 0; overflow: hidden; }
.clients-track {
  display: flex;
  gap: 40px;
  animation: slideClients 30s linear infinite;
  width: max-content;
}
.clients-track:hover { animation-play-state: paused; }
.client-logo {
  height: 50px; width: auto;
  object-fit: contain;
  filter: grayscale(1) opacity(0.5);
  transition: var(--transition);
  flex-shrink: 0;
}
.client-logo:hover { filter: grayscale(0) opacity(1); }
@keyframes slideClients {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ========= STATS ========= */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.stat-item {
  background: var(--card-bg);
  padding: 40px 30px; text-align: center;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--orange);
  line-height: 1;
  letter-spacing: 0.02em;
}
.stat-label { color: var(--text2); font-size: 0.9rem; margin-top: 8px; font-family: var(--font-heading); }

/* ========= WHY CHOOSE US ========= */
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.why-card {
  display: flex; gap: 20px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}
.why-card:hover { border-color: rgba(255,107,0,0.3); }
.why-icon {
  width: 52px; height: 52px; flex-shrink: 0;
  background: var(--orange-glow);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  border: 1px solid rgba(255,107,0,0.2);
}
.why-content h4 { font-size: 1.05rem; margin-bottom: 8px; }
.why-content p { color: var(--text2); font-size: 0.9rem; line-height: 1.7; }

/* ========= MISSION ========= */
.mission-box {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 60px;
  position: relative;
  overflow: hidden;
}
.mission-box::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 300px; height: 300px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
}
.mission-box::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -40px;
  width: 250px; height: 250px;
  background: rgba(0,0,0,0.1);
  border-radius: 50%;
}
.mission-box h2 { color: white; font-size: 2.5rem; margin-bottom: 20px; position: relative; z-index: 1; }
.mission-box p { color: rgba(255,255,255,0.9); font-size: 1.1rem; line-height: 1.8; position: relative; z-index: 1; max-width: 800px; }

/* ========= BLOG ========= */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(255,107,0,0.2); }
.blog-thumb {
  width: 100%; aspect-ratio: 16/9;
  object-fit: cover; display: block;
}
.blog-thumb-placeholder {
  width: 100%; aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--bg3), var(--bg4));
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
}
.blog-body { padding: 24px; }
.blog-category {
  display: inline-block;
  background: var(--orange-glow);
  color: var(--orange);
  padding: 3px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.blog-title { font-size: 1.05rem; margin-bottom: 12px; line-height: 1.4; }
.blog-excerpt { color: var(--text2); font-size: 0.9rem; line-height: 1.6; margin-bottom: 20px; }
.blog-meta {
  display: flex; align-items: center; justify-content: space-between;
  color: var(--text3); font-size: 0.8rem;
}
.blog-read-more { color: var(--orange); font-weight: 600; font-size: 0.85rem; }
.blog-read-more:hover { text-decoration: underline; }

/* ========= CONTACT ========= */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: start; }
.contact-info h2 { font-size: 2.2rem; margin-bottom: 20px; }
.contact-info p { color: var(--text2); line-height: 1.8; margin-bottom: 32px; }
.contact-items { display: flex; flex-direction: column; gap: 20px; }
.contact-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.contact-item-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--orange-glow);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
}
.contact-item-text h4 { font-size: 0.85rem; color: var(--text2); margin-bottom: 4px; font-weight: 500; }
.contact-item-text p, .contact-item-text a { font-size: 1rem; font-weight: 600; }
.contact-form-wrap {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text2);
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}
.form-control {
  width: 100%;
  padding: 14px 16px;
  background: var(--input-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
}
.form-control:focus { border-color: var(--orange); box-shadow: 0 0 0 3px var(--orange-glow); }
.form-control::placeholder { color: var(--text3); }
textarea.form-control { resize: vertical; min-height: 130px; }

/* ========= PAGE HERO ========= */
.page-hero {
  margin-top: 70px;
  background: var(--bg2);
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.page-hero h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
.page-hero p { color: var(--text2); font-size: 1.1rem; max-width: 600px; margin: 16px auto 0; }
.breadcrumb {
  display: flex; align-items: center; justify-content: center;
  gap: 8px;
  color: var(--text3); font-size: 0.85rem;
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--orange); }
.breadcrumb span { color: var(--text3); }

/* ========= CTA SECTION ========= */
.cta-section { padding: 80px 0; }
.cta-box {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 70px;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-box h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; }
.cta-box p { color: var(--text2); font-size: 1.1rem; margin-bottom: 32px; }
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ========= WHATSAPP FLOAT ========= */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 999;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  animation: waPulse 2s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}
@keyframes waPulse {
  0% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.7), 0 0 0 8px rgba(37,211,102,0.1); }
  100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
}

/* ========= FOOTER ========= */
.footer {
  background: var(--footer-bg);
  border-top: 1px solid var(--border);
  padding-top: 80px;
}
.footer-container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border);
}
[data-theme="light"] .footer { color: #f0f0f0; }
[data-theme="light"] .footer { background: #0a0a0a; }
[data-theme="light"] .footer-bottom { color: rgba(255,255,255,0.4); }
.footer-logo-text {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--orange);
  display: block; margin-bottom: 12px;
}
.footer-tagline { color: var(--orange); font-weight: 600; font-size: 0.9rem; margin-bottom: 12px; }
.footer-about { color: rgba(255,255,255,0.5); font-size: 0.9rem; line-height: 1.7; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-socials a:hover { background: var(--orange); border-color: var(--orange); color: white; }
.footer-links h4, .footer-services h4, .footer-contact h4 {
  color: white;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-links ul li a, .footer-services ul li a {
  color: rgba(255,255,255,0.45);
  font-size: 0.9rem;
  padding: 6px 0;
  display: block;
  transition: var(--transition);
}
.footer-links ul li a:hover, .footer-services ul li a:hover { color: var(--orange); padding-left: 6px; }
.contact-list li {
  display: flex; align-items: flex-start; gap: 10px;
  color: rgba(255,255,255,0.45);
  font-size: 0.9rem; padding: 6px 0;
}
.contact-list li svg { color: var(--orange); flex-shrink: 0; margin-top: 2px; }
.contact-list a { color: rgba(255,255,255,0.45); transition: var(--transition); }
.contact-list a:hover { color: var(--orange); }
.footer-bottom {
  padding: 24px 0;
  display: flex; align-items: center; justify-content: space-between;
  color: rgba(255,255,255,0.3);
  font-size: 0.85rem;
}
.footer-credit { color: var(--orange); font-weight: 600; }

/* ========= ALERT/TOAST ========= */
.alert {
  padding: 14px 20px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}
.alert-success { background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.3); color: #22c55e; }
.alert-error { background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.3); color: #ef4444; }

/* ========= ANIMATIONS ========= */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ========= RESPONSIVE ========= */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .grid-3, .packages-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .package-card.popular { transform: none; }
}
@media (max-width: 768px) {
  .nav-links { display: none; position: fixed; top: 70px; left: 0; right: 0; bottom: 0; background: var(--bg); flex-direction: column; padding: 40px 24px; gap: 0; overflow-y: auto; }
  .nav-links.open { display: flex; }
  .nav-links li { border-bottom: 1px solid var(--border); }
  .nav-links a { padding: 16px 0; font-size: 1.1rem; display: block; }
  .nav-hamburger { display: flex; }
  .section { padding: 70px 0; }
  .grid-2 { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .grid-3, .packages-grid, .blog-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .cta-box { padding: 40px 24px; }
  .mission-box { padding: 40px 24px; }
  .contact-grid { gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero-slider { min-height: 400px; height: 70vh; }
}
