/*
Theme Name: BookTripNFly
Theme URI: https://booktripnfly.com
Author: BookTripNFly
Author URI: https://booktripnfly.com
Description: A modern, professional WordPress theme for BookTripNFly travel agency. Features animated logo, destination showcases, and integrated booking system.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: booktripnfly
Tags: travel, agency, booking, one-column, custom-menu, featured-images, theme-options

BookTripNFly WordPress Theme
Copyright 2025 BookTripNFly.com
*/

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
  --navy: #0a1628;
  --navy-light: #162032;
  --sky: #0ea5e9;
  --sky-light: #38bdf8;
  --coral: #f97316;
  --coral-light: #fb923c;
  --gold: #fbbf24;
  --white: #ffffff;
  --gray-100: #f8fafc;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-600: #475569;
  --success: #22c55e;
  
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
  --shadow-glow: 0 0 40px rgba(14,165,233,0.3);
}

/* ============================================
   RESET & BASE
   ============================================ */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { 
  font-family: var(--font-body); 
  background: var(--white); 
  color: var(--navy); 
  line-height: 1.6; 
  overflow-x: hidden; 
}

img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }

/* ============================================
   TOP BAR
   ============================================ */
.top-bar { 
  background: var(--navy); 
  color: var(--gray-300); 
  padding: 10px 0; 
  font-size: 14px; 
}
.top-bar-inner { 
  max-width: 1400px; 
  margin: 0 auto; 
  padding: 0 40px; 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
}
.top-bar-item { 
  display: flex; 
  align-items: center; 
  gap: 8px; 
}
.top-bar-item svg { 
  width: 16px; 
  height: 16px; 
  fill: var(--sky); 
}
.top-bar a { 
  color: var(--gray-300); 
  text-decoration: none; 
  transition: color 0.2s; 
}
.top-bar a:hover { 
  color: var(--white); 
}
.top-bar-right { 
  font-size: 13px; 
  color: var(--gray-400); 
}

/* ============================================
   HEADER
   ============================================ */
.header { 
  background: var(--white); 
  position: sticky; 
  top: 0; 
  z-index: 1000; 
  box-shadow: var(--shadow-md); 
}
.header-inner { 
  max-width: 1400px; 
  margin: 0 auto; 
  padding: 0 40px; 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  height: 80px; 
}
.header-actions { 
  display: flex; 
  align-items: center; 
  gap: 16px; 
}

/* ============================================
   ANIMATED LOGO
   ============================================ */
.logo { 
  display: flex; 
  align-items: center; 
  gap: 12px; 
  text-decoration: none; 
}
.logo-icon { 
  width: 48px; 
  height: 48px; 
  background: linear-gradient(135deg, var(--sky) 0%, var(--navy) 100%); 
  border-radius: 12px; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  box-shadow: var(--shadow-md); 
}
.logo-icon svg { 
  width: 28px; 
  height: 28px; 
  fill: white; 
}
.logo-text { 
  font-family: var(--font-display); 
  font-size: 24px; 
  font-weight: 700; 
  color: var(--navy); 
  position: relative; 
}
.logo-text .book { color: var(--navy); }
.logo-text .trip { color: var(--sky); }
.logo-text .separator { 
  color: var(--gray-300); 
  font-weight: 400; 
  margin: 0 1px; 
  opacity: 0.5; 
}
.logo-text .suffix { 
  position: relative; 
  display: inline-block; 
}
.logo-text .fly-text, 
.logo-text .go-text {
  display: inline-block;
  transition: opacity 0.8s ease-in-out;
}
.logo-text .fly-text { opacity: 1; }
.logo-text .go-text { 
  opacity: 0; 
  position: absolute; 
  left: 0; 
}
.logo.show-go .fly-text { opacity: 0; }
.logo.show-go .go-text { opacity: 1; }
.logo-text .domain { 
  color: var(--gray-400); 
  font-size: 16px; 
  font-weight: 500; 
}

/* Footer logo adjustments */
.footer .logo-text .book { color: white; }

/* ============================================
   BUTTONS
   ============================================ */
