/*
Theme Name: Luxe Travel Elementor
Theme URI: https://example.com/luxe-travel-elementor
Author: Luxe Travel Studio
Description: Premium dark luxury travel & tourism WordPress theme. Fully compatible with Elementor Pro, WooCommerce, and WP Travel Engine. Dark gold design, cinematic hero, tour packages, booking forms. Upload and edit everything with Elementor drag-and-drop.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: luxe-travel
Tags: travel, tourism, dark, luxury, gold, elementor, woocommerce, full-width-template, custom-menu, responsive, one-column
WC requires at least: 7.0
WC tested up to: 8.9
Elementor tested up to: 3.23
Elementor Pro tested up to: 3.23
*/

/* ============================================================
   GLOBAL CSS VARIABLES — override in Elementor > Site Settings
   ============================================================ */
:root {
  --lt-black:       #0A0A0A;
  --lt-dark:        #121212;
  --lt-dark-card:   #1A1A1A;
  --lt-dark-border: #2A2A2A;
  --lt-gold:        #D4A017;
  --lt-gold-light:  #F0C040;
  --lt-gold-dark:   #A07810;
  --lt-orange:      #F39C12;
  --lt-white:       #FFFFFF;
  --lt-gray:        #AAAAAA;
  --lt-muted:       rgba(255,255,255,0.55);

  --lt-font-heading: 'Playfair Display', Georgia, serif;
  --lt-font-nav:     'Montserrat', sans-serif;
  --lt-font-body:    'Poppins', sans-serif;

  --lt-shadow-gold: 0 0 30px rgba(212,160,23,0.3);
  --lt-shadow-card: 0 8px 40px rgba(0,0,0,0.6);
  --lt-transition:  0.35s cubic-bezier(0.4,0,0.2,1);
  --lt-radius:      8px;
  --lt-header-h:    80px;
}

/* ============================================================
   BASE RESET & BODY
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--lt-font-body);
  background-color: var(--lt-black);
  color: var(--lt-white);
  line-height: 1.65;
  overflow-x: hidden;
  margin: 0;
}

body.elementor-page { background-color: var(--lt-black); }

img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; margin: 0; padding: 0; }

/* ============================================================
   ELEMENTOR GLOBAL OVERRIDES
   ============================================================ */

/* Force dark background on all Elementor sections */
.elementor-section,
.e-con,
.e-container {
  position: relative;
}

/* Default section background */
.elementor-section.lt-dark-section .elementor-container,
.lt-dark-section { background-color: var(--lt-dark) !important; }

.elementor-section.lt-black-section .elementor-container,
.lt-black-section { background-color: var(--lt-black) !important; }

/* Remove Elementor default padding on full-width pages */
.elementor-template-full-width .elementor-section-wrap,
.elementor-template-canvas .elementor-section-wrap { padding-top: 0; }

/* ============================================================
   HEADER — used when Elementor Theme Builder header is NOT set
   ============================================================ */
#lt-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  height: var(--lt-header-h);
  display: flex;
  align-items: center;
  background: transparent;
  transition: all var(--lt-transition);
}

#lt-header.scrolled {
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  height: 64px;
  border-bottom: 1px solid var(--lt-dark-border);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.lt-header-inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.lt-logo {
  font-family: var(--lt-font-heading);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--lt-white);
  text-decoration: none;
  flex-shrink: 0;
}
.lt-logo em { color: var(--lt-gold); font-style: normal; }
.lt-logo img { max-height: 52px; width: auto; }

.lt-nav ul {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin: 0; padding: 0;
}

.lt-nav a {
  font-family: var(--lt-font-nav);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  position: relative;
  padding-bottom: 3px;
  text-decoration: none;
  transition: color var(--lt-transition);
}
.lt-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1.5px;
  background: var(--lt-gold);
  transition: width var(--lt-transition);
}
.lt-nav a:hover, .lt-nav a.current { color: var(--lt-gold); }
.lt-nav a:hover::after, .lt-nav a.current::after { width: 100%; }

.lt-header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.lt-search-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  color: white;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--lt-transition);
  font-size: 16px;
}
.lt-search-btn:hover { background: var(--lt-gold); border-color: var(--lt-gold); color: var(--lt-black); }

.lt-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.lt-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: white;
  transition: all var(--lt-transition);
}

/* ============================================================
   MOBILE NAV DRAWER
   ============================================================ */
