/* ============================================================
   Lyft Logistics — Public Website CSS
   Premium Logistics Corporate Design
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  --primary:        #004688;
  --primary-dark:   #003570;
  --primary-light:  #0056a8;
  --primary-glow:   rgba(0, 70, 136, 0.15);
  --accent:         #E8292A;
  --accent-dark:    #c41e1e;
  --accent-glow:    rgba(232, 41, 42, 0.15);
  --dark:           #0D1B2A;
  --dark-2:         #121E2D;
  --dark-3:         #1A2D45;
  --light:          #F8FAFC;
  --white:          #FFFFFF;
  --text-primary:   #1A2332;
  --text-secondary: #4A5568;
  --text-muted:     #6B7C93;
  --border:         rgba(0, 0, 0, 0.08);
  --border-light:   rgba(255, 255, 255, 0.12);
  --radius-sm:      8px;
  --radius:         14px;
  --radius-lg:      24px;
  --radius-xl:      32px;
  --shadow-sm:      0 2px 8px rgba(0,0,0,.06);
  --shadow:         0 4px 20px rgba(0,0,0,.08);
  --shadow-md:      0 8px 32px rgba(0,0,0,.12);
  --shadow-lg:      0 20px 60px rgba(0,0,0,.15);
  --shadow-blue:    0 8px 32px rgba(0,70,136,.2);
  --transition:     all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast:all 0.15s ease;
  --header-height:  80px;
  --container:      1200px;
}

/* ── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; }

/* ── Container ─────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Section Spacing ───────────────────────────────────────── */
section { padding: 90px 0; }
.section-sm { padding: 60px 0; }
.section-lg { padding: 120px 0; }

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

.section-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 14px;
}

.section-eyebrow::before {
  content: '';
  width: 28px; height: 2px;
  background: var(--accent);
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.section-title span { color: var(--primary); }
.section-title-light { color: var(--white); }
.section-title-light span { color: var(--accent); }

.section-desc {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 580px;
  line-height: 1.8;
}

.section-desc-light { color: rgba(255,255,255,.75); }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 14px; font-weight: 700;
  text-decoration: none; border: none;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.3px;
  position: relative; overflow: hidden;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,.12);
  opacity: 0;
  transition: var(--transition-fast);
}

.btn:hover::before { opacity: 1; }

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

.btn-primary:hover {
  background: var(--primary-dark);
  box-shadow: 0 12px 40px rgba(0,70,136,.35);
  transform: translateY(-2px);
}

.btn-accent {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(232,41,42,.25);
}

.btn-accent:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.5);
}

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

.btn-outline-dark {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline-dark:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-lg { padding: 16px 36px; font-size: 15px; }
.btn-sm { padding: 10px 20px; font-size: 13px; }

/* ══════════════════════════════════════════════════
   HEADER / NAVIGATION
══════════════════════════════════════════════════ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
  height: var(--header-height);
}

.site-header.transparent {
  background: transparent;
}

.site-header.scrolled {
  background: rgba(13, 27, 42, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(0,0,0,.3);
}

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}

/* Logo */
.site-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; flex-shrink: 0;
}

.logo-icon {
  width: 44px; height: 44px;
  background: var(--primary);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: white;
  transition: var(--transition);
}

.site-logo:hover .logo-icon { background: var(--accent); transform: rotate(-5deg); }

.logo-text { display: flex; flex-direction: column; }
.logo-name {
  font-family: 'Outfit', sans-serif;
  font-size: 18px; font-weight: 800;
  color: white; line-height: 1.1;
  letter-spacing: -0.3px;
}

.logo-tagline {
  font-size: 10px; font-weight: 500;
  color: rgba(255,255,255,.55);
  text-transform: uppercase; letter-spacing: 1.5px;
}

/* Navigation */
.site-nav { display: flex; align-items: center; gap: 4px; }

.nav-link {
  padding: 8px 14px;
  font-size: 14px; font-weight: 500;
  color: rgba(255,255,255,.8);
  border-radius: 8px;
  transition: var(--transition-fast);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute; bottom: 2px; left: 50%; right: 50%;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: var(--transition-fast);
}

