/* ============================================================
   SEDONA TOURISM — style.css
   All fixes applied + Full Mobile Responsive
   ============================================================ */

/* ---------- VARIABLES ---------- */
:root {
  --blue-pale:   #EAF6FF;
  --blue-soft:   #DCEEFF;
  --blue-mid:    #BFE3FF;
  --blue-main:   #4AABDF;
  --blue-deep:   #2A7DB5;
  --blue-dark:   #1A5E8A;
  --white:       #FFFFFF;
  --off-white:   #F7FBFF;
  --text-dark:   #0E2233;
  --text-mid:    #2E4A62;
  --text-muted:  #7A9EB8;
  --green-wa:    #25D366;
  --shadow-soft: 0 4px 32px rgba(74,171,223,0.12);
  --shadow-card: 0 8px 40px rgba(42,125,181,0.12);
  --radius:      16px;
  --radius-sm:   10px;
  --nav-h:       70px; /* navbar height – used for hero offset */
  --tr:          0.4s cubic-bezier(0.25,0.46,0.45,0.94);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Jost', sans-serif; background: var(--white); color: var(--text-dark); line-height: 1.7; overflow-x: hidden; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
p { color: var(--text-mid); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }

/* ---------- TYPOGRAPHY ---------- */
.section-eyebrow {
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--blue-main); margin-bottom: 0.75rem;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 400;
  line-height: 1.2; color: var(--text-dark); margin-bottom: 1rem;
}
.section-title em { font-style: italic; color: var(--blue-deep); }
.section-desc { font-size: 1.05rem; color: var(--text-mid); max-width: 560px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 56px; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 30px; border-radius: 50px;
  font-family: 'Jost', sans-serif; font-size: 0.9rem; font-weight: 500;
  letter-spacing: 0.04em; cursor: pointer; border: none;
  transition: all var(--tr); text-decoration: none; white-space: nowrap;
}
.btn-primary { background: linear-gradient(135deg, var(--blue-main), var(--blue-deep)); color: #fff; box-shadow: 0 6px 24px rgba(74,171,223,0.35); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(74,171,223,0.45); }
.btn-outline { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.7); backdrop-filter: blur(8px); }
.btn-outline:hover { background: rgba(255,255,255,0.15); transform: translateY(-2px); }
.btn-white { background: #fff; color: var(--blue-deep); font-weight: 600; box-shadow: 0 4px 20px rgba(0,0,0,0.15); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.2); }
.btn-outline-white { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.6); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); transform: translateY(-2px); }
.btn-ghost { background: var(--blue-pale); color: var(--blue-deep); border: 1.5px solid var(--blue-mid); }
.btn-ghost:hover { background: var(--blue-soft); transform: translateY(-1px); }
.btn-sm { padding: 10px 18px; font-size: 0.82rem; }
.btn-full { width: 100%; justify-content: center; }

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

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h); display: flex; align-items: center;
  transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 24px rgba(42,125,181,0.1);
}
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

/* ── Custom logo image ── */
.nav-logo-img {
  height: 70px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
  /* White tint on hero (dark bg) */
  filter: brightness(0) invert(1);
  transition: filter 0.4s ease, opacity 0.3s ease;
}
/* Restore original colours when navbar scrolls to white */
.navbar.scrolled .nav-logo-img { filter: none; }
.nav-logo-img:hover { opacity: 0.85; }

