/* ============================================================
   RIDO RENTING LLP — Premium Light Design System
   Clean White + Vivid Green + Rich Navy Accent Theme
   ============================================================ */

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

/* ── CSS Variables ── */
:root {
  --primary:        #FFFFFF;
  --primary-mid:    #F0F7FF;
  --primary-light:  #E3F0FF;
  --navy:           #0B1F48;
  --navy-mid:       #153065;
  --navy-light:     #1E4080;
  --accent:         #00B96B;
  --accent-dim:     #00976E;
  --accent-bright:  #00E676;
  --accent-glow:    rgba(0, 185, 107, 0.12);
  --accent-soft:    rgba(0, 185, 107, 0.08);
  --blue-accent:    #2563EB;
  --blue-soft:      rgba(37, 99, 235, 0.08);
  --text-dark:      #0B1F48;
  --text-body:      #374151;
  --text-muted:     #6B7280;
  --text-light:     #9CA3AF;
  --border:         #E5E7EB;
  --border-accent:  rgba(0, 185, 107, 0.3);
  --card-bg:        #FFFFFF;
  --card-shadow:    0 4px 24px rgba(11, 31, 72, 0.08);
  --card-shadow-lg: 0 12px 48px rgba(11, 31, 72, 0.14);
  --shadow-green:   0 8px 32px rgba(0, 185, 107, 0.22);
  --shadow-blue:    0 8px 32px rgba(37, 99, 235, 0.18);
  --radius-sm:      8px;
  --radius-md:      14px;
  --radius-lg:      20px;
  --radius-xl:      32px;
  --transition:     all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-main:      'Outfit', sans-serif;
  --font-body:      'Inter', sans-serif;
  --nav-height:     72px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--font-body);
  background-color: var(--primary);
  color: var(--text-body);
  line-height: 1.7;
  overflow-x: hidden;
}

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

/* ── Typography ── */
h1, h2, h3, h4, h5 { font-family: var(--font-main); line-height: 1.2; font-weight: 700; color: var(--text-dark); }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }
p  { color: var(--text-muted); font-size: 1rem; }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-glow);
  border: 1px solid var(--border-accent);
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.section-title { color: var(--text-dark); margin-bottom: 0.6rem; }
.section-subtitle { color: var(--text-muted); max-width: 620px; margin: 0 auto 3rem; text-align: center; font-size: 1.05rem; }
.text-accent { color: var(--accent); }
.text-center { text-align: center; }

/* ── Layout ── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 90px 0; background: var(--primary); }
.section-alt { background: var(--primary-mid); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 30px;
  border-radius: 100px;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dim));
  color: #FFFFFF;
  box-shadow: var(--shadow-green);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 185, 107, 0.38);
  background: linear-gradient(135deg, #00CB75, var(--accent));
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
  background: var(--accent-glow);
}

.btn-outline-white {
  background: transparent;
  color: #FFFFFF;
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  border-color: #FFFFFF;
  background: rgba(255,255,255,0.15);
  transform: translateY(-2px);
}

.btn-sm { padding: 10px 22px; font-size: 0.85rem; }

/* ── Card ── */
.glass-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--card-shadow);
  transition: var(--transition);
}
.glass-card:hover {
  border-color: var(--border-accent);
  box-shadow: var(--shadow-green);
  transform: translateY(-4px);
}

