/*
Theme Name:  Desert Safari VIP
Theme URI:   https://www.desertsafari.vip
Author:      Desert Safari VIP
Author URI:  https://www.desertsafari.vip
Description: A premium dark-gold desert safari WordPress theme for DesertSafari.vip — featuring an Evening Desert Safari, Dune Bashing, Quad Bike, Camel Safari, BBQ Dinner, Belly Dance, Tanoura Show, Fire Show and Khaliji Dance pages. Fully SEO-optimised, mobile-responsive, with floating WhatsApp & Call widgets.
Version:     1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License:     GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: desert-safari-vip
Tags:        dark, one-column, two-columns, custom-menu, featured-images, footer-widgets, full-width-template, theme-options, translation-ready
*/

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --gold:        #C9973A;
  --gold-light:  #E8C478;
  --gold-dark:   #8A6220;
  --sand:        #F5ECD4;
  --night:       #0D1117;
  --night-2:     #161C27;
  --night-3:     #1E2535;
  --text-light:  #F8F3E8;
  --text-muted:  #B8A882;
  --sky:         #1A3A5C;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', sans-serif;
  background: var(--night);
  color: var(--text-light);
  overflow-x: hidden;
  line-height: 1.7;
}
h1, h2, h3, h4, h5, h6 { font-family: 'Playfair Display', serif; line-height: 1.2; }
a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold-light); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(13,17,23,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,151,58,0.2);
  padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}
.site-branding a {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--gold);
  letter-spacing: 1px;
  text-decoration: none;
}
.site-branding a span { color: var(--text-light); }