#lt-mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--lt-dark);
  flex-direction: column;
  padding: 100px 40px 40px;
  overflow-y: auto;
}
#lt-mobile-nav.open { display: flex; }

.lt-mobile-close {
  position: absolute;
  top: 24px; right: 24px;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 28px; cursor: pointer;
  border: 1px solid var(--lt-dark-border);
  border-radius: 50%;
  background: none;
  transition: all var(--lt-transition);
}
.lt-mobile-close:hover { border-color: var(--lt-gold); color: var(--lt-gold); }

#lt-mobile-nav ul { list-style: none; margin: 0; padding: 0; }
#lt-mobile-nav li { border-bottom: 1px solid var(--lt-dark-border); }
#lt-mobile-nav a {
  display: block;
  font-family: var(--lt-font-heading);
  font-size: 26px;
  font-weight: 600;
  color: white;
  padding: 18px 0;
  text-decoration: none;
  transition: color var(--lt-transition);
}
#lt-mobile-nav a:hover { color: var(--lt-gold); }

/* ============================================================
   SEARCH OVERLAY
   ============================================================ */
#lt-search-overlay {
  position: fixed; inset: 0;
  z-index: 99998;
  background: rgba(10,10,10,0.97);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: all 0.3s ease;
}
#lt-search-overlay.open { opacity: 1; visibility: visible; }

.lt-search-close {
  position: absolute; top: 28px; right: 28px;
  color: white; font-size: 28px; cursor: pointer;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--lt-dark-border); border-radius: 50%;
  background: none;
  transition: all var(--lt-transition);
}
.lt-search-close:hover { border-color: var(--lt-gold); color: var(--lt-gold); }

.lt-search-form {
  display: flex;
  width: 100%; max-width: 640px;
  padding: 0 24px;
  border-bottom: 2px solid var(--lt-gold);
  align-items: center; gap: 0;
}
.lt-search-form input {
  flex: 1; background: transparent; border: none;
  color: white;
  font-family: var(--lt-font-heading);
  font-size: 28px; outline: none; padding: 16px 0;
}
.lt-search-form input::placeholder { color: rgba(255,255,255,0.25); }
.lt-search-form button {
  background: transparent; border: none;
  color: var(--lt-gold); font-size: 22px; cursor: pointer;
}

/* ============================================================
   BUTTONS — works inside Elementor Button widget too
   ============================================================ */
.lt-btn,
.elementor-button.lt-btn-gold,
.lt-btn-gold {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--lt-font-nav) !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  background: var(--lt-gold) !important;
  color: var(--lt-black) !important;
  border: 2px solid var(--lt-gold) !important;
  border-radius: 0 !important;
  cursor: pointer;
  transition: all var(--lt-transition) !important;
  text-decoration: none;
}
.lt-btn-gold:hover,
.elementor-button.lt-btn-gold:hover {
  background: var(--lt-gold-light) !important;
  border-color: var(--lt-gold-light) !important;
  transform: translateY(-3px) !important;
  box-shadow: var(--lt-shadow-gold) !important;
  color: var(--lt-black) !important;
}

.lt-btn-outline {
  background: transparent !important;
  color: var(--lt-gold) !important;
  border: 2px solid var(--lt-gold) !important;
  border-radius: 0 !important;
}
.lt-btn-outline:hover {
  background: var(--lt-gold) !important;
  color: var(--lt-black) !important;
  transform: translateY(-3px) !important;
}

/* ============================================================
   ELEMENTOR WIDGET STYLE HELPERS
   ============================================================ */

/* Section label */
.lt-label {
  font-family: var(--lt-font-nav);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--lt-gold);
  display: block;
  margin-bottom: 12px;
}

/* Headings */
.lt-title {
  font-family: var(--lt-font-heading);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  color: white;
  line-height: 1.15;
}
.lt-title em, .lt-title span.gold { color: var(--lt-gold); font-style: italic; }

/* Gold divider */
.lt-divider {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--lt-gold), transparent);
  margin: 16px auto;
}

/* ============================================================
   HERO SECTION (custom, not Elementor slider)
   ============================================================ */
.lt-hero {
  position: relative;
  height: 100vh; min-height: 700px;
  overflow: hidden;
}

.lt-hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}
.lt-hero-slide.active { opacity: 1; }

.lt-hero-bg {
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  transition: transform 8s ease;
}
.lt-hero-slide.active .lt-hero-bg { transform: scale(1); }