.nav-link:hover { color: white; }
.nav-link:hover::after, .nav-link.active::after { left: 14px; right: 14px; }
.nav-link.active { color: white; }

/* Header CTA */
.header-cta {
  display: flex; align-items: center; gap: 10px;
  flex-shrink: 0;
}

.whatsapp-btn {
  display: flex; align-items: center; gap: 7px;
  padding: 9px 18px;
  background: #25D366;
  color: white;
  border-radius: 8px;
  font-size: 13px; font-weight: 700;
  text-decoration: none;
  transition: var(--transition-fast);
}

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

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  background: none; border: none;
  color: white; font-size: 24px;
  cursor: pointer; padding: 4px;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed; top: var(--header-height); left: 0; right: 0;
  background: rgba(13, 27, 42, 0.98);
  backdrop-filter: blur(20px);
  padding: 20px 24px 32px;
  z-index: 999;
  border-top: 1px solid var(--border-light);
  transform: translateY(-10px);
  opacity: 0;
  transition: var(--transition);
}

.mobile-menu.open {
  display: block;
  transform: translateY(0);
  opacity: 1;
}

.mobile-nav-link {
  display: block;
  padding: 14px 0;
  font-size: 16px; font-weight: 500;
  color: rgba(255,255,255,.8);
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: var(--transition-fast);
}

.mobile-nav-link:hover { color: white; padding-left: 8px; }

/* ══════════════════════════════════════════════════
   HERO SECTION
══════════════════════════════════════════════════ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--dark);
}

.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0D1B2A 0%, #1A2D45 50%, #003570 100%);
  z-index: 0;
}

.hero-bg-image {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  z-index: 0;
  opacity: 0.3;
}

.hero-slider {
  position: absolute; inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.5s ease-in-out, transform 6s ease-out;
  z-index: 0;
}

.hero-slide.active {
  opacity: 0.35;
  transform: scale(1);
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgb(161 0 0 / 26%) 0%, rgb(0 53 112 / 0%) 100%)
  z-index: 1;
}

/* Animated particles */
.hero-particles {
  position: absolute; inset: 0; z-index: 1;
  overflow: hidden;
}

.hero-particles::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,70,136,.2) 0%, transparent 70%);
  top: -200px; right: -100px;
  animation: pulse-glow 6s ease-in-out infinite;
}

.hero-particles::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,41,42,.1) 0%, transparent 70%);
  bottom: -100px; left: 200px;
  animation: pulse-glow 8s ease-in-out infinite reverse;
}

@keyframes pulse-glow {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50%       { transform: scale(1.2); opacity: 1; }
}

.hero-content {
  position: relative; z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  padding-top: var(--header-height);
  width: 100%;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 16px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 100px;
  font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 2px;
  color: rgba(255,255,255,.8);
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.hero-eyebrow .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; } 50% { opacity: 0.3; }
}

.hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 900;
  color: white;
  line-height: 1.05;
  margin-bottom: 24px;
  max-width: 750px;
}

.hero-title .highlight {
  color: var(--accent);
  position: relative;
}

.hero-subtitle {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255,255,255,.7);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 40px;
}

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

/* Stats bar */
.hero-stats {
  display: flex; gap: 0;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 40px;
}

.hero-stat {
  padding: 0 40px 0 0;
  margin-right: 40px;
  border-right: 1px solid rgba(255,255,255,.1);
}

.hero-stat:last-child { border-right: none; margin-right: 0; }

.stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 38px; font-weight: 900;
  color: white;
  line-height: 1;
}

.stat-number span { color: var(--accent); }
.stat-label { font-size: 13px; color: rgba(255,255,255,.55); margin-top: 4px; }

/* Scroll indicator */
.scroll-indicator {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,.5);
  font-size: 11px; letter-spacing: 1px; text-transform: uppercase;
}

.scroll-indicator .mouse {
  width: 22px; height: 36px;
  border: 2px solid rgba(255,255,255,.3);
  border-radius: 11px;
  display: flex; justify-content: center;
  padding-top: 5px;
}

