/*
Theme Name: Albania Magical Tours
Theme URI: https://albaniamagicaltours.com
Author: Albania Magical Tours
Author URI: https://albaniamagicaltours.com
Description: A luxury travel and tourism WordPress theme for Albania Magical Tours. Fully customizable via the WordPress Customizer. Features hero sections, tour listings, testimonials, booking forms, gallery, FAQ, and blog preview.
Version: 1.1.0
Requires at least: 5.8
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: albania-magical-tours
Tags: travel, tourism, one-page, full-width, custom-colors, custom-logo, custom-menu, featured-images, footer-widgets, translation-ready
*/

/* ============================================
   CSS CUSTOM PROPERTIES — Overridden by Customizer
   ============================================ */
:root {
  --black: #0a0a0a;
  --white: #fafafa;
  --gray-100: #f4f4f3;
  --gray-200: #e8e8e6;
  --gray-400: #9a9a97;
  --gray-600: #5a5a57;
  --gold: #b8956a;
  --gold-light: #d4b896;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;
  --nav-h: 80px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::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(--white); color: var(--black); overflow-x: hidden; }

.skip-link { position: absolute; left: 1rem; top: -3rem; background: var(--gold); color: var(--black); padding: .75rem 1rem; text-decoration: none; z-index: 5000; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; }
.skip-link:focus { top: 1rem; }

/* CUSTOM CURSOR */
.cursor { position: fixed; width: 12px; height: 12px; background: var(--gold); border-radius: 50%; pointer-events: none; z-index: 9999; transform: translate(-50%,-50%); transition: width .3s,height .3s,background .3s; }
.cursor-ring { position: fixed; width: 40px; height: 40px; border: 1px solid rgba(184,149,106,.5); border-radius: 50%; pointer-events: none; z-index: 9998; transform: translate(-50%,-50%); transition: all .15s var(--ease-out); }

