/* ============================================================
   Azaan Travels | Main Stylesheet
   Dark Green & Gold Islamic Luxury Theme
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --green-dark:   #0a2e1a;
  --green-mid:    #14532d;
  --green-light:  #1a6b38;
  --gold:         #c9a84c;
  --gold-light:   #e8c97a;
  --gold-pale:    #f5e6b8;
  --cream:        #faf7f0;
  --white:        #ffffff;
  --text-dark:    #1a1a1a;
  --text-mid:     #4a4a4a;
  --text-light:   #7a7a7a;
  --shadow-sm:    0 2px 12px rgba(0,0,0,.12);
  --shadow-md:    0 8px 32px rgba(0,0,0,.18);
  --shadow-gold:  0 4px 24px rgba(201,168,76,.25);
  --radius:       12px;
  --radius-sm:    6px;
  --transition:   all .3s ease;
  --font-display: 'Zalando Sans', serif;
  --font-body:    'DM Sans', 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);
  color: var(--text-dark);
  background: var(--cream);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- Page Loader ---------- */
#page-loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--green-dark);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 1rem;
  transition: opacity .5s ease, visibility .5s ease;
}
#page-loader.hidden { opacity: 0; visibility: hidden; }
.loader-crescent {
  width: 60px; height: 60px;
  border: 3px solid rgba(201,168,76,.2);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
.loader-text {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 1.2rem;
  letter-spacing: .15em;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Scroll Progress ---------- */
#scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; z-index: 9998;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  width: 0%; transition: width .1s linear;
}

/* ---------- Navigation ---------- */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1rem 0;
  transition: var(--transition);
}
#navbar.scrolled {
  background: rgba(10,46,26,.97);
  backdrop-filter: blur(12px);
  padding: .7rem 0;
  box-shadow: 0 4px 24px rgba(0,0,0,.3);
}
.nav-container {
  max-width: 1280px; margin: 0 auto;
  padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: .75rem;
}
.nav-logo-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--green-dark);
}
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo-name {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 700;
  color: var(--gold-light);
  letter-spacing: .03em;
}
.nav-logo-tagline { font-size: .65rem; color: rgba(255,255,255,.6); letter-spacing: .1em; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: .25rem; }
.nav-links a {
  padding: .5rem .9rem;
  color: rgba(255,255,255,.85);
  font-size: .88rem; font-weight: 500;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 50%; right: 50%;
  height: 2px; background: var(--gold);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after, .nav-links a.active::after { left: .9rem; right: .9rem; }
.nav-links a.active { color: var(--gold-light); }

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-light)) !important;
  color: var(--green-dark) !important;
  font-weight: 700 !important;
  padding: .55rem 1.2rem !important;
  border-radius: 50px !important;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: var(--shadow-gold); }
.nav-cta::after { display: none !important; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: .25rem; }
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--gold); margin: 5px 0;
  transition: var(--transition);
}

/* ---------- Hero Section ---------- */
#hero {
  min-height: 100vh;
  background: 
    linear-gradient(160deg, rgba(10,46,26,.92) 0%, rgba(20,83,45,.82) 50%, rgba(10,46,26,.92) 100%),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 900"><defs><radialGradient id="g" cx="50%" cy="40%"><stop offset="0%" stop-color="%231a6b38" stop-opacity=".6"/><stop offset="100%" stop-color="%230a2e1a" stop-opacity="1"/></radialGradient></defs><rect fill="url(%23g)" width="1440" height="900"/></svg>') center/cover;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
}
.hero-pattern {
  position: absolute; inset: 0; opacity: .04;
  background-image: 
    repeating-linear-gradient(45deg, var(--gold) 0, var(--gold) 1px, transparent 0, transparent 50%),
    repeating-linear-gradient(-45deg, var(--gold) 0, var(--gold) 1px, transparent 0, transparent 50%);
  background-size: 40px 40px;
}
.hero-glow {
  position: absolute; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,.15) 0%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%,-55%);
  pointer-events: none;
}
.hero-content {
  flex: 1; max-width: 1280px; margin: 0 auto;
  padding: 8rem 2rem 3rem;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(201,168,76,.15);
  border: 1px solid rgba(201,168,76,.35);
  border-radius: 50px; padding: .4rem 1rem;
  color: var(--gold-light); font-size: .8rem;
  letter-spacing: .1em; text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: fadeDown .8s ease both;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700; line-height: 1.1;
  color: var(--white); margin-bottom: 1rem;
  animation: fadeUp .9s ease .1s both;
}
.hero-title .highlight {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.75); max-width: 580px;
  margin-bottom: 2rem;
  animation: fadeUp .9s ease .2s both;
}
.hero-btns {
  display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center;
  margin-bottom: 3rem;
  animation: fadeUp .9s ease .3s both;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--green-dark);
  padding: .85rem 2rem; border-radius: 50px;
  font-weight: 700; font-size: .95rem;
  border: none; cursor: pointer;
  transition: var(--transition);
  display: inline-flex; align-items: center; gap: .5rem;
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(201,168,76,.4); }
.btn-outline {
  background: transparent;
  color: var(--white);
  padding: .85rem 2rem; border-radius: 50px;
  font-weight: 600; font-size: .95rem;
  border: 1.5px solid rgba(255,255,255,.4); cursor: pointer;
  transition: var(--transition);
  display: inline-flex; align-items: center; gap: .5rem;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold-light); transform: translateY(-3px); }

