/* ─────────────────────────────────────────────────────────
   M4 TRAVELS SRI LANKA — Stylesheet
   Aesthetic: Warm tropical luxury — deep greens, warm gold,
   ivory whites. Cormorant Garamond for elegance + DM Sans clean body.
───────────────────────────────────────────────────────── */

/* CSS Variables */
:root {
  --gold:       #C9A84C;
  --gold-light: #E8C97A;
  --green:      #1C3A2A;
  --green-mid:  #2D5A3D;
  --green-light:#4A7A5A;
  --ivory:      #F8F5EE;
  --ivory-dark: #EDE8DD;
  --text:       #2C2418;
  --text-muted: #6B5F4E;
  --white:      #FFFFFF;
  --card-bg:    #FFFFFF;
  --shadow:     0 4px 24px rgba(28,58,42,0.10);
  --radius:     12px;
  --transition: 0.3s ease;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
}

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

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

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

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── TYPOGRAPHY ─────────────────────────────────────── */
h2, h3 {
  font-family: var(--font-display);
  line-height: 1.15;
  color: var(--green);
}

h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 600; }
h3 { font-size: 1.4rem; font-weight: 600; }
em { font-style: italic; color: var(--gold); }

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
  display: block;
}

/* ── LAYOUT ─────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

.center { text-align: center; }

/* ── BUTTONS ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--green);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.35);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--green);
}

/* ── NAVBAR ─────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  background: rgba(248, 245, 238, 0.88);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(28,58,42,0.08);
  transition: background 0.35s, box-shadow 0.35s, -webkit-backdrop-filter 0.35s, backdrop-filter 0.35s;
}

#navbar .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding-top: 20px;
  padding-bottom: 20px;
  transition: padding 0.35s ease;
}

#navbar.scrolled {
  background: var(--green);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}

#navbar.scrolled .nav-inner {
  padding-top: 14px;
  padding-bottom: 14px;
}

.logo {
  display: flex;
  align-items: center;
  line-height: 0;
}
.logo-img {
  height: 70px;
  width: auto;
  max-width: min(200px, 52vw);
  display: block;
}
.logo-img--light {
  display: none;
}
#navbar.scrolled .logo-img--dark {
  display: none;
}
#navbar.scrolled .logo-img--light {
  display: block;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.35));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: var(--green);
  font-size: 0.875rem;
  font-weight: 400;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--gold); }
#navbar.scrolled .nav-links a {
  color: rgba(255,255,255,0.88);
}
#navbar.scrolled .nav-links a:hover { color: var(--gold-light); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--green) !important;
  padding: 8px 24px;
  border-radius: 50px;
  font-weight: 500 !important;
}
.nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
}

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

/* ── HERO ─────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 58vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ivory);
  padding: 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(28,58,42,0.08);
}

.hero::before {
  content: '';
  position: absolute;
  inset: -12px;
  z-index: 0;
  background: url('../images/m4travel-sl.jpg') center center / cover no-repeat;
  transform: scale(1.06);
  filter: blur(7px);
}

@media (prefers-reduced-motion: reduce) {
  .hero::before {
    transform: none;
    filter: blur(3px);
  }
  .hero-badge {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

.hero-overlay {
  display: block;
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    105deg,
    rgba(248, 245, 238, 0.94) 0%,
    rgba(248, 245, 238, 0.82) 38%,
    rgba(28, 58, 42, 0.42) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 88px;
  padding-bottom: 32px;
}

.hero-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  width: 100%;
}

.hero-left {
  min-width: 0;
  max-width: min(40rem, 100%);
}

.hero-title {
  color: var(--green);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s forwards;
  text-shadow: 0 1px 2px rgba(248, 245, 238, 0.9), 0 0 24px rgba(248, 245, 238, 0.5);
}
.hero-title em { color: var(--gold); }

.hero-badges {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  width: max-content;
  max-width: min(100%, 20.5rem);
  text-align: left;
  justify-self: end;
}

.hero-badge {
  margin: 0;
  padding: 10px 18px;
  background: rgba(248, 245, 238, 0.92);
  border: 1px solid rgba(201, 168, 76, 0.35);
  border-radius: 50px;
  box-shadow: 0 2px 14px rgba(28, 58, 42, 0.08);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.35;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  text-align: left;
  opacity: 0;
  animation: fadeUp 0.55s ease forwards;
}

.badge-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}

.hero-badges .badge-check svg {
  width: 16px;
  height: 16px;
}

.badge-label {
  line-height: 1.45;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
  opacity: 0;
  animation: fadeUp 0.8s 0.9s forwards;
}

.hero-call-btn {
  min-width: 0;
}

.hero-call-label--desktop {
  display: none;
}

.hero-call-label--mobile {
  display: inline;
}

@media (min-width: 769px) {
  .hero-call-label--mobile {
    display: none;
  }
  .hero-call-label--desktop {
    display: inline;
  }
  .hero-call-btn {
    letter-spacing: 0.02em;
    font-size: 0.88rem;
    padding-left: 28px;
    padding-right: 28px;
  }
}

.hero-message-btn {
  border-color: rgba(201, 168, 76, 0.95);
  color: var(--green);
  background: rgba(248, 245, 238, 0.55);
}
.hero-message-btn:hover {
  background: var(--gold);
  color: var(--green);
  border-color: var(--gold);
}

.hero-scroll {
  position: absolute;
  bottom: 24px;
  right: 24px;
  writing-mode: vertical-rl;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(248, 245, 238, 0.75);
  text-shadow: 0 1px 4px rgba(28, 58, 42, 0.45);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.hero-scroll::before {
  content: '';
  display: block;
  width: 1px;
  height: 32px;
  background: rgba(248, 245, 238, 0.35);
  animation: pulse 2s infinite;
}

/* ── ABOUT ──────────────────────────────────────────── */
.about { background: var(--white); }

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