.lt-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    rgba(10,10,10,0.25) 0%,
    rgba(10,10,10,0.05) 40%,
    rgba(10,10,10,0.65) 75%,
    rgba(10,10,10,0.92) 100%);
}

.lt-hero-content {
  position: absolute;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 5;
  width: 100%;
  padding: 0 24px;
}

.lt-hero-label {
  font-family: var(--lt-font-nav);
  font-size: 11px; font-weight: 700;
  letter-spacing: 6px; text-transform: uppercase;
  color: var(--lt-gold-light);
  margin-bottom: 20px;
  opacity: 0; transform: translateY(20px);
  animation: ltHeroUp 0.8s ease 0.3s forwards;
}
.lt-hero-title {
  font-family: var(--lt-font-heading);
  font-size: clamp(42px, 7vw, 92px);
  font-weight: 700; line-height: 1.05;
  color: white; margin-bottom: 20px;
  opacity: 0; transform: translateY(30px);
  animation: ltHeroUp 0.8s ease 0.55s forwards;
}
.lt-hero-title em { color: var(--lt-gold); font-style: italic; }
.lt-hero-sub {
  font-size: 17px; color: rgba(255,255,255,0.8);
  max-width: 540px; margin: 0 auto 40px;
  opacity: 0; transform: translateY(20px);
  animation: ltHeroUp 0.8s ease 0.75s forwards;
}
.lt-hero-cta {
  display: flex; gap: 14px; justify-content: center;
  flex-wrap: wrap;
  opacity: 0; transform: translateY(20px);
  animation: ltHeroUp 0.8s ease 0.95s forwards;
}

@keyframes ltHeroUp { to { opacity: 1; transform: translateY(0); } }

/* Hero nav */
.lt-hero-arrows {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 100%; display: flex; justify-content: space-between;
  padding: 0 20px; z-index: 8; pointer-events: none;
}
.lt-hero-arrow {
  width: 54px; height: 54px; border-radius: 50%;
  background: rgba(212,160,23,0.12);
  border: 1px solid rgba(212,160,23,0.4);
  color: var(--lt-gold); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  pointer-events: all; font-size: 20px;
  transition: all var(--lt-transition);
}
.lt-hero-arrow:hover { background: var(--lt-gold); color: var(--lt-black); }

.lt-hero-dots {
  position: absolute; bottom: 190px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 8;
}
.lt-hero-dot {
  width: 8px; height: 8px; border-radius: 4px;
  background: rgba(255,255,255,0.3);
  cursor: pointer; border: none;
  transition: all var(--lt-transition);
}
.lt-hero-dot.active { background: var(--lt-gold); width: 24px; }

/* ============================================================
   BOOKING FORM
   ============================================================ */
.lt-booking-wrap {
  position: absolute; bottom: 0; left: 0; right: 0;
  z-index: 10; padding: 0 28px 36px;
}

.lt-booking-form {
  max-width: 940px; margin: 0 auto;
  background: rgba(10,10,10,0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(212,160,23,0.3);
  border-radius: var(--lt-radius);
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr auto;
  gap: 14px;
  align-items: end;
}

.lt-field label {
  display: block;
  font-family: var(--lt-font-nav);
  font-size: 10px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--lt-gold); margin-bottom: 8px;
}
.lt-field input,
.lt-field select {
  width: 100%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  color: white;
  padding: 12px 16px;
  font-family: var(--lt-font-body);
  font-size: 13px;
  outline: none;
  border-radius: 4px;
  -webkit-appearance: none;
  transition: border-color var(--lt-transition);
}
.lt-field input::placeholder { color: rgba(255,255,255,0.38); }
.lt-field input:focus,
.lt-field select:focus { border-color: var(--lt-gold); }
.lt-field select option { background: #1a1a1a; color: white; }

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.lt-service-card {
  background: var(--lt-dark-card);
  border: 1px solid var(--lt-dark-border);
  padding: 40px 28px;
  position: relative;
  overflow: hidden;
  transition: all var(--lt-transition);
  cursor: pointer;
}
.lt-service-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 3px;
  background: var(--lt-gold);
  transition: width 0.5s ease;
}
.lt-service-card:hover {
  transform: translateY(-8px);
  border-color: var(--lt-gold);
  box-shadow: var(--lt-shadow-gold);
}
.lt-service-card:hover::after { width: 100%; }

