/* 
  Solterra Global Travel CSS Framework
  Custom variables, typography, glassmorphism, responsive grid, dialog styling.
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Montserrat:wght@400;500;600;700;800&display=swap');

:root {
  /* Brand Color Palette */
  --primary-color: #E94D40;       /* Wendy Wu Cinnabar Red */
  --primary-hover: #D03D31;
  --secondary-color: #112233;     /* Deep Navy Slate */
  --accent-gold: #D4AF37;         /* Antique Gold for luxury items */
  --accent-gold-hover: #C5A028;
  
  /* Neutral Palette */
  --bg-main: #FAFAFA;
  --bg-card: #FFFFFF;
  --bg-dark: #0B151F;
  --text-dark: #1E293B;           /* Slate 800 */
  --text-muted: #64748B;          /* Slate 500 */
  --text-light: #F8FAFC;          /* Slate 50 */
  --border-light: #E2E8F0;        /* Slate 200 */
  
  /* Font Stacks */
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Design Tokens */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.15), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Container width */
  --max-width: 1280px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--bg-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--secondary-color);
  line-height: 1.25;
}

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

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Grid & Layout Utilities */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 50px auto;
}

.section-header h2 {
  font-size: 2.25rem;
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
}

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

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition-smooth);
}

header.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

header.scrolled .nav-logo {
  color: var(--secondary-color);
}

header.scrolled .nav-logo span {
  color: var(--primary-color);
}

header.scrolled .nav-links a {
  color: var(--text-dark);
}

header.scrolled .nav-links a:hover,
header.scrolled .nav-links a.active {
  color: var(--primary-color);
}

header.scrolled .btn-nav-enquire {
  background-color: var(--primary-color);
  color: white;
}

header.scrolled .btn-nav-enquire:hover {
  background-color: var(--primary-hover);
}

header.scrolled .menu-toggle svg {
  stroke: var(--secondary-color);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  transition: var(--transition-smooth);
}

header.scrolled .nav-container {
  height: 70px;
}

.nav-logo-link {
  display: flex;
  align-items: center;
}

.header-logo-container {
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.95);
  padding: 6px 14px;
  border-radius: 30px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

header.scrolled .header-logo-container {
  background-color: transparent;
  box-shadow: none;
  padding: 0;
}

.header-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
  transition: var(--transition-smooth);
}

header.scrolled .header-logo {
  height: 40px;
}

.footer-logo {
  height: 56px;
  width: auto;
  object-fit: contain;
  margin-bottom: 16px;
  border-radius: 6px;
  background-color: rgba(255, 255, 255, 0.95);
  padding: 4px 10px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition-smooth);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.btn-nav-enquire {
  background-color: transparent;
  color: var(--text-light);
  border: 2px solid var(--primary-color);
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.btn-nav-enquire:hover {
  background-color: var(--primary-color);
  color: white;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle svg {
  stroke: var(--text-light);
  transition: var(--transition-smooth);
}

/* Mobile Nav Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100vh;
  background-color: var(--bg-card);
  z-index: 1001;
  box-shadow: var(--shadow-xl);
  display: flex;
  flex-direction: column;
  padding: 32px 24px;
  gap: 40px;
  transition: var(--transition-smooth);
}

.mobile-nav-drawer.open {
  right: 0;
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-drawer-header .btn-close {
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 24px;
  list-style: none;
}

.mobile-nav-links a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--text-dark);
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
  color: var(--primary-color);
}

.mobile-nav-drawer .btn-nav-enquire {
  border-color: var(--primary-color);
  color: var(--primary-color);
  text-align: center;
  margin-top: auto;
}

.mobile-nav-drawer .btn-nav-enquire:hover {
  background-color: var(--primary-color);
  color: white;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  backdrop-filter: blur(4px);
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Button Classes */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(233, 77, 64, 0.3);
}

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

.btn-secondary:hover {
  background-color: #1a2f44;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(17, 34, 51, 0.2);
}

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

.btn-outline:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  background-color: rgba(233, 77, 64, 0.02);
}

/* Hero Section */
.hero {
  position: relative;
  height: 90vh;
  min-height: 650px;
  background-image: linear-gradient(rgba(11, 21, 31, 0.5), rgba(11, 21, 31, 0.65)), url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  color: var(--text-light);
  padding-top: 80px; /* Offset for fixed header */
}

.hero-content {
  max-width: 750px;
  margin-bottom: 40px;
}

.hero-content h1 {
  font-size: 3.5rem;
  color: white;
  margin-bottom: 20px;
  font-weight: 800;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
}

/* Glassmorphic Search Panel */
.search-panel {
  width: 100%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-xl);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: end;
}

.search-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.search-field label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: white;
}

.search-field input,
.search-field select {
  height: 48px;
  padding: 0 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: white;
  color: var(--text-dark);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.search-field input:focus,
.search-field select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(233, 77, 64, 0.2);
}

