/* Modern Premium Design System for Devansh Travels - Global Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
  /* Color Palette - Light Mode */
  --primary-rgb: 15, 23, 42;      /* Slate 900 */
  --primary: rgb(var(--primary-rgb));
  --primary-light: #1e293b;        /* Slate 800 */
  --accent-rgb: 245, 158, 11;     /* Amber 500 */
  --accent: rgb(var(--accent-rgb));
  --accent-hover: #d97706;         /* Amber 600 */
  --accent-light: #fef3c7;        /* Amber 100 */
  --text-main: #0f172a;           /* Dark Slate */
  --text-muted: #64748b;          /* Cool Gray */
  --bg-light: #f8fafc;            /* Slate 50 */
  --bg-white: #ffffff;
  --success: #10b981;             /* Emerald 500 */
  --success-light: #ecfdf5;
  --border-color: #e2e8f0;
  --card-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
  
  /* Header styling in Light Mode */
  --header-bg-scrolled: rgba(255, 255, 255, 0.9);
  --header-text: #0f172a;
  --header-text-hover: var(--accent-hover);
  --header-border: rgba(15, 23, 42, 0.08);

  /* Fonts */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  
  /* Styling Details */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 20px 40px rgba(15, 23, 42, 0.08);
  --shadow-accent: 0 10px 25px rgba(245, 158, 11, 0.25);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

body.dark-mode {
  /* Color Palette - Dark Mode */
  --primary-rgb: 241, 245, 249;   /* Slate 100 */
  --primary: rgb(var(--primary-rgb));
  --primary-light: #cbd5e1;        /* Slate 300 */
  --text-main: #f1f5f9;           /* Slate 100 */
  --text-muted: #94a3b8;          /* Slate 400 */
  --bg-light: #090d16;            /* Very dark Slate */
  --bg-white: #0f172a;            /* Slate 900 */
  --border-color: #1e293b;        /* Slate 800 */
  --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);

  /* Header styling in Dark Mode */
  --header-bg-scrolled: rgba(15, 23, 42, 0.9);
  --header-text: #f1f5f9;
  --header-text-hover: var(--accent);
  --header-border: rgba(255, 255, 255, 0.08);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-light);
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 10px;
  border: 2px solid var(--bg-light);
}
::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

body.dark-mode ::-webkit-scrollbar-thumb {
  background: #334155;
  border: 2px solid var(--bg-light);
}
body.dark-mode ::-webkit-scrollbar-thumb:hover {
  background: #475569;
}

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

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

ul {
  list-style: none;
}

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

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 100px 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  gap: 8px;
}
.btn-color{
  background-color:var(--accent-hover);
  color:yellow;
}

.btn-primary {
  background-color: var(--accent);
  color: #0f172a;
  box-shadow: var(--shadow-accent);
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(245, 158, 11, 0.35);
}

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

.btn-secondary:hover {
  background-color: var(--accent);
  color: #0f172a;
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.btn-outline:hover {
  border-color: #ffffff;
  background-color: rgba(255, 255, 255, 0.1);
}

/* Theme Toggle Button */
.theme-toggle-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.theme-toggle-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  color: var(--accent);
  border-color: var(--accent);
  transform: scale(1.05);
}

body:not(.dark-mode) .theme-toggle-btn .sun-icon {
  display: none;
}
body.dark-mode .theme-toggle-btn .moon-icon {
  display: none;
}

/* Animations */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

@keyframes pulse-ring {
  0% { transform: scale(0.95); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 0.3; }
  100% { transform: scale(0.95); opacity: 0.5; }
}

.animate-spin {
  animation: spin 1.5s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Header & Glassmorphic Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
  color: #ffffff;
}

.header .logo-text {
  color: #ffffff;
}

.header .nav-link {
  color: rgba(255, 255, 255, 0.8);
}

.header .menu-toggle {
  color: #ffffff;
}

.header.scrolled {
  background-color: var(--header-bg-scrolled);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--header-border);
  box-shadow: var(--shadow-md);
  color: var(--header-text);
}

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

