:root {
  --primary: #0ea5e9;
  --primary-dark: #0284c7;
  --primary-light: #38bdf8;
  --teal: #2dd4bf;
  --teal-light: #5eead4;
  --accent: #0ea5e9;
  --soft-blue: #7dd3fc;
  --soft-teal: #99f6e4;
  --soft-cyan: #cffafe;
  --soft-pink: #fce7f3;
  --text: #1e293b;
  --muted: #64748b;
  --surface: #ffffff;
  --background: #f8fafc;
  --border: rgba(14, 165, 233, 0.15);
  --shadow: 0 24px 48px rgba(14, 165, 233, 0.15);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--text);
  background: var(--background);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

.announcement {
  background: var(--primary);
  color: #ffffff;
  text-align: center;
  padding: 12px 16px;
  font-size: 0.95rem;
}

.announcement strong {
  color: var(--accent);
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(36, 32, 82, 0.08);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--primary);
  text-decoration: none;
}

.brand-logo {
  height: 40px;
  width: auto;
  display: block;
}

.brand-icon {
  font-size: 1.6rem;
}

.main-nav {
  display: flex;
  gap: 20px;
  font-size: 0.95rem;
  color: var(--muted);
}

.main-nav a:hover {
  color: var(--primary);
}

.nav-actions {
  display: flex;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #ffffff;
  box-shadow: 0 16px 32px rgba(14, 165, 233, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 40px rgba(14, 165, 233, 0.4);
}

.btn-secondary {
  background: rgba(36, 32, 82, 0.08);
  color: var(--primary);
}

.btn-secondary:hover {
  transform: translateY(-1px);
  background: rgba(36, 32, 82, 0.12);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1px solid rgba(36, 32, 82, 0.35);
}

.btn-outline:hover {
  transform: translateY(-1px);
  border-color: var(--primary);
  box-shadow: 0 12px 28px rgba(36, 32, 82, 0.18);
}

.hero {
  min-height: 100vh;
  padding: 110px 0 90px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.15), transparent 55%),
    linear-gradient(320deg, rgba(45, 212, 191, 0.2), transparent 60%);
}

.hero-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 1.15;
  margin: 16px 0 20px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-weight: 600;
  font-size: 0.75rem;
  color: rgba(36, 32, 82, 0.65);
}

.lead {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 32rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 16px;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: #ffffff;
  border-radius: 14px;
  padding: 12px 20px;
  font-weight: 600;
  box-shadow: 0 14px 28px rgba(36, 32, 82, 0.25);
}

.badge:hover {
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  color: var(--primary);
  font-weight: 600;
}

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

.hero-gallery img {
  width: 100%;
  height: 100%;
  border-radius: 36px;
  box-shadow: 0 30px 60px rgba(36, 32, 82, 0.22);
  object-fit: cover;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-gallery img:hover {
  transform: translateY(-6px);
  box-shadow: 0 40px 70px rgba(36, 32, 82, 0.28);
}

.section {
  min-height: 100vh;
  padding: 90px 0;
  display: flex;
  align-items: center;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  font-size: clamp(2rem, 3vw, 2.5rem);
  margin: 14px 0 0;
}

.steps {
  background: #ffffff;
}

.customers {
  background: #ffffff;
}

.customers .lead {
  margin: 10px auto 0;
  text-align: center;
}

.customer-pillars {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.pillar-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: 0 18px 36px rgba(36, 32, 82, 0.12);
  border: 1px solid rgba(36, 32, 82, 0.08);
  text-align: left;
  display: grid;
  gap: 16px;
}

.pillar-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: rgba(36, 32, 82, 0.08);
  font-size: 1.8rem;
  color: var(--primary);
  box-shadow: 0 12px 24px rgba(36, 32, 82, 0.16);
}

.pillar-card h3 {
  margin: 0;
  color: var(--primary);
}

.pillar-card p {
  margin: 0;
  color: var(--muted);
}

.highlights {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(45, 212, 191, 0.1));
}

.highlight-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.highlight-card {
  border-radius: var(--radius-md);
  padding: 30px 26px;
  background: linear-gradient(145deg, rgba(14, 165, 233, 0.03), rgba(255, 255, 255, 0.9));
  border: 1px solid rgba(14, 165, 233, 0.1);
  box-shadow: 0 16px 32px rgba(14, 165, 233, 0.1);
  display: grid;
  gap: 14px;
}

.highlight-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: rgba(36, 32, 82, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  color: var(--primary);
}

.highlight-card h3 {
  margin: 0;
  color: var(--primary);
}

.highlight-card p {
  margin: 0;
  color: var(--muted);
}

.drivers {
  background: #ffffff;
}

.driver-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: start;
}

.driver-copy {
  display: grid;
  gap: 18px;
}

.driver-copy .btn {
  justify-self: flex-start;
}

.driver-quote {
  margin: 0;
  font-style: italic;
  color: var(--primary);
  font-weight: 600;
}

.driver-features h3 {
  margin: 0 0 24px;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.3rem;
}

.driver-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 18px;
}