/* NAV */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; height: var(--nav-h); display: flex; align-items: center; justify-content: space-between; padding: 0 5vw; transition: background .5s,backdrop-filter .5s; }
nav.scrolled { background: rgba(10,10,10,.92); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); }
.nav-logo { font-family: var(--font-display); font-size: 1.5rem; font-weight: 500; color: var(--white); letter-spacing: .04em; text-decoration: none; line-height: 1.1; }
.nav-logo span { color: var(--gold); }
.nav-logo-image .custom-logo-link { display: inline-flex; align-items: center; }
.nav-logo-image img { max-height: 54px; width: auto; display: block; }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a { color: rgba(255,255,255,.85); text-decoration: none; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 400; transition: color .2s; }
.nav-links a:hover { color: var(--gold); }
.nav-cta { background: var(--gold) !important; color: var(--black) !important; padding: .6rem 1.4rem !important; font-weight: 500 !important; }
.nav-cta:hover { background: var(--gold-light) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 28px; height: 1.5px; background: var(--white); transition: all .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.mobile-menu { display: none; position: fixed; inset: 0; background: var(--black); z-index: 999; flex-direction: column; align-items: center; justify-content: center; gap: 2.5rem; opacity: 0; transition: opacity .4s; }
.mobile-menu.open { opacity: 1; }
.mobile-menu a { font-family: var(--font-display); font-size: 2.5rem; color: var(--white); text-decoration: none; font-weight: 300; letter-spacing: .04em; transition: color .2s; }
.mobile-menu a:hover { color: var(--gold); }

/* HERO */
.hero { position: relative; height: 100vh; min-height: 600px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: linear-gradient(135deg,#0a0a0a 0%,#1a1a18 40%,#0d0d0b 100%); }
.hero-bg::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 50% 80%,rgba(30,40,25,.8) 0%,transparent 60%),radial-gradient(ellipse 60% 40% at 20% 60%,rgba(15,25,35,.7) 0%,transparent 50%),radial-gradient(ellipse 50% 50% at 80% 30%,rgba(25,20,10,.5) 0%,transparent 60%); }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom,rgba(0,0,0,.2) 0%,rgba(0,0,0,0) 30%,rgba(0,0,0,.3) 70%,rgba(0,0,0,.7) 100%); }
.hero-mountains { position: absolute; bottom: 0; left: 0; right: 0; height: 55%; opacity: .35; }
.hero-stars { position: absolute; inset: 0; overflow: hidden; }
.star { position: absolute; width: 2px; height: 2px; background: white; border-radius: 50%; animation: twinkle 3s ease-in-out infinite alternate; }
@keyframes twinkle { from { opacity: .2; } to { opacity: .9; } }
.hero-content { position: relative; z-index: 2; text-align: center; padding: 0 5vw; max-width: 900px; }
.hero-label { font-size: .7rem; letter-spacing: .25em; text-transform: uppercase; color: var(--gold); font-weight: 400; margin-bottom: 1.5rem; opacity: 0; animation: fadeUp 1s var(--ease-out) .3s forwards; }
.hero-title { font-family: var(--font-display); font-size: clamp(3rem,8vw,7rem); font-weight: 300; color: var(--white); line-height: 1.05; letter-spacing: -.01em; margin-bottom: 1.5rem; opacity: 0; animation: fadeUp 1s var(--ease-out) .6s forwards; }
.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-sub { font-size: clamp(1rem,2vw,1.2rem); color: rgba(255,255,255,.65); font-weight: 300; letter-spacing: .02em; margin-bottom: 3rem; opacity: 0; animation: fadeUp 1s var(--ease-out) .9s forwards; }
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; opacity: 0; animation: fadeUp 1s var(--ease-out) 1.2s forwards; }
.btn-primary { background: var(--gold); color: var(--black); padding: .9rem 2.2rem; font-family: var(--font-body); font-size: .8rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; text-decoration: none; transition: background .3s,transform .3s; display: inline-block; }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,.4); padding: .9rem 2.2rem; font-family: var(--font-body); font-size: .8rem; font-weight: 400; letter-spacing: .1em; text-transform: uppercase; text-decoration: none; transition: border-color .3s,color .3s,transform .3s; display: inline-block; }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.hero-scroll { position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: .5rem; opacity: 0; animation: fadeIn 1s ease 2s forwards; }
.hero-scroll span { font-size: .65rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.4); }
.scroll-line { width: 1px; height: 50px; background: linear-gradient(to bottom,var(--gold),transparent); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100% { opacity: .4; transform: scaleY(1); } 50% { opacity: 1; transform: scaleY(1.1); } }

/* SECTIONS */
section { padding: 7rem 5vw; }
.section-label { font-size: .7rem; letter-spacing: .25em; text-transform: uppercase; color: var(--gold); font-weight: 400; margin-bottom: 1rem; }
.section-title { font-family: var(--font-display); font-size: clamp(2.2rem,5vw,4rem); font-weight: 300; line-height: 1.1; letter-spacing: -.01em; }
.section-title em { font-style: italic; }

/* ABOUT */
.about { background: var(--black); color: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; max-width: 1200px; margin: 0 auto; }
.about-text .section-title { color: var(--white); margin-bottom: 2rem; }
.about-text p { color: rgba(255,255,255,.6); line-height: 1.8; font-size: 1.05rem; font-weight: 300; margin-bottom: 1.5rem; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 3rem; }
.stat-item { border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.2rem; }
.stat-num { font-family: var(--font-display); font-size: 2.8rem; font-weight: 300; color: var(--gold); line-height: 1; }
.stat-label { font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-top: .3rem; }
.about-images { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 1rem; height: 520px; }
.about-img { border-radius: 2px; overflow: hidden; position: relative; }
.about-img:first-child { grid-row: 1/3; }
.about-img-inner { width: 100%; height: 100%; transition: transform .8s var(--ease-out); }
.about-img-inner img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-img:hover .about-img-inner { transform: scale(1.05); }