/* Primary Nav */
.primary-navigation { display: flex; align-items: center; }
.primary-navigation ul { display: flex; gap: 1.5rem; list-style: none; align-items: center; }
.primary-navigation ul li a {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color 0.2s;
}
.primary-navigation ul li a:hover,
.primary-navigation ul li.current-menu-item > a { color: var(--gold); }
.primary-navigation ul li.menu-book-now > a {
  background: var(--gold);
  color: var(--night) !important;
  padding: 0.5rem 1.2rem;
  border-radius: 4px;
  font-weight: 700;
}
.primary-navigation ul li.menu-book-now > a:hover { background: var(--gold-light); }

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
}
.menu-toggle span {
  width: 24px; height: 2px;
  background: var(--gold);
  display: block;
  transition: 0.3s;
}
.menu-toggle.is-active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.is-active span:nth-child(2) { opacity: 0; }
.menu-toggle.is-active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.mobile-navigation {
  display: none;
  position: fixed;
  top: 70px; left: 0; right: 0;
  background: var(--night-2);
  border-bottom: 1px solid rgba(201,151,58,0.2);
  padding: 1.5rem;
  z-index: 999;
}
.mobile-navigation.is-open { display: block; }
.mobile-navigation ul { list-style: none; }
.mobile-navigation ul li a {
  display: block;
  color: var(--text-muted);
  padding: 0.75rem 0;
  font-size: 0.9rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section-pad { padding: 5rem 2rem; }
.section-pad-alt { padding: 5rem 2rem; background: var(--night-2); }
.section-label {
  font-size: 0.75rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.75rem; display: block;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 1rem; color: var(--text-light);
}
.section-subtitle { color: var(--text-muted); font-size: 1.05rem; line-height: 1.8; max-width: 640px; }
.divider { width: 60px; height: 2px; background: var(--gold); margin: 1.5rem 0; }
.text-center { text-align: center; }
.text-center .divider { margin: 1.5rem auto; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-gold {
  background: var(--gold); color: var(--night);
  padding: 0.9rem 2.2rem; border-radius: 4px;
  font-weight: 700; font-size: 0.95rem; letter-spacing: 0.5px;
  transition: all 0.2s; display: inline-block; border: none; cursor: pointer;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); color: var(--night); }
.btn-outline {
  background: transparent; color: var(--gold); border: 1px solid var(--gold);
  padding: 0.9rem 2.2rem; border-radius: 4px;
  font-weight: 700; font-size: 0.95rem; transition: all 0.2s; display: inline-block;
}
.btn-outline:hover { background: rgba(201,151,58,0.1); color: var(--gold); }

/* ============================================================
   HERO (Front Page)
   ============================================================ */
.hero {
  min-height: 100vh;
  background: linear-gradient(160deg, #0D1117 0%, #1A3A5C 40%, #2C1810 70%, #0D1117 100%);
  display: flex; align-items: center; justify-content: center; text-align: center;
  position: relative; overflow: hidden; padding: 8rem 2rem 4rem;
}
.hero-bg {
  position: absolute; inset: 0; opacity: 0.12;
  background-image: repeating-linear-gradient(45deg, var(--gold) 0, var(--gold) 1px, transparent 0, transparent 50%);
  background-size: 30px 30px; pointer-events: none;
}
.hero-dunes {
  position: absolute; bottom: 0; left: 0; right: 0; height: 200px;
  background: linear-gradient(180deg, transparent 0%, rgba(13,17,23,0.8) 100%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; max-width: 800px; }
.hero-badge {
  display: inline-block; background: rgba(201,151,58,0.15); border: 1px solid var(--gold);
  color: var(--gold); font-size: 0.75rem; letter-spacing: 3px; text-transform: uppercase;
  padding: 0.4rem 1.2rem; border-radius: 2px; margin-bottom: 1.5rem;
}
.hero h1 { font-size: clamp(2.2rem, 5vw, 4rem); line-height: 1.15; margin-bottom: 1.5rem; color: var(--text-light); }
.hero h1 em { color: var(--gold); font-style: italic; }
.hero .hero-desc { font-size: 1.1rem; color: var(--text-muted); max-width: 600px; margin: 0 auto 2.5rem; line-height: 1.8; }
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 3rem; justify-content: center; margin-top: 4rem; flex-wrap: wrap; }
.stat { text-align: center; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--gold); font-weight: 700; }
.stat-label { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-top: 0.25rem; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding: 10rem 2rem 5rem;
  background: linear-gradient(160deg, #0D1117, #1A3A5C 50%, #0D1117);
  text-align: center; border-bottom: 1px solid rgba(201,151,58,0.15);
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 3.5rem); margin-bottom: 1rem; }
.page-hero p { color: var(--text-muted); max-width: 700px; margin: 0 auto; font-size: 1.05rem; line-height: 1.8; }

/* ============================================================
   EXPERIENCE GRID
   ============================================================ */
.exp-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 1.5rem; margin-top: 3rem; }
.exp-card {
  background: var(--night-2); border: 1px solid rgba(201,151,58,0.1); border-radius: 8px;
  padding: 1.75rem; text-align: center; transition: all 0.3s;
  text-decoration: none; display: block; color: inherit;
}
.exp-card:hover { border-color: var(--gold); background: var(--night-3); transform: translateY(-4px); }
.exp-icon { font-size: 2.5rem; margin-bottom: 1rem; display: block; }
.exp-card h3 { font-size: 1.1rem; color: var(--text-light); margin-bottom: 0.5rem; }
.exp-card p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.7; }

/* ============================================================
   PACKAGES
   ============================================================ */
.packages-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px,1fr)); gap: 2rem; margin-top: 3rem; }
.package-card {
  background: var(--night-2); border: 1px solid rgba(201,151,58,0.15); border-radius: 8px;
  overflow: hidden; transition: transform 0.3s, border-color 0.3s; display: flex; flex-direction: column;
}
.package-card:hover { transform: translateY(-6px); border-color: var(--gold); }
.package-card.featured { border-color: var(--gold); }
.package-img {
  height: 200px; background: linear-gradient(135deg, var(--sky) 0%, #2C1810 100%);
  display: flex; align-items: center; justify-content: center; font-size: 4rem; position: relative;
}
.package-badge {
  position: absolute; top: 12px; right: 12px; background: var(--gold); color: var(--night);
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; padding: 0.3rem 0.8rem; border-radius: 2px;
}
.package-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.package-name { font-size: 1.3rem; margin-bottom: 0.5rem; color: var(--text-light); }
.package-price { color: var(--gold); font-size: 1.5rem; font-weight: 700; margin-bottom: 1rem; }
.package-price span { font-size: 0.85rem; color: var(--text-muted); font-weight: 400; }
.package-features { list-style: none; margin-bottom: 1.5rem; flex: 1; }
.package-features li { padding: 0.4rem 0; color: var(--text-muted); font-size: 0.9rem; display: flex; align-items: center; gap: 0.5rem; }
.package-features li::before { content: '✦'; color: var(--gold); font-size: 0.6rem; }

/* ============================================================
   WHY US
   ============================================================ */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 2rem; margin-top: 3rem; }