.btn-search {
  height: 48px;
  font-size: 1rem;
}

/* Highlights / USPs Grid */
.usps {
  background-color: white;
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--border-light);
}

.usps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.usp-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 0;
}

.usp-icon {
  background-color: rgba(233, 77, 64, 0.1);
  color: var(--primary-color);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.usp-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 2px;
}

.usp-info h3 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.usp-info p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Destination Gallery Cards */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.destination-card {
  position: relative;
  height: 380px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  cursor: pointer;
}

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

.destination-card:hover .destination-img {
  transform: scale(1.1);
}

.destination-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(11, 21, 31, 0) 50%, rgba(11, 21, 31, 0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  transition: var(--transition-smooth);
}

.destination-card:hover .destination-overlay {
  background: linear-gradient(to bottom, rgba(11, 21, 31, 0.1) 30%, rgba(11, 21, 31, 0.9) 100%);
}

.destination-card h3 {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 4px;
}

.destination-card p {
  color: var(--accent-gold);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Tour Cards & Grid */
.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.tour-card {
  background-color: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.tour-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.tour-image-container {
  position: relative;
  height: 220px;
  overflow: hidden;
}

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

.tour-card:hover .tour-image {
  transform: scale(1.05);
}

.tour-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background-color: var(--secondary-color);
  color: var(--text-light);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tour-badge.luxury-cruise {
  background-color: var(--accent-gold);
  color: var(--secondary-color);
}

.tour-badge.tailor-made {
  background-color: #3b82f6; /* Blue */
}

.tour-price-badge {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background-color: white;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--primary-color);
  box-shadow: var(--shadow-md);
}

.tour-details-wrapper {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.tour-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.tour-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.tour-meta svg {
  width: 16px;
  height: 16px;
}

.tour-card h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  line-height: 1.3;
}

.tour-card .subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.tour-card p.description {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex-grow: 1;
}

.tour-actions {
  display: flex;
  gap: 12px;
}

.tour-actions button,
.tour-actions a {
  flex: 1;
}

/* Tours Page Layout */
.tours-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  margin-top: 40px;
}

/* Sidebar Filters */
.filters-sidebar {
  background-color: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 24px;
  height: fit-content;
  position: sticky;
  top: 100px;
}

.filter-group {
  margin-bottom: 30px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-light);
}

.filter-group:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.filter-group h3 {
  font-size: 1rem;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-bottom: 12px;
  cursor: pointer;
}

.checkbox-label input {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 1px solid var(--text-muted);
  cursor: pointer;
  accent-color: var(--primary-color);
}

.filter-group select {
  width: 100%;
  height: 40px;
  padding: 0 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  background-color: var(--bg-main);
}

/* Dynamic Listing Header */
.listing-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.results-count {
  font-weight: 600;
  color: var(--text-muted);
}

.sort-selector {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
}

.sort-selector select {
  height: 36px;
  padding: 0 8px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  background-color: white;
}

/* Itinerary Details Modal / Dialog */
dialog.tour-modal {
  border: none;
  border-radius: var(--radius-lg);
  width: 90%;
  max-width: 900px;
  max-height: 85vh;
  margin: auto;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

dialog.tour-modal::backdrop {
  background-color: rgba(11, 21, 31, 0.6);
  backdrop-filter: blur(8px);
}

.modal-content {
  display: flex;
  flex-direction: column;
  height: 85vh;
  max-height: 85vh;
}

.modal-header {
  position: relative;
  height: 250px;
  color: white;
  display: flex;
  align-items: flex-end;
  padding: 32px;
  background-size: cover;
  background-position: center;
}

.modal-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.modal-header-text {
  position: relative;
  z-index: 2;
}

.modal-header-text .modal-badge {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.modal-header-text h2 {
  color: white;
  font-size: 2rem;
  margin-bottom: 4px;
}

.modal-header-text p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
}

.modal-close-btn {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 10;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.modal-close-btn:hover {
  background: var(--primary-color);
  transform: scale(1.1);
}

.modal-body {
  padding: 32px;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 32px;
  flex-grow: 1;
}

.modal-tabs {
  display: flex;
  border-bottom: 2px solid var(--border-light);
  margin-bottom: 24px;
}

.tab-btn {
  background: none;
  border: none;
  padding: 12px 24px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-muted);
  cursor: pointer;
  position: relative;
  transition: var(--transition-fast);
}

.tab-btn.active {
  color: var(--primary-color);
}

.tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
}

/* Day-by-Day Itinerary List */
.itinerary-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.itinerary-day {
  position: relative;
  padding-left: 36px;
}

.itinerary-day::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 8px;
  bottom: -28px;
  width: 2px;
  background-color: var(--border-light);
}

.itinerary-day:last-child::before {
  display: none;
}

.itinerary-day-bullet {
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: white;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid white;
  box-shadow: 0 0 0 1px var(--primary-color);
}

