/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #002366;
  --primary-light: #1a3d8a;
  --primary-dark: #001540;
  --navy: #ffffff;             /* Changed to white for a cleaner look */
  --navy2: #f8f9fa;            /* Changed to off-white */
  --navy3: #eef2f7;
  --accent: #1E90FF;
  --card-bg: #ffffff;
  --card-border: rgba(0,35,102,0.08);
  --surface: #ffffff;
  --surface-alt: #f8f9fa;
  --text: #333333;             /* Darker text for readability on white */
  --text-dark: #001540;
  --text-muted: #666666;
  --white: #ffffff;
  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 10px 40px rgba(0,35,102,0.1);
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--navy);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  overflow-y: auto;
  width: 100%;
}

/* ===== UTILITIES ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-dark {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(30,144,255,0.12);
  border: 1px solid rgba(30,144,255,0.25);
  color: var(--accent);
  padding: 6px 16px; border-radius: 999px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-family: 'Outfit', sans-serif; font-size: clamp(32px, 5vw, 48px); font-weight: 800; line-height: 1.15; margin-bottom: 16px; }
.section-header p { font-size: 17px; color: var(--text-muted); max-width: 520px; margin: 0 auto; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white; padding: 14px 28px; border-radius: var(--radius-sm);
  font-weight: 700; font-size: 15px; text-decoration: none;
  border: none; cursor: pointer;
  box-shadow: 0 4px 24px rgba(0,35,102,0.4);
  transition: var(--transition); position: relative; overflow: hidden;
}
.btn-primary::before {
  content: '';position:absolute;inset:0;
  background:linear-gradient(135deg, rgba(255,255,255,0.15),transparent);
  opacity:0; transition: var(--transition);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,35,102,0.55); }
.btn-primary:hover::before { opacity:1; }
.btn-primary:active { transform: translateY(0); }
.btn-full { width: 100%; justify-content: center; }

.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary); padding: 12px 28px; border-radius: var(--radius-sm);
  font-weight: 700; font-size: 15px; text-decoration: none;
  transition: var(--transition);
}
.btn-outline:hover {
  background: rgba(0,35,102,0.05);
  transform: translateY(-2px);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}
.navbar.scrolled, .navbar.menu-active {
  background: white; /* Solid white background when scrolled or menu active */
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0,35,102,0.08);
}
.navbar.menu-active {
  background: #002366; /* Match the menu background when active */
}
.nav-container {
  width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  box-sizing: border-box;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; flex-shrink: 0;
}
.logo-icon { display: flex; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-main { font-family: 'Outfit', sans-serif; font-size: 20px; font-weight: 900; color: var(--primary); letter-spacing: 1px; transition: color 0.3s ease; }
.navbar.menu-active .logo-main { color: white; }
.logo-sub { font-size: 11px; font-weight: 700; color: var(--accent); letter-spacing: 2.5px; }

.nav-links {
  display: flex; align-items: center; gap: 8px;
  list-style: none;
  padding: 0;
}
.nav-links a {
  color: var(--text-muted); text-decoration: none;
  font-size: 13px; font-weight: 500; padding: 6px 12px;
  border-radius: 8px; transition: var(--transition);
  white-space: nowrap;
}
.nav-links a:hover { color: white; background: rgba(255,255,255,0.06); }

.nav-cta {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white; padding: 10px 20px; border-radius: var(--radius-sm);
  font-weight: 700; font-size: 14px; text-decoration: none;
  transition: var(--transition); flex-shrink: 0;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,35,102,0.4); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 5px; margin-left: auto;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  min-height: 90vh; display: flex; align-items: center;
  padding: 120px 24px 80px;
  max-width: 1200px; margin: 0 auto;
  position: relative; gap: 60px;
}

.hero-bg {
  position: absolute; inset: 0; z-index: -1; overflow: hidden;
  background: var(--navy);
}