.about-img-placeholder {
  aspect-ratio: 3/4;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ivory-dark);
  position: relative;
  z-index: 1;
}

.about-img-placeholder .about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.about-image-wrap {
  position: relative;
}
.about-image-wrap::before {
  content: '';
  position: absolute;
  top: -20px; left: -20px;
  right: 20px; bottom: 20px;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  opacity: 0.3;
  z-index: 0;
}
.about-text h2 { margin-bottom: 20px; }
.about-text p { color: var(--text-muted); margin-bottom: 16px; }

.about-focus-list {
  margin: 12px 0 20px 20px;
  color: var(--text-muted);
}
.about-focus-list li {
  list-style: disc;
  margin-bottom: 6px;
}

/* ── WHY US ─────────────────────────────────────────── */
.why-us { background: var(--white); }
.why-us h2 { margin-bottom: 32px; }
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 28px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.why-us-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text);
}
.why-us-item .why-us-star { font-size: 1.1rem; }
.why-us-priority {
  text-align: center;
  font-size: 1rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ── SERVICES ───────────────────────────────────────── */
.services { background: var(--ivory); }

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

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  border-bottom: 3px solid transparent;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(28,58,42,0.15);
  border-bottom-color: var(--gold);
}

.service-icon { font-size: 2.5rem; margin-bottom: 20px; }
.service-card h3 { color: var(--green); margin-bottom: 12px; }
.service-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; }

/* ── PACKAGES ───────────────────────────────────────── */
.packages { background: var(--ivory); }

.packages-intro {
  max-width: 720px;
  margin: 16px auto 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.package-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 26px 32px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(28, 58, 42, 0.06);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}

.package-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(28, 58, 42, 0.12);
}

.package-card--custom {
  border-color: rgba(201, 168, 76, 0.45);
  box-shadow: 0 8px 32px rgba(201, 168, 76, 0.12);
}

.package-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.package-card h3 {
  font-size: clamp(1.35rem, 2.5vw, 1.6rem);
  margin-bottom: 8px;
  color: var(--green);
}