.btn { 
  display: inline-flex; 
  align-items: center; 
  gap: 8px; 
  padding: 14px 28px; 
  border-radius: 10px; 
  font-weight: 600; 
  font-size: 15px; 
  text-decoration: none; 
  cursor: pointer; 
  border: none; 
  transition: all 0.3s ease;
  font-family: var(--font-body);
}
.btn-primary { 
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-light) 100%); 
  color: white; 
  box-shadow: 0 4px 15px rgba(249,115,22,0.3); 
}
.btn-primary:hover { 
  transform: translateY(-2px); 
  box-shadow: 0 6px 20px rgba(249,115,22,0.4); 
}
.btn-secondary { 
  background: var(--navy); 
  color: white; 
}
.btn-secondary:hover { 
  background: var(--navy-light); 
  transform: translateY(-2px); 
}
.btn-outline { 
  background: transparent; 
  color: var(--navy); 
  border: 2px solid var(--gray-200); 
}
.btn-outline:hover { 
  border-color: var(--sky); 
  color: var(--sky); 
}
.btn-chat { 
  background: var(--success); 
  color: white; 
  padding: 12px 20px; 
}
.btn-chat:hover { 
  background: #16a34a; 
  transform: translateY(-2px); 
}
.btn svg { 
  width: 18px; 
  height: 18px; 
  fill: currentColor; 
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero { 
  position: relative; 
  min-height: 85vh; 
  display: flex; 
  align-items: center; 
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, #1e3a5f 100%); 
  overflow: hidden; 
}
.hero::before { 
  content: ''; 
  position: absolute; 
  top: 0; 
  left: 0; 
  right: 0; 
  bottom: 0; 
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); 
  pointer-events: none; 
}
.hero-bg-element { 
  position: absolute; 
  border-radius: 50%; 
  background: radial-gradient(circle, rgba(14,165,233,0.15) 0%, transparent 70%); 
  animation: float 20s infinite ease-in-out; 
}
.hero-bg-element:nth-child(1) { 
  width: 600px; 
  height: 600px; 
  top: -200px; 
  right: -100px; 
}
.hero-bg-element:nth-child(2) { 
  width: 400px; 
  height: 400px; 
  bottom: -100px; 
  left: 10%; 
  animation-delay: -7s; 
}
.hero-bg-element:nth-child(3) { 
  width: 300px; 
  height: 300px; 
  top: 30%; 
  left: 50%; 
  animation-delay: -14s; 
}

@keyframes float { 
  0%, 100% { transform: translate(0, 0) scale(1); } 
  33% { transform: translate(30px, -30px) scale(1.05); } 
  66% { transform: translate(-20px, 20px) scale(0.95); } 
}

.hero-content { 
  position: relative; 
  max-width: 1400px; 
  margin: 0 auto; 
  padding: 80px 40px; 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 80px; 
  align-items: center; 
  z-index: 1; 
}
.hero-text { color: white; }
.hero-badge { 
  display: inline-flex; 
  align-items: center; 
  gap: 8px; 
  background: rgba(14,165,233,0.2); 
  border: 1px solid rgba(14,165,233,0.3); 
  padding: 8px 16px; 
  border-radius: 50px; 
  font-size: 14px; 
  font-weight: 500; 
  color: var(--sky-light); 
  margin-bottom: 30px; 
  animation: fadeInUp 0.8s ease; 
}
.hero-badge svg { 
  width: 16px; 
  height: 16px; 
  fill: currentColor; 
}
.hero h1 { 
  font-family: var(--font-display); 
  font-size: 64px; 
  font-weight: 700; 
  line-height: 1.1; 
  margin-bottom: 24px; 
  animation: fadeInUp 0.8s ease 0.1s both; 
}
.hero h1 span { color: var(--sky-light); }
.hero-subtitle { 
  font-size: 20px; 
  color: var(--gray-300); 
  margin-bottom: 40px; 
  max-width: 500px; 
  animation: fadeInUp 0.8s ease 0.2s both; 
}
.hero-ctas { 
  display: flex; 
  gap: 16px; 
  animation: fadeInUp 0.8s ease 0.3s both; 
}

@keyframes fadeInUp { 
  from { opacity: 0; transform: translateY(30px); } 
  to { opacity: 1; transform: translateY(0); } 
}

/* ============================================
   HERO CARD (Booking Search)
   ============================================ */