.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.08;
}
.orb1 { width: 600px; height: 600px; background: radial-gradient(circle, var(--accent), transparent); top: -10%; left: -10%; }
.orb2 { width: 500px; height: 500px; background: radial-gradient(circle, var(--primary), transparent); bottom: -10%; right: -5%; }
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(0,35,102,0.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(0,35,102,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content { flex: 1; min-width: 0; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--navy2); border: 1px solid var(--card-border);
  padding: 8px 16px; border-radius: 999px; font-size: 13px; font-weight: 600;
  color: var(--primary); margin-bottom: 24px;
}
.badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(30,144,255,0.3);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 3px rgba(30,144,255,0.3); }
  50% { box-shadow: 0 0 0 6px rgba(30,144,255,0.1); }
}

.hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 900; line-height: 1.1; margin-bottom: 20px;
  color: var(--text-dark);
}

.hero-desc { font-size: 17px; color: var(--text-muted); max-width: 480px; margin-bottom: 36px; line-height: 1.7; }

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-stats {
  display: flex; align-items: center; gap: 0;
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: var(--radius); padding: 20px 28px;
  backdrop-filter: blur(10px); width: fit-content;
}
.stat-item { text-align: center; padding: 0 24px; }
.stat-item:first-child { padding-left: 0; }
.stat-item:last-child { padding-right: 0; }
.stat-num {
  display: inline; font-family: 'Outfit', sans-serif;
  font-size: 32px; font-weight: 900; color: var(--accent);
}
.stat-plus { font-size: 24px; font-weight: 900; color: var(--accent); }
.stat-label { display: block; font-size: 12px; color: var(--text-muted); font-weight: 500; margin-top: 4px; }
.stat-divider { width: 1px; background: var(--card-border); height: 40px; }

/* HERO VISUAL */
.hero-visual { flex: 1; display: flex; justify-content: center; align-items: center; position: relative; }
.truck-scene { position: relative; width: 100%; max-width: 520px; }
.truck-glow {
  position: absolute; inset: 10%; border-radius: 50%;
  background: radial-gradient(circle, rgba(30,144,255,0.2), transparent 70%);
  filter: blur(40px);
}
.truck-svg { width: 100%; height: auto; filter: drop-shadow(0 20px 40px rgba(0,35,102,0.2)); }

.floating-card {
  position: absolute; display: flex; align-items: center; gap: 8px;
  background: rgba(13,13,26,0.85); border: 1px solid rgba(30,144,255,0.25);
  backdrop-filter: blur(12px); border-radius: 12px;
  padding: 10px 16px; font-size: 13px; font-weight: 600; color: white;
  white-space: nowrap; box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.card1 { top: 15%; left: -5%; animation: float 4s ease-in-out infinite; }
.card2 { bottom: 20%; right: -5%; animation: float 4s ease-in-out infinite 2s; }
@keyframes float {
  0%,100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.scroll-indicator {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  color: var(--text-muted); text-decoration: none;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== SERVICES ===== */
.services {
  padding: 100px 0;
  background: linear-gradient(180deg, transparent, rgba(255,107,0,0.03), transparent);
}

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

.service-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius); padding: 32px;
  transition: var(--transition); position: relative; overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,35,102,0.05);
}
.service-card:hover { 
  border-color: var(--accent); 
  transform: translateY(-8px); 
  box-shadow: 0 20px 40px rgba(0,35,102,0.12); 
}

.service-card.featured {
  border-color: rgba(30,144,255,0.4);
  background: linear-gradient(135deg, rgba(30,144,255,0.08), rgba(30,144,255,0.02));
}
.featured-badge {
  position: absolute; top: 16px; right: 16px;
  background: var(--primary); color: white; font-size: 11px; font-weight: 700;
  padding: 4px 10px; border-radius: 999px; letter-spacing: 0.5px;
}

.service-icon { width: 64px; height: 64px; margin-bottom: 16px; }
.service-card h3 { font-family: 'Outfit', sans-serif; font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.service-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }

.service-features { list-style: none; margin-bottom: 20px; }
.service-features li {
  font-size: 13px; color: var(--text-muted); padding: 4px 0;
  display: flex; align-items: center; gap: 8px;
}
.service-features li::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0;
}