/* ── Navigation ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255,255,255,0.98);
  box-shadow: 0 4px 24px rgba(11,31,72,0.10);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.nav-logo { display: flex; align-items: center; gap: 0.6rem; }

.nav-logo-mark {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dim));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-main);
  font-weight: 900;
  font-size: 1.1rem;
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(0,185,107,0.35);
}

.nav-logo-text {
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.nav-logo-text span { color: var(--accent); }

.nav-menu { display: flex; align-items: center; gap: 2.2rem; }

.nav-link {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
  position: relative;
  padding-bottom: 2px;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: width 0.3s ease;
}
.nav-link:hover, .nav-link.active { color: var(--navy); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-cta { margin-left: 1rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── Hero Section ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0B1F48 0%, #153065 45%, #1E4080 75%, #0F2A5A 100%);
  z-index: 0;
}
.hero-bg::before {
  content: '';
  position: absolute;
  top: -15%;
  right: -8%;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(0,185,107,0.18) 0%, transparent 65%);
  border-radius: 50%;
  animation: pulse-glow 6s ease-in-out infinite;
}
.hero-bg::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(37,99,235,0.15) 0%, transparent 65%);
  border-radius: 50%;
  animation: pulse-glow 9s ease-in-out infinite reverse;
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,185,107,0.15);
  border: 1px solid rgba(0,185,107,0.4);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #4DFFB0;
  margin-bottom: 1.5rem;
  width: fit-content;
}
.hero-badge span {
  width: 8px; height: 8px;
  background: var(--accent-bright);
  border-radius: 50%;
  animation: blink 1.5s ease-in-out infinite;
}

.hero-title {
  color: #FFFFFF;
  margin-bottom: 1.2rem;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.72);
  max-width: 520px;
  margin-bottom: 2.2rem;
  line-height: 1.8;
}

.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }

.hero-stats { display: flex; gap: 2rem; flex-wrap: wrap; }
.hero-stat { text-align: center; }
.hero-stat strong {
  display: block;
  font-family: var(--font-main);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent-bright);
}
.hero-stat span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.05em;
}

.hero-image-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-image-wrap img {
  width: 100%;
  max-width: 580px;
  border-radius: var(--radius-xl);
  box-shadow: 0 24px 64px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.06);
  animation: float 5s ease-in-out infinite;
}
.hero-image-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse, rgba(0,185,107,0.18) 0%, transparent 70%);
  border-radius: var(--radius-xl);
  z-index: -1;
}

/* ── Feature Cards ── */
.feature-card { padding: 2rem; text-align: center; cursor: default; }
.feature-icon {
  width: 64px;
  height: 64px;
  background: var(--accent-glow);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 1.6rem;
  transition: var(--transition);
}
.feature-card:hover .feature-icon {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: var(--shadow-green);
  transform: scale(1.1);
}
.feature-card h4 { color: var(--text-dark); margin-bottom: 0.5rem; }
.feature-card p { font-size: 0.9rem; }

/* ── Vehicle Cards ── */
.vehicle-card { overflow: hidden; padding: 0; }
.vehicle-card-img { width: 100%; height: 200px; object-fit: cover; transition: transform 0.5s ease; }
.vehicle-card:hover .vehicle-card-img { transform: scale(1.05); }
.vehicle-card-body { padding: 1.5rem; }
.vehicle-category {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.4rem;
}
.vehicle-card h3 { color: var(--text-dark); margin-bottom: 0.4rem; font-size: 1.15rem; }
.vehicle-card p { font-size: 0.88rem; margin-bottom: 1rem; }
.vehicle-price {
  font-family: var(--font-main);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 1rem;
  display: block;
}
.vehicle-price small { font-size: 0.75rem; font-weight: 400; color: var(--text-muted); }

/* ── Pricing Cards ── */
.pricing-card { padding: 2.2rem; text-align: center; position: relative; }
.pricing-card.featured {
  border-color: var(--accent);
  box-shadow: var(--shadow-green);
  background: linear-gradient(155deg, #F0FFF8 0%, #FFFFFF 100%);
}
.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent), var(--accent-dim));
  color: #FFFFFF;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 18px;
  border-radius: 100px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.pricing-card .plan-name { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 0.5rem; letter-spacing: 0.1em; text-transform: uppercase; }
