/*
Theme Name: Vivu Phu Quoc
Theme URI: https://vivuphuquoc.com
Author: Antigravity
Author URI: https://vivuphuquoc.com
Description: Premium Tropical Travel Agency Theme for Vivu Phu Quoc. Tailored for international tourists, fully responsive, and WooCommerce compatible.
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: vivu-phu-quoc
*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,600;0,700;0,800;1,600&display=swap');

:root {
  /* Brand Colors */
  --primary: #0A2540;          /* Deep Ocean Blue */
  --primary-light: #15395E;
  --primary-rgb: 10, 37, 64;
  --secondary: #00B4D8;        /* Tropical Turquoise */
  --secondary-rgb: 0, 180, 216;
  --secondary-dark: #0077B6;
  --accent: #FF7A00;           /* Sunset Orange/Gold */
  --accent-rgb: 255, 122, 0;
  --accent-hover: #E06000;
  --accent-light: #FFF0E0;
  --gold: #FFB703;             /* Star ratings */

  /* Neutral Backgrounds */
  --bg-white: #FFFFFF;
  --bg-light: #F4F8FA;         /* Soft tropical white/light blue */
  --bg-dark: #051329;          /* Deepest blue for contrast card backgrounds */

  /* Text Colors */
  --text-dark: #1F2E3D;
  --text-muted: #5F738C;
  --text-light: #FFFFFF;
  --text-light-muted: rgba(255, 255, 255, 0.7);

  /* Shadows */
  --shadow-sm: 0 4px 10px rgba(10, 37, 64, 0.04);
  --shadow-md: 0 10px 25px rgba(10, 37, 64, 0.06);
  --shadow-lg: 0 20px 40px rgba(10, 37, 64, 0.1);
  --shadow-accent: 0 8px 24px rgba(255, 122, 0, 0.25);
  --shadow-whatsapp: 0 10px 25px rgba(37, 211, 102, 0.3);

  /* Border Radii */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  /* Spacing */
  --section-padding: 6.5rem 0;

  /* Transitions */
  --transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  
  /* Fonts */
  --font-sans: 'Outfit', sans-serif;
  --font-serif: 'Playfair Display', serif;
}

/* --- Base & Reset --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background-color: var(--bg-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

button, input, select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
}

ul {
  list-style: none;
}

/* --- Typography & Headings --- */
h1, h2, h3, h4, h5, h6 {
  color: var(--primary);
  line-height: 1.25;
  font-weight: 700;
}

.heading-serif {
  font-family: var(--font-serif);
}

/* --- Layout Utilities --- */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: var(--section-padding);
  position: relative;
}

.bg-light {
  background-color: var(--bg-light);
}

.bg-dark {
  background-color: var(--bg-dark);
  color: var(--text-light);
}

.text-center {
  text-align: center;
}

.section-header {
  max-width: 700px;
  margin: 0 auto 4rem auto;
}

.section-header .badge {
  display: inline-block;
  background-color: var(--accent-light);
  color: var(--accent-hover);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1.25rem;
}

.section-header h2 {
  font-family: var(--font-serif);
  font-size: 2.75rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.15rem;
}

.bg-dark .section-header h2 {
  color: var(--text-light);
}

.bg-dark .section-header p {
  color: var(--text-light-muted);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2.25rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  font-size: 0.95rem;
}

.btn-primary {
  background-color: var(--accent);
  color: var(--text-light);
  box-shadow: var(--shadow-accent);
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(255, 122, 0, 0.4);
}

.btn-secondary {
  background-color: var(--secondary);
  color: var(--text-light);
}

.btn-secondary:hover {
  background-color: var(--secondary-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0, 180, 216, 0.3);
}

.btn-outline {
  background-color: transparent;
  color: var(--text-light);
  border: 2px solid var(--text-light);
}

.btn-outline:hover {
  background-color: var(--text-light);
  color: var(--primary);
  transform: translateY(-3px);
}

.btn-whatsapp {
  background-color: #25D366;
  color: white;
  box-shadow: var(--shadow-whatsapp);
}

.btn-whatsapp:hover {
  background-color: #20BA5A;
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.45);
}

/* --- FLOATING CHAT BUTTONS --- */
.floating-chats {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.floating-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  box-shadow: var(--shadow-md);
}

.floating-btn:hover {
  transform: scale(1.1) translateY(-3px);
}

.floating-btn.whatsapp {
  background-color: #25D366;
  box-shadow: var(--shadow-whatsapp);
  animation: pulse-whatsapp 2.5s infinite;
}

.floating-btn.zalo {
  background-color: #0084FF;
  box-shadow: 0 8px 20px rgba(0, 132, 255, 0.3);
}