.package-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 18px;
  line-height: 1.5;
}

.package-list {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  flex: 1;
}

.package-list li {
  position: relative;
  padding-left: 1.1em;
  margin-bottom: 10px;
  font-size: 0.875rem;
  color: var(--text);
  line-height: 1.55;
}

.package-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

.package-ideal {
  font-size: 0.8rem;
  color: var(--green-mid);
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1.5;
}

.package-cta {
  align-self: flex-start;
  margin-top: auto;
}

.packages-footnote {
  max-width: 640px;
  margin: 40px auto 0;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
}

@media (max-width: 900px) {
  .packages-grid {
    grid-template-columns: 1fr;
  }
}

/* ── DESTINATIONS STRIP ─────────────────────────────── */
.destinations {
  background: var(--green);
  padding: 20px 0;
  overflow: hidden;
}

.dest-track {
  display: flex;
  gap: 0;
  animation: scrollTrack 30s linear infinite;
  white-space: nowrap;
  will-change: transform;
}

.dest-item {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 0 32px;
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.dest-item::after {
  content: '✦';
  color: var(--gold);
  font-size: 0.6rem;
}

/* ── SRI LANKA HIGHLIGHTS ───────────────────────────── */
.sl-highlights { background: var(--white); }

.highlights-intro {
  max-width: 720px;
  margin: 16px auto 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

.sl-highlights .highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
  max-width: none;
}

.highlight-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(28, 58, 42, 0.06);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}

.highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(28, 58, 42, 0.12);
}

.highlight-media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--ivory-dark);
  overflow: hidden;
}

/* Simple carousel (2+ photos in images/highlights/<folder>/) */
.highlight-carousel {
  position: absolute;
  inset: 0;
}

.highlight-carousel-viewport {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.highlight-carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.38s ease;
  will-change: transform;
}

.highlight-carousel-track--instant {
  transition: none;
}

.highlight-carousel-slide {
  height: 100%;
  flex-shrink: 0;
  min-width: 0;
}

.highlight-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.highlight-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  min-width: 44px;
  min-height: 44px;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  pointer-events: auto;
  box-shadow: none;
  text-shadow:
    0 0 12px rgba(0, 0, 0, 0.65),
    0 1px 4px rgba(0, 0, 0, 0.9);
  transition: color var(--transition), opacity var(--transition), transform var(--transition);
}

.highlight-carousel-btn:hover {
  background: transparent;
  color: #fff;
  opacity: 0.92;
  cursor: pointer;
  transform: translateY(-50%) scale(1.06);
}

.highlight-carousel-btn:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.95);
  outline-offset: 3px;
}

.highlight-carousel-btn--prev {
  left: 8px;
}

.highlight-carousel-btn--next {
  right: 8px;
}

.highlight-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.55s ease;
}

.highlight-card:hover .highlight-img {
  transform: scale(1.04);
}

.highlight-placeholder {
  width: 100%;
  height: 100%;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(145deg, var(--green), var(--green-mid));
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.75rem;
  text-align: center;
  padding: 20px;
}

.highlight-placeholder > span:first-child {
  font-size: 2rem;
  opacity: 0.55;
}

.highlight-ph-hint {
  max-width: 220px;
  line-height: 1.45;
}

.highlight-ph-hint code {
  font-size: 0.68em;
  font-family: ui-monospace, monospace;
  word-break: break-all;
  color: rgba(255, 255, 255, 0.65);
}

.highlight-body {
  padding: 22px 22px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.highlight-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--green);
  margin: 0;
  line-height: 1.2;
}

.highlight-subtitle {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

@media (prefers-reduced-motion: reduce) {
  .highlight-card:hover .highlight-img {
    transform: none;
  }
  .highlight-card:hover {
    transform: none;
  }
  .highlight-carousel-track:not(.highlight-carousel-track--instant) {
    transition: none;
  }
}

/* ── CONTACT ────────────────────────────────────────── */
.contact { background: var(--green); }
.contact .section-label { color: var(--gold-light); }
.contact h2 { color: var(--white); }
.contact h2 em { color: var(--gold-light); }
.contact > .container > .contact-grid > .contact-info > p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 12px;
}
.contact-wa-cta {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  margin-bottom: 28px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}