.hero-stats {
  display: flex; gap: 3rem; flex-wrap: wrap; justify-content: center;
  animation: fadeUp .9s ease .4s both;
}
.hero-stat { text-align: center; }
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 700;
  color: var(--gold-light); line-height: 1;
}
.hero-stat-label { font-size: .75rem; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .08em; }

/* ---------- Booking Tabs Form ---------- */
#booking-form-section {
  background: var(--green-dark);
  padding: 0 2rem 4rem;
  position: relative; z-index: 10;
}
.booking-tabs-wrap {
  max-width: 1000px; margin: 0 auto;
  transform: translateY(-60px);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
  overflow: hidden;
}
.tab-nav {
  display: flex; background: var(--green-dark);
}
.tab-btn {
  flex: 1; padding: .85rem .5rem;
  background: none; border: none; cursor: pointer;
  color: rgba(255,255,255,.6);
  font-family: var(--font-body);
  font-size: .8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .06em;
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center; gap: .35rem;
  border-bottom: 3px solid transparent;
  position: relative;
}
.tab-btn:hover { color: var(--gold-light); }
.tab-btn.active { color: var(--gold-light); border-bottom-color: var(--gold); background: rgba(201,168,76,.08); }
.tab-btn i { font-size: .9rem; }

.tab-panel { display: none; padding: 2rem; }
.tab-panel.active { display: block; }

.form-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 1rem; margin-bottom: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: .35rem; }
.form-group label { font-size: .8rem; font-weight: 600; color: var(--text-mid); text-transform: uppercase; letter-spacing: .05em; }
.form-group input, .form-group select {
  padding: .7rem 1rem;
  border: 1.5px solid #e0e0e0;
  border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: .9rem;
  color: var(--text-dark);
  transition: var(--transition);
  background: #fafafa;
}
.form-group input:focus, .form-group select:focus {
  outline: none; border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201,168,76,.12);
}
.form-submit-wrap { display: flex; justify-content: center; gap: 1rem; align-items: center; flex-wrap: wrap; }
.form-submit {
  background: linear-gradient(135deg, var(--green-mid), var(--green-light));
  color: var(--white); border: none; cursor: pointer;
  padding: .85rem 2.5rem; border-radius: 50px;
  font-weight: 700; font-size: .95rem;
  font-family: var(--font-body);
  transition: var(--transition);
  display: flex; align-items: center; gap: .5rem;
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(20,83,45,.3); }
.form-note { font-size: .8rem; color: var(--text-light); }

/* ---------- Section Styles ---------- */
section { padding: 5rem 2rem; }
.section-container { max-width: 1280px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-label {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: .78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .15em; margin-bottom: .75rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700; line-height: 1.2;
  color: var(--green-dark);
}
.section-title .gold { color: var(--gold); }
.section-subtitle { color: var(--text-mid); font-size: 1.05rem; max-width: 580px; margin: .75rem auto 0; }
.divider { width: 60px; height: 3px; background: linear-gradient(90deg,var(--gold),var(--gold-light)); border-radius: 2px; margin: 1rem auto 0; }

/* ---------- Services Grid ---------- */
#services { background: var(--cream); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 1.5rem; }
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid rgba(201,168,76,.15);
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--green-mid), var(--gold));
  transform: scaleX(0); transition: var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 70px; height: 70px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green-mid), var(--green-light));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem; font-size: 1.6rem; color: var(--gold-light);
  transition: var(--transition);
}
.service-card:hover .service-icon { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--green-dark); }
.service-card h3 { font-family: var(--font-display); font-size: 1.25rem; color: var(--green-dark); margin-bottom: .5rem; }
.service-card p { font-size: .88rem; color: var(--text-mid); line-height: 1.6; }
.service-link { display: inline-flex; align-items: center; gap: .3rem; color: var(--gold); font-size: .85rem; font-weight: 600; margin-top: 1rem; transition: var(--transition); }
.service-link:hover { gap: .6rem; }