.header.scrolled .nav-link {
  color: var(--header-text);
  opacity: 0.8;
}

.header.scrolled .nav-link:hover {
  color: var(--header-text-hover);
  opacity: 1;
}

.header.scrolled .menu-toggle {
  color: var(--header-text);
}

.header.scrolled .theme-toggle-btn {
  background: var(--bg-light);
  border-color: var(--border-color);
  color: var(--text-main);
}

.header.scrolled .theme-toggle-btn:hover {
  color: var(--accent);
  border-color: var(--accent);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 24px;
}

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

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-weight: 500;
  font-size: 15px;
  position: relative;
  padding: 8px 0;
}

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

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

.nav-link.active {
  color: var(--accent) !important;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 8px 16px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.nav-phone:hover {
  background-color: var(--accent);
  color: #0f172a;
  border-color: var(--accent);
}

.header.scrolled .nav-phone {
  background-color: var(--accent-light);
  color: var(--accent-hover);
  border-color: var(--accent);
}

.header.scrolled .nav-phone:hover {
  background-color: var(--accent);
  color: #0f172a;
}

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

/* Page Header (Secondary Pages) */
.page-header {
  position: relative;
  padding: 140px 0 60px;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #ffffff;
  text-align: center;
  overflow: hidden;
}

.page-header-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
  z-index: 1;
}

.page-header .container {
  position: relative;
  z-index: 2;
}

.page-header h1 {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 800;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.breadcrumbs {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  color: #cbd5e1;
}

.breadcrumbs a {
  color: var(--accent);
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 60px;
  color: #ffffff;
  overflow: hidden;
  background: radial-gradient(circle at top right, rgba(245, 158, 11, 0.15) 0%, transparent 40%),
              radial-gradient(circle at bottom left, rgba(15, 23, 42, 0.95) 0%, transparent 60%),
              #0f172a;
}

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

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.badge {
  align-self: flex-start;
  background: rgba(245, 158, 11, 0.12);
  color: var(--accent);
  padding: 6px 16px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid rgba(245, 158, 11, 0.2);
}

.hero-title {
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.15;
  font-weight: 800;
}

.hero-title span {
  background: linear-gradient(135deg, var(--accent) 0%, #fbbf24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  color: #cbd5e1;
  font-size: 18px;
  max-width: 520px;
}

.hero-features {
  display: flex;
  gap: 24px;
  margin-top: 12px;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #e2e8f0;
  font-weight: 500;
  font-size: 14px;
}

.hero-feature-item svg {
  color: var(--accent);
  flex-shrink: 0;
}

/* Booking Widget Card */
.booking-widget {
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 30px;
    box-shadow: var(--shadow-lg);
    max-width: 570px;
    justify-self: end;
    width: 100%;
}

.booking-tabs {
  display: flex;
  background-color: rgba(15, 23, 42, 0.5);
  padding: 4px;
  border-radius: var(--radius-md);
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.booking-tab {
  flex: 1;
  background: none;
  border: none;
  color: #94a3b8;
  padding: 10px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
}

.booking-tab.active {
  background-color: var(--accent);
  color: #0f172a;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: #cbd5e1;
  letter-spacing: 0.05em;
}

.input-wrapper {
  position: relative;
}

.input-wrapper svg {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  pointer-events: none;
}

.form-input {
  width: 100%;
  background-color: rgba(15, 23, 42, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 14px 16px 14px 44px;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: var(--transition);
}

.form-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
}

.form-input::placeholder {
  color: #64748b;
}

.form-input option {
  background-color: #1e293b;
  color: #ffffff;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Service Stats Strip */
.stats-strip {
  background: var(--bg-white);
  padding: 40px 0;
  border-bottom: 1px solid var(--border-color);
  position: relative;
  z-index: 10;
  box-shadow: var(--shadow-sm);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  transition: var(--transition);
}

.stat-icon {
  background-color: var(--accent-light);
  color: var(--accent-hover);
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-info h3 {
  font-size: 18px;
  color: var(--text-main);
  font-weight: 700;
  line-height: 1.3;
}

.stat-info p {
  font-size: 13px;
  color: var(--text-muted);
}

/* Section Common Styles */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}

.section-subtitle {
  color: var(--accent-hover);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  display: block;
}

body.dark-mode .section-subtitle {
  color: var(--accent);
}

.section-title {
  font-size: clamp(28px, 4vw, 40px);
  color: var(--text-main);
  font-weight: 800;
}

.section-header p {
  color: var(--text-muted);
  margin-top: 16px;
  font-size: 16px;
}

/* Fleet Showcase */
.fleet-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.fleet-tab {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 12px 24px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text-muted);
  box-shadow: var(--shadow-sm);
}

.fleet-tab:hover, .fleet-tab.active {
  background-color: var(--accent);
  color: #0f172a;
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}

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

.fleet-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.fleet-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(245, 158, 11, 0.3);
}

.fleet-image-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background-color: var(--bg-light);
}

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

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

.fleet-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: var(--primary);
  color: var(--bg-white);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
  box-shadow: var(--shadow-sm);
}