.why-item { display: flex; gap: 1rem; align-items: flex-start; }
.why-icon {
  width: 48px; height: 48px; background: rgba(201,151,58,0.1);
  border: 1px solid rgba(201,151,58,0.3); border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; flex-shrink: 0;
}
.why-item h4 { color: var(--text-light); font-family: 'Playfair Display', serif; margin-bottom: 0.4rem; font-size: 1rem; }
.why-item p { color: var(--text-muted); font-size: 0.87rem; line-height: 1.7; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 1.5rem; margin-top: 3rem; }
.testi-card { background: var(--night-2); border: 1px solid rgba(201,151,58,0.1); border-radius: 8px; padding: 1.75rem; }
.testi-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testi-text { color: var(--text-muted); font-style: italic; line-height: 1.8; margin-bottom: 1.5rem; font-size: 0.93rem; }
.testi-author { display: flex; gap: 0.75rem; align-items: center; }
.testi-avatar {
  width: 40px; height: 40px; background: var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.9rem; color: var(--night);
}
.testi-name { color: var(--text-light); font-weight: 600; font-size: 0.9rem; }
.testi-country { color: var(--text-muted); font-size: 0.8rem; }

/* ============================================================
   BOOKING / CONTACT FORM
   ============================================================ */
.booking-section { background: var(--night-2); border-top: 1px solid rgba(201,151,58,0.15); border-bottom: 1px solid rgba(201,151,58,0.15); }
.booking-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.booking-form { background: var(--night-3); border: 1px solid rgba(201,151,58,0.15); border-radius: 8px; padding: 2rem; }
.form-title { font-size: 1.5rem; margin-bottom: 1.5rem; color: var(--text-light); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 0.5rem; }
.form-group input,
.form-group select,
.form-group textarea,
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="number"],
.wpcf7-form input[type="date"],
.wpcf7-form select,
.wpcf7-form textarea {
  width: 100%; background: var(--night-2); border: 1px solid rgba(201,151,58,0.2);
  color: var(--text-light); padding: 0.75rem 1rem; border-radius: 4px;
  font-family: 'Nunito', sans-serif; font-size: 0.9rem; outline: none; transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
.wpcf7-form input:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus { border-color: var(--gold); }
.form-group select option { background: var(--night-2); }
.form-group textarea { height: 100px; resize: vertical; }
.wpcf7-submit, input[type="submit"] {
  background: var(--gold); color: var(--night); padding: 0.9rem 2.2rem;
  border-radius: 4px; font-weight: 700; font-size: 0.95rem;
  border: none; cursor: pointer; transition: background 0.2s;
  font-family: 'Nunito', sans-serif;
}
.wpcf7-submit:hover, input[type="submit"]:hover { background: var(--gold-light); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { margin-top: 2rem; }
.faq-item { border-bottom: 1px solid rgba(201,151,58,0.1); }
.faq-q {
  padding: 1.25rem 0; display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; color: var(--text-light); font-weight: 600; font-size: 0.95rem;
}
.faq-q:hover { color: var(--gold); }
.faq-a { padding: 0 0 1.25rem; color: var(--text-muted); font-size: 0.9rem; line-height: 1.8; display: none; }
.faq-a.open { display: block; }
.faq-icon { color: var(--gold); font-size: 1.2rem; }

/* ============================================================
   HIGHLIGHT BOX
   ============================================================ */
.highlight-box {
  background: rgba(201,151,58,0.08); border: 1px solid rgba(201,151,58,0.2);
  border-left: 3px solid var(--gold); border-radius: 0 6px 6px 0;
  padding: 1.5rem; margin: 2rem 0;
}
.highlight-box p { color: var(--text-muted); font-size: 0.93rem; line-height: 1.8; }

/* ============================================================
   CONTENT IMAGE PLACEHOLDER
   ============================================================ */
.content-img {
  background: linear-gradient(135deg, var(--sky) 0%, #2C1810 100%);
  border-radius: 8px; min-height: 380px;
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem; border: 1px solid rgba(201,151,58,0.15); overflow: hidden;
}
.content-img img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   TIMELINE
   ============================================================ */
.timeline { position: relative; padding-left: 2rem; }
.timeline::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px; background: rgba(201,151,58,0.3); }
.timeline-item { position: relative; margin-bottom: 2rem; padding-left: 2rem; }
.timeline-item::before {
  content: ''; position: absolute; left: -7px; top: 6px;
  width: 14px; height: 14px; border-radius: 50%; background: var(--gold); border: 2px solid var(--night);
}
.timeline-time { color: var(--gold); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.25rem; }
.timeline-title { color: var(--text-light); font-weight: 700; margin-bottom: 0.4rem; font-size: 1rem; }
.timeline-desc { color: var(--text-muted); font-size: 0.88rem; line-height: 1.7; }

/* ============================================================
   SPECS / FACTS GRID
   ============================================================ */
.specs-grid, .fact-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; margin-top: 1.5rem; }
.spec-item, .fact-item {
  background: var(--night-3); border: 1px solid rgba(201,151,58,0.1);
  border-radius: 6px; padding: 1rem;
}
.spec-label, .fact-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 0.3rem; }
.spec-val, .fact-val { color: var(--gold); font-weight: 700; font-size: 1rem; }