/* ---------- Packages ---------- */
#packages { background: linear-gradient(160deg, var(--green-dark) 0%, var(--green-mid) 100%); position: relative; overflow: hidden; }
#packages::before {
  content: ''; position: absolute; inset: 0; opacity: .05;
  background-image: radial-gradient(circle at 20% 30%, var(--gold) 1px, transparent 1px),
                    radial-gradient(circle at 80% 70%, var(--gold) 1px, transparent 1px);
  background-size: 60px 60px;
}
#packages .section-title, #packages .section-label { color: var(--gold-light) !important; }
#packages .section-label { -webkit-text-fill-color: var(--gold-light) !important; }
#packages .section-subtitle { color: rgba(255,255,255,.7); }

.packages-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 2rem; position: relative; z-index: 1; }
.pkg-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.pkg-card.featured {
  background: rgba(201,168,76,.12);
  border-color: var(--gold);
}
.pkg-badge {
  position: absolute; top: 1.25rem; right: 1.25rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--green-dark); font-size: .7rem; font-weight: 700;
  padding: .25rem .75rem; border-radius: 50px;
  text-transform: uppercase; letter-spacing: .08em;
}
.pkg-card:hover { transform: translateY(-8px); box-shadow: 0 20px 48px rgba(0,0,0,.3); }
.pkg-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.pkg-name {
  font-family: var(--font-display); font-size: 1.5rem;
  color: var(--gold-light); margin-bottom: .5rem;
}
.pkg-price {
  font-family: var(--font-display); font-size: 2.2rem;
  color: var(--white); margin-bottom: 1.5rem;
}
.pkg-price span { font-size: 1rem; color: rgba(255,255,255,.6); }
.pkg-features { margin-bottom: 2rem; }
.pkg-features li {
  display: flex; align-items: center; gap: .6rem;
  color: rgba(255,255,255,.85); font-size: .88rem;
  padding: .4rem 0; border-bottom: 1px solid rgba(255,255,255,.08);
}
.pkg-features li i { color: var(--gold); font-size: .75rem; }
.pkg-btn {
  width: 100%; padding: .85rem;
  border-radius: 50px; border: 1.5px solid var(--gold);
  background: transparent; color: var(--gold-light);
  font-weight: 700; font-size: .95rem; cursor: pointer;
  transition: var(--transition); font-family: var(--font-body);
}
.pkg-btn:hover, .pkg-card.featured .pkg-btn {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--green-dark); border-color: transparent;
}

/* ---------- Why Choose Us ---------- */
#why-us { background: var(--white); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.why-text h2 { font-family: var(--font-display); font-size: clamp(1.8rem,3vw,2.5rem); color: var(--green-dark); margin-bottom: 1rem; }
.why-text p { color: var(--text-mid); margin-bottom: 2rem; line-height: 1.7; }
.why-list { display: grid; gap: .75rem; }
.why-item {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1rem; border-radius: var(--radius-sm);
  transition: var(--transition);
}
.why-item:hover { background: var(--cream); }
.why-item-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--green-mid), var(--green-light));
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light); font-size: .9rem;
}
.why-item h4 { font-size: .95rem; font-weight: 700; color: var(--green-dark); margin-bottom: .2rem; }
.why-item p { font-size: .85rem; color: var(--text-mid); margin: 0; }
.why-visual {
  background: linear-gradient(160deg, var(--green-dark), var(--green-mid));
  border-radius: var(--radius);
  padding: 3rem; text-align: center;
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
}
.counter-box { color: var(--white); }
.counter-num {
  font-family: var(--font-display);
  font-size: 3rem; font-weight: 700;
  color: var(--gold-light); line-height: 1;
}
.counter-label { font-size: .8rem; color: rgba(255,255,255,.7); margin-top: .3rem; }

/* ---------- Testimonials ---------- */
#testimonials { background: var(--cream); }
.swiper { max-width: 900px; margin: 0 auto; padding-bottom: 3rem !important; }
.testimonial-card {
  background: var(--white); border-radius: var(--radius);
  padding: 2.5rem 2rem;
  border: 1px solid rgba(201,168,76,.15);
  box-shadow: var(--shadow-sm);
}
.testi-stars { color: var(--gold); margin-bottom: 1rem; font-size: .9rem; }
.testi-text { font-size: 1.05rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 1.5rem; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 1rem; }
.testi-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green-mid), var(--green-light));
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light); font-size: 1.1rem; font-weight: 700;
  font-family: var(--font-display);
}
.testi-name { font-weight: 700; color: var(--green-dark); font-size: .95rem; }
.testi-city { font-size: .8rem; color: var(--text-light); }
.swiper-pagination-bullet-active { background: var(--gold) !important; }

