/* ============ RESET & BASE ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
:root {
  --bg: #002a9e;
  --fg: #ffffff;
  --muted: rgba(255,255,255,0.65);
  --border: rgba(255,255,255,0.18);
  --primary: #fbc02d;
  --primary-glow: #f7d04a;
  --primary-foreground: #002080;
  --highlight: #fbc02d;
  --highlight-foreground: #3a2e00;
  --green: #16a34a;
  --card: rgba(255,255,255,0.1);
  --shadow-soft: 0 6px 24px -8px rgba(15, 26, 46, 0.12);
  --shadow-glow: 0 12px 40px -10px rgba(251, 192, 45, 0.45);
  --shadow-yellow: 0 12px 30px -10px rgba(251, 192, 45, 0.55);
  --radius: 14px;
  --radius-lg: 22px;
}
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--fg);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: 'Poppins', sans-serif; letter-spacing: -0.02em; line-height: 1.15; font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.2rem; }
p { color: rgba(255,255,255,0.85); }
a { color: inherit; text-decoration: none; transition: color .2s ease; }
img { max-width: 100%; height: auto; display: block; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }
.muted { color: var(--muted); }
.small { font-size: 0.85rem; }

/* ============ UTILITIES ============ */
.text-gradient {
  background: linear-gradient(135deg, #fbc02d, #ffe082);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.label {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  background: rgba(251, 192, 45, 0.15);
  color: #fbc02d;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-weight: 600; font-size: 0.95rem;
  border: none; cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  text-decoration: none;
}
.btn-sm { padding: 0.6rem 1.1rem; font-size: 0.85rem; }
.btn-block { width: 100%; padding: 1rem; }
.btn-primary { background: linear-gradient(135deg, #fbc02d, #f7d04a); color: #002080; box-shadow: 0 6px 24px -8px rgba(0,0,0,0.4); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-glow); }
.btn-whatsapp { background: var(--green); color: #fff; box-shadow: 0 6px 24px -8px rgba(0,0,0,0.4); }
.btn-whatsapp:hover { transform: scale(1.05); }
.btn-glass {
  background: rgba(255,255,255,0.12); color: #fff;
  backdrop-filter: blur(10px); border: 1px solid var(--border);
}
.btn-glass:hover { background: rgba(255,255,255,0.2); }

/* ============ NAVBAR ============ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 40;
  padding: 1.25rem 0;
  transition: all .3s ease;
}
.navbar.scrolled {
  padding: 0.7rem 0;
  background: rgba(0, 30, 120, 0.92);
  backdrop-filter: blur(14px) saturate(160%);
  box-shadow: 0 6px 24px -8px rgba(0,0,0,0.4);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.logo { display: flex; align-items: center; gap: 0.6rem; }
.logo-mark {
  width: 48px; height: 48px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  background: #1a3fbf;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-glow);
  transition: transform .25s ease;
}
.logo-mark img {
  width: 100%; height: 100%; object-fit: contain; display: block; padding: 2px;
}
.logo:hover .logo-mark { transform: scale(1.1); }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text strong { font-family: 'Poppins'; font-size: 1rem; }
.logo-text small { font-size: 0.7rem; color: var(--muted); }
.nav-links { display: none; gap: 2rem; }
.nav-links a { font-size: 0.9rem; font-weight: 500; position: relative; }
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -4px;
  width: 0; height: 2px; background: var(--highlight);
  transition: width .3s ease;
}
.nav-links a:hover { color: #fbc02d; }
.nav-links a:hover::after { width: 100%; }
@media (min-width: 1024px) { .nav-links { display: flex; } }
@media (max-width: 480px) { .nav-cta { display: none; } }

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 8rem 0 5rem;
  background:
    radial-gradient(ellipse at top right, rgba(251, 192, 45, 0.15), transparent 60%),
    radial-gradient(ellipse at bottom left, rgba(0, 20, 100, 0.4), transparent 55%),
    linear-gradient(180deg, #002a9e, #001f7a);
  overflow: hidden;
}
.blob { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; }
.blob-1 { width: 320px; height: 320px; background: rgba(251, 192, 45, 0.15); top: 80px; left: -100px; animation: blob 18s ease-in-out infinite; }
.blob-2 { width: 360px; height: 360px; background: rgba(255, 255, 255, 0.08); bottom: 0; right: -80px; animation: blob 18s ease-in-out infinite 4s; }
.hero-grid { display: grid; gap: 3rem; align-items: center; position: relative; }
@media (min-width: 900px) { .hero-grid { grid-template-columns: 1fr 1fr; gap: 4rem; padding-top: 2rem; } }

.badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.4rem 0.9rem; border-radius: 999px;
  background: rgba(255,255,255,0.12); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  font-size: 0.78rem; font-weight: 600; color: #fff;
}
.dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--green);
  position: relative;
}
.dot::after {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  background: var(--green); animation: ping 2s cubic-bezier(0,0,0.2,1) infinite;
}
.lead { font-size: 1.1rem; color: var(--muted); margin-top: 1.25rem; max-width: 540px; }
.hero-text h1 { margin-top: 1.25rem; }
.cta-row { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2rem; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; max-width: 400px; margin-top: 2.5rem; }
.stat {
  text-align: center; padding: 0.85rem 0.5rem; border-radius: var(--radius);
  background: rgba(255,255,255,0.1); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
}
.stat strong { display: block; font-family: 'Poppins'; font-size: 1.25rem; color: var(--primary); }
.stat span { font-size: 0.75rem; color: var(--muted); }

.image-frame {
  position: relative; padding: 0.5rem;
  background: rgba(255,255,255,0.1); backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 24px; box-shadow: var(--shadow-glow);
}
.image-frame img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 18px; }
.float-card {
  position: absolute; padding: 0.7rem 1rem;
  background: rgba(0,20,100,0.85); backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 16px; box-shadow: 0 6px 24px -8px rgba(0,0,0,0.4);
  display: flex; align-items: center; gap: 0.7rem;
  animation: float 4s ease-in-out infinite;
}
.float-card-bl { bottom: -16px; left: -16px; }
.float-card-tr { top: -16px; right: -16px; animation-delay: 1.5s; }
.float-card small { display: block; font-size: 0.7rem; color: var(--muted); }
.float-card strong { display: block; font-size: 0.85rem; }
.fc-icon {
  width: 38px; height: 38px; border-radius: 10px;
  display: grid; place-items: center; font-size: 1.1rem;
}
.fc-icon.yellow { background: linear-gradient(135deg, var(--highlight), #f7d04a); }

/* ============ SECTIONS ============ */
.section { padding: 5rem 0; }
.section-alt { background: rgba(0,0,0,0.18); position: relative; overflow: hidden; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 3rem; }
.section-head h2 { margin-top: 0.75rem; }
.section-head p { margin-top: 0.75rem; }
.rating-line { margin-top: 1rem; font-size: 0.95rem; }

/* ============ ABOUT ============ */
.about-grid { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 800px) { .about-grid { grid-template-columns: 1fr 1fr; } }
.about-grid h2 { margin-top: 0.75rem; }
.about-grid p { margin-top: 1.25rem; font-size: 1.05rem; }
.chips { display: grid; gap: 0.6rem; margin-top: 1.5rem; }
@media (min-width: 540px) { .chips { grid-template-columns: repeat(3, 1fr); } }
.chip {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.7rem 1rem; border-radius: var(--radius);
  background: rgba(251,192,45,0.15); backdrop-filter: blur(10px);
  border: 1px solid rgba(251,192,45,0.3);
  font-size: 0.85rem; font-weight: 600;
}
.quote-card {
  position: relative; padding: 2rem; border-radius: 24px;
  background: rgba(0, 30, 120, 0.92); backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: 0 6px 24px -8px rgba(0,0,0,0.4);
}
.sparkle { font-size: 1.6rem; }
.quote-card blockquote { margin-top: 1rem; font-size: 1.1rem; font-weight: 500; line-height: 1.6; }
.author { display: flex; align-items: center; gap: 0.75rem; margin-top: 1.5rem; }
.avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-glow));
  color: #fff; display: grid; place-items: center; font-weight: 700;
}
.author small { display: block; font-size: 0.75rem; color: var(--muted); }

/* ============ SERVICES ============ */
.services-grid { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 600px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
.service-card {
  padding: 1.5rem; border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.08); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.18);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-glow); border-color: rgba(30,95,216,0.3); }
