/* ============================================================
   World Travel and Tourism - Static Single-Page Stylesheet
   Brand colors extracted from logo
============================================================ */

:root {
  /* --primary: #1E90D7;          logo blue */
  --primary: #4075bb;
  --primary-dark: #1670A8;
  --primary-deep: #0F4E78;
  /* --accent: #F58220;           sunset orange from logo */
  --accent: #d86b3f;
  --accent-soft: #FDB44B;
  --yellow: #F4D03F;           /* logo yellow */
  --navy: #1A2D4F;             /* dark navy from plane silhouette */
  --bg: #FFFFFF;
  --bg-soft: #F5FAFD;
  --bg-tint: #EAF4FB;
  --text: #1A2D4F;
  --muted: #5B6B85;
  --line: #E5EEF6;
  --whatsapp: #25D366;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 4px 14px rgba(26, 45, 79, 0.06);
  --shadow: 0 14px 40px rgba(26, 45, 79, 0.10);
  --shadow-lg: 0 24px 60px rgba(26, 45, 79, 0.18);

  --container: 1240px;
  --nav-h: 78px;

  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Manrope', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
@font-face {
    font-family: 'Saira';
    src: url('../fonts/Saira/Saira-Italic-VariableFont_wdth,wght.ttf') format('truetype');
    font-style: italic;
    font-weight: 100 900;
}

@font-face {
    font-family: 'Saira';
    src: url('../fonts/Saira/Saira-VariableFont_wdth,wght.ttf') format('truetype');
    font-style: normal;
    font-weight: 100 900;
}
img { max-width: 100%; display: block; }
a { color: var(--primary-dark); text-decoration: none; transition: color .25s ease; }
a:hover { color: var(--accent); }
ul { list-style: none; padding: 0; margin: 0; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ====== Typography ====== */
h1, h2, h3, h4 { 
  /* font-family: var(--font-head); */ font-family: 'Saira', sans-serif;
   color: var(--navy); line-height: 1.15; margin: 0 0 .5em; font-weight: 700; }
h1 { font-size: clamp(2.2rem, 5.4vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.8rem); }
h3 { font-size: 1.25rem; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  text-transform: uppercase; letter-spacing: .18em; font-size: .78rem;
  font-weight: 700; color: var(--primary-dark); margin: 0 0 14px;
  font-family: var(--font-body);
}
.eyebrow .dot { width: 8px; height: 8px; background: var(--accent); border-radius: 50%; box-shadow: 0 0 0 4px rgba(245,130,32,.18); }

.section { padding: 100px 0; position: relative; }
.section-head { max-width: 740px; margin: 0 auto 56px; text-align: center; }
.section-head .lede { color: var(--muted); font-size: 1.05rem; margin: 6px auto 0; max-width: 620px; }
.section-head.light h2, .section-head.light .eyebrow { color: #fff; }
.section-head.light .eyebrow { color: rgba(255,255,255,.85); }
.section-head.light .lede { color: rgba(255,255,255,.78); }

/* ====== Buttons ====== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px; border-radius: 999px;
  font-weight: 600; font-size: .96rem; letter-spacing: .01em;
  border: none; cursor: pointer; transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  text-decoration: none; white-space: nowrap;
}
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 10px 26px rgba(30,144,215,.35); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 16px 36px rgba(30,144,215,.45); color: #fff; }
.btn-ghost { background: rgba(255,255,255,.15); color: #fff; border: 1.5px solid rgba(255,255,255,.5); backdrop-filter: blur(6px); }
.btn-ghost:hover { background: #fff; color: var(--navy); transform: translateY(-2px); }
.btn-whatsapp { background: var(--whatsapp); color: #fff; box-shadow: 0 10px 26px rgba(37,211,102,.35); }
.btn-whatsapp:hover { background: #1FB855; color: #fff; transform: translateY(-2px); }
.btn-block { width: 100%; justify-content: center; }

/* ====== NAVBAR ====== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: background .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.navbar.scrolled { background: rgba(255,255,255,.96); box-shadow: var(--shadow-sm); border-bottom-color: var(--line); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: var(--nav-h); gap: 24px; }
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { 
  /* width: 50px; */
   /* height: 50px; */height: 70px;
    object-fit: cover; border-radius: 10px; box-shadow: var(--shadow-sm); }
.nav-brand { display: flex; flex-direction: column; line-height: 1; }
.nav-brand strong { font-family: var(--font-head); font-size: 1.4rem; color: var(--navy); letter-spacing: .02em; }
.nav-brand small { font-size: .7rem; letter-spacing: .22em; text-transform: uppercase; color: var(--primary-dark); margin-top: 4px; font-weight: 600; }

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { color: var(--navy); font-weight: 500; font-size: .94rem; position: relative; padding: 6px 0; }
.nav-links a::after { content: ''; position: absolute; left: 50%; bottom: 0; width: 0; height: 2px; background: var(--accent); transition: all .3s ease; transform: translateX(-50%); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover { color: var(--primary-dark); }
.nav-links .nav-cta { background: var(--primary); color: #fff; padding: 10px 22px; border-radius: 999px; box-shadow: 0 8px 20px rgba(30,144,215,.35); }
.nav-links .nav-cta::after { display: none; }
.nav-links .nav-cta:hover { background: var(--accent); transform: translateY(-2px); color: #fff; }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { width: 26px; height: 2.5px; background: var(--navy); border-radius: 2px; transition: all .3s ease; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ====== HERO ====== */
.hero { position: relative; min-height: 100vh; padding: calc(var(--nav-h) + 60px) 0 100px; overflow: hidden; color: #fff; isolation: isolate; }
.hero-slider { position: absolute; inset: 0; z-index: -2; }
.hero-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.2s ease, transform 8s ease; transform: scale(1.05); }
.hero-slide.is-active { opacity: 1; transform: scale(1.12); }
.hero-overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(135deg, rgba(15,78,120,.62) 0%, rgba(26,45,79,.40) 50%, rgba(245,130,32,.25) 100%);
}
.hero-content { position: relative; max-width: 900px; padding-top: 40px; }
.hero-text { will-change: opacity, transform; }
.hero-text.fade-in { animation: heroFade .7s cubic-bezier(.22,.61,.36,1) both; }
@keyframes heroFade {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero .eyebrow { color: rgba(255,255,255,.95); }
.hero .eyebrow .dot { background: var(--yellow); box-shadow: 0 0 0 4px rgba(244,208,63,.22); }
.hero h1 { color: #fff; max-width: 800px; margin-bottom: 18px; font-weight: 700; }
.hero h1 .hl { color: var(--yellow); position: relative; white-space: nowrap; }
.hero h1 .hl::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -4px; height: 8px;
  background: var(--accent); opacity: .5; border-radius: 4px; transform: skew(-12deg);
}
.hero-tagline { font-size: 1.15rem; color: rgba(255,255,255,.92); max-width: 700px; margin-bottom: 36px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 60px; }

.hero-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; max-width: 720px;
  padding: 24px; background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.22);
  border-radius: var(--radius); backdrop-filter: blur(10px); }
.hero-stats div { text-align: center; }
.hero-stats strong { display: block; font-family: var(--font-head); font-size: 1.9rem; color: var(--yellow); margin-bottom: 4px; }
.hero-stats span { font-size: .82rem; color: rgba(255,255,255,.85); text-transform: uppercase; letter-spacing: .1em; }

.hero-dots { position: absolute; bottom: 38px; left: 50%; transform: translateX(-50%); display: flex; gap: 12px; z-index: 5; }
.hero-dots button { width: 38px; height: 4px; border-radius: 4px; background: rgba(255,255,255,.4); border: 0; cursor: pointer; transition: background .3s, width .3s; padding: 0; }
.hero-dots button.is-active { background: var(--yellow); width: 56px; }

.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.35);
  color: #fff; font-size: 1.1rem; cursor: pointer; z-index: 5;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(10px); transition: all .3s ease;
}
.hero-arrow:hover { background: #fff; color: var(--navy); transform: translateY(-50%) scale(1.08); }
.hero-arrow.prev { left: 24px; }
.hero-arrow.next { right: 24px; }

/* ====== ABOUT ====== */
.about { background: var(--bg-soft); }
.about-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 80px; align-items: center; }
.about-images { position: relative; min-height: 520px; }
.about-img-1 {
  width: 78%; height: 480px; object-fit: cover; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); position: relative; z-index: 1;
}
.about-img-2 {
  position: absolute; bottom: -30px; right: 0; width: 50%; height: 280px;
  object-fit: cover; border-radius: var(--radius-lg); border: 6px solid #fff;
  box-shadow: var(--shadow); z-index: 2;
}
.about-badge {
  position: absolute; top: 30px; right: 0; background: #fff; padding: 16px 20px;
  border-radius: var(--radius); box-shadow: var(--shadow); display: flex; align-items: center;
  gap: 14px; z-index: 3;
}
.about-badge i { color: var(--accent); font-size: 1.8rem; }
.about-badge strong { display: block; color: var(--navy); font-family: var(--font-head); font-size: 1.05rem; }
.about-badge span { font-size: .82rem; color: var(--muted); }