/* ---------- FAQ ---------- */
#faq { background: var(--white); }
.faq-container { max-width: 760px; margin: 0 auto; }
.faq-item {
  border: 1px solid rgba(201,168,76,.2);
  border-radius: var(--radius-sm); margin-bottom: .75rem;
  overflow: hidden;
}
.faq-q {
  width: 100%; padding: 1.1rem 1.25rem;
  background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  text-align: left; font-family: var(--font-body);
  font-size: .95rem; font-weight: 600; color: var(--green-dark);
  transition: var(--transition);
}
.faq-q:hover { background: var(--cream); }
.faq-q i { color: var(--gold); transition: var(--transition); flex-shrink: 0; }
.faq-item.open .faq-q i { transform: rotate(180deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .3s ease;
  font-size: .88rem; color: var(--text-mid); line-height: 1.7;
  padding: 0 1.25rem;
}
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 1.1rem; }

/* ---------- Trust Badges ---------- */
#trust { background: var(--green-dark); padding: 3rem 2rem; }
.trust-inner { max-width: 1100px; margin: 0 auto; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 3rem; }
.trust-item { display: flex; align-items: center; gap: .75rem; color: rgba(255,255,255,.8); font-size: .88rem; }
.trust-item i { color: var(--gold); font-size: 1.4rem; }

/* ---------- CTA Banner ---------- */
#cta-banner {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  padding: 4rem 2rem; text-align: center;
}
#cta-banner h2 { font-family: var(--font-display); font-size: clamp(1.8rem,3vw,2.5rem); color: var(--green-dark); margin-bottom: .75rem; }
#cta-banner p { color: rgba(10,46,26,.8); margin-bottom: 2rem; font-size: 1.05rem; }
.btn-dark {
  background: var(--green-dark); color: var(--gold-light);
  padding: .85rem 2.5rem; border-radius: 50px;
  font-weight: 700; display: inline-flex; align-items: center; gap: .5rem;
  border: none; cursor: pointer; font-family: var(--font-body); font-size: .95rem;
  transition: var(--transition);
}
.btn-dark:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.3); }

/* ---------- Footer ---------- */
footer {
  background: var(--green-dark);
  color: rgba(255,255,255,.75);
  padding-top: 4rem;
}
.footer-grid { max-width: 1280px; margin: 0 auto; padding: 0 2rem; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; }
.footer-brand .nav-logo-name { font-size: 1.4rem; }
.footer-brand p { font-size: .85rem; line-height: 1.7; margin: 1rem 0 1.5rem; color: rgba(255,255,255,.6); }
.footer-socials { display: flex; gap: .75rem; }
.footer-socials a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(201,168,76,.25);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7); font-size: .9rem;
  transition: var(--transition);
}
.footer-socials a:hover { background: var(--gold); color: var(--green-dark); border-color: var(--gold); }
.footer-col h4 { color: var(--gold-light); font-size: .85rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 1.25rem; }
.footer-col ul li a { font-size: .85rem; color: rgba(255,255,255,.6); display: block; padding: .3rem 0; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--gold-light); padding-left: .3rem; }
.footer-contact-item { display: flex; gap: .6rem; align-items: flex-start; margin-bottom: .75rem; font-size: .85rem; color: rgba(255,255,255,.6); }
.footer-contact-item i { color: var(--gold); margin-top: .2rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 3rem; padding: 1.5rem 2rem;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; color: rgba(255,255,255,.4);
  text-align: center;
}

/* ---------- Floating Buttons ---------- */
#whatsapp-btn {
  position: fixed; bottom: 5rem; right: 1.5rem; z-index: 500;
  width: 52px; height: 52px; border-radius: 50%;
  background: #25d366; color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; box-shadow: 0 4px 16px rgba(37,211,102,.4);
  transition: var(--transition);
  animation: pulse-wa 2s infinite;
}
#whatsapp-btn:hover { transform: scale(1.1); }
@keyframes pulse-wa {
  0%,100% { box-shadow: 0 4px 16px rgba(37,211,102,.4); }
  50% { box-shadow: 0 4px 32px rgba(37,211,102,.7); }
}
#scroll-top {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 500;
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green-mid), var(--gold));
  color: var(--white); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; opacity: 0; transform: translateY(20px);
  transition: var(--transition); box-shadow: var(--shadow-sm);
}
#scroll-top.visible { opacity: 1; transform: translateY(0); }
#scroll-top:hover { transform: translateY(-3px); }