/* ============================================================
   TAG PILLS
   ============================================================ */
.tag {
  display: inline-block; background: rgba(201,151,58,0.12); color: var(--gold);
  border: 1px solid rgba(201,151,58,0.25); font-size: 0.75rem;
  padding: 0.3rem 0.75rem; border-radius: 2px; letter-spacing: 0.5px;
  margin-right: 0.5rem; margin-bottom: 0.5rem;
}

/* ============================================================
   INCLUSION ITEMS
   ============================================================ */
.incl-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 1rem; margin-top: 2rem; }
.incl-item {
  background: var(--night-2); border: 1px solid rgba(201,151,58,0.1);
  border-radius: 6px; padding: 1.25rem; display: flex; gap: 0.75rem; align-items: flex-start;
}
.incl-item .icon { font-size: 1.3rem; flex-shrink: 0; }
.incl-item h4 { color: var(--text-light); font-size: 0.9rem; margin-bottom: 0.2rem; font-family: 'Nunito', sans-serif; font-weight: 700; }
.incl-item p { color: var(--text-muted); font-size: 0.87rem; line-height: 1.5; }

/* ============================================================
   COMPARE TABLE
   ============================================================ */
.compare-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.compare-table th {
  background: rgba(201,151,58,0.1); color: var(--gold);
  padding: 0.9rem 1rem; text-align: left; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 1px;
}
.compare-table th:not(:first-child) { text-align: center; }
.compare-table td { padding: 0.8rem 1rem; border-bottom: 1px solid rgba(255,255,255,0.05); color: var(--text-muted); }
.compare-table td:not(:first-child) { text-align: center; }
.compare-table tr:hover td { background: rgba(201,151,58,0.04); }
.yes { color: var(--gold); }
.no-val { color: #444; }

/* ============================================================
   STAT BOXES
   ============================================================ */
.stat-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; margin-top: 3rem; text-align: center; }
.stat-box { background: var(--night-3); border: 1px solid rgba(201,151,58,0.1); border-radius: 8px; padding: 2rem 1rem; }
.stat-box .stat-num { font-family: 'Playfair Display', serif; font-size: 2.2rem; color: var(--gold); font-weight: 700; }
.stat-box .stat-label { color: var(--text-muted); font-size: 0.82rem; margin-top: 0.4rem; }

/* ============================================================
   TEAM CARDS
   ============================================================ */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 1.5rem; margin-top: 2rem; }
.team-card { background: var(--night-2); border: 1px solid rgba(201,151,58,0.1); border-radius: 8px; padding: 1.75rem; text-align: center; }
.team-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; margin: 0 auto 1rem; overflow: hidden;
}
.team-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.team-card h4 { color: var(--text-light); margin-bottom: 0.25rem; font-size: 1rem; }
.team-card .role { color: var(--gold); font-size: 0.8rem; margin-bottom: 0.5rem; display: block; }
.team-card p { color: var(--text-muted); font-size: 0.83rem; line-height: 1.6; }