/* TOURS */
.tours { background: var(--white); }
.tours-header { display: flex; justify-content: space-between; align-items: flex-end; max-width: 1200px; margin: 0 auto 4rem; flex-wrap: wrap; gap: 2rem; }
.tours-filter { display: flex; gap: .5rem; flex-wrap: wrap; }
.filter-btn { font-family: var(--font-body); font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; border: 1px solid var(--gray-200); background: none; color: var(--gray-600); padding: .5rem 1.2rem; cursor: pointer; transition: all .2s; }
.filter-btn:hover,.filter-btn.active { background: var(--black); border-color: var(--black); color: var(--white); }
.tours-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(320px,1fr)); gap: 2rem; max-width: 1200px; margin: 0 auto; }
.tour-card { background: var(--white); border: 1px solid var(--gray-200); overflow: hidden; transition: transform .4s var(--ease-out),box-shadow .4s; cursor: pointer; }
.tour-card:hover { transform: translateY(-8px); box-shadow: 0 30px 60px rgba(0,0,0,.12); }
.tour-img { height: 260px; overflow: hidden; position: relative; }
.tour-img-bg { width: 100%; height: 100%; transition: transform .8s var(--ease-out); position: relative; object-fit: cover; display: block; }
.tour-card:hover .tour-img-bg { transform: scale(1.08); }
.tour-badge { position: absolute; top: 1.2rem; left: 1.2rem; background: var(--gold); color: var(--black); font-size: .65rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 500; padding: .3rem .8rem; }
.tour-info { padding: 1.8rem; }
.tour-meta { display: flex; gap: 1.5rem; margin-bottom: 1rem; }
.tour-meta-item { display: flex; align-items: center; gap: .4rem; font-size: .75rem; color: var(--gray-400); letter-spacing: .05em; }
.tour-meta-item svg { width: 14px; height: 14px; }
.tour-name { font-family: var(--font-display); font-size: 1.4rem; font-weight: 400; color: var(--black); margin-bottom: .8rem; line-height: 1.2; }
.tour-desc { font-size: .875rem; color: var(--gray-600); line-height: 1.7; margin-bottom: 1.5rem; font-weight: 300; }
.tour-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 1.2rem; border-top: 1px solid var(--gray-200); }
.tour-price { font-family: var(--font-display); font-size: 1.3rem; font-weight: 400; color: var(--gold); }
.tour-price small { font-family: var(--font-body); font-size: .7rem; color: var(--gray-400); display: block; font-weight: 300; }
.btn-sm { font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 500; color: var(--black); text-decoration: none; display: flex; align-items: center; gap: .5rem; transition: gap .2s,color .2s; }
.btn-sm:hover { gap: .8rem; color: var(--gold); }
.btn-sm svg { width: 16px; height: 16px; }

/* WHY */
.why { background: var(--gray-100); }
.why-inner { max-width: 1200px; margin: 0 auto; }
.why-header { text-align: center; margin-bottom: 4rem; }
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 3rem; }
.why-item { text-align: center; }
.why-icon { width: 56px; height: 56px; margin: 0 auto 1.5rem; display: flex; align-items: center; justify-content: center; border: 1px solid var(--gray-200); background: var(--white); transition: background .3s,border-color .3s; }
.why-item:hover .why-icon { background: var(--black); border-color: var(--black); }
.why-icon svg { width: 24px; height: 24px; stroke: var(--gold); transition: stroke .3s; }
.why-name { font-family: var(--font-display); font-size: 1.2rem; font-weight: 400; margin-bottom: .8rem; }
.why-desc { font-size: .875rem; color: var(--gray-600); line-height: 1.7; font-weight: 300; }