/* Fallback text logo shown only if image file is missing */
.logo-fallback { display: flex; align-items: center; gap: 10px; }
.logo-icon { font-size: 1.4rem; color: var(--blue-main); line-height: 1; }
.logo-main { display: block; font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 500; letter-spacing: 0.18em; color: #fff; line-height: 1; }
.logo-sub  { display: block; font-size: 0.52rem; letter-spacing: 0.22em; color: rgba(255,255,255,0.75); text-transform: uppercase; }
.navbar.scrolled .logo-main { color: var(--text-dark); }
.navbar.scrolled .logo-sub  { color: var(--text-muted); }

/* Nav links */
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link { font-size: 0.87rem; font-weight: 400; color: rgba(255,255,255,0.9); padding: 7px 14px; border-radius: 50px; transition: all 0.3s ease; letter-spacing: 0.03em; }
.nav-link:hover { background: rgba(255,255,255,0.15); color: #fff; }
.navbar.scrolled .nav-link { color: var(--text-mid); }
.navbar.scrolled .nav-link:hover { background: var(--blue-pale); color: var(--blue-deep); }
.nav-cta { display: inline-flex; align-items: center; gap: 6px; font-size: 0.82rem; font-weight: 500; color: #fff; background: var(--green-wa); padding: 9px 18px; border-radius: 50px; transition: all 0.3s ease; white-space: nowrap; }
.nav-cta:hover { transform: scale(1.04); box-shadow: 0 4px 18px rgba(37,211,102,0.4); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; z-index: 1001; flex-shrink: 0; }
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s ease; }
.navbar.scrolled .hamburger span { background: var(--text-dark); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ============================================================
   HERO — FIX 1: text never hidden behind navbar
   ============================================================ */
.hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
  padding-top: var(--nav-h); /* push content below navbar */
}
.hero-bg { position: absolute; inset: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.05); animation: heroZoom 20s ease-in-out infinite alternate; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(10,30,55,0.55) 0%, rgba(10,30,55,0.35) 55%, rgba(10,30,55,0.75) 100%); }
@keyframes heroZoom { from { transform: scale(1.05); } to { transform: scale(1.13); } }

.hero-content { position: relative; z-index: 2; max-width: 820px; padding: 0 20px; }
.hero-eyebrow { font-size: 0.75rem; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(255,255,255,0.8); margin-bottom: 1.2rem; }
.hero-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.8rem, 7vw, 5.5rem); font-weight: 300; color: #fff; line-height: 1.1; margin-bottom: 1.2rem; }
.hero-title em { font-style: italic; color: var(--blue-mid); }
.hero-sub { font-size: 1.05rem; color: rgba(255,255,255,0.82); font-weight: 300; margin-bottom: 2.5rem; max-width: 520px; margin-left: auto; margin-right: auto; }
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.hero-stats {
  position: relative; z-index: 2;
  display: flex; align-items: center; gap: 28px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius); padding: 20px 36px; margin-top: 52px;
}
.stat { text-align: center; }
.stat-num { display: block; font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 500; color: #fff; }
.stat-label { font-size: 0.72rem; color: rgba(255,255,255,0.72); letter-spacing: 0.08em; text-transform: uppercase; }
.stat-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.25); }

.scroll-indicator { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 4px; animation: scrollBounce 2.5s ease-in-out infinite; }
.scroll-line { width: 1px; height: 36px; background: rgba(255,255,255,0.5); }
.scroll-dot  { width: 6px; height: 6px; border-radius: 50%; background: #fff; }
@keyframes scrollBounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(10px)} }

/* ============================================================
   ABOUT — FIX 2: Bigger, more content
   ============================================================ */