body.dark-mode .fleet-badge {
  background-color: var(--border-color);
  color: var(--text-main);
}

.fleet-badge.premium {
  background: linear-gradient(135deg, var(--accent) 0%, #fbbf24 100%);
  color: #0f172a;
}

.fleet-info {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.fleet-name {
  font-size: 22px;
  color: var(--text-main);
  margin-bottom: 8px;
}

.fleet-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.5;
}

.fleet-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 16px;
  padding: 16px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 20px;
}

.fleet-spec-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-main);
  font-weight: 550;
}

.fleet-spec-item svg {
  color: var(--accent);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.fleet-price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 24px;
  margin-top: auto;
}

.fleet-price-label {
  font-size: 13px;
  color: var(--text-muted);
}

.fleet-price {
  font-size: 24px;
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--text-main);
}

.fleet-price span {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
}

.fleet-actions {
  display: grid;
  grid-template-columns: 1fr;
}

/* Pricing Estimator Section */
.estimator-section {
  background: radial-gradient(circle at bottom right, rgba(245, 158, 11, 0.05) 0%, transparent 40%),
              var(--bg-white);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.estimator-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}

.estimator-card {
  background: var(--bg-light);
  border-radius: var(--radius-xl);
  padding: 40px;
  border: 1px solid var(--border-color);
  box-shadow: var(--card-shadow);
}

.estimator-title {
  font-size: 24px;
  margin-bottom: 24px;
  color: var(--text-main);
}

.estimator-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.estimator-form select.form-input {
  color: var(--text-main);
  background-color: var(--bg-white);
  border-color: var(--border-color);
}

.range-slider-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.range-label-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-main);
}

.range-value {
  color: var(--accent-hover);
  font-size: 16px;
  font-weight: 700;
}

body.dark-mode .range-value {
  color: var(--accent);
}

.range-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 10px;
  background: var(--border-color);
  outline: none;
}

.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  border: 3px solid var(--bg-white);
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  transition: var(--transition);
}