.service-link {
  display: inline-flex; align-items: center; gap: 4px;
  color: var(--accent); font-size: 14px; font-weight: 600; text-decoration: none;
  transition: var(--transition);
}
.service-link:hover { gap: 8px; }

/* ===== WHY US ===== */
.why-us {
  padding: 100px 0;
  background: rgba(255,255,255,0.01);
}
.why-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.why-left h2 { font-family: 'Outfit', sans-serif; font-size: clamp(32px,4vw,48px); font-weight: 800; line-height: 1.2; margin-bottom: 16px; }
.why-left > p { font-size: 16px; color: var(--text-muted); margin-bottom: 36px; }

.why-features { display: flex; flex-direction: column; gap: 24px; }
.why-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px; background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: var(--radius-sm); transition: var(--transition);
}
.why-item:hover { border-color: rgba(30,144,255,0.25); }
.why-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(30,144,255,0.12); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.why-item h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.why-item p { font-size: 13px; color: var(--text-muted); }

/* TESTIMONIALS */
.testimonials {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: var(--radius); padding: 32px; margin-bottom: 24px; position: relative; overflow: hidden;
}
.testimonial { display: none; }
.testimonial.active { display: block; animation: fadeIn 0.4s ease; }
@keyframes fadeIn { from { opacity:0; transform:translateY(10px); } to { opacity:1; transform:translateY(0); } }

.stars { color: #FFD700; font-size: 18px; letter-spacing: 2px; margin-bottom: 14px; }
.testimonial p { font-size: 15px; color: var(--text); line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 14px; color: white; flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 15px; font-weight: 700; }
.testimonial-author span { font-size: 12px; color: var(--text-muted); }
.testimonial-dots { display: flex; gap: 8px; margin-top: 20px; }
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.2); border: none; cursor: pointer;
  transition: var(--transition); padding: 0;
}
.dot.active { background: var(--primary); width: 24px; border-radius: 4px; }

.trust-badges {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
}
.trust-badge {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: var(--radius-sm); padding: 16px 8px;
  font-size: 12px; font-weight: 600; color: var(--text-muted); text-align: center;
  transition: var(--transition);
}
.trust-badge:hover { border-color: rgba(255,107,0,0.25); color: white; }