.scroll-indicator .mouse::before {
  content: '';
  width: 4px; height: 8px;
  background: rgba(255,255,255,.5);
  border-radius: 2px;
  animation: scroll-down 2s ease-in-out infinite;
}

@keyframes scroll-down {
  0%   { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(8px); opacity: 0; }
}

/* ══════════════════════════════════════════════════
   INTRO SECTION
══════════════════════════════════════════════════ */
.intro-section { background: var(--white); }

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.intro-image-wrap {
  position: relative;
}

.intro-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}

.intro-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.intro-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--primary);
  color: white;
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow-blue);
  text-align: center;
}

.intro-badge .badge-number {
  font-family: 'Outfit', sans-serif;
  font-size: 36px; font-weight: 900;
  line-height: 1;
}

.intro-badge .badge-label { font-size: 12px; opacity: .75; }

.intro-text { }

.intro-checklist {
  display: flex; flex-direction: column; gap: 12px;
  margin: 28px 0;
}

.intro-check-item {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px;
}

.check-icon {
  width: 22px; height: 22px;
  background: var(--primary-glow);
  color: var(--primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; flex-shrink: 0;
  margin-top: 2px;
}

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

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: block;
  color: var(--text-primary);
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

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

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 64px; height: 64px;
  background: var(--primary-glow);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; color: var(--primary);
  margin-bottom: 24px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--primary);
  color: white;
  transform: scale(1.05);
}

.service-card h3 {
  font-size: 18px; font-weight: 700;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-card .arrow-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600;
  color: var(--primary);
  transition: var(--transition-fast);
}

.service-card:hover .arrow-link { gap: 10px; }

/* ══════════════════════════════════════════════════
   WHY CHOOSE US
══════════════════════════════════════════════════ */
.why-section { background: var(--dark); position: relative; overflow: hidden; }

.why-section::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,70,136,.15) 0%, transparent 70%);
  top: -300px; right: -200px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.why-card {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 30px;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.why-card:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(0,70,136,.4);
  transform: translateY(-4px);
}

.why-icon {
  width: 52px; height: 52px;
  background: rgba(0,70,136,.25);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: #60A5FA;
  margin-bottom: 18px;
  transition: var(--transition);
}

.why-card:hover .why-icon {
  background: var(--primary);
  color: white;
}

.why-card h4 {
  font-size: 16px; font-weight: 700;
  color: white; margin-bottom: 10px;
}

.why-card p { font-size: 14px; color: rgba(255,255,255,.55); line-height: 1.7; }

/* ══════════════════════════════════════════════════
   STATISTICS
══════════════════════════════════════════════════ */
.stats-section { background: var(--primary); position: relative; overflow: hidden; }

.stats-section::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,.1) 0%, transparent 60%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0;
  position: relative;
  z-index: 1;
}

.stat-item {
  padding: 48px 32px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.15);
  transition: var(--transition);
}

.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(255,255,255,.06); }

.stat-counter {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(36px, 5vw, 54px);
  font-weight: 900;
  color: white;
  line-height: 1;
  margin-bottom: 10px;
  display: flex; align-items: baseline; justify-content: center; gap: 4px;
}

.stat-counter .suffix { font-size: 0.6em; color: var(--accent); }
.stat-icon-sm { font-size: 28px; color: rgba(255,255,255,.3); margin-bottom: 12px; }
.stat-name { font-size: 14px; color: rgba(255,255,255,.7); font-weight: 500; }

/* ══════════════════════════════════════════════════
   CTA SECTION
══════════════════════════════════════════════════ */
.cta-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-3) 100%);
  position: relative; overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,41,42,.1) 0%, transparent 70%);
  bottom: -200px; right: -100px;
}

.cta-content { position: relative; z-index: 1; text-align: center; }

.cta-content h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900; color: white;
  margin-bottom: 16px;
  max-width: 640px; margin-left: auto; margin-right: auto;
}

.cta-content p {
  font-size: 17px; color: rgba(255,255,255,.65);
  max-width: 540px; margin: 0 auto 36px;
}

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