.lt-service-num {
  font-family: var(--lt-font-heading);
  font-size: 52px; font-weight: 700;
  color: var(--lt-gold); opacity: 0.5;
  line-height: 1; margin-bottom: 8px;
}
.lt-service-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(212,160,23,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--lt-gold); font-size: 24px;
  margin-bottom: 20px;
  transition: all var(--lt-transition);
}
.lt-service-card:hover .lt-service-icon {
  background: var(--lt-gold); color: var(--lt-black);
  transform: scale(1.12);
}
.lt-service-title {
  font-family: var(--lt-font-heading);
  font-size: 19px; font-weight: 600;
  color: white; margin-bottom: 12px;
}
.lt-service-desc { font-size: 13px; color: var(--lt-muted); line-height: 1.75; }

/* ============================================================
   TOUR CARDS
   ============================================================ */
.lt-tour-card {
  background: var(--lt-dark-card);
  border: 1px solid var(--lt-dark-border);
  border-radius: var(--lt-radius);
  overflow: hidden;
  transition: all var(--lt-transition);
}
.lt-tour-card:hover {
  transform: translateY(-10px);
  border-color: var(--lt-gold);
  box-shadow: var(--lt-shadow-card);
}
.lt-tour-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.lt-tour-img-wrap img,
.lt-tour-img-wrap .lt-tour-ph {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.lt-tour-card:hover .lt-tour-ph,
.lt-tour-card:hover img { transform: scale(1.08); }
.lt-tour-ph { background-size: cover; background-position: center; }

.lt-tour-badge {
  position: absolute; top: 14px; right: 14px;
  background: var(--lt-gold); color: var(--lt-black);
  font-family: var(--lt-font-nav);
  font-size: 9px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 5px 12px; border-radius: 4px;
}
.lt-tour-loc {
  position: absolute; bottom: 12px; left: 12px;
  display: flex; align-items: center; gap: 5px;
  background: rgba(0,0,0,0.65);
  padding: 5px 10px; border-radius: 4px;
  font-size: 11px; color: rgba(255,255,255,0.9);
}

.lt-tour-body { padding: 20px; }
.lt-tour-name {
  font-family: var(--lt-font-heading);
  font-size: 17px; font-weight: 600;
  color: white; margin-bottom: 12px; line-height: 1.3;
}
.lt-tour-meta {
  display: flex; align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.lt-tour-dur { font-size: 12px; color: var(--lt-muted); display: flex; align-items: center; gap: 5px; }
.lt-tour-stars { font-size: 12px; color: var(--lt-gold); }

.lt-tour-footer {
  display: flex; align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--lt-dark-border);
}
.lt-tour-price-lbl { font-size: 10px; color: var(--lt-muted); }
.lt-tour-price-amt { font-family: var(--lt-font-heading); font-size: 22px; font-weight: 700; color: var(--lt-gold); }
.lt-tour-price-per { font-size: 10px; color: var(--lt-muted); }

/* ============================================================
   TESTIMONIAL CARDS
   ============================================================ */
.lt-testi-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,160,23,0.15);
  padding: 36px;
  border-radius: var(--lt-radius);
  transition: all var(--lt-transition);
  position: relative;
}
.lt-testi-card:hover {
  border-color: var(--lt-gold);
  box-shadow: var(--lt-shadow-gold);
  transform: translateY(-6px);
}
.lt-testi-quote {
  font-size: 60px; font-family: Georgia, serif;
  color: var(--lt-gold); opacity: 0.5;
  line-height: 0.8; margin-bottom: 20px;
}
.lt-testi-text {
  font-size: 15px; color: rgba(255,255,255,0.85);
  line-height: 1.8; font-style: italic; margin-bottom: 24px;
}
.lt-testi-stars { color: var(--lt-gold); font-size: 14px; margin-bottom: 16px; }
.lt-testi-author { display: flex; align-items: center; gap: 14px; }
.lt-testi-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(212,160,23,0.15);
  border: 2px solid var(--lt-gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--lt-font-heading);
  font-size: 20px; font-weight: 700; color: var(--lt-gold);
  overflow: hidden; flex-shrink: 0;
}
.lt-testi-avatar img { width: 100%; height: 100%; object-fit: cover; }
.lt-testi-name { font-family: var(--lt-font-heading); font-size: 15px; font-weight: 600; color: var(--lt-gold); }
.lt-testi-country { font-size: 11px; color: var(--lt-muted); letter-spacing: 1px; text-transform: uppercase; }