.about { background: var(--off-white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }

.about-images { position: relative; height: 560px; }
.about-img-main { position: absolute; top: 0; left: 0; width: 82%; height: 78%; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-card); }
.about-img-accent { position: absolute; bottom: 0; right: 0; width: 54%; height: 50%; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-card); border: 4px solid #fff; }
.about-badge { position: absolute; bottom: 14px; left: 14px; background: linear-gradient(135deg, var(--blue-main), var(--blue-deep)); color: #fff; padding: 12px 16px; border-radius: var(--radius-sm); text-align: center; }
.badge-num  { display: block; font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 500; line-height: 1; }
.badge-text { font-size: 0.68rem; opacity: 0.9; line-height: 1.4; }

.about-desc { margin: 0.9rem 0; font-size: 1rem; }

.about-mv-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 1.6rem 0; }
.about-mv-card { background: #fff; border: 1px solid rgba(191,227,255,0.7); border-radius: var(--radius-sm); padding: 18px; box-shadow: var(--shadow-soft); }
.mv-icon { font-size: 1.4rem; display: block; margin-bottom: 8px; }
.about-mv-card strong { display: block; font-size: 0.9rem; color: var(--text-dark); margin-bottom: 6px; }
.about-mv-card p { font-size: 0.83rem; color: var(--text-mid); margin: 0; line-height: 1.6; }

.about-pillars { display: flex; flex-direction: column; gap: 12px; margin: 1.4rem 0; }
.pillar { display: flex; align-items: flex-start; gap: 14px; padding: 14px 18px; background: #fff; border-radius: var(--radius-sm); border-left: 3px solid var(--blue-main); box-shadow: var(--shadow-soft); }
.pillar-icon { font-size: 1.1rem; color: var(--blue-main); flex-shrink: 0; margin-top: 2px; }
.pillar strong { display: block; font-size: 0.9rem; color: var(--text-dark); margin-bottom: 2px; }
.pillar p { font-size: 0.82rem; color: var(--text-muted); margin: 0; }

.about-awards { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 1.4rem; }
.award-badge { display: flex; align-items: center; gap: 6px; background: linear-gradient(135deg, var(--blue-pale), var(--blue-soft)); border: 1px solid var(--blue-mid); border-radius: 50px; padding: 8px 16px; font-size: 0.8rem; font-weight: 500; color: var(--blue-deep); }

/* ============================================================
   TOURS
   ============================================================ */
.tours { background: #fff; }
.tours-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-bottom: 72px; }

.tour-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-card); transition: transform var(--tr), box-shadow var(--tr); border: 1px solid rgba(191,227,255,0.4); display: flex; flex-direction: column; }
.tour-card:hover { transform: translateY(-8px); box-shadow: 0 20px 56px rgba(42,125,181,0.18); }
.tour-img-wrap { position: relative; height: 200px; overflow: hidden; flex-shrink: 0; }
.tour-img-wrap img { transition: transform 0.6s ease; }
.tour-card:hover .tour-img-wrap img { transform: scale(1.08); }
.tour-badge { position: absolute; top: 12px; left: 12px; background: linear-gradient(135deg, var(--blue-main), var(--blue-deep)); color: #fff; font-size: 0.68rem; font-weight: 500; padding: 5px 12px; border-radius: 50px; letter-spacing: 0.06em; }
.tour-body { padding: 18px; display: flex; flex-direction: column; flex: 1; }
.tour-meta { display: flex; gap: 10px; font-size: 0.73rem; color: var(--text-muted); margin-bottom: 6px; letter-spacing: 0.04em; }
.tour-name { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 500; color: var(--text-dark); margin-bottom: 6px; }
.tour-desc { font-size: 0.84rem; color: var(--text-mid); line-height: 1.6; margin-bottom: 14px; flex: 1; }
.tour-btns { display: flex; gap: 8px; flex-wrap: wrap; margin-top: auto; }

/* Custom Inquiry */
.custom-inquiry { background: linear-gradient(135deg, var(--blue-pale), var(--blue-soft)); border-radius: 24px; padding: 56px; display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; align-items: start; border: 1px solid var(--blue-mid); }
.custom-inquiry .section-title { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.inquiry-features { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 1.4rem; }
.inquiry-features span { background: #fff; padding: 6px 14px; border-radius: 50px; font-size: 0.8rem; color: var(--blue-deep); font-weight: 500; border: 1px solid var(--blue-mid); }

.inquiry-form, .contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group label { font-size: 0.78rem; font-weight: 500; color: var(--text-dark); letter-spacing: 0.04em; }
.form-group input, .form-group select, .form-group textarea { padding: 12px 15px; border: 1.5px solid rgba(191,227,255,0.9); border-radius: var(--radius-sm); background: #fff; font-family: 'Jost', sans-serif; font-size: 0.9rem; color: var(--text-dark); transition: border-color 0.3s ease, box-shadow 0.3s ease; outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--blue-main); box-shadow: 0 0 0 3px rgba(74,171,223,0.15); }
.form-group textarea { resize: vertical; min-height: 80px; }

/* ============================================================
   GALLERY — FIX 4: Verified images, more photos
   ============================================================ */
.gallery { background: var(--off-white); }
.masonry { columns: 4; column-gap: 14px; }
.masonry-item { break-inside: avoid; margin-bottom: 14px; position: relative; border-radius: var(--radius-sm); overflow: hidden; cursor: pointer; }
.masonry-item img { width: 100%; height: auto; display: block; transition: transform 0.6s ease; }
.masonry-item:hover img { transform: scale(1.06); }
.masonry-item.tall img { /* taller natural ratio – no extra CSS needed, driven by image */ }
.masonry-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,30,55,0.65) 0%, transparent 55%); display: flex; align-items: flex-end; padding: 14px; opacity: 0; transition: opacity 0.4s ease; }
.masonry-item:hover .masonry-overlay { opacity: 1; }
.masonry-overlay span { color: #fff; font-size: 0.78rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: #fff; }
.testi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.testi-card { background: linear-gradient(135deg, var(--blue-pale), rgba(255,255,255,0.9)); border: 1px solid rgba(191,227,255,0.7); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-soft); transition: transform var(--tr), box-shadow var(--tr); position: relative; overflow: hidden; }
.testi-card::before { content:''; position: absolute; top:0; left:0; right:0; height:3px; background: linear-gradient(90deg, var(--blue-main), var(--blue-deep)); }
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.testi-quote { font-family: 'Cormorant Garamond', serif; font-size: 4.5rem; color: var(--blue-mid); line-height: 0.6; margin-bottom: 1rem; font-style: italic; }
.testi-text { font-size: 0.95rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 1.4rem; font-style: italic; }
.testi-footer { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--blue-main), var(--blue-deep)); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: 1rem; flex-shrink: 0; }
.testi-footer strong { display: block; font-size: 0.88rem; color: var(--text-dark); }
.testi-footer span   { font-size: 0.76rem; color: var(--text-muted); }
.testi-stars { margin-left: auto; color: #F5A623; font-size: 0.85rem; flex-shrink: 0; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--blue-pale); }
.faq-inner { display: grid; grid-template-columns: 1fr 1.6fr; gap: 72px; align-items: start; }
.faq-header { text-align: left; }
.faq-header p { font-size: 0.95rem; margin-top: 1rem; }
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: #fff; border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow-soft); border: 1px solid rgba(191,227,255,0.5); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 18px 22px; background: none; border: none; text-align: left; font-family: 'Jost', sans-serif; font-size: 0.93rem; font-weight: 500; color: var(--text-dark); cursor: pointer; transition: color 0.3s ease; gap: 12px; }
.faq-q:hover { color: var(--blue-deep); }
.faq-arrow { font-size: 1.4rem; color: var(--blue-main); transition: transform 0.3s ease; flex-shrink: 0; }
.faq-item.open .faq-arrow { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-a { max-height: 200px; }
.faq-a p { padding: 0 22px 18px; font-size: 0.88rem; color: var(--text-mid); line-height: 1.7; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner { position: relative; padding: 100px 24px; text-align: center; overflow: hidden; }
.cta-bg { position: absolute; inset: 0; }
.cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(26,94,138,0.87), rgba(10,30,55,0.78)); }
.cta-content { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; color: #fff; }
.cta-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 300; color: #fff; line-height: 1.15; margin-bottom: 1rem; }
.cta-title em { font-style: italic; color: var(--blue-mid); }

/* ============================================================
   CONTACT — FIX: Office Hours removed, exact map coords
   ============================================================ */
.contact { background: #fff; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 14px; }
.contact-card { display: flex; align-items: flex-start; gap: 14px; padding: 18px; background: var(--off-white); border-radius: var(--radius-sm); border: 1px solid rgba(191,227,255,0.6); transition: box-shadow 0.3s ease; }
.contact-card:hover { box-shadow: var(--shadow-soft); }
.contact-icon { width: 40px; height: 40px; border-radius: 10px; background: linear-gradient(135deg, var(--blue-pale), var(--blue-soft)); border: 1px solid var(--blue-mid); display: flex; align-items: center; justify-content: center; color: var(--blue-deep); flex-shrink: 0; }
.contact-icon-green { background: linear-gradient(135deg,#dcfce7,#bbf7d0); border-color: #86efac; color: #16a34a; }
.contact-card strong { display: block; font-size: 0.83rem; font-weight: 500; color: var(--text-dark); margin-bottom: 3px; }
.contact-card a, .contact-card p { font-size: 0.88rem; color: var(--text-mid); transition: color 0.3s ease; margin: 0; }
.contact-card a:hover { color: var(--blue-deep); }
.map-placeholder { border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow-soft); }
.contact-form { background: linear-gradient(135deg, var(--blue-pale), var(--off-white)); border-radius: var(--radius); padding: 36px; border: 1px solid rgba(191,227,255,0.6); box-shadow: var(--shadow-card); }
.contact-form h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 400; color: var(--text-dark); margin-bottom: 1.4rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--text-dark); color: rgba(255,255,255,0.72); }
.footer-top { padding: 72px 0 56px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 44px; }
.footer-tagline { font-size: 0.86rem; color: rgba(255,255,255,0.5); margin-top: 1rem; line-height: 1.7; max-width: 260px; }
.footer-social { display: flex; gap: 10px; margin-top: 1.4rem; }
.social-link { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.65); transition: all 0.3s ease; }
.social-link:hover { background: var(--blue-main); border-color: var(--blue-main); color: #fff; }
.footer-col h4 { font-size: 0.78rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: #fff; margin-bottom: 1.1rem; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { font-size: 0.86rem; color: rgba(255,255,255,0.52); transition: color 0.3s ease; }
.footer-col ul li a:hover { color: var(--blue-mid); }
.footer-contact-list li { display: flex; align-items: flex-start; gap: 9px; margin-bottom: 11px; }
.footer-contact-list svg { color: var(--blue-mid); flex-shrink: 0; margin-top: 3px; }
.footer-contact-list a, .footer-contact-list span { font-size: 0.84rem; color: rgba(255,255,255,0.52); transition: color 0.3s ease; }
.footer-contact-list a:hover { color: var(--blue-mid); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 22px 0; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 6px; }
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.38); }

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.whatsapp-float { position: fixed; bottom: 24px; right: 24px; z-index: 9999; width: 60px; height: 60px; background: var(--green-wa); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 28px rgba(37,211,102,0.45); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 10px 36px rgba(37,211,102,0.55); }
.whatsapp-float:hover .wa-tooltip { opacity: 1; transform: translateX(0); pointer-events: auto; }
.wa-pulse { position: absolute; width: 100%; height: 100%; border-radius: 50%; background: var(--green-wa); animation: waPulse 2.5s ease-out infinite; }
@keyframes waPulse { 0%{transform:scale(1);opacity:.7} 100%{transform:scale(1.8);opacity:0} }
.wa-tooltip { position: absolute; right: 70px; background: var(--text-dark); color: #fff; font-size: 0.76rem; font-weight: 500; padding: 6px 13px; border-radius: 50px; white-space: nowrap; opacity: 0; transform: translateX(8px); transition: all 0.3s ease; pointer-events: none; }
.wa-tooltip::after { content:''; position: absolute; right: -6px; top: 50%; transform: translateY(-50%); border: 6px solid transparent; border-left-color: var(--text-dark); border-right: 0; }

/* ============================================================
   RESPONSIVE — TABLET 1024px
   ============================================================ */
@media (max-width: 1100px) {
  .tours-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .masonry { columns: 3; }
  .about-grid { gap: 48px; }
}

/* ============================================================
   RESPONSIVE — TABLET 900px
   ============================================================ */
@media (max-width: 900px) {
  .section { padding: 72px 0; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-images { height: 360px; order: -1; }
  .about-mv-row { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .faq-inner { grid-template-columns: 1fr; gap: 40px; }
  .custom-inquiry { grid-template-columns: 1fr; gap: 32px; padding: 40px 32px; }
  .masonry { columns: 3; }
}

/* ============================================================
   RESPONSIVE — MOBILE 768px  ← main mobile breakpoint
   ============================================================ */
@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  .section { padding: 60px 0; }
  .container { padding: 0 16px; }

  /* Navbar mobile */
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: fixed; inset: 0;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
    flex-direction: column; justify-content: center; align-items: center;
    gap: 8px; z-index: 1000; padding: 80px 24px 40px;
  }
  .nav-links.open { display: flex; }
  .nav-link { font-size: 1.15rem !important; color: var(--text-dark) !important; padding: 12px 28px !important; width: 220px; text-align: center; border-radius: 50px !important; }
  .nav-link:hover { background: var(--blue-pale) !important; color: var(--blue-deep) !important; }
  .nav-cta { margin-top: 8px; padding: 12px 28px; }

  /* Hero */
  .hero { padding-top: var(--nav-h); min-height: 100svh; }
  .hero-title { font-size: clamp(2.2rem, 10vw, 3.5rem); }
  .hero-sub { font-size: 0.95rem; }
  .hero-btns { flex-direction: column; align-items: center; gap: 12px; }
  .hero-btns .btn { width: 240px; justify-content: center; }
  .hero-stats { flex-direction: row; gap: 14px; padding: 14px 18px; margin-top: 32px; flex-wrap: wrap; justify-content: center; }
  .stat-num { font-size: 1.5rem; }
  .stat-divider { height: 28px; }

  /* About */
  .about-images { height: 300px; }
  .about-img-main { width: 78%; height: 75%; }
  .about-img-accent { width: 55%; height: 52%; }
  .about-mv-row { grid-template-columns: 1fr; gap: 10px; }
  .about-awards { justify-content: flex-start; }

  /* Tours */
  .tours-grid { grid-template-columns: 1fr; gap: 18px; margin-bottom: 48px; }
  .tour-img-wrap { height: 220px; }
  .tour-btns { flex-direction: column; }
  .tour-btns .btn { width: 100%; justify-content: center; }
  .custom-inquiry { padding: 28px 16px; border-radius: 16px; }
  .form-row { grid-template-columns: 1fr; }
  .inquiry-features { gap: 6px; }
  .inquiry-features span { font-size: 0.76rem; padding: 5px 12px; }

  /* Gallery */
  .masonry { columns: 2; column-gap: 10px; }
  .masonry-item { margin-bottom: 10px; }

  /* Testimonials */
  .testi-card { padding: 24px 20px; }
  .testi-quote { font-size: 3.5rem; }

  /* FAQ */
  .faq-header { text-align: center; }
  .faq-header .btn { margin-left: auto; margin-right: auto; display: flex; width: fit-content; }
  .faq-q { font-size: 0.88rem; padding: 16px 18px; }

  /* CTA Banner */
  .cta-banner { padding: 72px 16px; }
  .cta-content .hero-btns { flex-direction: column; align-items: center; gap: 12px; }
  .cta-content .btn { width: 240px; justify-content: center; }

  /* Contact */
  .contact-form { padding: 24px 16px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-tagline { max-width: 100%; }
  .footer-bottom .container { flex-direction: column; text-align: center; gap: 4px; }

  /* Floating WA */
  .whatsapp-float { bottom: 18px; right: 18px; width: 54px; height: 54px; }
  .wa-tooltip { display: none; }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE 480px
   ============================================================ */
@media (max-width: 480px) {
  .hero-title { font-size: clamp(2rem, 11vw, 3rem); }
  .hero-stats { gap: 10px; padding: 12px 14px; }
  .stat-num { font-size: 1.3rem; }
  .stat-label { font-size: 0.64rem; }
  .stat-divider { height: 24px; }
  .masonry { columns: 1; }
  .section-title { font-size: clamp(1.8rem, 7vw, 2.4rem); }
  .about-images { height: 260px; }
  .about-img-main { width: 85%; height: 72%; }
  .about-img-accent { width: 58%; height: 50%; }
  .testi-footer { flex-wrap: wrap; }
  .testi-stars { margin-left: 0; }
  .custom-inquiry { padding: 22px 14px; }
  .contact-form { padding: 20px 14px; }
  .btn-sm { padding: 9px 14px; font-size: 0.79rem; }
  .nav-link { width: 200px !important; font-size: 1.05rem !important; }
}

/* ============================================================
   TOUCH DEVICES — better tap targets
   ============================================================ */
@media (hover: none) {
  .tour-card:hover { transform: none; }
  .masonry-item .masonry-overlay { opacity: 1; } /* always visible on touch */
  .whatsapp-float:hover { transform: none; }
}