.range-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.estimator-summary {
  background: #0f172a;
  border-radius: var(--radius-xl);
  padding: 40px;
  color: #ffffff;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

body.dark-mode .estimator-summary {
  background: #1e293b;
}

.estimate-header {
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 20px;
  margin-bottom: 24px;
}

.estimate-title {
  font-size: 14px;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.estimate-vehicle {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin-top: 4px;
}

.estimate-breakdown {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.breakdown-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #cbd5e1;
}

.breakdown-row.total {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 16px;
  margin-top: 8px;
}

.total-price {
  font-size: 36px;
  font-family: var(--font-heading);
  font-weight: 900;
  color: var(--accent);
}

/* Amenities Grid */
.amenities-section {
  background-color: var(--bg-light);
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.amenity-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.amenity-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(245, 158, 11, 0.2);
}

.amenity-icon {
  background-color: var(--accent-light);
  color: var(--accent-hover);
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

body.dark-mode .amenity-icon {
  background-color: rgba(245, 158, 11, 0.15);
  color: var(--accent);
}

.amenity-card h3 {
  font-size: 18px;
  color: var(--text-main);
}

.amenity-card p {
  font-size: 14px;
  color: var(--text-muted);
}

/* Testimonials Carousel */
.testimonials-section {
  background-color: #0f172a;
  color: #ffffff;
  overflow: hidden;
  position: relative;
}

body.dark-mode .testimonials-section {
  background-color: #1e293b;
}

.testimonials-section .section-title {
  color: #ffffff;
}

.testimonials-section .section-subtitle {
  color: var(--accent);
}

.testimonials-section .section-header p {
  color: #cbd5e1;
}

.testimonial-carousel-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 48px;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-slide {
  min-width: 100%;
  flex-shrink: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  color: var(--accent);
  margin-bottom: 24px;
}

.testimonial-text {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  font-family: var(--font-heading);
  margin-bottom: 32px;
  color: #e2e8f0;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.author-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 3px solid var(--accent);
  margin-bottom: 12px;
  background-color: #334155;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-weight: 700;
  font-size: 20px;
}

.author-name {
  font-weight: 700;
  font-size: 16px;
  color: #ffffff;
}

.author-title {
  font-size: 13px;
  color: #94a3b8;
  margin-top: 2px;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  color: #ffffff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10;
}

.carousel-btn:hover {
  background: var(--accent);
  color: #0f172a;
  border-color: var(--accent);
}

.carousel-btn.prev {
  left: -24px;
}

.carousel-btn.next {
  right: -24px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.carousel-dot.active {
  background: var(--accent);
  width: 24px;
  border-radius: 4px;
}

/* FAQ Section */
.faq-section {
  background-color: var(--bg-white);
}

.faq-container {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  background-color: var(--bg-light);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover, .faq-item.active {
  border-color: rgba(245, 158, 11, 0.4);
  background-color: var(--bg-white);
  box-shadow: var(--card-shadow);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--text-main);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 24px;
}

.faq-answer-inner {
  padding-bottom: 24px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}

.faq-question svg {
  color: var(--text-muted);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
  color: var(--accent);
}

/* Legal Pages & Breadcrumb Page Common */
.legal-content {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--card-shadow);
  margin-bottom: 40px;
}

.legal-content h2 {
  font-size: 24px;
  color: var(--text-main);
  margin-top: 32px;
  margin-bottom: 16px;
  border-left: 4px solid var(--accent);
  padding-left: 12px;
}

.legal-content h2:first-of-type {
  margin-top: 0;
}

.legal-content p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 15px;
}

.legal-content ul {
  margin-bottom: 24px;
  padding-left: 20px;
  list-style-type: disc;
}

.legal-content li {
  color: var(--text-muted);
  margin-bottom: 8px;
  font-size: 15px;
}

/* Contact Page Layout */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 60px;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-method-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--card-shadow);
  display: flex;
  gap: 20px;
}

.contact-method-icon {
  background-color: var(--accent-light);
  color: var(--accent-hover);
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

body.dark-mode .contact-method-icon {
  background-color: rgba(245, 158, 11, 0.15);
  color: var(--accent);
}

.contact-method-details h3 {
  font-size: 18px;
  color: var(--text-main);
  margin-bottom: 6px;
}

.contact-method-details p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.contact-method-details a {
  font-size: 16px;
  font-weight: 700;
  color: var(--accent-hover);
}

body.dark-mode .contact-method-details a {
  color: var(--accent);
}

.contact-form-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--card-shadow);
}

.contact-form-card h2 {
  font-size: 24px;
  color: var(--text-main);
  margin-bottom: 8px;
}

.contact-form-card p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.form-group-standard {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-group-standard label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-main);
}

