/* ════════════════════════════════════════════════════════════
   VARIABLES & RESET
════════════════════════════════════════════════════════════ */
:root {
  /* Brand colors extracted from the original Framer file */
  --navy:        rgb(20, 47, 69);
  --navy-dark:   rgb(14, 33, 50);
  --navy-mid:    rgb(30, 60, 88);
  --accent:      rgb(255, 94, 21);
  --accent-hover:rgb(230, 78, 8);
  --white:       rgb(255, 255, 255);
  --gray:        rgb(246, 246, 247);
  --lavender:    rgb(241, 242, 250);
  --text-dark:   rgb(20, 47, 69);
  --text-body:   rgb(75, 85, 84);
  --text-muted:  rgb(153, 153, 153);
  --text-light:  rgba(241, 242, 250, 0.85);
  --border:      rgba(20, 47, 69, 0.1);
  --border-light:rgba(255, 255, 255, 0.15);

  /* Typography */
  --font-h: 'Urbanist', sans-serif;
  --font-b: 'Inter', sans-serif;

  /* Radius */
  --r-sm:  8px;
  --r-md:  14px;
  --r-lg:  20px;
  --r-xl:  28px;

  /* Shadows */
  --shadow-sm:  0 2px 12px rgba(20,47,69,0.08);
  --shadow-md:  0 8px 30px rgba(20,47,69,0.12);
  --shadow-lg:  0 20px 60px rgba(20,47,69,0.18);
  --shadow-btn: inset 0px 4px 7px rgba(255,255,255,0.4);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-b);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img  { max-width: 100%; display: block; object-fit: cover; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }

/* ════════════════════════════════════════════════════════════
   UTILITY CLASSES
════════════════════════════════════════════════════════════ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

/* Section backgrounds */
.bg-white    { background: var(--white); }
.bg-gray     { background: var(--gray); }
.bg-lavender { background: var(--lavender); }
.bg-navy     { background: var(--navy); }

/* Generic section padding */
.section { padding: 100px 0; }

/* Section label */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.section-label::before {
  content: '';
  width: 18px; height: 2px;
  background: var(--accent);
  border-radius: 2px;
  flex-shrink: 0;
}
.section-label.light { color: var(--accent); }
.section-label.light::before { background: var(--accent); }

/* Section heading */
.section-head { margin-bottom: 56px; }
.section-head.centered { text-align: center; }
.section-head.centered .section-label { justify-content: center; }
.section-head.centered .section-label::before { display: none; }
.section-head.centered p { max-width: 560px; margin: 12px auto 0; }

h2 {
  font-family: var(--font-h);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.8px;
  line-height: 1.15;
  margin-bottom: 14px;
  color: var(--text-dark);
}
h2 em     { color: var(--accent); font-style: normal; }
h2.light  { color: var(--white); }
h2.light em.accent { color: var(--accent); }
p.light-muted { color: var(--text-light); max-width: 560px; }

/* ════════════════════════════════════════════════════════════
   BUTTONS
════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 58px;
  font-family: var(--font-b);
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  border: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.btn:active { transform: scale(0.98); }

.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: var(--shadow-btn);
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-btn), 0 10px 28px rgba(255,94,21,0.3);
}

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

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-lg  { padding: 16px 34px; font-size: 1rem; }
.btn-block { width: 100%; display: flex; }

/* ════════════════════════════════════════════════════════════
   APPEAR ANIMATIONS
════════════════════════════════════════════════════════════ */
.appear {
  opacity: 0;
  transform: translateY(50px);
  transition:
    opacity  0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
.appear.visible { opacity: 1; transform: translateY(0); }

.appear-delay-1 { transition-delay: 0.1s; }
.appear-delay-2 { transition-delay: 0.2s; }
.appear-delay-3 { transition-delay: 0.35s; }
.appear-delay-4 { transition-delay: 0.5s; }
.appear-delay-5 { transition-delay: 0.65s; }

/* ════════════════════════════════════════════════════════════
   NAVBAR
════════════════════════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0 !important;
  left: 0; right: 0;
  z-index: 1000;
  background: var(--navy);
  transition: background 0.3s, box-shadow 0.3s, transform 0.3s;
  transform: translateY(0) !important;
  opacity: 1 !important;
  visibility: visible !important;
}
#navbar.scrolled {
  background: var(--white);
  box-shadow: 0 4px 30px rgba(14,33,50,0.1);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--white);
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-logo span:not(.logo-dot) { color: var(--accent); }
.nav-logo.light { color: var(--white); }

.logo-dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
  animation: pulseDot 2s infinite;
}
@keyframes pulseDot {
  0%,100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.5); opacity: 0.7; }
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-links a {
  color: var(--text-light);
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }

#navbar.scrolled .nav-links a {
  color: var(--navy);
}
#navbar.scrolled .nav-links a:hover {
  color: var(--accent);
}
#navbar.scrolled .nav-toggle span {
  background: var(--navy);
}
.nav-cta { margin-left: 8px; }

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

/* Mobile nav */
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 20px;
  padding: 20px 5% 28px;
  border-top: 1px solid var(--border-light);
  background: var(--navy);
}
.nav-mobile.open { display: flex; }
.nav-mobile ul { display: flex; flex-direction: column; gap: 14px; }
.nav-mobile a {
  color: var(--text-light);
  font-size: 0.95rem;
  font-weight: 500;
}
.nav-mobile a:hover { color: var(--white); }