/* GALLERY */
.gallery { background: var(--black); overflow: hidden; }
.gallery-header { text-align: center; margin-bottom: 3rem; }
.gallery-header .section-title { color: var(--white); }
.gallery-grid { display: grid; grid-template-columns: repeat(12,1fr); grid-template-rows: repeat(3,200px); gap: 4px; max-width: 1400px; margin: 0 auto; }
.g-item { overflow: hidden; position: relative; cursor: pointer; }
.g-item:nth-child(1) { grid-column: 1/6; grid-row: 1/3; }
.g-item:nth-child(2) { grid-column: 6/9; grid-row: 1/2; }
.g-item:nth-child(3) { grid-column: 9/13; grid-row: 1/2; }
.g-item:nth-child(4) { grid-column: 6/10; grid-row: 2/3; }
.g-item:nth-child(5) { grid-column: 10/13; grid-row: 2/3; }
.g-item:nth-child(6) { grid-column: 1/5; grid-row: 3/4; }
.g-item:nth-child(7) { grid-column: 5/9; grid-row: 3/4; }
.g-item:nth-child(8) { grid-column: 9/13; grid-row: 3/4; }
.g-bg { width: 100%; height: 100%; transition: transform .8s var(--ease-out); object-fit: cover; display: block; }
.g-item:hover .g-bg { transform: scale(1.08); }
.g-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0); transition: background .4s; display: flex; align-items: flex-end; padding: 1.2rem; }
.g-item:hover .g-overlay { background: rgba(0,0,0,.4); }
.g-label { font-size: .7rem; letter-spacing: .15em; text-transform: uppercase; color: var(--white); opacity: 0; transform: translateY(8px); transition: opacity .4s,transform .4s; }
.g-item:hover .g-label { opacity: 1; transform: translateY(0); }

/* TESTIMONIALS */
.testimonials { background: var(--white); }
.testimonials-inner { max-width: 1000px; margin: 0 auto; text-align: center; }
.testimonials-inner .section-title { margin-bottom: 4rem; }
.testi-track { overflow: hidden; }
.testi-slider { display: flex; transition: transform .6s var(--ease-out); }
.testi-card { min-width: 100%; padding: 0 2rem; }
.testi-stars { display: flex; justify-content: center; gap: .3rem; margin-bottom: 2rem; }
.testi-stars svg { width: 18px; height: 18px; fill: var(--gold); }
.testi-quote { font-family: var(--font-display); font-size: clamp(1.2rem,2.5vw,1.8rem); font-weight: 300; line-height: 1.5; color: var(--black); margin-bottom: 2.5rem; font-style: italic; }
.testi-author { font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gray-400); }
.testi-author strong { display: block; color: var(--black); font-size: 1rem; font-family: var(--font-display); font-weight: 400; letter-spacing: .02em; text-transform: none; margin-bottom: .2rem; }
.testi-nav { display: flex; justify-content: center; gap: 1rem; margin-top: 3rem; }
.testi-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gray-200); cursor: pointer; transition: background .2s,transform .2s; border: none; }
.testi-dot.active { background: var(--gold); transform: scale(1.4); }

/* BOOKING */
.booking { background: var(--black); color: var(--white); }
.booking-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 6rem; max-width: 1200px; margin: 0 auto; align-items: start; }
.booking-left .section-title { color: var(--white); margin-bottom: 2rem; }
.booking-left p { color: rgba(255,255,255,.55); line-height: 1.8; font-weight: 300; margin-bottom: 3rem; }
.contact-item { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; color: rgba(255,255,255,.7); font-size: .9rem; }
.contact-item svg { width: 18px; height: 18px; stroke: var(--gold); flex-shrink: 0; }
.contact-item a { color: rgba(255,255,255,.7); text-decoration: none; transition: color .2s; }
.contact-item a:hover { color: var(--gold); }
.social-links { display: flex; gap: 1rem; margin-top: 2.5rem; }
.social-link { width: 40px; height: 40px; border: 1px solid rgba(255,255,255,.15); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.5); text-decoration: none; transition: all .2s; }
.social-link svg { width: 16px; height: 16px; }
.social-link:hover { border-color: var(--gold); color: var(--gold); }
.booking-form { background: rgba(255,255,255,.04); padding: 3rem; border: 1px solid rgba(255,255,255,.08); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: .6rem; }
.form-group input,.form-group select,.form-group textarea { width: 100%; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); color: var(--white); padding: .9rem 1rem; font-family: var(--font-body); font-size: .875rem; font-weight: 300; transition: border-color .2s; outline: none; -webkit-appearance: none; }
.form-group input::placeholder,.form-group textarea::placeholder { color: rgba(255,255,255,.25); }
.form-group input:focus,.form-group select:focus,.form-group textarea:focus { border-color: var(--gold); }
.form-group select { color: rgba(255,255,255,.6); cursor: pointer; }
.form-group select option { background: var(--black); color: var(--white); }
.form-group textarea { height: 100px; resize: vertical; }
.btn-submit { width: 100%; background: var(--gold); color: var(--black); border: none; padding: 1rem; font-family: var(--font-body); font-size: .8rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; cursor: pointer; transition: background .3s,transform .2s; margin-top: 1rem; }
.btn-submit:hover { background: var(--gold-light); }