/* ============================================================
   GALLERY ITEMS
   ============================================================ */
.lt-gallery-item {
  position: relative; overflow: hidden; cursor: pointer;
}
.lt-gallery-img {
  width: 100%; height: 100%;
  background-size: cover; background-position: center;
  transition: transform 0.6s ease;
  min-height: 200px;
}
.lt-gallery-item:hover .lt-gallery-img { transform: scale(1.08); }

.lt-gallery-ov {
  position: absolute; inset: 0;
  background: rgba(212,160,23,0.75);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  opacity: 0; transition: opacity var(--lt-transition);
}
.lt-gallery-item:hover .lt-gallery-ov { opacity: 1; }
.lt-gallery-ov-icon { font-size: 30px; color: white; margin-bottom: 8px; }
.lt-gallery-ov-lbl {
  font-family: var(--lt-font-nav);
  font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: white;
}

/* ============================================================
   BLOG CARDS
   ============================================================ */
.lt-blog-card {
  background: var(--lt-dark-card);
  border: 1px solid var(--lt-dark-border);
  border-radius: var(--lt-radius);
  overflow: hidden;
  transition: all var(--lt-transition);
}
.lt-blog-card:hover {
  transform: translateY(-6px);
  border-color: var(--lt-gold);
  box-shadow: var(--lt-shadow-card);
}
.lt-blog-thumb { overflow: hidden; aspect-ratio: 16/9; }
.lt-blog-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.lt-blog-card:hover .lt-blog-thumb img { transform: scale(1.06); }
.lt-blog-body { padding: 20px; }
.lt-blog-cat {
  font-family: var(--lt-font-nav);
  font-size: 9px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--lt-gold); margin-bottom: 8px;
}
.lt-blog-title {
  font-family: var(--lt-font-heading);
  font-size: 16px; font-weight: 600; color: white;
  margin-bottom: 10px; line-height: 1.4;
  transition: color var(--lt-transition);
}
.lt-blog-card:hover .lt-blog-title { color: var(--lt-gold); }
.lt-blog-excerpt { font-size: 12px; color: var(--lt-muted); line-height: 1.7; margin-bottom: 14px; }
.lt-blog-meta {
  display: flex; justify-content: space-between;
  font-size: 11px; color: var(--lt-muted);
  padding-top: 14px; border-top: 1px solid var(--lt-dark-border);
}
.lt-read-more { color: var(--lt-gold); font-weight: 600; transition: letter-spacing var(--lt-transition); }
.lt-blog-card:hover .lt-read-more { letter-spacing: 1px; }

/* ============================================================
   STAT ITEMS
   ============================================================ */
.lt-stat-item {
  text-align: center; padding: 52px 20px;
  border-right: 1px solid var(--lt-dark-border);
  transition: background var(--lt-transition);
}
.lt-stat-item:hover { background: rgba(212,160,23,0.05); }
.lt-stat-num {
  font-family: var(--lt-font-heading);
  font-size: 52px; font-weight: 700;
  color: var(--lt-gold); line-height: 1; margin-bottom: 8px;
}
.lt-stat-lbl {
  font-family: var(--lt-font-nav);
  font-size: 11px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--lt-muted);
}

/* ============================================================
   NEWSLETTER SECTION
   ============================================================ */
.lt-newsletter-form {
  display: flex; max-width: 480px; margin: 0 auto;
}
.lt-newsletter-input {
  flex: 1; padding: 16px 24px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(212,160,23,0.3);
  border-right: none;
  color: white; font-family: var(--lt-font-body);
  font-size: 14px; outline: none;
  transition: border-color var(--lt-transition);
}
.lt-newsletter-input::placeholder { color: rgba(255,255,255,0.35); }
.lt-newsletter-input:focus { border-color: var(--lt-gold); }

/* ============================================================
   FOOTER
   ============================================================ */
.lt-footer-logo {
  font-family: var(--lt-font-heading);
  font-size: 22px; font-weight: 700;
  letter-spacing: 2px; color: white; margin-bottom: 18px;
  display: block; text-decoration: none;
}
.lt-footer-logo em { color: var(--lt-gold); font-style: normal; }