.itinerary-day h4 {
  font-size: 1.05rem;
  margin-bottom: 6px;
  color: var(--secondary-color);
}

.itinerary-day p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Modal Sidebar Form (Enquire Now) */
.modal-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-card {
  background-color: var(--bg-main);
  border-radius: var(--radius-md);
  padding: 20px;
}

.info-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 8px;
}

.info-card ul {
  list-style: none;
}

.info-card li {
  font-size: 0.9rem;
  color: var(--text-dark);
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.info-card li::before {
  content: '✓';
  color: #22c55e; /* Green checkmark */
  font-weight: bold;
}

.enquiry-box {
  background-color: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}

.enquiry-box h3 {
  font-size: 1.15rem;
  margin-bottom: 16px;
  text-align: center;
}

.form-group {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  background-color: var(--bg-main);
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-color);
  background-color: white;
}

.btn-submit {
  width: 100%;
  height: 44px;
  font-size: 0.95rem;
}

/* Custom Success Animation */
.success-message {
  text-align: center;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.success-icon {
  width: 64px;
  height: 64px;
  background-color: #d1fae5;
  color: #10b981;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  animation: scaleUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes scaleUp {
  0% { transform: scale(0); }
  100% { transform: scale(1); }
}

/* Contact & Planner Form Page */
.contact-container {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 60px;
  margin-top: 40px;
}

.contact-details h2 {
  font-size: 2.25rem;
  margin-bottom: 16px;
}

.contact-details p {
  color: var(--text-muted);
  margin-bottom: 32px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-method-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-method-icon {
  background-color: rgba(233, 77, 64, 0.1);
  color: var(--primary-color);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-method-info h3 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.contact-method-info p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.planner-card {
  background-color: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.planner-card h2 {
  font-size: 1.75rem;
  margin-bottom: 24px;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* Testimonial Section */
.testimonials {
  background-color: var(--secondary-color);
  color: white;
}

.testimonials .section-header h2 {
  color: white;
}

.testimonials .section-header h2::after {
  background-color: var(--accent-gold);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: var(--transition-smooth);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.08);
}

.stars {
  color: var(--accent-gold);
  display: flex;
  gap: 4px;
}

.testimonial-text {
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  flex-grow: 1;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 16px;
}

.user-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background-color: #2c3e50;
}

.user-info h4 {
  color: white;
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.user-info p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Footer styling */
footer {
  background-color: #080f16;
  color: #8fa0b5;
  padding: 80px 0 30px 0;
  border-top: 1px solid #142230;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand h2 {
  color: white;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #142230;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: var(--transition-fast);
}

.footer-socials a:hover {
  background-color: var(--primary-color);
}

.footer-links h3 {
  color: white;
  font-size: 1.05rem;
  margin-bottom: 20px;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: white;
  padding-left: 4px;
}

.footer-newsletter h3 {
  color: white;
  font-size: 1.05rem;
  margin-bottom: 12px;
}

.footer-newsletter p {
  font-size: 0.85rem;
  margin-bottom: 16px;
  line-height: 1.4;
}

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-form input {
  flex-grow: 1;
  height: 40px;
  border-radius: var(--radius-sm);
  border: 1px solid #142230;
  background-color: #142230;
  color: white;
  padding: 0 12px;
  font-size: 0.85rem;
}

.newsletter-form button {
  height: 40px;
  padding: 0 16px;
}

.footer-bottom {
  border-top: 1px solid #142230;
  padding-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

/* Animations and Responsive Breakpoints */
@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 3rem;
  }
  .search-panel {
    grid-template-columns: repeat(2, 1fr);
  }
  .tours-layout {
    grid-template-columns: 1fr;
  }
  .filters-sidebar {
    position: static;
    margin-bottom: 30px;
    width: 100%;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  .nav-links, .btn-nav-enquire {
    display: none;
  }
  .hero-content h1 {
    font-size: 2.5rem;
  }
  .usps-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .destinations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .search-panel {
    grid-template-columns: 1fr;
  }
  .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .form-grid-2 {
    grid-template-columns: 1fr;
  }
  .modal-body {
    grid-template-columns: 1fr;
    padding: 20px;
  }
  dialog.tour-modal {
    max-height: 95vh;
  }
  .modal-content {
    height: 95vh;
    max-height: 95vh;
  }
}

@media (max-width: 480px) {
  .destinations-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

/* Brand Prominence Enhancements */
.brand-pre-title {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--accent-gold);
  background: rgba(11, 21, 31, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 6px 18px;
  border-radius: 50px;
  border: 1px solid rgba(212, 175, 55, 0.4);
  margin-bottom: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.brand-highlight-glow {
  color: var(--accent-gold);
  font-weight: 700;
  background: transparent;
  border-bottom: 1.5px solid rgba(212, 175, 55, 0.6);
  padding-bottom: 2px;
  box-shadow: none;
  display: inline;
}