.s-icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: linear-gradient(135deg, var(--primary), var(--primary-glow));
  color: #fff; display: grid; place-items: center; font-size: 1.5rem;
  box-shadow: var(--shadow-glow);
  transition: transform .3s ease;
}
.service-card:hover .s-icon { transform: scale(1.1); }
.service-card h3 { margin-top: 1.25rem; }
.service-card p { margin-top: 0.5rem; font-size: 0.92rem; color: var(--muted); }
.service-card a { display: inline-block; margin-top: 1rem; font-size: 0.88rem; font-weight: 600; color: var(--primary); }

/* ============ WHY US ============ */
.why-grid { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 900px) { .why-grid { grid-template-columns: 1fr 1fr; } }
.why-grid h2 { margin-top: 0.75rem; }
.why-grid > div > p { margin-top: 1rem; font-size: 1.05rem; }
.reasons { display: grid; gap: 0.7rem; margin-top: 2rem; }
@media (min-width: 540px) { .reasons { grid-template-columns: 1fr 1fr; } }
.reason {
  display: flex; align-items: flex-start; gap: 0.7rem;
  padding: 0.9rem; border-radius: var(--radius);
  background: var(--card); border: 1px solid var(--border);
  font-size: 0.88rem; font-weight: 500;
  transition: border-color .25s;
}
.reason:hover { border-color: rgba(30,95,216,0.4); }
.check {
  flex-shrink: 0; width: 26px; height: 26px;
  background: linear-gradient(135deg, var(--highlight), #f7d04a);
  color: var(--highlight-foreground);
  display: grid; place-items: center; border-radius: 8px;
  font-weight: 700; font-size: 0.85rem;
}
.why-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.ws-col { display: grid; gap: 1rem; }
.ws-col.offset { padding-top: 2rem; }
.ws-card {
  padding: 1.5rem; border-radius: var(--radius-lg);
  transition: transform .3s ease, box-shadow .3s ease;
}
.ws-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-glow); }
.ws-card.glass { background: rgba(0, 30, 120, 0.92); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.7); }
.ws-card.primary { background: linear-gradient(135deg, #fbc02d, #f7d04a); color: #002080; }
.ws-card.yellow { background: linear-gradient(135deg, var(--highlight), #f7d04a); color: var(--highlight-foreground); }
.ws-icon { font-size: 1.8rem; margin-bottom: 0.5rem; }
.ws-icon.blue { color: var(--primary); }
.ws-card .big { font-family: 'Poppins'; font-size: 2.2rem; display: block; }
.ws-card strong { font-family: 'Poppins'; font-size: 1.4rem; display: block; }
.ws-card small { display: block; font-size: 0.85rem; opacity: 0.85; margin-top: 0.2rem; }

/* ============ REVIEWS ============ */
.reviews-row {
  display: flex; gap: 1.25rem; overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0.5rem 0 1rem;
  margin: 0 -1.25rem; padding-left: 1.25rem; padding-right: 1.25rem;
}
.reviews-row::-webkit-scrollbar { height: 6px; }
.reviews-row::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
.review-card {
  flex: 0 0 85%; scroll-snap-align: center;
  padding: 1.5rem; border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.08); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.18);
  transition: transform .3s ease, box-shadow .3s ease;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-glow); }
.review-card .stars { font-size: 0.9rem; }
.review-card p { margin-top: 1rem; line-height: 1.6; }
.r-author { display: flex; align-items: center; gap: 0.7rem; margin-top: 1.25rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.15); }
.r-author small { display: block; font-size: 0.72rem; color: var(--muted); }
.r-author strong { font-size: 0.9rem; }
@media (min-width: 700px) { .review-card { flex: 0 0 calc(50% - 0.625rem); } }
@media (min-width: 1000px) {
  .reviews-row { display: grid; grid-template-columns: repeat(3, 1fr); overflow: visible; margin: 0; padding: 0; }
  .review-card { flex: none; }
}