.about-text h2 { margin-bottom: 18px; }
.about-text p { color: var(--muted); margin-bottom: 16px; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 20px; margin: 24px 0 30px; }
.about-features li { display: flex; align-items: center; gap: 10px; font-weight: 500; color: var(--text); font-size: .95rem; }
.about-features i { color: var(--primary); }

/* ====== SERVICES ====== */
.services { background: #fff; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.service-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; transition: all .35s ease; position: relative; overflow: hidden;
  cursor: default;
}
.service-card::before {
  content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, var(--primary), var(--accent));
  opacity: 0; transition: opacity .35s ease; z-index: 0;
}
.service-card > * { position: relative; z-index: 1; }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { opacity: 1; }
.service-card:hover h3, .service-card:hover p, .service-card:hover .s-arrow { color: #fff; }
.service-card:hover .service-icon { background: rgba(255,255,255,.2); color: #fff; }

.service-icon {
  width: 64px; height: 64px; border-radius: 16px; display: flex; align-items: center;
  justify-content: center; background: var(--bg-tint); color: var(--primary);
  font-size: 1.6rem; margin-bottom: 20px; transition: all .35s ease;
}
.service-card h3 { font-size: 1.15rem; margin-bottom: 10px; transition: color .3s ease; }
.service-card p { color: var(--muted); font-size: .92rem; margin: 0 0 16px; line-height: 1.55; transition: color .3s ease; }
.s-arrow { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; font-size: .85rem; color: var(--primary-dark); transition: color .3s ease; }

/* ====== WHY US ====== */
.why { background: linear-gradient(135deg, var(--navy) 0%, var(--primary-deep) 100%); color: #fff; position: relative; overflow: hidden; }
.why::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(245,130,32,.18), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(30,144,215,.25), transparent 50%);
  pointer-events: none;
}
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; position: relative; }
.why-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
  padding: 36px 28px; border-radius: var(--radius); backdrop-filter: blur(6px);
  transition: all .35s ease;
}
.why-card:hover { transform: translateY(-6px); background: rgba(255,255,255,.10); border-color: rgba(244,208,63,.4); }
.why-icon {
  width: 60px; height: 60px; border-radius: 14px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--accent), var(--yellow)); color: #fff;
  font-size: 1.4rem; margin-bottom: 18px; box-shadow: 0 10px 24px rgba(245,130,32,.35);
}
.why-card h3 { color: #fff; font-size: 1.15rem; margin-bottom: 10px; }
.why-card p { color: rgba(255,255,255,.78); font-size: .92rem; margin: 0; line-height: 1.6; }

/* ====== VISION & MISSION ====== */
.vision-mission { background: var(--bg-soft); }
.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.vm-card {
  padding: 50px 42px; border-radius: var(--radius-lg); background: #fff;
  border-top: 6px solid var(--primary); box-shadow: var(--shadow-sm);
  transition: all .35s ease; position: relative; overflow: hidden;
}
.vm-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.vm-mission { border-top-color: var(--accent); }
.vm-icon {
  width: 72px; height: 72px; border-radius: 18px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-deep)); color: #fff; font-size: 1.7rem;
  margin-bottom: 24px; box-shadow: 0 14px 30px rgba(30,144,215,.30);
}
.vm-mission .vm-icon { background: linear-gradient(135deg, var(--accent), var(--yellow)); box-shadow: 0 14px 30px rgba(245,130,32,.30); }
.vm-card h3 { font-size: 1.6rem; margin-bottom: 14px; }
.vm-card p { color: var(--muted); font-size: 1rem; line-height: 1.65; margin: 0; }