.floating-btn svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.floating-btn.zalo span {
  font-weight: 800;
  font-size: 1.1rem;
}

/* --- NAVIGATION BAR --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background-color: rgba(10, 37, 64, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1rem 0;
  box-shadow: var(--shadow-md);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 1.65rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo img {
  max-height: 48px;
  width: auto;
}

.logo svg {
  width: 32px;
  height: 32px;
  fill: var(--accent);
}

.logo span {
  color: var(--accent);
}

.nav-menu {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

/* WordPress Menu Enqueue Compatibility */
.nav-menu li {
  position: relative;
}

.nav-menu a, .nav-link {
  color: var(--text-light);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.5px;
  position: relative;
}

.nav-menu a::after, .nav-link::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: var(--transition);
}

.nav-menu a:hover, .nav-link:hover {
  color: var(--accent);
}

.nav-menu a:hover::after, .nav-link:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-btn-mobile {
  display: none;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
  z-index: 1001;
}

.mobile-toggle span {
  width: 100%;
  height: 2px;
  background-color: var(--text-light);
  border-radius: 2px;
  transition: var(--transition);
}

/* --- HERO SECTION --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  padding: 180px 0 120px 0;
  background: linear-gradient(135deg, rgba(10, 37, 64, 0.7) 0%, rgba(5, 19, 41, 0.85) 100%);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, transparent 20%, rgba(10, 37, 64, 0.6) 100%);
  z-index: -1;
}

.hero-content {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}

.hero-content h1 {
  font-family: var(--font-serif);
  font-size: 4.25rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.hero-content h1 span {
  background: linear-gradient(120deg, var(--accent) 0%, #FFF5E6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  font-size: 1.35rem;
  margin-bottom: 3.5rem;
  color: rgba(255, 255, 255, 0.95);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Search Widget Overlay */
.search-widget {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-xl);
  padding: 1.5rem 2.25rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 1.5rem;
  align-items: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  margin-top: 2rem;
}

.search-field {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.search-field label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.search-field label svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.search-input-wrapper {
  position: relative;
}

.search-field input, .search-field select {
  width: 100%;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  padding: 0.8rem 1rem;
  color: var(--text-light);
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
}

.search-field select option {
  color: var(--text-dark);
  background-color: var(--bg-white);
}

.search-field input:focus, .search-field select:focus {
  background: rgba(255, 255, 255, 0.35);
  border-color: var(--accent);
}

.search-field input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.search-btn {
  height: 52px;
  padding: 0 2rem;
  background-color: var(--accent);
  color: var(--text-light);
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-accent);
  transition: var(--transition);
  margin-top: 1.7rem;
}

.search-btn:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
}

/* --- TRUST & VALUE PROPOSITION --- */
.trust-section {
  padding: 5rem 0;
  background-color: var(--bg-white);
  position: relative;
  z-index: 10;
  box-shadow: var(--shadow-md);
  margin-top: -30px;
  border-radius: var(--radius-lg);
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid rgba(10, 37, 64, 0.05);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}

.trust-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1rem;
  transition: var(--transition);
}

.trust-card:hover {
  transform: translateY(-5px);
}

.trust-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(0, 180, 216, 0.08);
  color: var(--secondary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: var(--transition);
}

.trust-card:hover .trust-icon {
  background: var(--secondary);
  color: var(--text-light);
  transform: rotateY(180deg);
}

.trust-icon svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.trust-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.trust-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* --- FEATURED TOURS & TICKETS --- */
.tours-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}

.tour-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(10, 37, 64, 0.05);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.tour-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 180, 216, 0.2);
}

.tour-img-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.tour-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.tour-card:hover .tour-img-wrapper img {
  transform: scale(1.08);
}

.tour-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background-color: var(--accent);
  color: var(--text-light);
  padding: 0.4rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  box-shadow: 0 4px 10px rgba(255, 122, 0, 0.3);
}

.tour-card-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.tour-rating {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.tour-rating .stars {
  color: var(--gold);
}

.tour-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  min-height: 50px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
}

.tour-price-box {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
}

.tour-price-box .price-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 0.15rem;
}

.tour-price-box .price-value {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--primary);
}

.tour-price-box .price-value span {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
}

.tour-btn {
  margin-top: auto;
  width: 100%;
  padding: 0.9rem;
  font-weight: 600;
  border-radius: 50px;
  border: 1px solid var(--secondary);
  color: var(--secondary-dark);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: var(--transition);
  cursor: pointer;
}

.tour-card:hover .tour-btn {
  background-color: var(--secondary);
  color: var(--text-light);
  border-color: var(--secondary);
  box-shadow: 0 8px 20px rgba(0, 180, 216, 0.2);
}