.hero-card { 
  background: white; 
  border-radius: 24px; 
  padding: 40px; 
  box-shadow: var(--shadow-xl), var(--shadow-glow); 
  animation: fadeInUp 0.8s ease 0.2s both; 
}
.hero-card-header { 
  text-align: center; 
  margin-bottom: 30px; 
}
.hero-card-icon { 
  width: 60px; 
  height: 60px; 
  background: linear-gradient(135deg, var(--sky) 0%, var(--sky-light) 100%); 
  border-radius: 16px; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  margin: 0 auto 16px; 
}
.hero-card-icon svg { 
  width: 32px; 
  height: 32px; 
  fill: white; 
}
.hero-card h2 { 
  font-family: var(--font-display); 
  font-size: 28px; 
  font-weight: 600; 
  color: var(--navy); 
  margin-bottom: 8px; 
}
.hero-card p { 
  color: var(--gray-600); 
  font-size: 15px; 
}
.hero-card .btn { 
  width: 100%; 
  justify-content: center; 
  padding: 18px 28px; 
  font-size: 17px; 
  margin-top: 10px; 
}
.hero-card-footer { 
  text-align: center; 
  margin-top: 24px; 
  padding-top: 24px; 
  border-top: 1px solid var(--gray-200); 
}
.hero-card-footer p { 
  font-size: 14px; 
  color: var(--gray-600); 
}
.chat-link { 
  display: inline-flex; 
  align-items: center; 
  gap: 6px; 
  color: var(--success); 
  font-weight: 600; 
  cursor: pointer; 
}
.chat-link svg { 
  width: 16px; 
  height: 16px; 
  fill: currentColor; 
}

/* ============================================
   FORMS
   ============================================ */
.form-group { margin-bottom: 20px; }
.form-label { 
  display: block; 
  font-size: 14px; 
  font-weight: 600; 
  color: var(--navy); 
  margin-bottom: 8px; 
}
.form-input { 
  width: 100%; 
  padding: 16px 20px; 
  border: 2px solid var(--gray-200); 
  border-radius: 12px; 
  font-size: 16px; 
  font-family: inherit; 
  transition: all 0.2s; 
  background: var(--gray-100); 
}
.form-input:focus { 
  outline: none; 
  border-color: var(--sky); 
  background: white; 
  box-shadow: 0 0 0 4px rgba(14,165,233,0.1); 
}
.form-input::placeholder { color: var(--gray-400); }

/* ============================================
   CONTAINER & SECTIONS
   ============================================ */