/* ===== HOW IT WORKS ===== */
.how-it-works {
  padding: 100px 0;
  background: linear-gradient(180deg, transparent, rgba(255,107,0,0.03), transparent);
}
.steps-grid {
  display: flex; align-items: flex-start; gap: 0;
}
.step-card {
  flex: 1; background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: var(--radius); padding: 28px 24px; text-align: center;
  transition: var(--transition); position: relative;
}
.step-card:hover { border-color: rgba(255,107,0,0.3); transform: translateY(-4px); }
.step-number {
  font-family: 'Outfit', sans-serif; font-size: 48px; font-weight: 900;
  color: rgba(255,107,0,0.12); line-height: 1; margin-bottom: 12px;
}
.step-icon { display: flex; justify-content: center; margin-bottom: 16px; }
.step-card h3 { font-family: 'Outfit', sans-serif; font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.step-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

.step-connector {
  width: 48px; height: 2px;
  background: linear-gradient(90deg, rgba(255,107,0,0.4), rgba(255,107,0,0.1));
  margin-top: 80px; flex-shrink: 0; position: relative;
}
.step-connector::after {
  content:''; position: absolute; right: 0; top: -4px;
  border: 5px solid transparent; border-left-color: rgba(255,107,0,0.4);
}

/* ===== CONTACT ===== */
.contact { padding: 100px 0; }
.contact-inner {
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 80px; align-items: start;
}
.contact-left h2 { font-family: 'Outfit', sans-serif; font-size: clamp(32px,4vw,48px); font-weight: 800; margin-bottom: 16px; }
.contact-left > p { font-size: 16px; color: var(--text-muted); margin-bottom: 36px; }

.contact-info { display: flex; flex-direction: column; gap: 12px; }
.contact-item {
  display: flex; align-items: center; gap: 14px;
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: var(--radius-sm); padding: 16px 20px;
  text-decoration: none; color: inherit; transition: var(--transition);
}
.contact-item:hover { border-color: rgba(255,107,0,0.3); }
.contact-item-icon {
  width: 40px; height: 40px; border-radius: 8px;
  background: rgba(255,107,0,0.12); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-item span { display: block; font-size: 12px; color: var(--text-muted); }
.contact-item strong { font-size: 15px; font-weight: 700; }

/* FORM */
.contact-form {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: var(--radius); padding: 36px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--text-muted); }
.form-group input, .form-group select, .form-group textarea {
  background: #fdfdfd;
  border: 1px solid rgba(0,35,102,0.1);
  border-radius: var(--radius-sm); padding: 12px 16px;
  color: var(--text-dark); font-size: 14px; font-family: inherit;
  transition: var(--transition); width: 100%;
  outline: none;
}
.form-group select option { background: white; color: var(--text-dark); }
.form-group input::placeholder, .form-group textarea::placeholder { color: #aaa; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--accent);
  background: rgba(30,144,255,0.05);
  box-shadow: 0 0 0 3px rgba(30,144,255,0.1);
}
.form-group textarea { resize: none; }

.form-success {
  text-align: center; padding: 40px 20px;
}
.form-success h3 { font-size: 22px; font-weight: 700; margin: 16px 0 8px; }
.form-success p { color: var(--text-muted); }

/* ===== LOCATION SECTION ===== */
.location-section {
  padding: 100px 0;
  background: var(--navy2);
}
.map-container {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--card-border);
  margin-bottom: 24px;
}
.map-container iframe {
  display: block;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy2);
  border-top: 1px solid var(--card-border);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 48px;
}
.footer-brand p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.social-link {
  width: 38px; height: 38px; border-radius: 8px;
  background: var(--card-bg); border: 1px solid var(--card-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); text-decoration: none;
  transition: var(--transition);
}
.social-link:hover { border-color: var(--accent); color: var(--accent); }

.footer-col h4 { font-size: 14px; font-weight: 700; margin-bottom: 16px; letter-spacing: 0.5px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a, .footer-col span {
  font-size: 13px; color: var(--text-muted); text-decoration: none; transition: var(--transition);
}
.footer-col a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid var(--card-border);
  padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: 13px; color: var(--text-muted); }

/* ===== NAVBAR ACTIVE STATE ===== */
.nav-links a.active {
  color: var(--accent);
  background: rgba(30,144,255,0.08);
}

/* ===== SUBPAGE HEADER ===== */
.page-header {
  padding: 160px 0 80px;
  background: var(--navy2);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-header::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(30,144,255,0.05) 0%, transparent 70%);
}
.page-header h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 16px;
  position: relative;
}
.breadcrumbs {
  display: flex;
  justify-content: center;
  gap: 8px;
  list-style: none;
  font-size: 14px;
  color: var(--text-muted);
  position: relative;
}
.breadcrumbs a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
}
.breadcrumbs a:hover { color: var(--accent); }
.breadcrumbs li::after {
  content: '/'; margin-left: 8px;
}
.breadcrumbs li:last-child::after { content: ''; }

/* ===== SEO CONTENT SECTION ===== */
.seo-content {
  padding: 80px 0;
  background: var(--white);
}
.seo-text {
  max-width: 900px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
}
.seo-text h2, .seo-text h3 {
  font-family: 'Outfit', sans-serif;
  color: var(--text-dark);
  margin: 40px 0 20px;
}
.seo-text p { margin-bottom: 20px; }
.seo-text ul { margin-bottom: 20px; padding-left: 20px; }
.seo-text li { margin-bottom: 10px; }