.contact-items { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 16px 20px;
  transition: background var(--transition);
}
.contact-item:hover { background: rgba(255,255,255,0.12); }
.phone-item { border-color: rgba(232, 201, 122, 0.45); cursor: pointer; }
.whatsapp-item { border-color: rgba(37,211,102,0.4); cursor: pointer; }

.ci-icon { font-size: 1.5rem; flex-shrink: 0; }
.contact-item strong { display: block; color: var(--white); font-size: 0.8rem; letter-spacing: 0.05em; margin-bottom: 2px; }
.contact-item span { color: rgba(255,255,255,0.65); font-size: 0.9rem; }

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

.social-link {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.8rem;
  transition: background var(--transition);
}
.social-link:hover { background: var(--gold); color: var(--green); }

/* Booking Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
}
.contact-form-wrap h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--green);
  margin-bottom: 4px;
}
.contact-form-wrap .form-intro {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  scroll-margin-top: 100px;
}

.form-send-label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  margin-top: 8px;
  margin-bottom: 0;
}

.form-actions {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px 16px;
  align-items: center;
  margin-top: 12px;
}

.form-actions-or {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: lowercase;
  user-select: none;
}

.btn-booking {
  min-width: 0;
  width: 100%;
  justify-content: center;
}

@media (max-width: 420px) {
  .form-actions {
    grid-template-columns: 1fr;
    justify-items: stretch;
  }
  .form-actions-or {
    text-align: center;
    padding: 4px 0;
  }
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.8rem; font-weight: 500; color: var(--text-muted); letter-spacing: 0.04em; }

.form-group input,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--ivory);
  border: 1.5px solid var(--ivory-dark);
  border-radius: 8px;
  padding: 12px 16px;
  transition: border-color var(--transition);
  outline: none;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: -4px;
}

/* ── FOOTER ──────────────────────────────────────────── */
.footer {
  background: #0F2019;
  color: rgba(255,255,255,0.5);
  text-align: center;
  padding: 40px 24px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  padding: 10px 20px;
  background: var(--ivory);
  border-radius: var(--radius);
}
.footer-logo-img {
  height: 36px;
  width: auto;
  max-width: 100%;
  display: block;
}

.footer p { font-size: 0.85rem; margin-bottom: 8px; }
.footer-copy { font-size: 0.75rem; margin-top: 16px; opacity: 0.5; }

/* ── WHATSAPP FLOAT ──────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform var(--transition), box-shadow var(--transition);
}
.wa-float:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 32px rgba(37,211,102,0.55);
}
.wa-float svg { width: 28px; height: 28px; }

/* ── ANIMATIONS ──────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { opacity: 0.3; }
  50%       { opacity: 0.9; }
}

@keyframes scrollTrack {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 900px) {
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }

  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--green); padding: 24px; gap: 20px; text-align: center; margin-top: 0; box-shadow: 0 12px 32px rgba(0,0,0,0.2); }
  .nav-links.open { display: flex; }
  .nav-links a { color: rgba(255,255,255,0.9); }
  .nav-links a:hover { color: var(--gold-light); }
  .nav-toggle { display: flex; }

  #navbar .nav-inner {
    padding-top: 16px;
    padding-bottom: 16px;
  }
  #navbar.scrolled .nav-inner {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .hero { min-height: 50vh; }
  .hero-main {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero-badges {
    margin-left: 0;
    justify-self: stretch;
    width: 100%;
    max-width: 100%;
  }
  .hero-badge {
    font-size: 1rem;
  }
  .section { padding: 64px 0; }
}

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .sl-highlights .highlights-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .hero-scroll { display: none; }
  .contact-form-wrap { padding: 28px 20px; }
  .logo-img { height: 34px; max-width: min(180px, 48vw); }
}