/* --- SOCIAL PROOF (TESTIMONIALS SLIDER) --- */
.testimonials-section {
  position: relative;
  overflow: hidden;
}

.trust-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  margin-bottom: 4rem;
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--bg-white);
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(10, 37, 64, 0.04);
}

.trust-badge-item img {
  height: 28px;
}

.trust-badge-item span {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary);
}

/* Testimonials Carousel Wrapper */
.carousel-outer {
  max-width: 850px;
  margin: 0 auto;
  position: relative;
  padding: 0 3rem;
}

.carousel-container {
  overflow: hidden;
  position: relative;
}

.carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.testimonial-slide {
  flex: 0 0 100%;
  width: 100%;
  box-sizing: border-box;
  padding: 1rem;
}

.testimonial-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(10, 37, 64, 0.03);
  position: relative;
}

.testimonial-card::before {
  content: '“';
  position: absolute;
  top: 15px;
  left: 35px;
  font-family: var(--font-serif);
  font-size: 7.5rem;
  color: rgba(0, 180, 216, 0.08);
  line-height: 1;
}

.testimonial-rating {
  color: var(--gold);
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
}

.testimonial-text {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-dark);
  font-weight: 400;
  margin-bottom: 2rem;
  position: relative;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--secondary);
}

.author-info h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.15rem;
}

.author-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.author-flag {
  width: 20px;
  height: 14px;
  object-fit: cover;
  border-radius: 2px;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

/* Carousel controls */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--bg-white);
  border: 1px solid rgba(10, 37, 64, 0.08);
  box-shadow: var(--shadow-md);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10;
}

.carousel-btn:hover {
  background: var(--primary);
  color: var(--text-light);
  border-color: var(--primary);
}

.carousel-btn.prev {
  left: 0;
}

.carousel-btn.next {
  right: 0;
}

.carousel-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #D6DEE6;
  cursor: pointer;
  transition: var(--transition);
}

.carousel-dot.active {
  background-color: var(--secondary);
  width: 28px;
  border-radius: 50px;
}

/* --- TRAVEL TIPS & INSIDER GUIDE --- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.blog-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(10, 37, 64, 0.04);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 180, 216, 0.15);
}

.blog-img-wrapper {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.blog-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.blog-card:hover .blog-img-wrapper img {
  transform: scale(1.06);
}

.blog-body {
  padding: 1.75rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta-date {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
  letter-spacing: 0.8px;
}

.blog-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.blog-title a:hover, .blog-title:hover {
  color: var(--secondary-dark);
}

.blog-excerpt {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-link {
  margin-top: auto;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.blog-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  transition: var(--transition);
}

.blog-card:hover .blog-link {
  color: var(--secondary-dark);
}

.blog-card:hover .blog-link svg {
  transform: translateX(4px);
}

/* --- FINAL CALL TO ACTION (CTA) & CONTACT --- */
.cta-section {
  position: relative;
  overflow: hidden;
  padding: 7rem 0;
  background: linear-gradient(135deg, var(--primary) 0%, #03142B 100%);
  color: var(--text-light);
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1920&q=80') center center/cover;
  opacity: 0.15;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.cta-container {
  position: relative;
  z-index: 1;
  max-width: 850px;
  margin: 0 auto;
}

.cta-badge {
  display: inline-block;
  background-color: rgba(255, 122, 0, 0.2);
  color: var(--accent);
  border: 1px solid rgba(255, 122, 0, 0.3);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 2rem;
}

.cta-section h2 {
  font-family: var(--font-serif);
  font-size: 3.25rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.cta-section p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 3rem;
  line-height: 1.6;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.cta-btn-whatsapp {
  padding: 1.25rem 3rem;
  font-size: 1.15rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
  background-color: #25D366;
  color: white;
  font-weight: 700;
}

.cta-btn-whatsapp:hover {
  background-color: #20BA5A;
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(37, 211, 102, 0.5);
}

.cta-btn-whatsapp svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.office-info {
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
}

.office-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: var(--radius-md);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  text-align: left;
  max-width: 650px;
  margin: 0 auto;
}

.office-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(255, 122, 0, 0.15);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.office-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.office-details h4 {
  color: var(--text-light);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.office-details p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.office-meta {
  display: flex;
  gap: 1.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.office-meta span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.office-meta svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

/* --- DYNAMIC PAGES & WP COMPATIBILITY --- */
.wp-page-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--bg-dark) 100%);
  color: var(--text-light);
  padding: 140px 0 60px 0;
  text-align: center;
  position: relative;
}

.wp-content-area {
  padding: 5rem 0;
  min-height: 60vh;
}

.wp-post-content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-dark);
}