.pricing-card .plan-price {
  font-family: var(--font-main);
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.pricing-card .plan-price sup { font-size: 1.4rem; vertical-align: super; }
.pricing-card .plan-desc { font-size: 0.88rem; margin-bottom: 1.8rem; }
.pricing-card .plan-features { margin-bottom: 2rem; }
.pricing-card .plan-features li {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text-body);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.pricing-card .plan-features li .check { color: var(--accent); font-size: 0.9rem; }

/* ── Mission/Vision ── */
.mv-card { padding: 2.5rem; }
.mv-icon { font-size: 2rem; margin-bottom: 1.2rem; }
.mv-card h3 { color: var(--text-dark); margin-bottom: 1rem; }
.mv-card p { font-size: 1rem; line-height: 1.8; color: var(--text-body); }

/* ── Stats ── */
.stat-card { padding: 2rem; text-align: center; }
.stat-number {
  font-family: var(--font-main);
  font-size: 3rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.stat-label { font-size: 0.88rem; color: var(--text-muted); }

/* ── CTA Banner ── */
.cta-banner {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, var(--navy-light) 100%);
  border-radius: var(--radius-xl);
  padding: 4rem 3rem;
  text-align: center;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0,185,107,0.20) 0%, transparent 65%);
  border-radius: 50%;
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(37,99,235,0.18) 0%, transparent 65%);
  border-radius: 50%;
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 { color: #FFFFFF; margin-bottom: 0.8rem; }
.cta-banner p { color: rgba(255,255,255,0.75); margin-bottom: 2rem; font-size: 1.05rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Testimonials ── */
.testimonial-carousel { position: relative; overflow: hidden; }
.testimonial-track { display: flex; transition: transform 0.5s cubic-bezier(0.4,0,0.2,1); }
.testimonial-slide { min-width: 100%; padding: 0 1rem; }
.testimonial-card { max-width: 700px; margin: 0 auto; padding: 2.5rem; text-align: center; }
.testimonial-stars { color: #F59E0B; font-size: 1.1rem; margin-bottom: 1rem; letter-spacing: 3px; }
.testimonial-text { font-size: 1.08rem; color: var(--text-body); font-style: italic; line-height: 1.9; margin-bottom: 1.5rem; }
.testimonial-author { font-weight: 700; color: var(--text-dark); }
.testimonial-role { font-size: 0.82rem; color: var(--accent); }
.testimonial-dots { display: flex; justify-content: center; gap: 8px; margin-top: 2rem; }
.testimonial-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border); cursor: pointer; transition: var(--transition); }
.testimonial-dot.active { background: var(--accent); width: 24px; border-radius: 4px; }

/* ── FAQ ── */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.3rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  background: none;
  cursor: pointer;
  text-align: left;
  transition: var(--transition);
}
.faq-question:hover { color: var(--accent); }
.faq-icon {
  width: 28px; height: 28px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
  transition: var(--transition);
  color: var(--accent);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--accent-glow); border-color: var(--accent); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; }
.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 1.2rem; }
.faq-answer p { font-size: 0.95rem; line-height: 1.8; color: var(--text-body); }

/* ── Newsletter ── */
.newsletter-form { display: flex; gap: 0.8rem; max-width: 500px; margin: 0 auto; flex-wrap: wrap; }
.newsletter-input {
  flex: 1;
  min-width: 240px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 100px;
  padding: 13px 22px;
  color: #FFFFFF;
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
}
.newsletter-input:focus { border-color: var(--accent-bright); background: rgba(255,255,255,0.22); }
.newsletter-input::placeholder { color: rgba(255,255,255,0.55); }