/* ============ CONTACT ============ */
.contact-grid { display: grid; gap: 2rem; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.form-card {
  padding: 2rem; border-radius: 24px;
  background: rgba(255,255,255,0.08); backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.18); box-shadow: 0 6px 24px -8px rgba(0,0,0,0.4);
  height: 100%;
}
.form-card h3 { font-size: 1.3rem; }
#contactForm { display: grid; gap: 1rem; margin-top: 1.5rem; }
#contactForm label {
  display: flex; flex-direction: column; gap: 0.4rem;
  font-size: 0.78rem; font-weight: 600; color: var(--muted);
}
#contactForm input, #contactForm textarea {
  font-family: inherit; font-size: 0.95rem; color: var(--fg);
  padding: 0.85rem 1rem; border-radius: var(--radius);
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.25); color: #fff;
  transition: border-color .2s, box-shadow .2s;
  resize: none;
}
#contactForm input:focus, #contactForm textarea:focus {
  outline: none; border-color: #fbc02d;
  box-shadow: 0 0 0 4px rgba(251,192,45,0.25);
}
.contact-side { display: grid; gap: 1rem; align-content: start; }
.contact-card {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.25rem; border-radius: var(--radius-lg);
  background: rgba(0, 30, 120, 0.92); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.7);
  transition: transform .3s ease, box-shadow .3s ease;
}
.contact-card:not(.no-hover):hover { transform: translateY(-4px); box-shadow: var(--shadow-glow); }
.cc-icon {
  width: 50px; height: 50px; border-radius: 14px;
  display: grid; place-items: center; font-size: 1.3rem; flex-shrink: 0;
}
.cc-icon.primary { background: linear-gradient(135deg, #fbc02d, #f7d04a); color: #002080; box-shadow: var(--shadow-glow); }
.cc-icon.green { background: var(--green); color: #fff; }
.cc-icon.yellow { background: linear-gradient(135deg, var(--highlight), #f7d04a); }
.contact-card small { display: block; font-size: 0.7rem; font-weight: 700; color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase; }
.contact-card strong { display: block; font-size: 1.05rem; margin-top: 0.2rem; }
.contact-card p { margin-top: 0.4rem; }
.map-frame { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid rgba(255,255,255,0.2); height: 220px; }
.map-frame iframe { width: 100%; height: 100%; border: 0; }

/* ============ FOOTER ============ */
.footer {
  background: #001670; color: #fff;
  padding: 4rem 0 7rem;
  position: relative; overflow: hidden;
}
.footer::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 280px; height: 280px; background: rgba(251, 192, 45, 0.15);
  border-radius: 50%; filter: blur(80px);
}
.footer-grid { display: grid; gap: 2.5rem; position: relative; }
@media (min-width: 700px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }
.f-brand p { margin-top: 1rem; max-width: 380px; color: rgba(255,255,255,0.7); font-size: 0.92rem; }
.footer .logo-text small { color: rgba(255,255,255,0.6); }
.open-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  margin-top: 1.25rem; padding: 0.4rem 0.9rem;
  background: rgba(34,197,94,0.18); color: #5fe39a;
  border-radius: 999px; font-size: 0.78rem; font-weight: 600;
}
.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #5fe39a; animation: pulse 1.6s ease-in-out infinite;
}
.footer h4 { margin-bottom: 1rem; }
.footer ul { list-style: none; display: grid; gap: 0.6rem; }
.footer ul li { font-size: 0.9rem; color: rgba(255,255,255,0.7); display: flex; align-items: center; gap: 0.5rem; }
.footer ul li a { transition: color .2s; }
.footer ul li a:hover { color: var(--highlight); }
.f-bottom {
  margin-top: 3rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; flex-direction: column; gap: 0.5rem;
  align-items: center; justify-content: space-between;
  font-size: 0.78rem; color: rgba(255,255,255,0.5);
  position: relative;
}
@media (min-width: 600px) { .f-bottom { flex-direction: row; } }
@media (min-width: 768px) { .footer { padding-bottom: 4rem; } }

/* ============ FLOATING WHATSAPP ============ */
.float-wa {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 50;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--green); color: #fff;
  display: none; align-items: center; justify-content: center;
  font-size: 1.6rem; box-shadow: 0 12px 30px -8px rgba(22,163,74,0.6);
  animation: float 4s ease-in-out infinite;
  transition: transform .25s;
}
.float-wa:hover { transform: scale(1.1); }
@media (min-width: 768px) { .float-wa { display: flex; } }

/* ============ MOBILE BAR ============ */
.mobile-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 50;
  display: grid; grid-template-columns: repeat(3, 1fr);
  background: #001f8a; border-top: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
}
.mobile-bar a {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.2rem; padding: 0.7rem 0;
  font-size: 1.1rem; font-weight: 600; color: #fff;
  transition: transform .15s;
}
.mobile-bar a span { font-size: 0.7rem; }
.mobile-bar a:active { transform: scale(0.95); }
.mb-call { background: linear-gradient(135deg, var(--primary), var(--primary-glow)); }
.mb-wa { background: var(--green); }
.mb-get { background: linear-gradient(135deg, var(--highlight), #f7d04a); color: var(--highlight-foreground) !important; }
@media (min-width: 768px) { .mobile-bar { display: none; } }

/* ============ GALLERY ============ */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}
.gallery-item {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 6px 24px -8px rgba(0,0,0,0.4);
  transition: transform .35s ease, box-shadow .35s ease;
}
.gallery-item.gallery-wide {
  grid-column: span 2;
  aspect-ratio: 16/7;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.gallery-item:hover { transform: translateY(-4px); box-shadow: 0 20px 50px -15px rgba(251,192,45,0.45); }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,26,46,0.72) 0%, transparent 60%);
  display: flex; align-items: flex-end; padding: 1.2rem 1.4rem;
  opacity: 0; transition: opacity .3s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: #fff; font-weight: 700; font-size: 0.95rem;
  padding: 0.3rem 0.8rem; border-radius: 999px;
  background: rgba(251,192,45,0.9); color: #3a2e00;
}
@media (max-width: 600px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.gallery-wide { grid-column: span 1; aspect-ratio: 4/3; }
}