/* ══════════════════════════════════════════════════
   PAGE BANNER (inner pages)
══════════════════════════════════════════════════ */
.page-banner {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-3) 100%);
  padding: 120px 0 60px;
  position: relative; overflow: hidden;
}

.page-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23004688' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-banner-content { position: relative; z-index: 1; }

.page-banner h1 {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 900; color: white;
  margin-bottom: 12px;
}

.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; color: rgba(255,255,255,.55);
}

.breadcrumb a { color: rgba(255,255,255,.7); transition: var(--transition-fast); }
.breadcrumb a:hover { color: white; }
.breadcrumb .separator { font-size: 12px; }
.breadcrumb .current { color: var(--accent); }

/* ══════════════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.contact-info-card {
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  color: white;
  position: sticky; top: calc(var(--header-height) + 24px);
}

.contact-info-item {
  display: flex; gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.contact-info-item:last-child { border-bottom: none; }

.contact-icon {
  width: 44px; height: 44px;
  background: rgba(0,70,136,.3);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: #60A5FA;
  flex-shrink: 0;
}

.contact-info-text .label {
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1px;
  color: rgba(255,255,255,.4); margin-bottom: 4px;
}

.contact-info-text .value {
  font-size: 15px; color: rgba(255,255,255,.9);
  font-weight: 500;
}

.contact-info-text a { color: rgba(255,255,255,.9); }
.contact-info-text a:hover { color: var(--accent); }

/* Contact Form */
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

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

.form-label {
  display: block;
  font-size: 13px; font-weight: 600;
  color: var(--text-primary); margin-bottom: 7px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #E2E8F0;
  border-radius: var(--radius-sm);
  font-size: 14.5px;
  color: var(--text-primary);
  background: white;
  outline: none;
  transition: var(--transition-fast);
  font-family: 'Inter', sans-serif;
}

.form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 4px var(--primary-glow); }
textarea.form-control { resize: vertical; min-height: 130px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

/* Map */
.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  height: 380px;
  margin-top: 40px;
  border: 1px solid var(--border);
}

.map-container iframe { width: 100%; height: 100%; border: none; }

/* ══════════════════════════════════════════════════
   GALLERY PAGE
══════════════════════════════════════════════════ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 40px;
}

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

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

.gallery-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.6) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
  display: flex; align-items: flex-end;
  padding: 20px;
}

.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover .gallery-item-overlay { opacity: 1; }

.gallery-item-overlay span { color: white; font-size: 14px; font-weight: 600; }

/* ══════════════════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════════════════ */
.about-intro { background: var(--white); }
.about-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.mission-vision { background: var(--light); }
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

.mv-card {
  background: white;
  border-radius: var(--radius);
  padding: 40px;
  border: 1px solid var(--border);
  border-top: 4px solid var(--primary);
}

.mv-card.accent-border { border-top-color: var(--accent); }

.mv-card .icon {
  width: 56px; height: 56px;
  background: var(--primary-glow);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: var(--primary);
  margin-bottom: 20px;
}

.values-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; }

.value-card {
  text-align: center;
  padding: 32px 24px;
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--primary-glow); }

.value-icon {
  width: 56px; height: 56px;
  background: var(--primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: white;
  margin: 0 auto 16px;
}

/* ══════════════════════════════════════════════════
   SERVICE DETAIL PAGE
══════════════════════════════════════════════════ */
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 48px;
  align-items: start;
}

.service-content h1 { font-size: 36px; margin-bottom: 20px; }

.service-content-body { font-size: 15.5px; color: var(--text-secondary); line-height: 1.8; }
.service-content-body p { margin-bottom: 16px; }
.service-content-body ul { margin-left: 20px; margin-bottom: 16px; list-style: disc; }

.service-sidebar .sidebar-card {
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}

.service-sidebar .sidebar-card-header {
  background: var(--primary);
  color: white; padding: 16px 20px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
}

.service-sidebar .sidebar-card-body { padding: 0; }

.service-list-link {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 14px;
  transition: var(--transition-fast);
}