.form-input-standard {
  width: 100%;
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: var(--transition);
}

.form-input-standard:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
  background-color: var(--bg-white);
}

.form-input-standard::placeholder {
  color: var(--text-muted);
  opacity: 0.6;
}

.map-mockup {
  height: 350px;
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  box-shadow: var(--card-shadow);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-placeholder-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  filter: grayscale(100%);
}

.map-overlay {
  position: relative;
  z-index: 2;
  text-align: center;
  background-color: rgba(15, 23, 42, 0.85);
  padding: 24px 32px;
  border-radius: var(--radius-lg);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 420px;
}

.map-overlay h4 {
  font-size: 18px;
  color: var(--accent);
  margin-bottom: 8px;
}

.map-overlay p {
  font-size: 13px;
  color: #cbd5e1;
}

/* About Us Layout */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.about-img-box {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--bg-white);
}

.about-img-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background-color: var(--accent);
  color: #0f172a;
  padding: 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-accent);
  text-align: center;
  border: 4px solid var(--bg-white);
}

.about-img-badge span {
  font-size: 32px;
  font-weight: 800;
  font-family: var(--font-heading);
  display: block;
  line-height: 1;
}

.about-img-badge p {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

.about-text-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-text-box h2 {
  font-size: 32px;
  color: var(--text-main);
}

.about-text-box p {
  color: var(--text-muted);
  font-size: 16px;
}

.about-features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 12px;
}

.about-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--text-main);
  font-size: 15px;
}

.about-feature-item svg {
  color: var(--accent);
  flex-shrink: 0;
}

.milestones-strip {
  background-color: var(--bg-white);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 60px 0;
  margin-bottom: 80px;
}

.milestones-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.milestone-card h3 {
  font-size: 48px;
  font-family: var(--font-heading);
  font-weight: 900;
  color: var(--accent-hover);
  line-height: 1.1;
  margin-bottom: 8px;
}

body.dark-mode .milestone-card h3 {
  color: var(--accent);
}

.milestone-card p {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Service Details Page Layout */
.service-details-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
}

.service-sidebar {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.sidebar-menu-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: var(--card-shadow);
}

.sidebar-menu-card h3 {
  font-size: 18px;
  color: var(--text-main);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-color);
}

.sidebar-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sidebar-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 14px;
  color: var(--text-muted);
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
}

.sidebar-link:hover, .sidebar-link.active {
  background-color: var(--accent);
  color: #0f172a;
  border-color: var(--accent);
}

.sidebar-link svg {
  transition: transform 0.3s;
}

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

.sidebar-help-card {
  background: linear-gradient(135deg, var(--primary) 0%, #1e293b 100%);
  color: #ffffff;
  border-radius: var(--radius-xl);
  padding: 32px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.sidebar-help-card svg {
  color: var(--accent);
  margin: 0 auto 16px;
}

.sidebar-help-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.sidebar-help-card p {
  font-size: 14px;
  color: #cbd5e1;
  margin-bottom: 24px;
}

.service-main-content h2 {
  font-size: 28px;
  color: var(--text-main);
  margin-top: 32px;
  margin-bottom: 16px;
}

.service-main-content p {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 16px;
}

.service-banner-img {
  border-radius: var(--radius-xl);
  box-shadow: var(--card-shadow);
  margin-bottom: 32px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  width: 100%;
}

/* Service Pricing Tables */
.pricing-table-container {
  overflow-x: auto;
  margin: 32px 0;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  background-color: var(--bg-white);
}

.pricing-table th {
  background-color: var(--bg-light);
  color: var(--text-main);
  font-weight: 700;
  padding: 16px 20px;
  font-size: 14px;
  border-bottom: 1px solid var(--border-color);
}

.pricing-table td {
  padding: 16px 20px;
  font-size: 14px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-color);
}

.pricing-table tr:last-child td {
  border-bottom: none;
}

.pricing-table tr:hover td {
  background-color: var(--bg-light);
}

.pricing-table td strong {
  color: var(--text-main);
}

/* Tour Packages Page */
.tours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

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

.tour-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(245, 158, 11, 0.3);
}