/* ============================================================
   VALUE CARDS
   ============================================================ */
.value-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 1.5rem; margin-top: 2rem; }
.value-card { background: var(--night-2); border: 1px solid rgba(201,151,58,0.1); border-radius: 8px; padding: 1.75rem; }
.value-icon { font-size: 2rem; margin-bottom: 1rem; }
.value-card h3 { font-size: 1.1rem; color: var(--text-light); margin-bottom: 0.5rem; }
.value-card p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.7; }

/* ============================================================
   CONTACT INFO CARDS
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; align-items: flex-start; }
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-card {
  background: var(--night-2); border: 1px solid rgba(201,151,58,0.1);
  border-radius: 8px; padding: 1.5rem; display: flex; gap: 1rem; align-items: flex-start;
}
.contact-icon {
  font-size: 1.5rem; flex-shrink: 0; width: 44px; height: 44px;
  background: rgba(201,151,58,0.1); border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
}
.contact-card h4 { color: var(--text-light); font-size: 0.95rem; margin-bottom: 0.25rem; font-family: 'Nunito', sans-serif; font-weight: 700; }
.contact-card p, .contact-card a { color: var(--text-muted); font-size: 0.88rem; line-height: 1.6; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--night-2);
  border-top: 1px solid rgba(201,151,58,0.1);
  padding: 4rem 2rem 2rem;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand .site-branding-footer a {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; color: var(--gold); letter-spacing: 1px;
}
.footer-brand .site-branding-footer a span { color: var(--text-light); }
.footer-brand p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.8; margin-top: 1rem; max-width: 280px; }
.footer-col h5 { color: var(--gold); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 1.25rem; }
.footer-col a, .footer-col ul li a {
  display: block; color: var(--text-muted); text-decoration: none;
  font-size: 0.88rem; margin-bottom: 0.6rem; transition: color 0.2s;
}
.footer-col a:hover, .footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05); padding-top: 2rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { color: var(--text-muted); font-size: 0.82rem; }

/* ============================================================
   FLOATING WHATSAPP & CALL WIDGET
   ============================================================ */
.float-widgets {
  position: fixed; bottom: 2rem; left: 0;
  z-index: 99999; display: flex; flex-direction: column; gap: 10px;
}
.float-btn {
  display: flex; align-items: center; text-decoration: none;
  width: 210px; height: 58px; position: relative;
  clip-path: polygon(0 0, 90% 0, 100% 50%, 90% 100%, 0 100%);
  transition: filter 0.2s, transform 0.2s;
}
.float-btn:hover { filter: brightness(1.1); transform: translateX(4px); }
.float-whatsapp { background: #25A843; animation: wa-pulse 2.2s infinite; }
.float-call     { background: #2B3A4A; }
.float-btn-icon {
  width: 56px; height: 58px; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; position: relative; z-index: 2;
}
.float-whatsapp .float-btn-icon { background: #1E8C38; }
.float-call     .float-btn-icon { background: #1E2D3A; }
.float-btn-icon svg { width: 30px; height: 30px; fill: #fff; }
.float-btn-text { padding: 0 8px 0 10px; flex: 1; }
.float-btn-title {
  display: block; font-family: 'Nunito', sans-serif;
  font-size: 0.95rem; font-weight: 800; color: #fff; line-height: 1.2;
}
.float-btn-sub {
  display: block; font-family: 'Nunito', sans-serif;
  font-size: 0.68rem; color: rgba(255,255,255,0.82); margin-top: 2px;
}
@keyframes wa-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(37,168,67,0.5); }
  70%  { box-shadow: 0 0 0 10px rgba(37,168,67,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,168,67,0); }
}

/* ============================================================
   WORDPRESS CORE OVERRIDES
   ============================================================ */
.wp-block-image img { border-radius: 8px; }
.alignwide { max-width: 1200px; margin-left: auto; margin-right: auto; }
.alignfull { width: 100%; }
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px); position: absolute !important;
  height: 1px; width: 1px; overflow: hidden;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .stat-row { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 900px) {
  .booking-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 2rem; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .primary-navigation { display: none; }
  .menu-toggle { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.5rem; }
  .specs-grid, .fact-grid { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 480px) {
  .float-btn-label { display: none; }
  .packages-grid { grid-template-columns: 1fr; }
}