/* ===== FAQ SECTION ===== */
.faq-section {
  padding: 100px 0;
  background: var(--navy2);
}
.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  padding: 24px;
  cursor: pointer;
  transition: var(--transition);
}
.faq-item:hover { border-color: var(--accent); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  color: var(--text-dark);
}
.faq-answer {
  margin-top: 16px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  display: none;
}
.faq-item.active .faq-answer { display: block; }
.faq-item.active .faq-question svg { transform: rotate(180deg); }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  text-decoration: none; transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,0.5); }
.wa-tooltip {
  position: absolute; right: 70px; top: 50%; transform: translateY(-50%);
  background: #1a1a2e; color: white; font-size: 13px; font-weight: 600;
  padding: 8px 14px; border-radius: 8px; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: var(--transition);
  border: 1px solid var(--card-border);
}
.whatsapp-float:hover .wa-tooltip { opacity: 1; transform: translateY(-50%) translateX(-5px); }

/* ===== MOBILE STICKY BAR ===== */
.mobile-action-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--card-border);
  padding: 12px 16px;
  z-index: 1001;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  box-shadow: 0 -10px 30px rgba(0,0,0,0.05);
}
.mobile-action-bar .btn-primary, .mobile-action-bar .btn-whatsapp {
  font-size: 14px;
  padding: 12px;
  border-radius: 12px;
  justify-content: center;
  box-shadow: none;
}
.btn-whatsapp {
  background: #25D366;
  color: white;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: var(--transition);
}

/* ===== RESPONSIVE REFINEMENTS ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-inner { grid-template-columns: 1fr; gap: 48px; }
  .trust-badges { grid-template-columns: repeat(2, 1fr); }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .hero { gap: 40px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile Menu Triggered Earlier (at 1150px) */
@media (max-width: 1150px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; inset: 0; z-index: 2000;
    background: linear-gradient(135deg, #0f172a 0%, #020617 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 120px 40px 140px; 
    align-items: flex-start;
    overflow-y: auto;
    animation: menuFadeIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  }
  
  @keyframes menuFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  .nav-links.open li {
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    animation: itemSlideUp 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  }

  /* Staggered animation for menu items */
  .nav-links.open li:nth-child(1) { animation-delay: 0.1s; }
  .nav-links.open li:nth-child(2) { animation-delay: 0.15s; }
  .nav-links.open li:nth-child(3) { animation-delay: 0.2s; }
  .nav-links.open li:nth-child(4) { animation-delay: 0.25s; }
  .nav-links.open li:nth-child(5) { animation-delay: 0.3s; }
  .nav-links.open li:nth-child(6) { animation-delay: 0.35s; }
  .nav-links.open li:nth-child(7) { animation-delay: 0.4s; }
  .nav-links.open li:nth-child(8) { animation-delay: 0.45s; }

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

  .nav-links.open a { 
    display: block;
    width: 100%; 
    font-family: 'Outfit', sans-serif;
    font-size: 32px; 
    font-weight: 700; 
    padding: 16px 0; 
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    border-bottom: none;
    transition: all 0.3s ease;
    position: relative;
    white-space: normal;
  }

  .nav-links.open a.active {
    color: white;
    padding-left: 20px;
  }

  .nav-links.open a.active::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    transform: translateY(-50%);
    width: 4px; height: 30px;
    background: var(--accent);
    border-radius: 2px;
    box-shadow: 0 0 15px var(--accent);
  }

  .nav-links.open a:active {
    color: var(--accent);
    transform: scale(0.98);
  }
  
  .nav-cta { display: none; }
  .hamburger { 
    display: flex; z-index: 2001; position: relative; 
    width: 40px; height: 40px; justify-content: center; align-items: center;
  }
  .hamburger span { width: 24px; height: 2px; }
  .hamburger.open span { background: white; }
}