/* ════════════════════════════════════════════════════════════
   HERO SECTION — Full width image with overlay
════════════════════════════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(14, 33, 50, 0.92) 0%,
    rgba(14, 33, 50, 0.80) 45%,
    rgba(14, 33, 50, 0.55) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  padding-top: 72px;
  padding-bottom: 140px;
}

/* Hero text */
.hero-text .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,94,21,0.18);
  border: 1px solid rgba(255,94,21,0.4);
  color: #ffb085;
  padding: 7px 16px;
  border-radius: 58px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-text h1 {
  font-family: var(--font-h);
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin-bottom: 22px;
}
.hero-text h1 em { color: var(--accent); font-style: normal; }

.hero-text p {
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 500px;
  margin-bottom: 36px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Hero quick-form card */
.hero-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 32px 28px;
  box-shadow: var(--shadow-lg);
}
.hero-card-title {
  font-family: var(--font-h);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.hero-card-sub {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 22px;
}
.hero-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero-form input,
.hero-form select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  font-family: var(--font-b);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s;
}
.hero-form input:focus,
.hero-form select:focus {
  border-color: var(--accent);
}

/* Stats bar */
.hero-stats {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 1;
  background: rgba(14, 33, 50, 0.88);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-light);
}
.hero-stats-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 5%;
  gap: 16px;
}
.stat-item {
  text-align: center;
  flex: 1;
}
.stat-num {
  font-family: var(--font-h);
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.stat-suffix {
  font-family: var(--font-h);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
}
.stat-lbl {
  display: block;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border-light);
  flex-shrink: 0;
}

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

.service-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  cursor: default;
}
.service-card:hover {
  border-color: rgba(255,94,21,0.35);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.service-icon-wrap {
  width: 56px; height: 56px;
  background: var(--lavender);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  margin-bottom: 20px;
  transition: background 0.3s;
}
.service-card:hover .service-icon-wrap {
  background: rgba(255,94,21,0.12);
  color: var(--accent);
}

.service-card h3 {
  font-family: var(--font-h);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--navy);
}
.service-card p {
  color: var(--text-body);
  font-size: 0.9rem;
  line-height: 1.65;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 600;
  margin-top: 18px;
  transition: gap 0.2s;
}
.service-card:hover .service-link { gap: 10px; }

/* Overrides for #services section */
#services .service-card {
  background: var(--navy);
  border-color: rgba(255,255,255,0.1);
}
#services .service-card:hover {
  border-color: rgba(255,94,21,0.5);
}
#services .service-card h3 {
  color: var(--accent);
}
#services .service-card p {
  color: var(--white);
}
#services .service-card .service-icon-wrap {
  background: rgba(255,94,21,0.12);
  color: var(--accent);
}
#services .service-card:hover .service-icon-wrap {
  background: rgba(255,94,21,0.25);
}
/* ════════════════════════════════════════════════════════════
   ABOUT
════════════════════════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual { position: relative; }

.about-img-wrap {
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  max-width: 480px;
  box-shadow: var(--shadow-lg);
}
.about-img-wrap img {
  width: 100%; height: 100%;
}

.about-badge {
  position: absolute;
  bottom: 120px;
  right: -20px;
  background: var(--white);
  border-radius: var(--r-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.about-badge-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}
.about-badge strong { display: block; font-family: var(--font-h); font-size: 0.88rem; color: var(--navy); }
.about-badge span   { font-size: 0.78rem; color: var(--text-muted); }

.about-progress-card {
  position: absolute;
  bottom: 0;
  left: -20px;
  right: 60px;
  background: var(--navy);
  border-radius: var(--r-lg);
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 6px;
}
.progress-bar {
  background: rgba(255,255,255,0.15);
  border-radius: 100px;
  height: 6px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 100px;
  width: 0%;
  transition: width 1.2s cubic-bezier(0.22,1,0.36,1);
}

.about-text p {
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 12px;
}
.about-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0;
}
.about-features li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.feat-check {
  width: 26px; height: 26px;
  background: rgba(255,94,21,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.about-features strong { color: var(--navy); font-size: 0.95rem; }
.about-features span   { color: var(--text-body); font-size: 0.88rem; }
.about-actions { display: flex; gap: 14px; margin-top: 8px; }

/* ════════════════════════════════════════════════════════════
   WHY CHOOSE US
════════════════════════════════════════════════════════════ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 10px;
}
.why-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-light);
  border-radius: var(--r-lg);
  padding: 32px 26px;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.why-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,94,21,0.4);
  transform: translateY(-4px);
}
.why-num {
  font-family: var(--font-h);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.5;
  margin-bottom: 16px;
  line-height: 1;
}
.why-card h3 {
  font-family: var(--font-h);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.why-card p {
  color: var(--text-light);
  font-size: 0.88rem;
  line-height: 1.65;
}

/* ════════════════════════════════════════════════════════════
   PROCESS / TIMELINE
════════════════════════════════════════════════════════════ */
.process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.process-left h2 { margin-bottom: 12px; }
.process-left p  { color: var(--text-body); line-height: 1.75; }