.lt-social-links { display: flex; gap: 10px; }
.lt-social-link {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--lt-dark-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; color: var(--lt-muted);
  transition: all var(--lt-transition); text-decoration: none;
}
.lt-social-link:hover {
  background: var(--lt-gold); border-color: var(--lt-gold);
  color: var(--lt-black); transform: translateY(-3px);
}

.lt-footer-heading {
  font-family: var(--lt-font-nav);
  font-size: 10px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--lt-gold); margin-bottom: 22px;
}
.lt-footer-link {
  display: block; font-size: 13px;
  color: var(--lt-muted); margin-bottom: 10px;
  transition: color var(--lt-transition); text-decoration: none;
}
.lt-footer-link:hover { color: var(--lt-gold); }

.lt-contact-item {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 13px; color: var(--lt-muted); margin-bottom: 14px;
}
.lt-contact-icon { color: var(--lt-gold); flex-shrink: 0; margin-top: 2px; }

/* ============================================================
   BACK TO TOP
   ============================================================ */
#lt-back-top {
  position: fixed; bottom: 32px; right: 32px;
  width: 48px; height: 48px;
  background: var(--lt-gold); color: var(--lt-black);
  border-radius: 50%; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; z-index: 9000;
  opacity: 0; transform: translateY(16px);
  transition: all var(--lt-transition);
}
#lt-back-top.show { opacity: 1; transform: translateY(0); }
#lt-back-top:hover { background: var(--lt-gold-light); transform: translateY(-4px); }

/* ============================================================
   SCROLL ANIMATIONS — works alongside Elementor Motion Effects
   ============================================================ */
.lt-fade-up   { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.lt-fade-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.lt-fade-right{ opacity: 0; transform: translateX(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.lt-zoom-in   { opacity: 0; transform: scale(0.93); transition: opacity 0.7s ease, transform 0.7s ease; }
.lt-fade-up.lt-visible, .lt-fade-left.lt-visible,
.lt-fade-right.lt-visible, .lt-zoom-in.lt-visible { opacity: 1; transform: none; }

/* ============================================================
   ELEMENTOR PRO — Full-Width / Canvas Overrides
   ============================================================ */
.elementor-template-full-width .elementor-inner { padding-top: 0 !important; }

/* Elementor dark section colors */
.e-con, .elementor-section { background-color: transparent; }

/* Make Elementor headings use theme font */
.elementor-widget-heading .elementor-heading-title {
  font-family: var(--lt-font-heading);
}

/* Elementor text editor */
.elementor-widget-text-editor {
  color: var(--lt-muted);
  font-family: var(--lt-font-body);
}

/* Elementor image widget border */
.lt-gold-border .elementor-image img {
  border: 2px solid var(--lt-gold);
}

/* ============================================================
   WOOCOMMERCE OVERRIDES
   ============================================================ */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  background: var(--lt-gold) !important;
  color: var(--lt-black) !important;
  font-family: var(--lt-font-nav) !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  border-radius: 0 !important;
  padding: 13px 28px !important;
  transition: all var(--lt-transition) !important;
}
.woocommerce a.button:hover { background: var(--lt-gold-light) !important; }

.woocommerce div.product .price {
  color: var(--lt-gold) !important;
  font-family: var(--lt-font-heading) !important;
  font-size: 26px !important;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .lt-nav { display: none; }
  .lt-hamburger { display: flex; }
  .lt-booking-form { grid-template-columns: 1fr 1fr; }
  .lt-booking-form .lt-field:first-child { grid-column: span 2; }
  .lt-booking-form .lt-submit { grid-column: span 2; }
}

@media (max-width: 768px) {
  .lt-hero-title { font-size: 42px; }
  .lt-hero-content { margin-top: 0; }
  .lt-booking-form { grid-template-columns: 1fr; padding: 20px; }
  .lt-booking-form .lt-field:first-child,
  .lt-booking-form .lt-submit { grid-column: 1; }
  .lt-newsletter-form { flex-direction: column; }
  .lt-newsletter-input { border-right: 1px solid rgba(212,160,23,0.3); }
  .lt-hero-arrows { display: none; }
  :root { --lt-header-h: 64px; }
}

@media (max-width: 480px) {
  .lt-hero-title { font-size: 34px; }
  .lt-hero-cta { flex-direction: column; align-items: center; }
  .lt-stat-item { border-right: none; border-bottom: 1px solid var(--lt-dark-border); }
}