@media (max-width: 768px) {
  /* Enforce No Horizontal Scroll */
  html, body { overflow-x: hidden; width: 100%; position: relative; }
  
  .mobile-action-bar { display: grid; }
  
  /* Hero Refinements */
  .hero { 
    flex-direction: column; 
    padding: 100px 20px 60px; 
    text-align: center; 
    align-items: center;
  }
  .hero-content { width: 100%; display: flex; flex-direction: column; align-items: center; }
  .hero-title { font-size: 32px; line-height: 1.2; text-align: center; }
  .hero-desc { margin: 0 auto 30px; text-align: center; font-size: 16px; }
  .hero-actions { justify-content: center; width: 100%; }
  .hero-actions a { width: 100%; max-width: 300px; }
  .hero-visual { width: 100%; margin-top: 40px; }
  .hero-visual img { max-width: 100%; height: auto; }

  /* Stats Refinement */
  .hero-stats { 
    flex-direction: column; 
    width: 100%; 
    gap: 20px; 
    padding: 30px 20px;
    margin-top: 40px;
  }
  .stat-item { padding: 0; width: 100%; text-align: center; }
  .stat-divider { display: none; }
  
  /* Section Headers */
  .section-header { padding: 0 10px; }
  .section-header h2 { font-size: 28px; text-align: center; }
  .section-header p { text-align: center; font-size: 15px; }

  /* Services & Cards */
  .services-grid { grid-template-columns: 1fr; gap: 20px; }
  .service-card { text-align: center; display: flex; flex-direction: column; align-items: center; }
  .service-features { display: inline-block; text-align: left; margin: 0 auto 20px; }

  /* Steps Refinement */
  .steps-grid { flex-direction: column; align-items: center; gap: 20px; }
  .step-card { width: 100%; text-align: center; }
  .step-connector { display: none; }

  /* Gallery Refinement */
  .gallery-grid { grid-template-columns: 1fr; gap: 20px; }

  /* Contact & Form */
  .contact-inner { grid-template-columns: 1fr; text-align: center; }
  .contact-info { align-items: center; }
  .contact-item { width: 100%; justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  




  /* Footer Refinement */
  .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .footer-brand { display: flex; flex-direction: column; align-items: center; }
  .footer-col ul { align-items: center; }
  .footer-bottom { text-align: center; }

  /* Subpages Clearance */
  .page-header { padding: 140px 20px 60px; margin-top: 0; position: relative; z-index: 1; }
  .seo-text { text-align: center; }
  .seo-text ul { display: inline-block; text-align: left; width: 100%; }

  .whatsapp-float { bottom: 85px; right: 15px; z-index: 99; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 28px; }
  .section-header h2 { font-size: 24px; }
  .trust-badges { grid-template-columns: 1fr; }
}

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

/* ===== GALLERY SECTION ===== */
.gallery {
  padding: 100px 0;
  background: var(--white);
}

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

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow);
  cursor: pointer;
  background: var(--navy2);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0, 0.2, 1);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 35, 102, 0.9) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 30px;
  color: white;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-text {
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-text {
  transform: translateY(0);
}

.gallery-text h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
}

.gallery-text p {
  font-size: 14px;
  opacity: 0.8;
  line-height: 1.4;
}

@media (max-width: 992px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item { aspect-ratio: 16/10; }
}



body.preloader-fixed {
  overflow: hidden !important;
  height: 100vh;
}

#preloader.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none; /* Ensure it doesn't block clicks after fading */
}

/* ===== SECURITY PROTECTION ===== */
body {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Allow text selection in form inputs and textareas */
input, textarea, select {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

img {
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-select: none;
  -webkit-touch-callout: none;
}

/* ===== SERVICE AREAS REFINEMENT ===== */
.area-item {
  padding: 12px 8px;
  border-radius: 12px;
  background: #f8faff;
  border: 1px solid #eef2ff;
  text-align: center;
  transition: var(--transition);
  cursor: default;
}

.area-item strong {
  color: var(--primary);
  font-size: 14px;
  display: block;
}

.area-item:hover {
  transform: translateY(-5px);
  background: #ffffff;
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(30,144,255,0.1);
}

@media (max-width: 480px) {
  .service-areas .container .section-header h2 {
    font-size: 22px;
  }
}

/* ===== BLOG STYLES ===== */
.blog-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.blog-filter-btn {
  background: var(--white);
  border: 1px solid var(--card-border);
  color: var(--text);
  padding: 10px 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.blog-filter-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(30,144,255,0.05);
}
.blog-filter-btn.active {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(0,35,102,0.25);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  box-shadow: 0 20px 40px rgba(0,35,102,0.15);
}
.blog-image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.blog-card:hover .blog-image img {
  transform: scale(1.05);
}
.blog-category-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--accent);
  color: white;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(30,144,255,0.3);
}
.blog-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 12px;
  font-weight: 500;
}
.blog-card-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.blog-info h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.3;
  transition: var(--transition);
}
.blog-card:hover .blog-info h3 {
  color: var(--accent);
}
.blog-info p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-read-more {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
}
.blog-read-more svg {
  transition: var(--transition);
}
.blog-card:hover .blog-read-more {
  color: var(--accent);
}
.blog-card:hover .blog-read-more svg {
  transform: translateX(4px);
}