/* ---------- Inner Page Hero ---------- */
.page-hero {
  min-height: 400px;
  background: linear-gradient(160deg, var(--green-dark) 0%, var(--green-mid) 100%);
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 8rem 2rem 4rem;
  position: relative; overflow: hidden;
}
.page-hero-pattern {
  position: absolute; inset: 0; opacity: .04;
  background-image: repeating-linear-gradient(45deg, var(--gold) 0, var(--gold) 1px, transparent 0, transparent 30px);
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero-label { display: inline-block; color: var(--gold); font-size: .8rem; text-transform: uppercase; letter-spacing: .15em; margin-bottom: .75rem; }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(2rem,5vw,3.5rem); color: var(--white); margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,.75); max-width: 550px; font-size: 1.05rem; }
.breadcrumb { display: flex; align-items: center; gap: .5rem; justify-content: center; margin-top: 1.5rem; font-size: .85rem; color: rgba(255,255,255,.5); }
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,.4); }

/* ---------- Info Cards (inner pages) ---------- */
.info-card {
  background: var(--white); border-radius: var(--radius);
  padding: 2rem; border: 1px solid rgba(201,168,76,.15);
  box-shadow: var(--shadow-sm); transition: var(--transition);
}
.info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.info-card-icon {
  width: 56px; height: 56px; border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--green-mid), var(--green-light));
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light); font-size: 1.3rem; margin-bottom: 1rem;
}
.info-card h3 { font-family: var(--font-display); font-size: 1.2rem; color: var(--green-dark); margin-bottom: .5rem; }
.info-card p { font-size: .88rem; color: var(--text-mid); line-height: 1.6; }

/* ---------- Form Page ---------- */
.booking-full-form {
  background: var(--white); border-radius: var(--radius);
  padding: 2.5rem; box-shadow: var(--shadow-md);
  border: 1px solid rgba(201,168,76,.15);
}
.booking-full-form h3 {
  font-family: var(--font-display); font-size: 1.5rem;
  color: var(--green-dark); margin-bottom: 1.5rem;
  padding-bottom: 1rem; border-bottom: 2px solid var(--gold);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-bottom: 1.25rem; }
.form-row.three { grid-template-columns: 1fr 1fr 1fr; }
.form-row.full { grid-template-columns: 1fr; }
.form-group textarea {
  padding: .75rem 1rem;
  border: 1.5px solid #e0e0e0; border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: .9rem;
  resize: vertical; min-height: 120px;
  transition: var(--transition);
}
.form-group textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,.12); }
.alert-success {
  background: rgba(20,83,45,.1); border: 1px solid var(--green-mid);
  color: var(--green-dark); padding: 1rem 1.25rem;
  border-radius: var(--radius-sm); margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: .75rem;
}
.alert-error {
  background: rgba(220,38,38,.08); border: 1px solid #dc2626;
  color: #b91c1c; padding: 1rem 1.25rem;
  border-radius: var(--radius-sm); margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: .75rem;
}

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

[data-aos] { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
[data-aos].aos-animate { opacity: 1; transform: translateY(0); }
[data-aos="fade-left"] { transform: translateX(40px); }
[data-aos="fade-left"].aos-animate { transform: translateX(0); }
[data-aos="fade-right"] { transform: translateX(-40px); }
[data-aos="fade-right"].aos-animate { transform: translateX(0); }

/* ---------- Responsive ---------- */
@media (max-width:1024px) {
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width:768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--green-dark); padding: 1rem; gap: 0; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: .75rem 1rem; border-radius: 0; border-bottom: 1px solid rgba(255,255,255,.06); }
  .nav-links a::after { display: none; }
  .nav-toggle { display: block; }
  #navbar { position: relative; }
  #navbar.scrolled { position: fixed; }
  .tab-btn span { display: none; }
  .form-row, .form-row.three { grid-template-columns: 1fr; }
  .booking-tabs-wrap { transform: translateY(-30px); }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.5rem; }
  .why-visual { grid-template-columns: 1fr 1fr; }
}
@media (max-width:480px) {
  section { padding: 3.5rem 1.25rem; }
  .packages-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
  .tab-btn { padding: .75rem .25rem; font-size: .7rem; }
}