.tour-img-wrapper {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

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

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

.tour-duration {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background-color: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(4px);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
}

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

.tour-title {
  font-size: 20px;
  color: var(--text-main);
  margin-bottom: 12px;
}

.tour-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.5;
}

.tour-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
}

.tour-price-box p {
  font-size: 11px;
  color: var(--text-muted);
}

.tour-price {
  font-size: 18px;
  font-weight: 800;
  color: var(--accent-hover);
}

body.dark-mode .tour-price {
  color: var(--accent);
}

/* Booking Wizard Styling */
.booking-wizard-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--card-shadow);
  max-width: 900px;
  margin: 0 auto;
}

.wizard-steps {
  display: flex;
  justify-content: space-between;
  margin-bottom: 48px;
  position: relative;
}

.wizard-steps::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--border-color);
  z-index: 1;
}

.wizard-step {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
}

.step-num {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: var(--bg-light);
  border: 2px solid var(--border-color);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  transition: var(--transition);
}

.step-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-align: center;
}

.wizard-step.active .step-num {
  background-color: var(--accent);
  border-color: var(--accent);
  color: #0f172a;
}

.wizard-step.active .step-title {
  color: var(--text-main);
}

.wizard-step.completed .step-num {
  background-color: var(--success);
  border-color: var(--success);
  color: #ffffff;
}

.wizard-step.completed .step-title {
  color: var(--success);
}

.wizard-panel {
  display: none;
}

.wizard-panel.active {
  display: block;
}

.wizard-panel h2 {
  font-size: 22px;
  color: var(--text-main);
  margin-bottom: 24px;
  text-align: center;
}

.wizard-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

.wizard-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 32px;
  border-top: 1px solid var(--border-color);
  padding-top: 24px;
}

.booking-confirm-summary {
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 24px;
}

.booking-confirm-summary h3 {
  font-size: 16px;
  color: var(--text-main);
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 8px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 14px;
}

.summary-row span:first-child {
  color: var(--text-muted);
  font-weight: 500;
}

.summary-row span:last-child {
  color: var(--text-main);
  font-weight: 700;
}

/* Blogs Page Layout */
.blogs-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.blog-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(245, 158, 11, 0.3);
}

.blog-img-wrapper {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

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

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

.blog-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-meta {
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.blog-card h3 {
  font-size: 18px;
  color: var(--text-main);
  margin-bottom: 10px;
}

.blog-card p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.blog-readmore {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-hover);
  margin-top: auto;
}

body.dark-mode .blog-readmore {
  color: var(--accent);
}

.blog-readmore svg {
  transition: transform 0.3s;
}

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

/* Individual Blog Page */
.blog-post-content {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--card-shadow);
  margin-bottom: 40px;
}

.blog-post-header {
  margin-bottom: 32px;
}

.blog-post-header h1 {
  font-size: clamp(28px, 4vw, 38px);
  color: var(--text-main);
  margin-top: 12px;
  margin-bottom: 16px;
}

.blog-post-meta {
  display: flex;
  gap: 24px;
  font-size: 14px;
  color: var(--text-muted);
}