/* FAQ */
.faq { background: var(--gray-100); }
.faq-inner { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--gray-200); overflow: hidden; }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 1.5rem 0; cursor: pointer; font-family: var(--font-display); font-size: 1.1rem; font-weight: 400; color: var(--black); gap: 1rem; }
.faq-icon { width: 24px; height: 24px; flex-shrink: 0; position: relative; border: 1px solid var(--gray-200); display: flex; align-items: center; justify-content: center; transition: background .2s; }
.faq-item.open .faq-icon { background: var(--gold); border-color: var(--gold); }
.faq-icon::before,.faq-icon::after { content: ''; position: absolute; background: var(--gray-600); border-radius: 1px; transition: transform .3s,background .2s; }
.faq-icon::before { width: 10px; height: 1px; }
.faq-icon::after { width: 1px; height: 10px; }
.faq-item.open .faq-icon::before { background: var(--black); }
.faq-item.open .faq-icon::after { transform: rotate(90deg); background: var(--black); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease-out),padding .3s; }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a-inner { padding-bottom: 1.5rem; font-size: .9rem; color: var(--gray-600); line-height: 1.8; font-weight: 300; }

/* NEWSLETTER */
.newsletter { background: var(--gold); padding: 5rem 5vw; text-align: center; }
.newsletter h2 { font-family: var(--font-display); font-size: clamp(1.8rem,4vw,3rem); font-weight: 300; color: var(--black); margin-bottom: 1rem; }
.newsletter p { color: rgba(0,0,0,.6); font-weight: 300; margin-bottom: 2.5rem; }
.newsletter-form { display: flex; max-width: 480px; margin: 0 auto; }
.newsletter-form input { flex: 1; padding: .9rem 1.2rem; border: 1px solid rgba(0,0,0,.2); background: rgba(255,255,255,.5); font-family: var(--font-body); font-size: .875rem; outline: none; color: var(--black); }
.newsletter-form input::placeholder { color: rgba(0,0,0,.4); }
.newsletter-form button { padding: .9rem 1.8rem; background: var(--black); color: var(--white); border: none; font-family: var(--font-body); font-size: .75rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; cursor: pointer; transition: background .2s; white-space: nowrap; }
.newsletter-form button:hover { background: #222; }

/* BLOG */
.blog { background: var(--white); }
.blog-inner { max-width: 1200px; margin: 0 auto; }
.blog-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3rem; flex-wrap: wrap; gap: 1rem; }
.blog-header a { font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); text-decoration: none; display: flex; align-items: center; gap: .4rem; }
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.blog-card { text-decoration: none; color: inherit; display: block; }
.blog-img { height: 200px; overflow: hidden; margin-bottom: 1.2rem; }
.blog-img-bg { width: 100%; height: 100%; transition: transform .6s var(--ease-out); object-fit: cover; display: block; }
.blog-card:hover .blog-img-bg { transform: scale(1.05); }
.blog-cat { font-size: .65rem; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); margin-bottom: .6rem; }
.blog-title { font-family: var(--font-display); font-size: 1.2rem; font-weight: 400; line-height: 1.3; margin-bottom: .8rem; }
.blog-date { font-size: .75rem; color: var(--gray-400); }

/* FOOTER */
footer { background: #050505; color: rgba(255,255,255,.45); padding: 5rem 5vw 2.5rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 4rem; max-width: 1200px; margin: 0 auto 4rem; }
.footer-brand .nav-logo { font-size: 1.3rem; margin-bottom: 1.2rem; display: inline-block; }
.footer-brand p { font-size: .85rem; line-height: 1.7; max-width: 280px; font-weight: 300; }
.footer-col h4 { font-size: .65rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.6); margin-bottom: 1.5rem; font-weight: 500; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: .7rem; }
.footer-col ul li a { color: rgba(255,255,255,.4); text-decoration: none; font-size: .85rem; font-weight: 300; transition: color .2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding-top: 2rem; max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; font-size: .8rem; }
.footer-bottom a { color: rgba(255,255,255,.3); text-decoration: none; transition: color .2s; }
.footer-bottom a:hover { color: var(--gold); }