/* ── Contact Form ── */
.contact-form { display: grid; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-label { font-size: 0.82rem; font-weight: 600; color: var(--text-muted); letter-spacing: 0.05em; text-transform: uppercase; }
.form-control {
  background: #F9FAFB;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 18px;
  color: var(--text-dark);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
  width: 100%;
}
.form-control:focus { border-color: var(--accent); background: #FFFFFF; box-shadow: 0 0 0 3px var(--accent-glow); }
.form-control::placeholder { color: var(--text-light); }
textarea.form-control { min-height: 130px; resize: vertical; }
select.form-control option { background: #FFFFFF; color: var(--text-dark); }

.form-error { font-size: 0.78rem; color: #EF4444; display: none; }
.form-group.invalid .form-control { border-color: #EF4444; }
.form-group.invalid .form-error { display: block; }

/* ── Contact Info ── */
.contact-info-card { padding: 1.8rem; display: flex; align-items: flex-start; gap: 1.2rem; }
.contact-icon {
  width: 50px; height: 50px;
  background: var(--accent-glow);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.contact-info-card h4 { color: var(--text-dark); margin-bottom: 0.3rem; }
.contact-info-card p, .contact-info-card a { font-size: 0.93rem; color: var(--text-muted); line-height: 1.7; }
.contact-info-card a:hover { color: var(--accent); }

/* ── Map ── */
.map-container { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); height: 380px; box-shadow: var(--card-shadow); }
.map-container iframe { width: 100%; height: 100%; border: none; }

/* ── Services ── */
.service-card { padding: 2.5rem 2rem; }
.service-icon { font-size: 2.2rem; margin-bottom: 1.2rem; }
.service-card h3 { color: var(--text-dark); margin-bottom: 0.8rem; }
.service-features { margin-top: 1.2rem; }
.service-features li { padding: 0.4rem 0; font-size: 0.9rem; color: var(--text-muted); display: flex; align-items: center; gap: 0.6rem; }
.service-features li::before { content: '✓'; color: var(--accent); font-weight: 700; }

/* ── Fleet Filter ── */
.fleet-filters { display: flex; gap: 0.8rem; flex-wrap: wrap; justify-content: center; margin-bottom: 2.5rem; }
.filter-btn {
  padding: 9px 22px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  background: #FFFFFF;
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-glow);
}

.fleet-card { overflow: hidden; padding: 0; }
.fleet-card-img { width: 100%; height: 190px; object-fit: cover; background: var(--primary-mid); transition: transform 0.5s ease; }
.fleet-card:hover .fleet-card-img { transform: scale(1.06); }
.fleet-card-body { padding: 1.4rem; }
.fleet-meta { display: flex; gap: 1rem; margin-bottom: 0.8rem; font-size: 0.78rem; color: var(--text-muted); }
.fleet-meta span { display: flex; align-items: center; gap: 0.3rem; }
.fleet-card h4 { color: var(--text-dark); font-size: 1.05rem; margin-bottom: 0.3rem; }
.fleet-card-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--border); }
.fleet-price { font-family: var(--font-main); font-weight: 800; color: var(--accent); font-size: 1.2rem; }
.fleet-price small { font-size: 0.72rem; font-weight: 400; color: var(--text-muted); }

/* ── About Page ── */
.value-card { padding: 1.8rem; display: flex; align-items: flex-start; gap: 1.2rem; }
.value-icon {
  width: 44px; height: 44px;
  background: var(--accent-glow);
  border: 1px solid var(--border-accent);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.value-card h4 { color: var(--text-dark); margin-bottom: 0.3rem; }
.value-card p { font-size: 0.88rem; }

/* ── Page Hero (inner pages) ── */
.page-hero {
  min-height: 380px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 55%, var(--navy-light) 100%);
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-height);
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -20%; right: -5%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,185,107,0.15) 0%, transparent 65%);
  border-radius: 50%;
}
.page-hero-content { position: relative; z-index: 1; padding: 4rem 0; }
.page-hero h1 { margin-bottom: 0.8rem; color: #FFFFFF; }
.page-hero p { color: rgba(255,255,255,0.70) !important; }
.breadcrumb { display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; color: rgba(255,255,255,0.55); margin-top: 1rem; }
.breadcrumb a { color: var(--accent-bright); }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* ── Footer ── */
.footer { background: var(--navy); border-top: 1px solid rgba(255,255,255,0.08); padding: 70px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand p { font-size: 0.9rem; color: rgba(255,255,255,0.55); line-height: 1.8; margin-top: 1rem; max-width: 280px; }
.footer-col h5 { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.90); margin-bottom: 1.4rem; }
.footer-col ul li { margin-bottom: 0.7rem; }
.footer-col ul li a { font-size: 0.9rem; color: rgba(255,255,255,0.55); transition: var(--transition); }
.footer-col ul li a:hover { color: var(--accent-bright); padding-left: 4px; }
.footer-contact-item { display: flex; gap: 0.8rem; align-items: flex-start; margin-bottom: 0.9rem; font-size: 0.88rem; color: rgba(255,255,255,0.55); }
.footer-contact-item .icon { color: var(--accent-bright); margin-top: 2px; flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,0.55); }
.footer-contact-item a:hover { color: var(--accent-bright); }

.footer-social { display: flex; gap: 0.8rem; margin-top: 1.2rem; }
.social-icon {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}
.social-icon:hover { border-color: var(--accent-bright); color: var(--accent-bright); background: rgba(0,185,107,0.12); transform: translateY(-2px); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 1.5rem 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: 0.83rem; color: rgba(255,255,255,0.4); }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: 0.83rem; color: rgba(255,255,255,0.4); transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--accent-bright); }