.blog-post-image {
  border-radius: var(--radius-xl);
  box-shadow: var(--card-shadow);
  margin-bottom: 32px;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.blog-post-body p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.blog-post-body h2 {
  font-size: 22px;
  color: var(--text-main);
  margin-top: 40px;
  margin-bottom: 16px;
}

.blog-post-body blockquote {
  border-left: 4px solid var(--accent);
  padding-left: 20px;
  margin: 32px 0;
  font-style: italic;
  font-size: 18px;
  color: var(--text-main);
}

/* Footer Section */
.footer {
  background-color: #05070a;
  color: #94a3b8;
  padding: 80px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 24px;
  color: #ffffff;
}

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

.footer-desc {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 24px;
  color: #64748b;
}

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

.social-link {
  background: rgba(255, 255, 255, 0.03);
  color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.social-link:hover {
  background: var(--accent);
  color: #05070a;
  border-color: var(--accent);
  transform: translateY(-3px);
}

.footer-title {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 8px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--accent);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-link {
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-link:hover {
  color: #ffffff;
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  margin-bottom: 16px;
}

.footer-contact-item svg {
  color: var(--accent);
  margin-top: 4px;
  flex-shrink: 0;
}

.footer-contact-info p {
  color: #64748b;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 2px;
}

.footer-contact-info a, .footer-contact-info span {
  color: #ffffff;
  font-weight: 500;
}

.footer-newsletter-form {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.footer-newsletter-form input {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 16px;
  border-radius: var(--radius-md);
  color: #ffffff;
  font-size: 14px;
  flex-grow: 1;
  outline: none;
}

.footer-newsletter-form input:focus {
  border-color: var(--accent);
}

.footer-newsletter-form button {
  background: var(--accent);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #05070a;
  cursor: pointer;
  transition: var(--transition);
}

.footer-newsletter-form button:hover {
  background-color: var(--accent-hover);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #64748b;
}

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

/* Floating Action Buttons for Mobile */
.floating-actions {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.floating-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  cursor: pointer;
  transition: var(--transition);
  color: #ffffff;
  border: none;
}

.floating-btn-phone {
  background-color: var(--accent);
  color: #0f172a;
}

.floating-btn-phone:hover {
  background-color: var(--accent-hover);
  transform: translateY(-3px);
}

.floating-btn-whatsapp {
  background-color: #25d366;
}

.floating-btn-whatsapp:hover {
  background-color: #128c7e;
  transform: translateY(-3px);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-content {
    align-items: center;
  }
  
  .badge {
    align-self: center;
  }
  
  .hero-description {
    margin: 0 auto;
  }
  
  .hero-features {
    justify-content: center;
  }
  
  .booking-widget {
    justify-self: center;
    max-width: 520px;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .fleet-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .estimator-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .estimator-summary {
    min-height: auto;
  }
  
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .service-details-grid {
    grid-template-columns: 1fr;
  }

  .tours-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blogs-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .nav-phone {
    display: none;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .fleet-grid {
    grid-template-columns: 1fr;
  }
  
  .tours-grid {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .amenities-grid {
    grid-template-columns: 1fr;
  }
  
  .milestones-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  
  .section-padding {
    padding: 60px 0;
  }

  .booking-wizard-card {
    padding: 24px;
  }

  .wizard-grid-2 {
    grid-template-columns: 1fr;
  }

  .wizard-steps {
    margin-bottom: 32px;
  }

  .step-title {
    display: none;
  }
}

/* Mobile Nav Menu Drawer Styles */
.nav-menu.mobile-active {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  background-color: var(--bg-white);
  border-bottom: 1px solid var(--border-color);
  padding: 32px 24px;
  gap: 24px;
  z-index: 999;
  box-shadow: var(--shadow-lg);
  max-height: calc(100vh - 80px);
  overflow-y: auto;
}

.nav-menu.mobile-active .nav-link {
  color: var(--text-main);
  font-size: 18px;
  width: 100%;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 12px;
}

.nav-menu.mobile-active .nav-actions {
  width: 100%;
  justify-content: space-between;
  margin-top: 10px;
}

.nav-menu.mobile-active .theme-toggle-btn {
  background: var(--bg-light);
  border-color: var(--border-color);
  color: var(--text-main);
  width: 100%;
  height: 48px;
}

.trip-options{
    display:flex;
    gap:12px;
    margin-top:10px;
}

.trip-option{
    padding:10px 20px;
    border-radius:30px;
    background:#65676a;
    cursor:pointer;
    font-weight:600;
    transition:0.3s;
}

.trip-option.active{
    background:#dece1c;
    color:#000;
}

.trip-option input{
    display:none;
}

   
   