/* Detail page enhancements */
.blog-detail-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}
.blog-detail-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--card-border);
}
.blog-detail-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  margin-bottom: 40px;
  box-shadow: var(--shadow);
}
.blog-detail-content {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
}
.blog-detail-content h2, .blog-detail-content h3 {
  font-family: 'Outfit', sans-serif;
  color: var(--text-dark);
  margin: 40px 0 20px;
}
.blog-detail-content p {
  margin-bottom: 24px;
}
.blog-detail-content ul, .blog-detail-content ol {
  margin-bottom: 24px;
  padding-left: 24px;
}
.blog-detail-content li {
  margin-bottom: 10px;
}
.blog-detail-content blockquote {
  border-left: 4px solid var(--accent);
  padding: 16px 24px;
  background: var(--navy2);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 32px 0;
  font-style: italic;
  color: var(--primary);
}
.blog-checklist {
  list-style: none !important;
  padding-left: 0 !important;
}
.blog-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.blog-checklist li::before {
  content: '✓';
  color: var(--accent);
  font-weight: bold;
  font-size: 18px;
  line-height: 1;
}

@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-consent-banner {
  position: fixed;
  bottom: -180px; /* Start hidden for animation */
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 950px;
  background: rgba(10, 15, 30, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 18px 24px;
  z-index: 9999;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
  color: #ffffff;
  transition: bottom 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
  opacity: 0;
}

.cookie-consent-banner.show {
  bottom: 24px;
  opacity: 1;
}

.cookie-consent-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cookie-consent-text {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  line-height: 1.6;
  color: #e2e8f0;
}

.cookie-icon {
  color: #ff6b00;
  flex-shrink: 0;
  animation: cookie-wiggle 3s ease-in-out infinite;
}

@keyframes cookie-wiggle {
  0%, 90%, 100% { transform: rotate(0deg); }
  93% { transform: rotate(-10deg); }
  95% { transform: rotate(10deg); }
  97% { transform: rotate(-5deg); }
  99% { transform: rotate(5deg); }
}

.cookie-consent-text a {
  color: #ff6b00;
  text-decoration: underline;
  font-weight: 600;
  transition: var(--transition);
}

.cookie-consent-text a:hover {
  color: #ff8533;
}

.cookie-consent-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.btn-cookie-primary {
  background: #ff6b00;
  color: #ffffff;
  border: none;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(255, 107, 0, 0.3);
}

.btn-cookie-primary:hover {
  background: #e65c00;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(255, 107, 0, 0.45);
}

.btn-cookie-primary:active {
  transform: translateY(0);
}

.btn-cookie-secondary {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 9px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-cookie-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
}

.btn-cookie-secondary:active {
  transform: translateY(0);
}

.btn-cookie-link {
  color: #cbd5e1;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  padding: 8px 16px;
  transition: var(--transition);
}

.btn-cookie-link:hover {
  color: #ff6b00;
}

/* Responsive styles for cookie banner */
@media (max-width: 768px) {
  .cookie-consent-banner {
    width: calc(100% - 32px);
    padding: 16px;
  }
  
  .cookie-consent-banner.show {
    bottom: 80px; /* Above the mobile sticky action bar */
  }
  
  .cookie-consent-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  
  .cookie-consent-actions {
    width: 100%;
    justify-content: flex-end;
    gap: 8px;
  }
  
  .btn-cookie-primary, .btn-cookie-secondary, .btn-cookie-link {
    flex: 1;
    text-align: center;
    padding: 12px 8px;
    font-size: 13px;
  }
}