/* ── Floating Buttons ── */
.whatsapp-btn {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 999;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  transition: var(--transition);
  font-size: 1.7rem;
}
.whatsapp-btn:hover { transform: scale(1.12); box-shadow: 0 10px 30px rgba(37,211,102,0.6); }
.whatsapp-tooltip {
  position: absolute;
  right: 68px;
  white-space: nowrap;
  background: var(--navy);
  color: #FFFFFF;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.whatsapp-btn:hover .whatsapp-tooltip { opacity: 1; }

.sticky-call {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 998;
  background: linear-gradient(135deg, var(--accent), var(--accent-dim));
  color: #FFFFFF;
  text-align: center;
  padding: 14px;
  font-weight: 700;
  font-size: 1rem;
  font-family: var(--font-main);
}
.sticky-call a { color: #FFFFFF; }

/* ── Animations ── */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-16px); }
}
@keyframes pulse-glow {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes load-bar {
  from { width: 0%; }
  to { width: 100%; }
}

.animate-on-scroll { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }
.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }
.animate-delay-5 { transition-delay: 0.5s; }

/* ── Divider ── */
.section-divider { width: 60px; height: 3px; background: linear-gradient(90deg, var(--accent), transparent); border-radius: 3px; margin: 1rem auto 2rem; }

/* ── Page Loader ── */
.page-loader { position: fixed; inset: 0; background: var(--navy); z-index: 9999; display: flex; align-items: center; justify-content: center; transition: opacity 0.5s ease, visibility 0.5s ease; }
.page-loader.hidden { opacity: 0; visibility: hidden; }
.loader-content { text-align: center; }
.loader-logo { font-family: var(--font-main); font-size: 2.5rem; font-weight: 900; color: #FFFFFF; margin-bottom: 1.5rem; }
.loader-logo span { color: var(--accent-bright); }
.loader-bar { width: 200px; height: 3px; background: rgba(255,255,255,0.1); border-radius: 3px; margin: 0 auto; overflow: hidden; }
.loader-progress { height: 100%; background: linear-gradient(90deg, var(--accent-bright), var(--accent)); border-radius: 3px; animation: load-bar 1.5s ease forwards; }

/* ── Back to Top ── */
.back-to-top {
  position: fixed;
  bottom: 95px; right: 30px;
  width: 44px; height: 44px;
  background: #FFFFFF;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 998;
  color: var(--accent);
  font-size: 1.1rem;
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
  box-shadow: var(--card-shadow);
}
.back-to-top.visible { opacity: 1; pointer-events: all; }
.back-to-top:hover { background: var(--accent); color: #FFFFFF; border-color: var(--accent); transform: translateY(-3px); }

/* ── Blog Cards ── */
.blog-card { overflow: hidden; padding: 0; }
.blog-card-img { width: 100%; height: 180px; background: linear-gradient(135deg, var(--primary-light), var(--primary-mid)); display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.blog-card-body { padding: 1.5rem; }
.blog-tag { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.5rem; display: block; }
.blog-card h4 { color: var(--text-dark); font-size: 1rem; margin-bottom: 0.5rem; line-height: 1.5; }
.blog-card p { font-size: 0.85rem; }
.blog-date { font-size: 0.78rem; color: var(--text-light); margin-top: 0.8rem; }

/* ── Stats section alt overrides ── */
.section-alt .section-title { color: var(--text-dark); }
.section-alt .section-subtitle { color: var(--text-muted); }
.section-alt .section-label { color: var(--accent); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-height: 64px; }
  .section { padding: 60px 0; }

  .nav-menu { display: none; position: fixed; top: var(--nav-height); left: 0; right: 0; background: rgba(255,255,255,0.98); backdrop-filter: blur(20px); flex-direction: column; padding: 2rem 1.5rem; gap: 1.5rem; border-bottom: 1px solid var(--border); box-shadow: var(--card-shadow-lg); }
  .nav-menu.open { display: flex; animation: fadeInUp 0.3s ease; }
  .nav-link { color: var(--text-body); }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-cta { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-image-wrap { order: -1; }
  .hero-image-wrap img { max-width: 320px; }

  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .sticky-call { display: block; }
  .whatsapp-btn { bottom: 72px; }
  .back-to-top { bottom: 130px; }

  .cta-banner { padding: 2.5rem 1.5rem; }
  .section-subtitle { padding: 0 1rem; }
}

@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .btn { padding: 12px 22px; }
  .pricing-card .plan-price { font-size: 2.5rem; }
}