.driver-features li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 20px 22px;
  border-radius: var(--radius-md);
  background: #ffffff;
  box-shadow: 0 18px 36px rgba(36, 32, 82, 0.12);
  border: 1px solid rgba(36, 32, 82, 0.08);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(36, 32, 82, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--primary);
}

.driver-features strong {
  display: block;
  color: var(--primary);
  margin-bottom: 6px;
}

.driver-features p {
  margin: 0;
  color: var(--muted);
}

.why {
  background: linear-gradient(180deg, rgba(14, 165, 233, 0.1), rgba(45, 212, 191, 0.1));
}

.why-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.why-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: 0 18px 34px rgba(36, 32, 82, 0.12);
  border: 1px solid rgba(36, 32, 82, 0.08);
  display: grid;
  gap: 16px;
}

.why-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(36, 32, 82, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--primary);
}

.why-card h3 {
  margin: 0;
  color: var(--primary);
}

.why-card p {
  margin: 0;
  color: var(--muted);
}

.step-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.step-card {
  background: linear-gradient(135deg, rgba(45, 212, 191, 0.15), rgba(14, 165, 233, 0.15));
  backdrop-filter: blur(6px);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  min-height: 220px;
}

.step-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(36, 32, 82, 0.08);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--surface);
  color: var(--primary);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 18px;
  box-shadow: 0 8px 18px rgba(36, 32, 82, 0.15);
}

.step-card h3 {
  margin: 0 0 12px;
  color: var(--primary);
}

.step-card p {
  margin: 0;
  color: var(--muted);
}

.coverage {
  background: linear-gradient(120deg, rgba(142, 188, 255, 0.2), rgba(255, 213, 229, 0.2));
}

.coverage-grid {
  display: grid;
  gap: 36px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.coverage-copy p {
  color: var(--muted);
}

.coverage-form {
  margin-top: 22px;
  display: grid;
  gap: 12px;
}

.coverage-form label {
  font-weight: 600;
  color: var(--primary);
}

.form-group {
  display: flex;
  gap: 12px;
}

.form-group input {
  flex: 1;
  border-radius: 999px;
  border: 1px solid rgba(36, 32, 82, 0.12);
  padding: 12px 18px;
  font-size: 0.95rem;
  font-family: inherit;
}

.coverage-map {
  display: flex;
  justify-content: center;
}

.map-placeholder {
  position: relative;
  width: 100%;
  max-width: 420px;
  height: 320px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(36, 32, 82, 0.08), rgba(255, 255, 255, 0.7));
  box-shadow: var(--shadow);
  overflow: hidden;
  padding: 28px;
}

.pin {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 12px 26px rgba(36, 32, 82, 0.18);
  font-weight: 600;
  color: var(--primary);
}

.pin::before {
  content: "📍";
}

.pin-one {
  top: 48px;
  left: 36px;
}

.pin-two {
  top: 120px;
  right: 32px;
}

.pin-three {
  bottom: 56px;
  left: 52px;
}

.route {
  position: absolute;
  inset: 40px 60px;
  border-radius: 24px;
  border: 2px dashed rgba(36, 32, 82, 0.25);
}

.offers {
  background: #ffffff;
}

.offer-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.offer-card {
  border-radius: var(--radius-md);
  padding: 28px;
  color: var(--primary);
  font-weight: 600;
  position: relative;
  overflow: hidden;
}

.offer-card:nth-child(1) {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.2), #ffffff);
}

.offer-card:nth-child(2) {
  background: linear-gradient(135deg, rgba(45, 212, 191, 0.2), #ffffff);
}

.offer-card:nth-child(3) {
  background: linear-gradient(135deg, rgba(125, 211, 252, 0.2), #ffffff);
}

.offer-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-weight: 500;
}

.testimonials {
  background: #ffffff;
}

.testimonial-slider {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.testimonial-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: 0 20px 40px rgba(36, 32, 82, 0.12);
}

.avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #ffffff;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.2);
  border: 2px solid rgba(14, 165, 233, 0.1);
}

.avatar-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

blockquote {
  margin: 0 0 18px;
  color: var(--primary);
  font-weight: 500;
  font-size: 1rem;
}

.author {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.author span {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(36, 32, 82, 0.6);
}

.partner {
  background: #ffffff;
}

.partner-grid {
  display: grid;
  gap: 36px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}

.feature-pills span {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(36, 32, 82, 0.08);
  color: var(--primary);
  font-weight: 600;
}

.partner-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.partner-mockup {
  display: flex;
  justify-content: center;
}

.dashboard-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow);
  width: min(340px, 100%);
  display: grid;
  gap: 16px;
}

.dashboard-card h3 {
  margin: 0;
  color: var(--primary);
}

.amount {
  font-size: 2rem;
  font-weight: 700;
  margin: 0;
  color: var(--primary);
}

.dashboard-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 20px;
}

.dashboard-card li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
}

.stat-icon {
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(14, 165, 233, 0.1);
  flex-shrink: 0;
}

.dashboard-card li strong {
  display: block;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 4px;
  font-size: 1rem;
}