/* ====== GALLERY ====== */
.gallery { background: #fff; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 18px; }
.g-item { position: relative; overflow: hidden; border-radius: var(--radius); cursor: pointer; background: #ddd; }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.g-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(26,45,79,.7) 100%);
  opacity: 0; transition: opacity .35s ease;
}
.g-item .g-label { position: absolute; bottom: 16px; left: 18px; color: #fff; font-family: var(--font-head); font-weight: 600; font-size: 1.1rem; z-index: 2; opacity: 0; transform: translateY(8px); transition: all .35s ease; }
.g-item:hover img { transform: scale(1.08); }
.g-item:hover::after { opacity: 1; }
.g-item:hover .g-label { opacity: 1; transform: translateY(0); }
.g-item.large { grid-column: span 2; grid-row: span 2; }
.g-item.wide { grid-column: span 2; }

/* ====== SISTERS ====== */
.sisters { background: linear-gradient(135deg, var(--primary-deep) 0%, var(--primary) 100%); color: #fff; }
.sisters-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.sister-card {
  background: #fff; padding: 32px 24px; border-radius: var(--radius); text-align: center;
  transition: all .35s ease; border-bottom: 4px solid transparent;
}
.sister-card:hover { transform: translateY(-8px); border-bottom-color: var(--accent); box-shadow: var(--shadow-lg); }
.sister-icon {
  width: 64px; height: 64px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: var(--bg-tint); color: var(--primary-dark); font-size: 1.5rem; margin: 0 auto 18px;
}
.sister-card h3 { font-size: 1.1rem; margin-bottom: 8px; color: var(--navy); }
.sister-card p { font-size: .88rem; color: var(--muted); margin: 0; line-height: 1.5; }

/* ====== TESTIMONIALS ====== */
.testimonials { background: var(--bg-soft); }
.testimonial-slider { position: relative; overflow: hidden; padding: 0 0 60px; }
.t-track { display: flex; gap: 24px; transition: transform .6s cubic-bezier(.4,0,.2,1); }
.t-card {
  flex: 0 0 calc((100% - 48px) / 3); min-width: 0;
  background: #fff; padding: 36px 32px; border-radius: var(--radius);
  box-shadow: var(--shadow-sm); position: relative;
  border-top: 4px solid var(--primary);
}
.t-card::before {
  content: '\201C'; position: absolute; top: 10px; right: 24px;
  font-family: var(--font-head); font-size: 5rem; color: var(--bg-tint);
  line-height: 1; pointer-events: none;
}
.t-stars { color: var(--yellow); margin-bottom: 14px; font-size: .9rem; letter-spacing: 2px; }
.t-card p { color: var(--text); font-size: 1rem; line-height: 1.65; margin: 0 0 22px; position: relative; }
.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar {
  width: 50px; height: 50px; border-radius: 50%; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-family: var(--font-head); font-size: 1.1rem;
}
.t-author strong { display: block; color: var(--navy); font-family: var(--font-head); font-size: 1.05rem; }
.t-author span { font-size: .82rem; color: var(--muted); }

.t-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%;
  background: #fff; border: 1px solid var(--line); color: var(--primary-dark);
  cursor: pointer; box-shadow: var(--shadow-sm); display: flex;
  align-items: center; justify-content: center; transition: all .3s ease; z-index: 5;
}
.t-arrow:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.t-prev { left: -24px; }
.t-next { right: -24px; }

/* ====== CONTACT ====== */
.contact { background: #fff; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 50px; align-items: start; }

.contact-info { background: var(--bg-soft); padding: 36px; border-radius: var(--radius-lg); border: 1px solid var(--line); }
.ci-item { display: flex; align-items: flex-start; gap: 16px; padding: 14px 0; border-bottom: 1px dashed var(--line); }
.ci-item:last-of-type { border-bottom: 0; }
.ci-item .ci-icon {
  width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1rem;
  box-shadow: 0 8px 18px rgba(30,144,215,.30);
}
.ci-item strong { display: block; color: var(--navy);
   /* font-family: var(--font-head);  */ font-family: 'Saira', sans-serif;
   font-size: 1rem; margin-bottom: 2px; }
.ci-item a, .ci-item span { color: var(--muted); font-size: .94rem; display: block; }
.ci-item a + a { margin-top: 2px; }
.ci-item a:hover { color: var(--accent); }

.socials { display: flex; gap: 10px; margin: 22px 0; }
.socials a {
  width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: #fff; border: 1px solid var(--line); color: var(--primary-dark); transition: all .3s ease;
}
.socials a:hover { background: var(--primary); color: #fff; transform: translateY(-3px); border-color: var(--primary); }

.map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); margin-top: 8px; }
.map iframe { width: 100%; height: 220px; border: 0; display: block; }

.contact-form { background: #fff; padding: 40px; border-radius: var(--radius-lg); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.field label { display: block; font-size: .85rem; font-weight: 600; color: var(--navy); margin-bottom: 8px; letter-spacing: .02em; }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; font: inherit; color: var(--text);
  border: 1.5px solid var(--line); border-radius: 12px; background: var(--bg-soft);
  transition: border-color .25s ease, background .25s ease, box-shadow .25s ease; outline: none;
  font-family: inherit;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--primary); background: #fff; box-shadow: 0 0 0 4px rgba(30,144,215,.12);
}
.field textarea { resize: vertical; min-height: 120px; }
.field { margin-bottom: 18px; }
.form-note { margin: 14px 0 0; font-size: .9rem; color: var(--primary-dark); min-height: 22px; }
.form-note.success { color: #15803D; }
.form-note.error { color: #B91C1C; }

/* ====== FOOTER ====== */
.footer { background: var(--navy); color: rgba(255,255,255,.78); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.2fr; gap: 50px; padding-bottom: 50px; }
.footer-logo img { 
  /* background: #fff; */
   padding: 4px; }
.footer .nav-brand strong { color: #fff; }
.footer .nav-brand small { color: rgba(255,255,255,.7); }
.f-col p { margin: 18px 0 22px; font-size: .94rem; line-height: 1.65; }
.f-col h4 { color: #fff; 
  /* font-family: var(--font-head);  */ font-family: 'Saira', sans-serif;
  font-size: 1.15rem; margin-bottom: 22px; }
.f-col ul li { margin-bottom: 10px; font-size: .94rem; }
.f-col ul li a { color: rgba(255,255,255,.72); transition: color .25s ease, padding-left .25s ease; }
.f-col ul li a:hover { color: var(--yellow); padding-left: 6px; }
.f-contact li { display: flex; align-items: flex-start; gap: 10px; }
.f-contact i { color: var(--accent); margin-top: 4px; }
.footer .socials a { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.12); color: #fff; }
.footer .socials a:hover { background: var(--accent); border-color: var(--accent); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.10); padding: 22px 0; font-size: .88rem; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { margin: 0; color: rgba(255,255,255,.55); }

/* ====== FLOATING WHATSAPP ====== */
.wa-float {
  position: fixed; bottom: 26px; right: 26px; width: 60px; height: 60px;
  border-radius: 50%; background: var(--whatsapp); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem; z-index: 90; box-shadow: 0 14px 30px rgba(37,211,102,.45);
  transition: transform .3s ease, box-shadow .3s ease;
}
.wa-float:hover { transform: scale(1.1) rotate(8deg); color: #fff; }
.wa-pulse {
  position: absolute; inset: -6px; border-radius: 50%; background: var(--whatsapp);
  opacity: .35; animation: wa-pulse 2s ease-out infinite; z-index: -1;
}
@keyframes wa-pulse { 0% { transform: scale(1); opacity: .4; } 100% { transform: scale(1.6); opacity: 0; } }

/* ====== BACK TO TOP ====== */
.back-top {
  position: fixed; bottom: 26px; left: 26px; width: 46px; height: 46px;
  border-radius: 50%; background: var(--navy); color: #fff;
  border: 0; cursor: pointer; opacity: 0; pointer-events: none;
  transition: all .3s ease; z-index: 85; box-shadow: var(--shadow);
  display: flex; align-items: center; justify-content: center;
}
.back-top.show { opacity: 1; pointer-events: auto; }
.back-top:hover { background: var(--primary); transform: translateY(-4px); }

/* ====== REVEAL ANIMATIONS ====== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }

/* ====== RESPONSIVE ====== */
@media (max-width: 1024px) {
  .section { padding: 80px 0; }
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-images { min-height: 460px; max-width: 560px; margin: 0 auto; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .sisters-grid { grid-template-columns: repeat(2, 1fr); }
  .vm-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .t-card { flex: 0 0 calc((100% - 24px) / 2); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 180px; }
  .g-item.large { grid-column: span 2; grid-row: span 2; }
  .g-item.wide { grid-column: span 2; }
}

@media (max-width: 768px) {
  :root { --nav-h: 70px; }
  .container { padding: 0 18px; }
  .section { padding: 64px 0; }
  .section-head { margin-bottom: 40px; }

  .nav-links {
    /* position: fixed; top: var(--nav-h); right: -100%; bottom: 0; width: 84%; max-width: 320px;
    background: #fff; flex-direction: column; align-items: flex-start; padding: 30px 28px;
    gap: 6px; transition: right .35s ease; box-shadow: -10px 0 40px rgba(0,0,0,.10);
    overflow-y: auto; */
     position: fixed;
    top: var(--nav-h);
    right: -100%;
    width: 84%;
    max-width: 320px;

    height: calc(100vh - var(--nav-h)); /* ADD THIS */
    background: #fff;

    flex-direction: column;
    align-items: flex-start;

    padding: 30px 28px;
    gap: 6px;

    transition: right .35s ease;
    box-shadow: -10px 0 40px rgba(0,0,0,.10);

    overflow-y: auto; /* KEEP THIS */
    z-index: 999;
  }
  /* .nav-links.open { right: 0; } */.nav-links.open {
    right: 0;
}
  .nav-links a { width: 100%; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 1rem; }
  .nav-links a::after { display: none; }
  .nav-links .nav-cta { margin-top: 12px; text-align: center; width: 100%; padding: 14px 22px; }
  .nav-toggle { display: flex; }

  .hero { min-height: 92vh; padding: calc(var(--nav-h) + 40px) 0 80px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 16px; padding: 18px; }
  .hero-stats strong { font-size: 1.5rem; }
  .hero-arrow { width: 42px; height: 42px; }
  .hero-arrow.prev { left: 10px; } .hero-arrow.next { right: 10px; }
  .hero-ctas .btn { padding: 12px 20px; font-size: .9rem; }

  .about-features { grid-template-columns: 1fr; }
  .about-img-1 { width: 100%; height: 360px; }
  .about-img-2 { width: 55%; height: 200px; bottom: -20px; }
  .about-badge { right: 10px; top: 10px; padding: 12px 16px; }

  .why-grid { grid-template-columns: 1fr; }
  .sisters-grid { grid-template-columns: 1fr; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 170px; }
  .g-item.large, .g-item.wide { grid-column: span 2; grid-row: auto; }
  .g-item.large { grid-row: span 2; }

  .t-card { flex: 0 0 100%; padding: 28px 24px; }
  .t-prev { left: 6px; } .t-next { right: 6px; }
  .t-arrow { width: 40px; height: 40px; }

  .form-row { grid-template-columns: 1fr; }
  .contact-info, .contact-form { padding: 24px; }
  .vm-card { padding: 36px 26px; }

  .footer { padding-top: 60px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom .container { text-align: center; justify-content: center; }

  .wa-float { width: 54px; height: 54px; font-size: 1.5rem; bottom: 18px; right: 18px; }
  .back-top { bottom: 18px; left: 18px; width: 42px; height: 42px; }
}

@media (max-width: 420px) {
  h1 { font-size: 2rem; }
  .hero h1 .hl::after { display: none; }
  .nav-brand strong { font-size: 1.15rem; }
  .nav-brand small { font-size: .6rem; }
  /* .nav-logo img { width: 42px; height: 42px; } */
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
html, body {
    overflow-x: hidden;
    width: 100%;
}

section,
.container,
.hero,
.navbar {
    max-width: 100%;
}

img {
    max-width: 100%;
    height: auto;
}