.timeline { display: flex; flex-direction: column; gap: 0; }

.timeline-row {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.timeline-row:last-child { border-bottom: none; }
.timeline-row:hover .timeline-num {
  background: rgba(255,94,21,0.1);
  border-color: rgba(255,94,21,0.4);
  color: var(--accent);
}

.timeline-num {
  width: 44px; height: 44px;
  background: var(--lavender);
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 0.88rem;
  color: var(--navy);
  flex-shrink: 0;
  transition: all 0.25s;
}
.timeline-body h4 {
  font-family: var(--font-h);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.timeline-body p { color: var(--text-body); font-size: 0.88rem; line-height: 1.65; }

/* ════════════════════════════════════════════════════════════
   OUR WORK VIDEO/IMAGE
════════════════════════════════════════════════════════════ */
.work-video-wrap {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  max-height: 500px;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
}
.work-video-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.work-video-wrap:hover img { transform: scale(1.03); }

.play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 76px; height: 76px;
  background: var(--accent);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 0 0 12px rgba(255,94,21,0.25), 0 12px 36px rgba(255,94,21,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  animation: playPulse 2s infinite;
}
.play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 0 0 18px rgba(255,94,21,0.2), 0 16px 40px rgba(255,94,21,0.5);
}
.play-icon {
  color: var(--white);
  font-size: 1.5rem;
  margin-left: 4px;
}
@keyframes playPulse {
  0%,100% { box-shadow: 0 0 0 12px rgba(255,94,21,0.25), 0 12px 36px rgba(255,94,21,0.4); }
  50%      { box-shadow: 0 0 0 20px rgba(255,94,21,0.12), 0 12px 36px rgba(255,94,21,0.4); }
}

/* ════════════════════════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════════════════════════ */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  background: var(--lavender);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.testi-quote {
  font-size: 4rem;
  line-height: 0.8;
  color: var(--accent);
  font-family: Georgia, serif;
  margin-bottom: 14px;
  opacity: 0.5;
}
.testi-card > p {
  color: var(--text-dark);
  font-size: 0.92rem;
  line-height: 1.72;
  margin-bottom: 22px;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 46px; height: 46px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--white);
  flex-shrink: 0;
}
.testi-author > div strong { display: block; font-size: 0.92rem; color: var(--navy); }
.testi-author > div span   { font-size: 0.78rem; color: var(--text-muted); }
.testi-stars {
  margin-left: auto;
  color: var(--accent);
  font-size: 0.9rem;
  letter-spacing: 2px;
}

/* ════════════════════════════════════════════════════════════
   BLOG
════════════════════════════════════════════════════════════ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.blog-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.blog-img img {
  width: 100%; height: 100%;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-img img { transform: scale(1.06); }
.blog-tag {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 58px;
}
.blog-body {
  padding: 22px 24px 26px;
}
.blog-date  { font-size: 0.78rem; color: var(--text-muted); }
.blog-body h4 {
  font-family: var(--font-h);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin: 8px 0 10px;
  line-height: 1.4;
}
.blog-body p    { font-size: 0.88rem; color: var(--text-body); line-height: 1.65; }
.blog-link {
  display: inline-block;
  margin-top: 14px;
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 600;
  transition: letter-spacing 0.2s;
}
.blog-card:hover .blog-link { letter-spacing: 0.5px; }

/* ════════════════════════════════════════════════════════════
   CTA BANNER
════════════════════════════════════════════════════════════ */
.cta-section { text-align: center; }
.cta-section h2, .cta-section p { margin: 0 auto; }
.cta-section p.light-muted { margin: 14px auto 0; max-width: 520px; }
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 36px;
}

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