.dashboard-card li p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.faq {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(45, 212, 191, 0.1));
}

.faq-list {
  display: grid;
  gap: 16px;
  max-width: 720px;
  margin: 0 auto;
}

details {
  border-radius: var(--radius-md);
  border: 1px solid rgba(36, 32, 82, 0.12);
  padding: 16px 22px;
  background: rgba(36, 32, 82, 0.03);
}

summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--primary);
}

details p {
  margin: 12px 0 0;
  color: var(--muted);
}

.cta {
  padding: 110px 0 120px;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.2), rgba(45, 212, 191, 0.2));
}

.cta-card {
  background: #ffffff;
  border-radius: calc(var(--radius-lg) + 10px);
  padding: 48px 40px;
  box-shadow: var(--shadow);
  text-align: center;
  margin: 0 auto;
  max-width: 640px;
}

.cta-card h2 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 3vw, 2.6rem);
  color: var(--primary);
}

.cta-card p {
  margin: 0 0 32px;
  color: var(--muted);
  font-size: 1.05rem;
}

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

.cta-divider {
  color: var(--muted);
  font-weight: 300;
  opacity: 0.5;
}

.site-footer {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.95), rgba(2, 132, 199, 0.9));
  color: rgba(255, 255, 255, 0.9);
  padding: 48px 0 24px;
}

.footer-grid {
  display: grid;
  gap: 36px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  align-items: start;
}

.footer-brand p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.75);
}

.footer-links,
.footer-social {
  display: grid;
  gap: 12px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.footer-links a:hover,
.footer-social a:hover {
  color: #ffffff;
}

.footer-contact {
  display: grid;
  gap: 12px;
  color: rgba(255, 255, 255, 0.8);
}

.footer-contact h3 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
}

.footer-contact address {
  font-style: normal;
  margin: 0;
}

.footer-contact p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact a:hover {
  color: #ffffff;
}

.footer-bottom {
  margin-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.7);
}

.footer-legal {
  display: flex;
  gap: 18px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-legal a:hover {
  color: #ffffff;
}

@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
}

@media (max-width: 768px) {
  .announcement {
    font-size: 0.85rem;
  }

  .nav-wrapper {
    flex-wrap: wrap;
    gap: 16px;
  }

  .nav-actions {
    width: 100%;
    justify-content: flex-end;
  }

  .brand-logo {
    height: 32px;
  }

  .hero {
    padding-top: 80px;
    min-height: auto;
    padding-bottom: 60px;
  }

  .section {
    min-height: auto;
    padding: 60px 0;
  }

  .hero-content {
    text-align: center;
  }

  .hero-copy .lead {
    margin: 0 auto;
  }

  .hero-badges,
  .hero-stats {
    justify-content: center;
  }

  .hero-gallery {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }

  .form-group {
    flex-direction: column;
  }

  .form-group button {
    width: 100%;
  }

  .partner-actions,
  .feature-pills {
    justify-content: center;
  }

  .cta-card {
    padding: 40px 28px;
  }

  .cta-actions {
    flex-direction: column;
    gap: 16px;
  }

  .cta-divider {
    display: none;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Animation classes */
.animate-on-scroll {
  opacity: 0;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.animated {
  opacity: 1;
}

.fade-in-up {
  transform: translateY(30px);
}

.fade-in-up.animated {
  animation: fadeInUp 0.8s ease-out forwards;
}

.fade-in {
  animation: fadeIn 0.8s ease-out forwards;
}

.slide-in-left {
  transform: translateX(-30px);
}

.slide-in-left.animated {
  animation: slideInLeft 0.8s ease-out forwards;
}

.slide-in-right {
  transform: translateX(30px);
}

.slide-in-right.animated {
  animation: slideInRight 0.8s ease-out forwards;
}

.scale-in {
  transform: scale(0.9);
}

.scale-in.animated {
  animation: scaleIn 0.6s ease-out forwards;
}

/* Stagger animation delays */
.animate-delay-1 {
  transition-delay: 0.1s;
  animation-delay: 0.1s;
}

.animate-delay-2 {
  transition-delay: 0.2s;
  animation-delay: 0.2s;
}

.animate-delay-3 {
  transition-delay: 0.3s;
  animation-delay: 0.3s;
}

.animate-delay-4 {
  transition-delay: 0.4s;
  animation-delay: 0.4s;
}

.animate-delay-5 {
  transition-delay: 0.5s;
  animation-delay: 0.5s;
}

.animate-delay-6 {
  transition-delay: 0.6s;
  animation-delay: 0.6s;
}

.animate-delay-7 {
  transition-delay: 0.7s;
  animation-delay: 0.7s;
}

/* Enhanced hover effects */
.pillar-card,
.highlight-card,
.why-card,
.testimonial-card,
.step-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pillar-card:hover,
.highlight-card:hover,
.why-card:hover,
.testimonial-card:hover {
  transform: translateY(-8px) scale(1.02);
}

.hero-gallery img {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
}

.hero-gallery img:hover {
  transform: translateY(-10px) scale(1.03);
}

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