/* WHATSAPP */
.wa-float { position: fixed; bottom: 2rem; right: 2rem; width: 56px; height: 56px; background: #25d366; border-radius: 50%; display: flex; align-items: center; justify-content: center; z-index: 100; box-shadow: 0 8px 25px rgba(37,211,102,.4); text-decoration: none; transition: transform .3s,box-shadow .3s; animation: pulse 2.5s ease-in-out infinite; }
.wa-float:hover { transform: scale(1.1); animation: none; }
.wa-float svg { width: 28px; height: 28px; fill: white; }
.wa-label { position: absolute; right: 70px; background: var(--black); color: var(--white); font-size: .7rem; letter-spacing: .05em; white-space: nowrap; padding: .4rem .8rem; opacity: 0; pointer-events: none; transition: opacity .3s; }
.wa-float:hover .wa-label { opacity: 1; }
@keyframes pulse { 0%,100% { box-shadow: 0 8px 25px rgba(37,211,102,.4); } 50% { box-shadow: 0 8px 35px rgba(37,211,102,.7); } }

/* ANIMATIONS */
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { to { opacity: 1; } }
.reveal { opacity: 0; transform: translateY(40px); transition: opacity .8s var(--ease-out),transform .8s var(--ease-out); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* LIGHTBOX */
.lightbox { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.95); z-index: 2000; align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox-close { position: absolute; top: 2rem; right: 2rem; background: none; border: none; color: white; font-size: 2rem; cursor: pointer; opacity: .6; transition: opacity .2s; line-height: 1; }
.lightbox-close:hover { opacity: 1; }
.lightbox-content { max-width: 90vw; max-height: 90vh; }
.lightbox-figure { margin: 0; display: flex; flex-direction: column; gap: 1rem; align-items: center; }
.lightbox-figure img { max-width: 90vw; max-height: 75vh; object-fit: contain; border: 1px solid rgba(255,255,255,.1); background: #0c0c0c; }
.lightbox-figure figcaption { color: rgba(255,255,255,.72); letter-spacing: .08em; text-transform: uppercase; font-size: .75rem; }
.lightbox-fallback { color: white; font-family: var(--font-display); font-size: 2rem; }

/* PROGRESS BAR */
.progress-bar { position: fixed; top: 0; left: 0; height: 2px; background: var(--gold); z-index: 2000; transition: width .1s linear; width: 0%; }

/* RESPONSIVE */
@media (max-width:1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-images { height: 380px; }
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .booking-grid { grid-template-columns: 1fr; gap: 3rem; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width:768px) {
  :root { --nav-h: 64px; }
  section { padding: 4.5rem 5vw; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .g-item { grid-column: auto !important; grid-row: auto !important; height: 180px; }
  .why-grid { grid-template-columns: 1fr; gap: 2rem; }
  .tours-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .blog-grid { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input,.newsletter-form button { width: 100%; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cursor,.cursor-ring { display: none; }
}
@media (max-width:480px) {
  .hero-btns { flex-direction: column; align-items: center; }
  .btn-primary,.btn-outline { width: 100%; text-align: center; }
  .about-images { display: none; }
}

/* WP ADMIN BAR OFFSET */
.admin-bar nav { top: 32px; }
@media screen and (max-width: 782px) { .admin-bar nav { top: 46px; } }

/* WP ALIGNMENT CLASSES */
.alignleft { float: left; margin-right: 1.5rem; margin-bottom: 1rem; }
.alignright { float: right; margin-left: 1.5rem; margin-bottom: 1rem; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; margin-bottom: 1rem; }
img.alignleft, img.alignright, img.aligncenter { max-width: 100%; height: auto; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: .8rem; color: var(--gray-400); text-align: center; margin-top: .5rem; }

@media (hover: hover) and (pointer: fine) {
  body { cursor: none; }
}