.contact-info h2 { margin-bottom: 14px; }
.contact-info > p { color: var(--text-body); line-height: 1.75; margin-bottom: 32px; }

.contact-items { display: flex; flex-direction: column; gap: 18px; }
.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.contact-icon {
  width: 44px; height: 44px;
  background: var(--lavender);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-item strong { display: block; font-size: 0.88rem; color: var(--navy); margin-bottom: 2px; }
.contact-item a, .contact-item span {
  font-size: 0.9rem;
  color: var(--text-body);
  transition: color 0.2s;
}
.contact-item a:hover { color: var(--accent); }

.contact-form-wrap {
  background: var(--lavender);
  border-radius: var(--r-xl);
  padding: 36px 32px;
}
.contact-form h3 {
  font-family: var(--font-h);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  font-family: var(--font-b);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
}

/* ════════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════════ */
.footer { background: var(--navy-dark); }

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  padding: 64px 5% 52px;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-brand p {
  color: var(--text-light);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-top: 14px;
  max-width: 280px;
}
.social-links {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.social-links a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--border-light);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.82rem;
  font-weight: 700;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.social-links a:hover {
  background: rgba(255,94,21,0.15);
  border-color: rgba(255,94,21,0.4);
  transform: translateY(-2px);
}

.footer-col h5 {
  font-family: var(--font-h);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a, .footer-col span {
  font-size: 0.88rem;
  color: var(--text-light);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid var(--border-light);
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 5%;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.84rem; color: var(--text-light); }
.footer-links { display: flex; gap: 22px; }
.footer-links a { font-size: 0.84rem; color: var(--text-light); transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }

/* ════════════════════════════════════════════════════════════
   FAB (Floating Action Button)
════════════════════════════════════════════════════════════ */
.fab {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 500;
  width: 60px; height: 60px;
  background: transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: transform 0.2s, filter 0.2s;
}
.fab img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.fab:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 6px 16px rgba(0,0,0,0.2));
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE — TABLET
════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-content { grid-template-columns: 1fr; padding-bottom: 160px; }
  .hero-card { max-width: 480px; }
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE
════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .section { padding: 72px 0; }

  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  h2 { font-size: 1.85rem; }

  /* Hero */
  .hero-content {
    grid-template-columns: 1fr;
    padding-bottom: 200px;
    text-align: center;
  }
  .hero-text p  { margin: 0 auto 32px; }
  .hero-actions { justify-content: center; }
  .hero-card    { display: none; } /* hidden on mobile */

  .hero-stats-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 10px;
    padding: 20px 5%;
  }
  .stat-divider { display: none; }

  /* Grids */
  .services-grid { grid-template-columns: 1fr; }
  .about-grid    { grid-template-columns: 1fr; }
  .why-grid      { grid-template-columns: 1fr 1fr; }
  .process-grid  { grid-template-columns: 1fr; gap: 40px; }
  .testi-grid    { grid-template-columns: 1fr; }
  .blog-grid     { grid-template-columns: 1fr; }
  .contact-grid  { grid-template-columns: 1fr; gap: 48px; }
  .form-row      { grid-template-columns: 1fr; }
  .footer-top    { grid-template-columns: 1fr 1fr; gap: 32px; padding: 48px 5% 40px; }

  /* About visual */
  .about-badge       { right: 0; bottom: 100px; }
  .about-progress-card { left: 0; right: 0; position: relative; margin-top: 20px; }
  .about-img-wrap    { max-width: 100%; }

  /* Why */
  .why-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; align-items: center; }
}

/* ════════════════════════════════════════════════════════════
   HERO SLIDER
════════════════════════════════════════════════════════════ */
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  pointer-events: none;
}
.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-slide .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(14, 33, 50, 0.92) 0%,
    rgba(14, 33, 50, 0.80) 45%,
    rgba(14, 33, 50, 0.55) 100%
  );
}

/* Flechas prev / next */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, transform 0.25s;
}
.slider-arrow:hover {
  background: rgba(255, 94, 21, 0.75);
  transform: translateY(-50%) scale(1.1);
}
.slider-prev { left: 28px; }
.slider-next { right: 28px; }

/* Puntos indicadores */
.slider-dots {
  position: absolute;
  bottom: 130px; /* encima del stats-bar */
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
  align-items: center;
}
.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.55);
  background: transparent;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
  padding: 0;
}
.slider-dot.active {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.35);
}
.slider-dot:hover:not(.active) {
  border-color: rgba(255,255,255,0.9);
}

@media (max-width: 768px) {
  .slider-arrow { width: 40px; height: 40px; font-size: 1.5rem; }
  .slider-prev  { left: 12px; }
  .slider-next  { right: 12px; }
  .slider-dots  { bottom: 200px; }
}