/* ============ YELLOW ACCENT TWEAKS ============ */
.hero-text h1 .text-gradient {
  background: linear-gradient(135deg, var(--primary), var(--highlight));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.section-head h2 .text-gradient {
  background: linear-gradient(135deg, var(--primary), var(--highlight));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.service-card a {
  color: var(--highlight-foreground);
  background: linear-gradient(135deg, var(--highlight), #f7d04a);
  padding: 0.3rem 0.8rem; border-radius: 999px;
  font-size: 0.82rem; font-weight: 700;
  display: inline-block; margin-top: 0.75rem;
  transition: transform .2s ease, box-shadow .2s ease;
}
.service-card a:hover { transform: translateY(-2px); box-shadow: var(--shadow-yellow); }
.stat strong { color: #fbc02d; }
.stat:first-child strong { color: #d4940a; }
.footer::after {
  content: ''; position: absolute; bottom: -60px; left: -60px;
  width: 200px; height: 200px; background: rgba(251,192,45,0.12);
  border-radius: 50%; filter: blur(60px);
}

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes blob {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -30px) scale(1.1); }
  66% { transform: translate(-30px, 30px) scale(0.95); }
}
@keyframes ping {
  75%, 100% { transform: scale(2.5); opacity: 0; }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}


/* ============ HERO SLIDESHOW ============ */
.slideshow {
  position: relative; width: 100%; aspect-ratio: 4/3;
  border-radius: 18px; overflow: hidden;
}
.slideshow img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; border-radius: 18px;
  opacity: 0; transition: opacity 1s ease-in-out;
}
.slideshow img.active { opacity: 1; }
.slideshow-dots {
  position: absolute; bottom: 12px; left: 0; right: 0;
  display: flex; justify-content: center; gap: 6px; z-index: 2;
}
.slideshow-dots button {
  width: 8px; height: 8px; border-radius: 50%; border: none;
  background: rgba(255,255,255,0.45); cursor: pointer; padding: 0;
  transition: background .25s, transform .25s;
}
.slideshow-dots button.active { background: var(--primary); transform: scale(1.3); }