.service-list-link:last-child { border-bottom: none; }
.service-list-link:hover { background: var(--light); color: var(--primary); padding-left: 24px; }
.service-list-link.current { color: var(--primary); font-weight: 600; background: var(--light); }

.service-list-link i { font-size: 13px; }

/* ══════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════ */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,.65);
}

.footer-top { padding: 72px 0 48px; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: 48px;
}

.footer-brand { }

.footer-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; margin-bottom: 18px;
}

.footer-logo-icon {
  width: 44px; height: 44px;
  background: var(--primary);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: white;
}

.footer-logo-name {
  font-family: 'Outfit', sans-serif;
  font-size: 18px; font-weight: 800; color: white;
}

.footer-desc { font-size: 14px; line-height: 1.75; margin-bottom: 24px; }

.social-links { display: flex; gap: 10px; flex-wrap: wrap; }

.social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6);
  text-decoration: none; font-size: 16px;
  transition: var(--transition-fast);
}

.social-link:hover { background: var(--primary); color: white; border-color: var(--primary); transform: translateY(-2px); }

.footer-col h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 14px; font-weight: 700;
  color: white;
  text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }

.footer-link {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  text-decoration: none;
  transition: var(--transition-fast);
  display: flex; align-items: center; gap: 8px;
}

.footer-link:hover { color: white; padding-left: 6px; }

.footer-contact-item {
  display: flex; gap: 12px; align-items: flex-start;
  margin-bottom: 16px; font-size: 14px;
}

.footer-contact-item .icon {
  width: 18px; color: var(--accent); flex-shrink: 0;
  margin-top: 2px; text-align: center;
}

.footer-contact-item a { color: rgba(255,255,255,.65); }
.footer-contact-item a:hover { color: white; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 22px 0;
}

.footer-bottom-inner {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13px; gap: 16px; flex-wrap: wrap;
}

.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,.45); }
.footer-bottom-links a:hover { color: white; }

/* ── Floating WhatsApp ─────────────────────────────────────── */
.float-whatsapp {
  position: fixed; bottom: 28px; right: 28px;
  z-index: 999;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; color: white;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  animation: float-whatsapp 3s ease-in-out infinite;
  transition: var(--transition-fast);
}

.float-whatsapp:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,.5); }

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

/* ── Error Pages ───────────────────────────────────────────── */
.error-page {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, var(--dark), var(--dark-3));
  color: white; padding: 40px;
}

.error-code {
  font-family: 'Outfit', sans-serif;
  font-size: 120px; font-weight: 900;
  color: rgba(255,255,255,.08);
  line-height: 1;
  margin-bottom: -20px;
}

.error-title { font-size: 32px; font-weight: 800; color: white; margin-bottom: 14px; }
.error-desc { font-size: 16px; color: rgba(255,255,255,.55); margin-bottom: 36px; }

/* ── AOS Animations ─────────────────────────────────────────── */
[data-aos] { opacity: 0; transition: opacity 0.6s ease, transform 0.6s ease; }
[data-aos="fade-up"]   { transform: translateY(30px); }
[data-aos="fade-left"] { transform: translateX(30px); }
[data-aos="fade-right"]{ transform: translateX(-30px); }
[data-aos="zoom-in"]   { transform: scale(0.95); }
[data-aos].aos-animate { opacity: 1; transform: none; }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .intro-grid, .about-intro-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info-card { position: static; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .mv-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --header-height: 68px; }
  section { padding: 64px 0; }
  .site-nav, .header-cta { display: none; }
  .nav-toggle { display: block; }
  .hero-stats { gap: 0; flex-direction: column; }
  .hero-stat { padding: 16px 0; border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); margin-right: 0; }
  .hero-stat:last-child { border-bottom: none; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-bottom: 1px solid rgba(255,255,255,.1); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .intro-badge { position: static; margin-top: 20px; display: inline-block; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-title { font-size: 32px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .contact-form-card, .contact-info-card { padding: 28px 20px; }
  .values-grid { grid-template-columns: 1fr; }
  .stat-counter { font-size: 36px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

/* ── Custom Scrollbar ───────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #F1F5F9; }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary-dark); }