.container { 
  max-width: 1400px; 
  margin: 0 auto; 
  padding: 0 40px; 
}
.section-header { 
  text-align: center; 
  max-width: 700px; 
  margin: 0 auto 60px; 
}
.section-tag { 
  display: inline-block; 
  font-size: 13px; 
  font-weight: 600; 
  text-transform: uppercase; 
  letter-spacing: 2px; 
  color: var(--sky); 
  margin-bottom: 16px; 
}
.section-title { 
  font-family: var(--font-display); 
  font-size: 48px; 
  font-weight: 700; 
  color: var(--navy); 
  margin-bottom: 20px; 
  line-height: 1.2; 
}
.section-subtitle { 
  font-size: 18px; 
  color: var(--gray-600); 
  line-height: 1.7; 
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services { 
  padding: 100px 0; 
  background: white; 
}
.services-grid { 
  display: grid; 
  grid-template-columns: repeat(4, 1fr); 
  gap: 30px; 
}
.service-card { 
  background: white; 
  border-radius: 20px; 
  padding: 40px 30px; 
  text-align: center; 
  border: 2px solid var(--gray-200); 
  transition: all 0.4s ease; 
  position: relative; 
  overflow: hidden; 
}
.service-card::before { 
  content: ''; 
  position: absolute; 
  top: 0; 
  left: 0; 
  right: 0; 
  height: 4px; 
  background: linear-gradient(90deg, var(--sky), var(--sky-light)); 
  transform: scaleX(0); 
  transition: transform 0.4s ease; 
}
.service-card:hover { 
  border-color: var(--sky); 
  transform: translateY(-8px); 
  box-shadow: var(--shadow-xl); 
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon { 
  width: 80px; 
  height: 80px; 
  background: var(--gray-100); 
  border-radius: 20px; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  margin: 0 auto 24px; 
  transition: all 0.4s ease; 
}
.service-card:hover .service-icon { 
  background: linear-gradient(135deg, var(--sky) 0%, var(--sky-light) 100%); 
  transform: scale(1.1); 
}
.service-icon svg { 
  width: 40px; 
  height: 40px; 
  fill: var(--sky); 
  transition: fill 0.4s ease; 
}
.service-card:hover .service-icon svg { fill: white; }
.service-card h3 { 
  font-family: var(--font-display); 
  font-size: 22px; 
  font-weight: 600; 
  color: var(--navy); 
  margin-bottom: 12px; 
}
.service-card p { 
  font-size: 15px; 
  color: var(--gray-600); 
  line-height: 1.6; 
}

/* ============================================
   DESTINATIONS SECTION
   ============================================ */
.destinations { 
  padding: 100px 0; 
  background: var(--gray-100); 
}
.destinations-grid { 
  display: grid; 
  grid-template-columns: repeat(4, 1fr); 
  gap: 24px; 
}
.destination-card { 
  position: relative; 
  border-radius: 20px; 
  overflow: hidden; 
  height: 320px; 
  cursor: pointer; 
  transition: all 0.4s ease; 
}
.destination-card:hover { 
  transform: translateY(-8px); 
  box-shadow: var(--shadow-xl); 
}
.destination-card.featured { 
  grid-column: span 2; 
  grid-row: span 2; 
  height: 100%; 
}
.destination-image { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  transition: transform 0.6s ease; 
}
.destination-card:hover .destination-image { transform: scale(1.1); }
.destination-overlay { 
  position: absolute; 
  inset: 0; 
  background: linear-gradient(to top, rgba(10,22,40,0.9) 0%, rgba(10,22,40,0.3) 50%, transparent 100%); 
  display: flex; 
  flex-direction: column; 
  justify-content: flex-end; 
  padding: 30px; 
  transition: background 0.4s ease; 
}
.destination-card:hover .destination-overlay { 
  background: linear-gradient(to top, rgba(10,22,40,0.95) 0%, rgba(10,22,40,0.5) 50%, rgba(10,22,40,0.2) 100%); 
}
.destination-region { 
  font-size: 12px; 
  font-weight: 600; 
  text-transform: uppercase; 
  letter-spacing: 2px; 
  color: var(--sky-light); 
  margin-bottom: 8px; 
}
.destination-name { 
  font-family: var(--font-display); 
  font-size: 28px; 
  font-weight: 700; 
  color: white; 
  margin-bottom: 8px; 
}
.destination-card:not(.featured) .destination-name { font-size: 22px; }
.destination-tagline { 
  font-size: 14px; 
  color: var(--gray-300); 
  opacity: 0; 
  transform: translateY(10px); 
  transition: all 0.4s ease; 
}
.destination-card:hover .destination-tagline { 
  opacity: 1; 
  transform: translateY(0); 
}
.destination-arrow { 
  position: absolute; 
  bottom: 30px; 
  right: 30px; 
  width: 44px; 
  height: 44px; 
  background: var(--coral); 
  border-radius: 50%; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  opacity: 0; 
  transform: translateX(-10px); 
  transition: all 0.4s ease; 
}
.destination-card:hover .destination-arrow { 
  opacity: 1; 
  transform: translateX(0); 
}
.destination-arrow svg { 
  width: 20px; 
  height: 20px; 
  fill: white; 
}

/* ============================================
   WHY US SECTION
   ============================================ */
.why-us { 
  padding: 100px 0; 
  background: var(--navy); 
  position: relative; 
  overflow: hidden; 
}
.why-us::before { 
  content: ''; 
  position: absolute; 
  top: 0; 
  left: 0; 
  right: 0; 
  bottom: 0; 
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3z' fill='%23ffffff' fill-opacity='0.02' fill-rule='evenodd'/%3E%3C/svg%3E"); 
}
.why-us .section-title { color: white; }
.why-us .section-subtitle { color: var(--gray-400); }
.why-us-grid { 
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: 40px; 
  position: relative; 
  z-index: 1; 
}
.why-card { 
  background: rgba(255,255,255,0.05); 
  border: 1px solid rgba(255,255,255,0.1); 
  border-radius: 20px; 
  padding: 40px; 
  text-align: center; 
  backdrop-filter: blur(10px); 
  transition: all 0.4s ease; 
}
.why-card:hover { 
  background: rgba(255,255,255,0.1); 
  transform: translateY(-5px); 
}
.why-icon { 
  width: 70px; 
  height: 70px; 
  background: linear-gradient(135deg, var(--sky) 0%, var(--sky-light) 100%); 
  border-radius: 50%; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  margin: 0 auto 24px; 
}
.why-icon svg { 
  width: 32px; 
  height: 32px; 
  fill: white; 
}
.why-card h3 { 
  font-family: var(--font-display); 
  font-size: 24px; 
  font-weight: 600; 
  color: white; 
  margin-bottom: 12px; 
}
.why-card p { 
  font-size: 15px; 
  color: var(--gray-400); 
  line-height: 1.7; 
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section { 
  padding: 100px 0; 
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-light) 100%); 
  position: relative; 
  overflow: hidden; 
}
.cta-section::before { 
  content: ''; 
  position: absolute; 
  top: -50%; 
  right: -10%; 
  width: 600px; 
  height: 600px; 
  background: rgba(255,255,255,0.1); 
  border-radius: 50%; 
}
.cta-section::after { 
  content: ''; 
  position: absolute; 
  bottom: -30%; 
  left: -5%; 
  width: 400px; 
  height: 400px; 
  background: rgba(255,255,255,0.05); 
  border-radius: 50%; 
}
.cta-content { 
  text-align: center; 
  position: relative; 
  z-index: 1; 
}
.cta-content h2 { 
  font-family: var(--font-display); 
  font-size: 48px; 
  font-weight: 700; 
  color: white; 
  margin-bottom: 16px; 
}
.cta-content p { 
  font-size: 20px; 
  color: rgba(255,255,255,0.9); 
  margin-bottom: 40px; 
}
.cta-buttons { 
  display: flex; 
  justify-content: center; 
  gap: 20px; 
}
.cta-section .btn-secondary { 
  background: white; 
  color: var(--coral); 
}
.cta-section .btn-secondary:hover { 
  background: var(--gray-100); 
}
.cta-section .btn-outline { 
  border-color: white; 
  color: white; 
}
.cta-section .btn-outline:hover { 
  background: white; 
  color: var(--coral); 
}

/* ============================================
   FOOTER
   ============================================ */
.footer { 
  background: var(--navy); 
  color: var(--gray-400); 
  padding: 80px 0 30px; 
}
.footer-grid { 
  display: grid; 
  grid-template-columns: 2fr 1fr 1fr 1fr; 
  gap: 60px; 
  margin-bottom: 60px; 
}
.footer-brand .logo { margin-bottom: 20px; }
.footer-brand p { 
  font-size: 15px; 
  line-height: 1.7; 
  margin-bottom: 24px; 
}
.footer-column h4 { 
  font-size: 16px; 
  font-weight: 600; 
  color: white; 
  margin-bottom: 24px; 
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { 
  color: var(--gray-400); 
  text-decoration: none; 
  font-size: 15px; 
  transition: color 0.2s; 
}
.footer-links a:hover { color: white; }
.footer-contact-item { 
  display: flex; 
  align-items: flex-start; 
  gap: 12px; 
  margin-bottom: 16px; 
}
.footer-contact-item svg { 
  width: 20px; 
  height: 20px; 
  fill: var(--sky); 
  flex-shrink: 0; 
  margin-top: 2px; 
}
.footer-contact-item a { color: var(--gray-400); text-decoration: none; }
.footer-contact-item a:hover { color: white; }
.footer-bottom { 
  padding-top: 30px; 
  border-top: 1px solid rgba(255,255,255,0.1); 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
}
.footer-bottom p { font-size: 14px; }
.footer-bottom a { color: var(--gray-400); text-decoration: none; }
.footer-bottom a:hover { color: white; }
.footer-badges { 
  display: flex; 
  gap: 20px; 
  align-items: center; 
}
.footer-badge { 
  display: flex; 
  align-items: center; 
  gap: 8px; 
  font-size: 12px; 
  color: var(--gray-400); 
}
.footer-badge svg { 
  width: 16px; 
  height: 16px; 
  fill: var(--success); 
}

/* ============================================
   CHAT WIDGET
   ============================================ */
.chat-widget { 
  position: fixed; 
  bottom: 30px; 
  right: 30px; 
  z-index: 9999; 
}
.chat-bubble { 
  width: 64px; 
  height: 64px; 
  background: linear-gradient(135deg, var(--success) 0%, #16a34a 100%); 
  border-radius: 50%; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  cursor: pointer; 
  box-shadow: 0 4px 20px rgba(34,197,94,0.4); 
  transition: all 0.3s ease; 
  animation: pulse-chat 2s infinite; 
}
.chat-bubble:hover { 
  transform: scale(1.1); 
  box-shadow: 0 6px 30px rgba(34,197,94,0.5); 
}
.chat-bubble svg { 
  width: 32px; 
  height: 32px; 
  fill: white; 
}
.chat-tooltip { 
  position: absolute; 
  bottom: 80px; 
  right: 0; 
  background: white; 
  padding: 16px 20px; 
  border-radius: 12px; 
  box-shadow: var(--shadow-xl); 
  white-space: nowrap; 
  opacity: 0; 
  transform: translateY(10px); 
  transition: all 0.3s ease; 
  pointer-events: none; 
}
.chat-widget:hover .chat-tooltip { 
  opacity: 1; 
  transform: translateY(0); 
}
.chat-tooltip::after { 
  content: ''; 
  position: absolute; 
  bottom: -8px; 
  right: 24px; 
  width: 16px; 
  height: 16px; 
  background: white; 
  transform: rotate(45deg); 
}
.chat-tooltip-text { 
  font-size: 14px; 
  font-weight: 600; 
  color: var(--navy); 
}
.chat-tooltip-sub { 
  font-size: 12px; 
  color: var(--gray-600); 
  margin-top: 2px; 
}

@keyframes pulse-chat { 
  0%, 100% { box-shadow: 0 4px 20px rgba(34,197,94,0.4); } 
  50% { box-shadow: 0 4px 30px rgba(34,197,94,0.6), 0 0 0 8px rgba(34,197,94,0.1); } 
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .destinations-grid { grid-template-columns: repeat(2, 1fr); }
  .destination-card.featured { 
    grid-column: span 2; 
    grid-row: span 1; 
    height: 400px; 
  }
}

@media (max-width: 992px) {
  .hero-content { 
    grid-template-columns: 1fr; 
    text-align: center; 
  }
  .hero-text { order: 1; }
  .hero-card { 
    order: 2; 
    max-width: 500px; 
    margin: 0 auto; 
  }
  .hero h1 { font-size: 48px; }
  .hero-subtitle { margin: 0 auto 40px; }
  .hero-ctas { justify-content: center; }
  .why-us-grid { 
    grid-template-columns: 1fr; 
    max-width: 500px; 
    margin: 0 auto; 
  }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .top-bar { display: none; }
  .header-inner { padding: 0 20px; }
  .hero { min-height: auto; }
  .hero-content { padding: 60px 20px; }
  .hero h1 { font-size: 36px; }
  .hero-subtitle { font-size: 17px; }
  .hero-ctas { flex-direction: column; }
  .hero-card { padding: 30px 24px; }
  .container { padding: 0 20px; }
  .section-title { font-size: 32px; }
  .services-grid, 
  .destinations-grid { grid-template-columns: 1fr; }
  .destination-card.featured { 
    grid-column: span 1; 
    height: 350px; 
  }
  .destination-card { height: 280px; }
  .cta-content h2 { font-size: 32px; }
  .cta-buttons { 
    flex-direction: column; 
    align-items: center; 
  }
  .footer-grid { 
    grid-template-columns: 1fr; 
    gap: 40px; 
  }
  .footer-bottom { 
    flex-direction: column; 
    gap: 20px; 
    text-align: center; 
  }
  .chat-widget { 
    bottom: 20px; 
    right: 20px; 
  }
  .chat-bubble { 
    width: 56px; 
    height: 56px; 
  }
  .chat-bubble svg { 
    width: 28px; 
    height: 28px; 
  }
  .logo-text { font-size: 20px; }
  .logo-text .domain { display: none; }
}

/* ============================================
   WORDPRESS SPECIFIC
   ============================================ */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

.alignleft {
  float: left;
  margin-right: 1.5em;
  margin-bottom: 1.5em;
}

.alignright {
  float: right;
  margin-left: 1.5em;
  margin-bottom: 1.5em;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5em;
}