.wp-post-content h2, .wp-post-content h3, .wp-post-content h4 {
  margin: 2.5rem 0 1rem 0;
}

.wp-post-content p {
  margin-bottom: 1.5rem;
}

.wp-post-content img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  margin: 1.5rem 0;
}

/* WooCommerce styling overrides */
.woocommerce .woocommerce-breadcrumb {
  margin-bottom: 2rem;
  font-size: 0.9rem;
}

.woocommerce span.onsale {
  background-color: var(--accent) !important;
  color: var(--text-light) !important;
}

.woocommerce ul.products li.product .button {
  background-color: var(--secondary) !important;
  color: var(--text-light) !important;
  border-radius: 50px !important;
  padding: 0.8rem 1.5rem !important;
  font-weight: 600 !important;
  transition: var(--transition) !important;
}

.woocommerce ul.products li.product .button:hover {
  background-color: var(--secondary-dark) !important;
  transform: translateY(-2px) !important;
}

.woocommerce div.product p.price, .woocommerce div.product span.price {
  color: var(--accent) !important;
  font-weight: 800 !important;
}

.woocommerce #respond input#submit.alt, .woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt {
  background-color: var(--accent) !important;
  border-radius: 50px !important;
  padding: 1rem 2rem !important;
  font-weight: 700 !important;
}

.woocommerce #respond input#submit.alt:hover, .woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover, .woocommerce input.button.alt:hover {
  background-color: var(--accent-hover) !important;
}

/* WordPress standard classes for Gutenberg alignments */
.aligncenter {
  display: block;
  margin: 1.5rem auto;
  text-align: center;
}

.alignleft {
  float: left;
  margin: 0.5rem 1.5rem 1.5rem 0;
}

.alignright {
  float: right;
  margin: 0.5rem 0 1.5rem 1.5rem;
}

.wp-caption {
  background: var(--bg-light);
  border: 1px solid rgba(10, 37, 64, 0.05);
  max-width: 96%;
  padding: 5px 3px 10px;
  text-align: center;
}

.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 98.5%;
  padding: 0;
  width: auto;
}

.wp-caption p.wp-caption-text {
  font-size: 0.85rem;
  margin: 5px 0 0 0;
  color: var(--text-muted);
}

/* --- RESPONSIVE DESIGN --- */

@media (max-width: 1100px) {
  .search-widget {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }
  .search-btn {
    grid-column: span 2;
    margin-top: 0.5rem;
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  .tours-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  :root {
    --section-padding: 4.5rem 0;
  }
  
  .navbar {
    padding: 1rem 0;
    background-color: rgba(10, 37, 64, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  
  .mobile-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: var(--primary);
    flex-direction: column;
    padding: 3rem 2rem;
    gap: 2rem;
    transition: left 0.4s ease;
    align-items: flex-start;
    z-index: 999;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-link {
    font-size: 1.25rem;
    width: 100%;
  }
  
  .nav-actions {
    display: none;
  }

  .nav-btn-mobile {
    display: block;
    margin-top: 1rem;
    width: 100%;
  }

  .nav-btn-mobile .btn {
    display: flex;
    width: 100%;
  }

  .hero-content h1 {
    font-size: 3rem;
  }
  
  .hero-content p {
    font-size: 1.15rem;
  }
  
  .section-header h2 {
    font-size: 2.25rem;
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .carousel-outer {
    padding: 0 1rem;
  }

  .carousel-btn {
    display: none;
  }

  .testimonial-card {
    padding: 2rem;
  }
}

@media (max-width: 600px) {
  .hero-content h1 {
    font-size: 2.25rem;
  }
  
  .search-widget {
    grid-template-columns: 1fr;
    padding: 1.25rem;
  }
  
  .search-btn {
    grid-column: span 1;
  }
  
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .tours-grid {
    grid-template-columns: 1fr;
  }
  
  .trust-badges {
    flex-direction: column;
    gap: 1.25rem;
    align-items: center;
  }
  
  .cta-section h2 {
    font-size: 2.25rem;
  }

  .cta-section p {
    font-size: 1.1rem;
  }

  .office-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .office-icon {
    margin: 0 auto;
  }

  .office-meta {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
  
  .floating-chats {
    bottom: 20px;
    right: 20px;
  }
  
  .floating-btn {
    width: 50px;
    height: 50px;
  }
  
  .floating-btn svg {
    width: 24px;
    height: 24px;
  }
}

/* --- ANIMATIONS --- */
@keyframes pulse-whatsapp {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}
