/* ===== MÜKEMMEL CSS - ANTALYA WANDERLUST ===== */

/* CSS Variables */
:root {
  --primary-color: #2a9d8f;
  --secondary-color: #e9c46a;
  --accent-color: #f4a261;
  --dark-color: #264653;
  --light-color: #f8f9fa;
  --text-color: #333;
  --white: #ffffff;
  --black: #000000;
  --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  --gradient-dark: linear-gradient(135deg, var(--dark-color), #3a667a);
  --gradient-light: linear-gradient(135deg, #f8f9fa, #e9ecef);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --border-radius: 12px;
  --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --box-shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.15);
  --glass-effect: rgba(255, 255, 255, 0.1);
  --backdrop-blur: blur(10px);
  --font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-family);
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--light-color);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border: none;
  border-radius: var(--border-radius);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 4px 15px rgba(42, 157, 143, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(42, 157, 143, 0.4);
}

.btn-secondary {
  background: var(--gradient-dark);
  color: white;
  box-shadow: 0 4px 15px rgba(38, 70, 83, 0.3);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(38, 70, 83, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-outline:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

.btn-large {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
  position: relative;
  z-index: 15;
}

.btn-full {
  width: 100%;
}

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: var(--backdrop-blur);
  box-shadow: var(--box-shadow);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.nav-logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

.nav-logo:hover {
  transform: scale(1.05);
}

.nav-logo .logo {
  height: 40px;
  width: auto;
  margin-right: 10px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Language Selector */
.language-selector {
  position: relative;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: transparent;
  border: 2px solid var(--primary-color);
  border-radius: var(--border-radius);
  color: var(--primary-color);
  cursor: pointer;
  transition: var(--transition);
  font-weight: 500;
}

.lang-btn:hover {
  background: var(--primary-color);
  color: white;
}

.lang-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 0.5rem 0;
  min-width: 150px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
  z-index: 1001;
}

.lang-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  color: var(--text-color);
  text-decoration: none;
  transition: var(--transition);
}

.lang-option:hover {
  background: rgba(42, 157, 143, 0.1);
  color: var(--primary-color);
}

.lang-option.active {
  background: var(--primary-color);
  color: white;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  padding: 0.5rem;
  transition: var(--transition);
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--primary-color);
  transition: var(--transition);
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--gradient-dark);
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(44, 62, 80, 0.6) 0%, rgba(52, 73, 94, 0.6) 100%);
  z-index: 2;
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="particles" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23fff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23particles)"/></svg>');
  z-index: 3;
  animation: float 20s ease-in-out infinite;
}

.hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent 30%, rgba(42, 157, 143, 0.1) 50%, transparent 70%);
  z-index: 4;
  animation: gradientShift 15s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 5;
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 0 20px;
}

.hero-logo {
  margin-bottom: 2rem;
  animation: float 3s ease-in-out infinite;
}

.hero-logo-img {
  height: 80px;
  width: auto;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
  animation: glow 2s ease-in-out infinite alternate;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 2rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.hero-badge i {
  color: var(--secondary-color);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #e0f2f1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: 3rem;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 1.5rem 2rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition);
}

.stat-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--secondary-color);
  display: block;
  margin-bottom: 0.5rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}

.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: white;
  opacity: 0.8;
  cursor: pointer;
  transition: var(--transition);
}

.scroll-indicator:hover {
  opacity: 1;
  transform: translateY(-5px);
}

.scroll-indicator span {
  font-size: 0.9rem;
  font-weight: 500;
}

.scroll-indicator i {
  animation: bounce 2s infinite;
}

/* ===== SECTIONS ===== */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 1rem;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.125rem;
  color: #6c757d;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ===== FEATURED TOURS ===== */
.featured-tours {
  padding: 6rem 0;
  background: var(--gradient-light);
}

.featured-tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.featured-tour-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  position: relative;
}

.featured-tour-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow-hover);
}

.featured-tour-card.featured {
  border: 3px solid var(--primary-color);
  box-shadow: 0 15px 35px rgba(42, 157, 143, 0.2);
}

.tour-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gradient-primary);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 2;
}

.tour-image {
  height: 250px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

.tour-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.3) 100%);
  z-index: 1;
}

.tour-overlay {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  z-index: 2;
}

.tour-price {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  color: var(--primary-color);
  padding: 0.8rem 1.2rem;
  border-radius: 25px;
  font-weight: 700;
  font-size: 1.2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.tour-content {
  padding: 2rem;
}

.tour-content h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 1rem;
  text-shadow: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.tour-content p {
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  text-shadow: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.tour-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.tour-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #6c757d;
  padding: 0.5rem;
  background: rgba(42, 157, 143, 0.05);
  border-radius: 8px;
  text-shadow: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.tour-meta i {
  color: var(--primary-color);
  font-size: 0.8rem;
}

.tour-meta .free-child {
  background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
  animation: pulse 2s infinite;
}

.tour-meta .free-child i {
  color: white;
  font-size: 0.7rem;
}

.section-footer {
  text-align: center;
}

/* ===== QUICK ACCESS ===== */
.quick-access {
  padding: 6rem 0;
  background: white;
}

.quick-access-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.access-card {
  background: white;
  padding: 3rem 2rem;
  border-radius: 20px;
  text-align: center;
  text-decoration: none;
  color: var(--text-color);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.access-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  opacity: 0;
  transition: var(--transition);
  z-index: 1;
}

.access-card:hover::before {
  opacity: 0.05;
}

.access-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow-hover);
}

.access-card > * {
  position: relative;
  z-index: 2;
}

.access-card i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.access-card:hover i {
  transform: scale(1.1);
  color: var(--accent-color);
}

.access-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.access-card p {
  color: #6c757d;
  line-height: 1.6;
}

/* ===== WHY CHOOSE US ===== */
.why-choose-us {
  padding: 6rem 0;
  background: var(--gradient-light);
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: var(--transition);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow-hover);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
}

.feature-icon i {
  font-size: 2rem;
  color: white;
}

.feature-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.feature-card p {
  color: #6c757d;
  line-height: 1.6;
}

/* ===== PAGE HEADER ===== */
.page-header {
  background: var(--gradient-dark);
  padding: 8rem 0 4rem;
  position: relative;
  overflow: hidden;
  margin-top: 80px;
  color: white;
  text-align: center;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23fff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
  z-index: 1;
  opacity: 0.5;
}

.page-header .container {
  position: relative;
  z-index: 2;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  opacity: 0.8;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
}

.breadcrumb a:hover {
  color: var(--primary-color);
}

.page-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ffffff 0%, #e0f2f1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.page-subtitle {
  font-size: 1.3rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* ===== TOURS PAGE ===== */
.tours-page {
  padding: 4rem 0;
  background: var(--gradient-light);
  min-height: 100vh;
}

.tours-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 1rem 2rem;
  border: 2px solid var(--primary-color);
  background: transparent;
  color: var(--primary-color);
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 700;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.filter-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.filter-btn:hover::before {
  left: 100%;
}

.filter-btn:hover {
  background: linear-gradient(135deg, var(--primary-color), #2a9d8f);
  color: white;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(42, 157, 143, 0.4);
  border-color: transparent;
}

.filter-btn.active {
  background: linear-gradient(135deg, var(--primary-color), #2a9d8f);
  color: white;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 20px rgba(42, 157, 143, 0.5);
  border-color: transparent;
  animation: filterPulse 2s infinite;
}

@keyframes filterPulse {
  0%, 100% { box-shadow: 0 6px 20px rgba(42, 157, 143, 0.5); }
  50% { box-shadow: 0 8px 30px rgba(42, 157, 143, 0.7); }
}

.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
}

.tour-card-page {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  opacity: 0;
  transform: translateY(30px);
}

.tour-card-page.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.tour-card-page:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow-hover);
}

.tour-card-page.featured {
  border: 3px solid var(--primary-color);
  box-shadow: 0 15px 35px rgba(42, 157, 143, 0.2);
}

.tour-card-page .tour-image {
  height: 250px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

.tour-card-page .tour-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.3) 100%);
  z-index: 1;
}

.tour-card-page .tour-overlay {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  z-index: 2;
}

.tour-card-page .tour-price {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  color: var(--primary-color);
  padding: 0.8rem 1.2rem;
  border-radius: 25px;
  font-weight: 700;
  font-size: 1.2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.tour-card-page .tour-content {
  padding: 2rem;
}

.tour-card-page .tour-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.tour-card-page .tour-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #000000 !important;
  margin: 0;
  flex: 1;
  text-shadow: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Daha spesifik kural - tur isimlerinin okunabilirliği için */
.tour-card-page .tour-content .tour-header .tour-title {
  color: #000000 !important;
  font-weight: 800 !important;
  text-shadow: none !important;
  letter-spacing: 0.3px !important;
}

/* En güçlü kural - tur isimlerinin kesinlikle siyah olması için */
.tour-card-page h3.tour-title {
  color: #000000 !important;
  font-weight: 800 !important;
  text-shadow: none !important;
  -webkit-text-fill-color: #000000 !important;
  -webkit-text-stroke: none !important;
}

/* Tüm olası durumlar için */
.tour-card-page .tour-title,
.tour-card-page h3.tour-title,
.tour-card-page .tour-content .tour-header .tour-title,
.tour-card-page .tour-content h3.tour-title {
  color: #000000 !important;
  font-weight: 800 !important;
  text-shadow: none !important;
  -webkit-text-fill-color: #000000 !important;
}

.tour-card-page .tour-rating {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  background: rgba(42, 157, 143, 0.1);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-color);
}

.tour-card-page .tour-rating i {
  color: #ffd700;
}

.tour-card-page .tour-description {
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  text-shadow: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.tour-card-page .tour-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.tour-card-page .tour-meta .meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #2c3e50 !important;
  padding: 0.5rem;
  background: rgba(42, 157, 143, 0.08);
  border: 1px solid rgba(42, 157, 143, 0.2);
  border-radius: 8px;
  font-weight: 600;
  text-shadow: none;
  box-shadow: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.tour-card-page .tour-meta .meta-item i {
  color: #2a9d8f !important;
  font-size: 0.8rem;
  font-weight: 600;
}

.tour-card-page .tour-meta .free-child {
  background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
  animation: pulse 2s infinite;
}

.tour-card-page .tour-meta .free-child i {
  color: white;
  font-size: 0.7rem;
}

.tour-card-page .tour-includes {
  margin-bottom: 1.5rem;
}

.tour-card-page .tour-includes h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 0.8rem;
}

.tour-card-page .tour-includes .includes-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.5rem;
}

.tour-card-page .tour-includes .includes-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #6c757d;
  text-shadow: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.tour-card-page .tour-includes .includes-list i {
  color: var(--primary-color);
  font-size: 0.8rem;
}

.tour-card-page .tour-actions {
  display: flex;
  gap: 1rem;
}

.tour-card-page .tour-actions .btn {
  flex: 1;
}

/* CTA Section */
.cta-section {
  padding: 6rem 0;
  background: var(--gradient-dark);
  color: white;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.125rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 1rem 1.5rem;
  border-radius: 25px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-feature i {
  color: var(--secondary-color);
}

/* ===== DESTINATIONS PAGE ===== */
.destinations-page {
  padding: 4rem 0;
  background: var(--gradient-light);
  min-height: 100vh;
}

.destinations-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.destinations-grid-page {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
}

.destination-card-page {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  opacity: 0;
  transform: translateY(30px);
}

.destination-card-page.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.destination-card-page:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow-hover);
}

.destination-card-page .destination-image {
  height: 250px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

.destination-card-page .destination-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.3) 100%);
  z-index: 1;
}

.destination-card-page .destination-overlay {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
}

.destination-card-page .destination-rating {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  color: var(--primary-color);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.destination-card-page .destination-rating i {
  color: #ffd700;
}

.destination-card-page .destination-content {
  padding: 2rem;
}

.destination-card-page .destination-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.destination-card-page .destination-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-color);
  margin: 0;
  flex: 1;
}

.destination-card-page .destination-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

.destination-card-page .destination-description {
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.destination-card-page .destination-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.destination-card-page .highlight-tag {
  background: rgba(42, 157, 143, 0.1);
  color: var(--primary-color);
  padding: 0.4rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.destination-card-page .highlight-tag i {
  font-size: 0.7rem;
}

.destination-card-page .destination-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.destination-card-page .destination-meta .meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #6c757d;
  padding: 0.5rem;
  background: rgba(42, 157, 143, 0.05);
  border-radius: 8px;
}

.destination-card-page .destination-meta .meta-item i {
  color: var(--primary-color);
  font-size: 0.8rem;
}

.destination-card-page .destination-actions {
  display: flex;
  gap: 1rem;
}

.destination-card-page .destination-actions .btn {
  flex: 1;
}

/* Why Visit Section */
.why-visit-section {
  padding: 6rem 0;
  background: white;
  position: relative;
}

.why-visit-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%232a9d8f" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23pattern)"/></svg>');
  z-index: 1;
}

.why-visit-section .container {
  position: relative;
  z-index: 2;
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.reason-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  opacity: 0;
  transform: translateY(30px);
}

.reason-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.reason-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow-hover);
}

.reason-card .reason-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: var(--transition);
}

.reason-card:hover .reason-icon {
  transform: scale(1.1);
}

.reason-card .reason-icon i {
  font-size: 2rem;
  color: white;
}

.reason-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.reason-card p {
  color: #6c757d;
  line-height: 1.6;
}

/* ===== HOTELS PAGE ===== */
.hotels-page {
  padding: 4rem 0;
  background: var(--gradient-light);
  min-height: 100vh;
}

.hotels-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.hotels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
}

.hotel-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  opacity: 0;
  transform: translateY(30px);
}

.hotel-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.hotel-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow-hover);
}

.hotel-card .hotel-image {
  height: 200px;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 3rem;
  position: relative;
}

.hotel-card .hotel-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.3) 100%);
  z-index: 1;
}

.hotel-card .hotel-overlay {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
}

.hotel-card .hotel-rating {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  color: var(--primary-color);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.hotel-card .hotel-rating i {
  color: #ffd700;
}

.hotel-card .hotel-content {
  padding: 2rem;
}

.hotel-card .hotel-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.hotel-card .hotel-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-color);
  margin: 0;
  flex: 1;
}

.hotel-card .hotel-stars {
  display: flex;
  gap: 0.2rem;
}

.hotel-card .hotel-stars i {
  color: #ffd700;
  font-size: 0.9rem;
}

.hotel-card .hotel-description {
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.hotel-card .hotel-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.hotel-card .hotel-meta .meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #6c757d;
  padding: 0.5rem;
  background: rgba(42, 157, 143, 0.05);
  border-radius: 8px;
}

.hotel-card .hotel-meta .meta-item i {
  color: var(--primary-color);
  font-size: 0.8rem;
}

.hotel-card .hotel-features {
  margin-bottom: 1.5rem;
}

.hotel-card .hotel-features h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 0.8rem;
}

.hotel-card .hotel-features .features-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.5rem;
}

.hotel-card .hotel-features .features-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #6c757d;
}

.hotel-card .hotel-features .features-list i {
  color: var(--primary-color);
  font-size: 0.8rem;
}

.hotel-card .hotel-actions {
  display: flex;
  gap: 1rem;
}

.hotel-card .hotel-actions .btn {
  flex: 1;
}

/* Services Section */
.services-section {
  padding: 6rem 0;
  background: white;
  position: relative;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%232a9d8f" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23pattern)"/></svg>');
  z-index: 1;
}

.services-section .container {
  position: relative;
  z-index: 2;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  opacity: 0;
  transform: translateY(30px);
}

.service-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow-hover);
}

.service-card .service-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}

.service-card .service-icon i {
  font-size: 2rem;
  color: white;
}

.service-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.service-card p {
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-card .service-features {
  list-style: none;
  padding: 0;
  text-align: left;
}

.service-card .service-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #6c757d;
  margin-bottom: 0.5rem;
}

.service-card .service-features i {
  color: var(--primary-color);
  font-size: 0.8rem;
}

/* ===== CONTACT PAGE (Enhanced Version) ===== */
:root {
  --primary-color: #2a9d8f;
  --gradient-primary: linear-gradient(135deg, #2a9d8f, #38b2ac);
  --gradient-dark: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  --gradient-light: linear-gradient(135deg, #e0f7fa, #f1f8f9);
  --text-color: #2d3436;
  --border-radius: 16px;
  --transition: all 0.3s ease;
  --box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  --box-shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.15);
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.7;
  background: #fafafa;
  color: var(--text-color);
}

/* HERO SECTION */
.contact-page {
  padding: 0;
  background: white;
  min-height: 100vh;
}

.contact-hero {
  background: var(--gradient-dark);
  padding: 8rem 0 5rem;
  position: relative;
  margin-top: 80px;
  color: white;
  text-align: center;
  overflow: hidden;
}

.contact-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="p" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23fff" opacity="0.08"/></pattern></defs><rect width="100" height="100" fill="url(%23p)"/></svg>');
  opacity: 0.4;
  z-index: 1;
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 32, 39, 0.3), rgba(44, 62, 80, 0.3));
  z-index: 2;
}

.contact-hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.contact-title {
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #ffffff !important;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.8) !important;
  -webkit-text-stroke: 2px rgba(0, 0, 0, 0.5);
}

.contact-subtitle {
  font-size: 1.25rem;
  opacity: 1;
  margin: 0 auto 3rem;
  line-height: 1.8;
  color: #ffffff !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8) !important;
  font-weight: 600;
}

/* STATS */
.contact-stats {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.contact-stats .stat-item {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  padding: 2rem 2.5rem;
  border-radius: 20px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  transition: var(--transition);
  cursor: default;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}
.contact-stats .stat-item:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.contact-stats .stat-item i {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 1rem;
}

.contact-stats .stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8) !important;
}

.contact-stats .stat-label {
  font-size: 0.95rem;
  opacity: 1;
  color: #ffffff !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8) !important;
  font-weight: 600;
}

/* MAIN CONTACT SECTION */
.contact-main {
  padding: 6rem 1.5rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-form-section {
  background: #fff;
  padding: 3rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}
.contact-form-section:hover {
  box-shadow: var(--box-shadow-hover);
}

.form-header {
  text-align: center;
  margin-bottom: 2rem;
}
.form-header h3 {
  font-size: 1.8rem;
  font-weight: 700;
}
.form-header p {
  color: #6c757d;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
}
.form-group label {
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 1rem;
  border: 2px solid #e9ecef;
  border-radius: var(--border-radius);
  font-size: 1rem;
  transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(42, 157, 143, 0.15);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* INFO CARDS */
.contact-info-section {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.contact-info-card,
.social-card,
.map-card {
  background: #fff;
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}
.contact-info-card:hover,
.social-card:hover,
.map-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-hover);
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-item {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.contact-icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
  box-shadow: 0 8px 15px rgba(42, 157, 143, 0.35);
}
.contact-details h4 {
  font-weight: 600;
  margin-bottom: 0.3rem;
}
.contact-details p {
  font-size: 0.9rem;
  color: #6c757d;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.social-link {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  transition: var(--transition);
}
.social-link:hover {
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 12px 25px rgba(42, 157, 143, 0.4);
}

/* MAP */
.map-placeholder {
  height: 200px;
  border-radius: var(--border-radius);
  background: var(--gradient-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  color: #6c757d;
}

/* FAQ */
.faq-section {
  padding: 6rem 1.5rem;
  background: var(--gradient-light);
}
.faq-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  overflow: hidden;
}
.faq-item:hover {
  box-shadow: var(--box-shadow-hover);
}
.faq-question {
  padding: 1.3rem 1.5rem;
  background: var(--gradient-primary);
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.faq-question h3 {
  font-size: 1.05rem;
  margin: 0;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.5rem;
}
.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 1.5rem;
}
.faq-answer p {
  margin: 0;
  color: #6c757d;
  line-height: 1.6;
}


/* ===== TOUR DETAIL PAGE ===== */
.tour-detail-page {
  padding: 0;
  background: white;
  min-height: 100vh;
}

.tour-hero {
  background: var(--gradient-dark);
  padding: 8rem 0 4rem;
  position: relative;
  overflow: hidden;
  margin-top: 80px;
  color: white;
}

.tour-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.3;
  z-index: 1;
}

.tour-hero-overlay {
  display: none;
}

.tour-hero-content {
  position: relative;
  z-index: 3;
}

.tour-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #ffffff !important;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.8) !important;
  -webkit-text-stroke: 2px rgba(0, 0, 0, 0.5);
}

.tour-subtitle {
  font-size: 1.3rem;
  opacity: 1;
  margin-bottom: 2rem;
  line-height: 1.6;
  color: #ffffff !important;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.8) !important;
  font-weight: 700;
  -webkit-text-stroke: 1px rgba(0, 0, 0, 0.3);
}

.tour-meta-hero {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.tour-meta-hero .free-child-hero {
  background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
  animation: pulse 2s infinite;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tour-meta-hero .free-child-hero i {
  color: white;
  font-size: 1rem;
  animation: bounce 1s infinite;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  font-weight: 700;
  color: #ffffff !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8) !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.meta-item i {
  color: #ffffff !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

.meta-item.price {
  background: var(--gradient-primary);
  border: none;
  font-weight: 700;
}

.tour-actions-hero {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 10;
}

.tour-details {
  padding: 6rem 0;
  background: var(--gradient-light);
}

.details-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.details-main {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: var(--box-shadow);
}

.details-section {
  margin-bottom: 3rem;
}

.details-section:last-child {
  margin-bottom: 0;
}

.details-section h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 1.5rem;
  position: relative;
}

.details-section h2::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(42, 157, 143, 0.05);
  border-radius: var(--border-radius);
  border-left: 4px solid var(--primary-color);
  transition: var(--transition);
}

.highlight-item:hover {
  background: rgba(42, 157, 143, 0.1);
  transform: translateX(5px);
}

.highlight-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.highlight-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 0.5rem;
}

.highlight-content p {
  color: #6c757d;
  font-size: 0.9rem;
  line-height: 1.5;
}

.includes-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.include-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(42, 157, 143, 0.05);
  border-radius: var(--border-radius);
  border-left: 4px solid var(--primary-color);
  transition: var(--transition);
}

.include-item:hover {
  background: rgba(42, 157, 143, 0.1);
  transform: translateX(5px);
}

.include-item i {
  color: var(--primary-color);
  font-size: 1.2rem;
}

.important-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(231, 111, 81, 0.05);
  border-radius: var(--border-radius);
  border-left: 4px solid #e76f51;
  transition: var(--transition);
}

.info-item:hover {
  background: rgba(231, 111, 81, 0.1);
  transform: translateX(5px);
}

.info-item i {
  color: #e76f51;
  font-size: 1.2rem;
}

.details-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.booking-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: var(--box-shadow);
  position: sticky;
  top: 100px;
}

.booking-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 1.5rem;
}

.price-display {
  text-align: center;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--gradient-primary);
  border-radius: 15px;
  color: white;
}

.price-display .price {
  font-size: 2.5rem;
  font-weight: 800;
  display: block;
  margin-bottom: 0.5rem;
}

.price-display .per-person {
  font-size: 0.9rem;
  opacity: 0.8;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.booking-form .form-group {
  margin-bottom: 0;
}

.booking-form input,
.booking-form select {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e9ecef;
  border-radius: var(--border-radius);
  font-size: 1rem;
  transition: var(--transition);
}

.booking-form input:focus,
.booking-form select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(42, 157, 143, 0.1);
}

.contact-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: var(--box-shadow);
}

.contact-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 1.5rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-info .contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem;
  background: rgba(42, 157, 143, 0.05);
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.contact-info .contact-item:hover {
  background: rgba(42, 157, 143, 0.1);
}

.contact-info .contact-item i {
  color: var(--primary-color);
  font-size: 1rem;
  width: 20px;
  text-align: center;
}

.contact-info .contact-item span {
  color: #6c757d;
  font-size: 0.9rem;
}

.contact-note {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 1rem;
  background: rgba(42, 157, 143, 0.05);
  border-radius: var(--border-radius);
  border-left: 4px solid var(--primary-color);
}

.contact-note i {
  color: var(--primary-color);
  font-size: 1rem;
  margin-top: 0.2rem;
}

.contact-note p {
  color: #6c757d;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

.why-choose-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: var(--box-shadow);
}

.why-choose-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 1.5rem;
}

.why-choose-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: rgba(42, 157, 143, 0.05);
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.feature-item:hover {
  background: rgba(42, 157, 143, 0.1);
}

.feature-item i {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-top: 0.2rem;
}

.feature-content h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 0.3rem;
}

.feature-content p {
  color: #6c757d;
  font-size: 0.9rem;
  line-height: 1.4;
  margin: 0;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--gradient-dark);
  color: white;
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
}

.footer-section ul li a:hover {
  color: var(--primary-color);
}

.footer-logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.footer-logo-img {
  height: 30px;
  width: auto;
  margin-right: 10px;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
}

/* ===== ANIMATIONS ===== */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

@keyframes glow {
  0%, 100% { box-shadow: 0 0 20px rgba(42, 157, 143, 0.3); }
  50% { box-shadow: 0 0 40px rgba(42, 157, 143, 0.6); }
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-30px); }
  60% { transform: translateY(-15px); }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  animation: fadeInUp 0.6s ease-out forwards;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  /* Navigation */
  /* Navigation */
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 2rem;
    transition: left 0.3s ease;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    margin: 1rem 0;
  }

  .nav-menu a {
    font-size: 1.2rem;
    padding: 0.8rem 1.5rem;
  }

  /* Hero Section */
  .hero {
    padding: 2rem 1rem;
    min-height: 70vh;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
    padding: 0 1rem;
  }

  .hero h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
  }

  .hero p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 300px;
    padding: 1rem 2rem;
    font-size: 1.1rem;
  }

  /* Featured Tours Section */
  .featured-tours {
    padding: 3rem 1rem;
  }

  .section-header {
    text-align: center;
    margin-bottom: 2rem;
  }

  .section-header h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .section-header p {
    font-size: 1rem;
    line-height: 1.6;
  }

  .tours-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 100%;
  }

  .tour-card {
    margin: 0 auto;
    max-width: 400px;
  }

  .tour-card .tour-content {
    padding: 1.5rem;
  }

  .tour-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
  }

  .tour-card p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
  }

  .tour-meta {
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
  }

  .tour-meta span {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }

  /* CTA Section */
  .cta {
    padding: 3rem 1rem;
    text-align: center;
  }

  .cta-content {
    max-width: 100%;
    padding: 0 1rem;
  }

  .cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .cta p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
  }

  .cta-features {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
  }

  .cta-feature {
    padding: 1rem;
  }

  .cta-feature i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }

  .cta-feature h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }

  .cta-feature p {
    font-size: 0.9rem;
  }

  /* Footer */
  .footer {
    padding: 2rem 1rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }

  .footer-section p,
  .footer-section li {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    padding-top: 1rem;
  }

  /* Tours Page */
  .tours-hero {
    padding: 2rem 1rem;
    min-height: 50vh;
    text-align: center;
  }

  .tours-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }

  .tours-hero p {
    font-size: 1.1rem;
    line-height: 1.6;
  }

  .tours-filters {
    padding: 2rem 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
  }

  .filter-btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    min-width: auto;
  }

  .tours-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem 1rem;
  }

  .tour-card-page {
    max-width: 100%;
    margin: 0 auto;
  }

  .tour-card-page .tour-content {
    padding: 1.5rem;
  }

  .tour-card-page .tour-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1rem;
  }

  .tour-card-page .tour-title {
    font-size: 1.4rem;
    line-height: 1.3;
  }

  .tour-card-page .tour-rating {
    align-self: flex-start;
  }

  .tour-card-page .tour-description {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
  }

  .tour-card-page .tour-meta {
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
  }

  .tour-card-page .tour-meta .meta-item {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }

  .tour-card-page .tour-includes {
    margin-bottom: 1.5rem;
  }

  .tour-card-page .tour-includes h4 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
  }

  .tour-card-page .includes-list {
    gap: 0.5rem;
  }

  .tour-card-page .includes-list li {
    font-size: 0.9rem;
    padding: 0.3rem 0;
  }

  .tour-card-page .tour-actions {
    flex-direction: column;
    gap: 1rem;
  }

  .tour-card-page .btn {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1rem;
  }

  /* Tour Detail Page */
  .tour-detail {
    padding: 0;
  }

  .tour-hero {
    padding: 2rem 1rem;
    min-height: 60vh;
    text-align: center;
  }

  .tour-hero h1 {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 1rem;
  }

  .tour-hero p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
  }

  .tour-meta-hero {
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 2rem;
  }

  .tour-meta-hero .meta-item {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }

  .tour-actions-hero {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .tour-actions-hero .btn {
    width: 100%;
    max-width: 300px;
    padding: 1rem 2rem;
    font-size: 1rem;
  }

  .tour-content {
    padding: 2rem 1rem;
  }

  .tour-details {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .tour-main {
    order: 2;
  }

  .details-sidebar {
    order: 1;
  }

  .tour-section {
    margin-bottom: 2rem;
  }

  .tour-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .tour-section p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .includes-list {
    gap: 0.5rem;
  }

  .includes-list li {
    font-size: 0.9rem;
    padding: 0.3rem 0;
  }

  .contact-card,
  .why-choose-card {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .contact-card h3,
  .why-choose-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }

  .contact-info {
    gap: 0.8rem;
  }

  .contact-item {
    font-size: 0.9rem;
  }

  .why-choose-list {
    gap: 0.5rem;
  }

  .why-choose-list li {
    font-size: 0.9rem;
    padding: 0.3rem 0;
  }

  /* Contact Page */
  .contact-hero {
    padding: 2rem 1rem;
    min-height: 50vh;
    text-align: center;
  }

  .contact-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }

  .contact-hero p {
    font-size: 1.1rem;
    line-height: 1.6;
  }

  .contact-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem;
  }

  .contact-stats .stat-item {
    padding: 1.5rem 1rem;
  }

  .contact-stats .stat-number {
    font-size: 2rem;
  }

  .contact-stats .stat-label {
    font-size: 0.9rem;
  }

  .contact-content {
    padding: 2rem 1rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-form {
    order: 2;
  }

  .contact-info {
    order: 1;
  }

  .form-group {
    margin-bottom: 1.5rem;
  }

  .form-group label {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
  }

  .form-input,
  .form-textarea {
    padding: 1rem;
    font-size: 1rem;
  }

  .form-textarea {
    min-height: 120px;
  }

  .contact-card {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .contact-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }

  .contact-item {
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
  }

  .contact-item i {
    font-size: 1rem;
    margin-right: 0.5rem;
  }

  .faq-section {
    padding: 2rem 1rem;
  }

  .faq-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
  }

  .faq-list {
    gap: 1rem;
  }

  .faq-item {
    padding: 1.5rem;
  }

  .faq-question {
    font-size: 1rem;
    padding: 1rem 0;
  }

  .faq-answer {
    font-size: 0.9rem;
    line-height: 1.6;
    padding: 0 0 1rem 0;
  }

  /* Admin Panel */
  .admin-container {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    height: auto;
    position: relative;
    transform: none;
    z-index: 1000;
  }

  .sidebar.collapsed {
    width: 100%;
    height: auto;
  }

  .sidebar-header {
    padding: 1rem;
    text-align: center;
  }

  .sidebar-header h2 {
    font-size: 1.2rem;
  }

  .user-info {
    padding: 1rem;
    text-align: center;
  }

  .user-name {
    font-size: 0.9rem;
  }

  .user-role {
    font-size: 0.8rem;
  }

  .sidebar ul {
    padding: 0 1rem;
  }

  .sidebar ul li a {
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
  }

  .sidebar ul li a i {
    font-size: 1rem;
    margin-right: 0.5rem;
  }

  .logout-btn {
    margin: 1rem;
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
  }

  .main-content {
    width: 100%;
    margin-left: 0;
    padding: 1rem;
  }

  .dashboard-header {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }

  .dashboard-title {
    font-size: 1.5rem;
  }

  .dashboard-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
  }

  .stat-card {
    padding: 1.5rem 1rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 0.9rem;
  }

  .dashboard-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .content-section {
    padding: 1.5rem;
  }

  .section-header {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.5rem;
  }

  .section-title {
    font-size: 1.3rem;
  }

  .filters {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }

  .filter-group {
    width: 100%;
  }

  .filter-input {
    width: 100%;
    padding: 0.8rem;
    font-size: 0.9rem;
  }

  .filter-select {
    width: 100%;
    padding: 0.8rem;
    font-size: 0.9rem;
  }

  .table-container {
    overflow-x: auto;
  }

  .data-table {
    min-width: 600px;
  }

  .data-table th,
  .data-table td {
    padding: 0.8rem 0.5rem;
    font-size: 0.8rem;
  }

  .btn {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }

  .btn-small {
    padding: 0.4rem 0.8rem;
    font-size: 0.7rem;
  }

  .modal {
    padding: 1rem;
  }

  .modal-content {
    width: 95%;
    max-width: 500px;
    padding: 1.5rem;
  }

  .modal-header h2 {
    font-size: 1.3rem;
  }

  .form-group {
    margin-bottom: 1rem;
  }

  .form-group label {
    font-size: 0.9rem;
  }

  .form-input {
    padding: 0.8rem;
    font-size: 0.9rem;
  }

  .form-select {
    padding: 0.8rem;
    font-size: 0.9rem;
  }

  .modal-actions {
    flex-direction: column;
    gap: 0.5rem;
  }

  .modal-actions .btn {
    width: 100%;
  }

  /* Login Page */
  .login-container {
    padding: 1rem;
    min-height: 100vh;
  }

  .login-card {
    width: 100%;
    max-width: 400px;
    padding: 2rem 1.5rem;
  }

  .login-header {
    margin-bottom: 2rem;
  }

  .login-logo {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
  }

  .login-title {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
  }

  .login-subtitle {
    font-size: 0.9rem;
  }

  .form-group {
    margin-bottom: 1.5rem;
  }

  .form-group label {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
  }

  .form-input {
    padding: 1rem;
    font-size: 1rem;
  }

  .form-input:focus {
    padding: 1rem;
  }

  .form-icon {
    font-size: 1.2rem;
  }

  .remember-me {
    margin-bottom: 2rem;
  }

  .remember-me label {
    font-size: 0.9rem;
  }

  .login-btn {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
  }

  .login-footer {
    margin-top: 2rem;
    text-align: center;
  }

  .login-footer p {
    font-size: 0.9rem;
  }
}

/* Extra Small Mobile Devices */
@media (max-width: 480px) {
  /* Navigation */
  .navbar {
    padding: 0.5rem 1rem;
  }

  .nav-brand {
    font-size: 1.2rem;
  }

  .hamburger {
    width: 30px;
    height: 30px;
  }

  /* Hero Section */
  .hero {
    padding: 1.5rem 0.5rem;
    min-height: 60vh;
  }

  .hero h1 {
    font-size: 2rem;
    line-height: 1.1;
  }

  .hero p {
    font-size: 1rem;
  }

  .btn {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }

  /* Featured Tours */
  .featured-tours {
    padding: 2rem 0.5rem;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .tour-card {
    max-width: 100%;
  }

  .tour-card .tour-content {
    padding: 1rem;
  }

  .tour-card h3 {
    font-size: 1.2rem;
  }

  .tour-meta span {
    font-size: 0.7rem;
    padding: 0.3rem 0.6rem;
  }

  /* CTA Section */
  .cta {
    padding: 2rem 0.5rem;
  }

  .cta h2 {
    font-size: 1.8rem;
  }

  .cta-feature {
    padding: 0.8rem;
  }

  .cta-feature i {
    font-size: 1.5rem;
  }

  .cta-feature h3 {
    font-size: 1rem;
  }

  /* Tours Page */
  .tours-hero {
    padding: 1.5rem 0.5rem;
  }

  .tours-hero h1 {
    font-size: 2rem;
  }

  .tours-filters {
    padding: 1.5rem 0.5rem;
  }

  .filter-btn {
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
  }

  .tours-grid {
    padding: 1.5rem 0.5rem;
  }

  .tour-card-page .tour-content {
    padding: 1rem;
  }

  .tour-card-page .tour-title {
    font-size: 1.2rem;
  }

  .tour-card-page .tour-meta .meta-item {
    font-size: 0.7rem;
    padding: 0.3rem 0.6rem;
  }

  /* Tour Detail Page */
  .tour-hero {
    padding: 1.5rem 0.5rem;
  }

  .tour-hero h1 {
    font-size: 1.8rem;
  }

  .tour-meta-hero .meta-item {
    font-size: 0.7rem;
    padding: 0.3rem 0.6rem;
  }

  .tour-content {
    padding: 1.5rem 0.5rem;
  }

  .tour-section h2 {
    font-size: 1.3rem;
  }

  /* Contact Page */
  .contact-hero {
    padding: 1.5rem 0.5rem;
  }

  .contact-hero h1 {
    font-size: 2rem;
  }

  .contact-stats .stat-item {
    padding: 1rem 0.5rem;
  }

  .contact-stats .stat-number {
    font-size: 1.5rem;
  }

  .contact-content {
    padding: 1.5rem 0.5rem;
  }

  .contact-card {
    padding: 1rem;
  }

  .faq-section {
    padding: 1.5rem 0.5rem;
  }

  .faq-section h2 {
    font-size: 1.8rem;
  }

  .faq-item {
    padding: 1rem;
  }

  /* Admin Panel */
  .main-content {
    padding: 0.5rem;
  }

  .dashboard-title {
    font-size: 1.3rem;
  }

  .stat-card {
    padding: 1rem 0.5rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .content-section {
    padding: 1rem;
  }

  .section-title {
    font-size: 1.1rem;
  }

  .data-table {
    min-width: 500px;
  }

  .data-table th,
  .data-table td {
    padding: 0.5rem 0.3rem;
    font-size: 0.7rem;
  }

  .btn {
    padding: 0.4rem 0.8rem;
    font-size: 0.7rem;
  }

  .btn-small {
    padding: 0.3rem 0.6rem;
    font-size: 0.6rem;
  }

  .modal-content {
    width: 98%;
    padding: 1rem;
  }

  .modal-header h2 {
    font-size: 1.1rem;
  }

  /* Login Page */
  .login-container {
    padding: 0.5rem;
  }

  .login-card {
    padding: 1.5rem 1rem;
  }

  .login-logo {
    width: 60px;
    height: 60px;
  }

  .login-title {
    font-size: 1.5rem;
  }

  .form-input {
    padding: 0.8rem;
    font-size: 0.9rem;
  }

  .login-btn {
    padding: 0.8rem;
    font-size: 0.9rem;
  }

  /* WhatsApp and No Prepayment Bubbles */
  .whatsapp-container {
    bottom: 15px;
    right: 15px;
  }

  .whatsapp-balloon {
    width: 50px;
    height: 50px;
  }

  .whatsapp-balloon i {
    font-size: 24px;
  }

  .no-prepayment-container {
    left: 10px;
  }

  .no-prepayment-text {
    font-size: 12px;
    padding: 8px 15px;
  }

  .no-prepayment-balloon {
    width: 50px;
    height: 50px;
  }

  .no-prepayment-balloon i {
    font-size: 20px;
  }

  /* Currency Animation */
  .currency-price-section {
    font-size: 16px;
    flex-direction: column;
    gap: 0.5rem;
  }

  .currency-animation {
    min-width: 120px;
    height: 1.2em;
  }

  .currency-text span {
    height: 1.2em;
    line-height: 1.2;
  }

  .currency-static {
    font-size: 14px;
  }
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 2rem;
    transition: var(--transition);
    z-index: 999;
    overflow-y: auto;
  }

  .nav-menu.active {
    left: 0;
  }

  .hamburger {
    display: flex;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .page-title {
    font-size: 2.2rem;
  }

  .page-subtitle {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .tours-grid,
  .destinations-grid-page,
  .hotels-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-stats {
    gap: 1.5rem;
  }

  .contact-stats .stat-item {
    padding: 1.5rem;
  }

  .details-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .tour-meta-hero {
    gap: 1rem;
  }

  .tour-actions-hero {
    flex-direction: column;
  }

  .hero-stats {
    gap: 1.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .page-title {
    font-size: 1.8rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .tour-card-page .tour-content,
  .destination-card-page .destination-content,
  .hotel-card .hotel-content {
    padding: 1.5rem;
  }

  .contact-form-section,
  .contact-info-card,
  .social-card,
  .map-card {
    padding: 2rem;
  }

  .booking-card,
  .contact-card {
    padding: 2rem;
  }

  .details-main {
    padding: 2rem;
  }
}

/* ===== WHATSAPP BALLOON ===== */
.whatsapp-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.whatsapp-text {
  background: #25D366;
  color: white;
  padding: 10px 15px;
  border-radius: 20px 20px 5px 20px;
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  animation: whatsappTextSlide 0.5s ease-out;
  position: relative;
  max-width: 200px;
}

.whatsapp-text::after {
  content: '';
  position: absolute;
  bottom: -8px;
  right: 15px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #25D366;
}

.whatsapp-text:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-balloon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
  transition: all 0.3s ease;
  animation: whatsappPulse 2s infinite;
  border: 3px solid white;
}

.whatsapp-balloon:hover {
  transform: scale(1.15);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.8);
  animation: none;
}

.whatsapp-balloon i {
  color: white;
  font-size: 32px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@keyframes whatsappTextSlide {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes whatsappPulse {
  0% {
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
  }
  50% {
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1);
  }
  100% {
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
  }
}

/* WhatsApp Balloon Mobile */
@media (max-width: 768px) {
  .whatsapp-container {
    bottom: 20px;
    right: 20px;
  }
  
  .whatsapp-text {
    font-size: 0.8rem;
    padding: 8px 12px;
    max-width: 160px;
  }
  
  .whatsapp-text::after {
    bottom: -6px;
    right: 12px;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #25D366;
  }
  
  .whatsapp-balloon {
    width: 60px;
    height: 60px;
  }
  
  .whatsapp-balloon i {
    font-size: 28px;
  }
}

/* ===== NO PREPAYMENT BUBBLE ===== */
.no-prepayment-container {
  position: fixed;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.no-prepayment-text {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  color: white;
  padding: 12px 20px;
  border-radius: 25px 25px 25px 8px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
  box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
  animation: noPrepaymentSlide 3s infinite;
  position: relative;
  border: 2px solid white;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.no-prepayment-text::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 15px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #28a745;
}

.no-prepayment-text:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 35px rgba(40, 167, 69, 0.6);
}

.no-prepayment-balloon {
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(40, 167, 69, 0.6);
  transition: all 0.3s ease;
  animation: noPrepaymentPulse 2.5s infinite;
  border: 3px solid white;
  cursor: pointer;
}

.no-prepayment-balloon:hover {
  transform: scale(1.2);
  box-shadow: 0 15px 45px rgba(40, 167, 69, 0.8);
  animation: none;
}

.no-prepayment-balloon i {
  color: white;
  font-size: 28px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@keyframes noPrepaymentSlide {
  0%, 100% {
    opacity: 0.9;
    transform: translateX(0);
  }
  50% {
    opacity: 1;
    transform: translateX(5px);
  }
}

@keyframes noPrepaymentPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 8px 30px rgba(40, 167, 69, 0.6);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(40, 167, 69, 0.8);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 8px 30px rgba(40, 167, 69, 0.6);
  }
}

/* Responsive for no prepayment bubble */
@media (max-width: 768px) {
  .no-prepayment-container {
    left: 15px;
  }
  
  .no-prepayment-text {
    font-size: 12px;
    padding: 10px 16px;
  }
  
  .no-prepayment-text::after {
    bottom: -6px;
    left: 12px;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #28a745;
  }
  
  .no-prepayment-balloon {
    width: 55px;
    height: 55px;
  }
  
  .no-prepayment-balloon i {
    font-size: 24px;
  }
}

/* ===== NO PREPAYMENT DIALOG ===== */
.no-prepayment-dialog {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10001;
  backdrop-filter: blur(5px);
}

.no-prepayment-dialog.show {
  display: flex;
  animation: dialogFadeIn 0.3s ease-out;
}

.no-prepayment-dialog-content {
  background: white;
  border-radius: 20px;
  padding: 40px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: scale(0.8);
  animation: dialogSlideIn 0.3s ease-out forwards;
  position: relative;
  overflow: hidden;
}

.no-prepayment-dialog-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.no-prepayment-dialog-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  box-shadow: 0 10px 30px rgba(40, 167, 69, 0.4);
  animation: iconBounce 0.6s ease-out;
}

.no-prepayment-dialog-icon i {
  color: white;
  font-size: 40px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.no-prepayment-dialog h3 {
  color: #2c3e50;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 15px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.no-prepayment-dialog p {
  color: #5a6c7d;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.no-prepayment-dialog-features {
  background: #f8f9fa;
  border-radius: 15px;
  padding: 25px;
  margin: 25px 0;
  text-align: left;
}

.no-prepayment-dialog-features h4 {
  color: #2c3e50;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  text-align: center;
}

.no-prepayment-dialog-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.no-prepayment-dialog-features li {
  color: #5a6c7d;
  font-size: 15px;
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.no-prepayment-dialog-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #28a745;
  font-weight: bold;
  font-size: 16px;
}

.no-prepayment-dialog-close {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

.no-prepayment-dialog-close:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
}

@keyframes dialogFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes dialogSlideIn {
  from { transform: scale(0.8); }
  to { transform: scale(1); }
}

@keyframes iconBounce {
  0% { transform: scale(0); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

/* Responsive for dialog */
@media (max-width: 768px) {
  .no-prepayment-dialog-content {
    padding: 30px 20px;
    margin: 20px;
  }
  
  .no-prepayment-dialog-icon {
    width: 60px;
    height: 60px;
  }
  
  .no-prepayment-dialog-icon i {
    font-size: 30px;
  }
  
  .no-prepayment-dialog h3 {
    font-size: 24px;
  }
  
  .no-prepayment-dialog p {
    font-size: 14px;
  }
}

/* ===== HOMEPAGE PREPAYMENT ANIMATION ===== */
.homepage-prepayment-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10002;
  backdrop-filter: blur(10px);
  animation: homepageAnimationFadeOut 3s ease-out forwards;
}

.homepage-prepayment-content {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  color: white;
  padding: 40px 60px;
  border-radius: 25px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(40, 167, 69, 0.5);
  transform: scale(0.5);
  animation: homepageAnimationSlideIn 0.8s ease-out forwards;
  position: relative;
  overflow: hidden;
  border: 3px solid white;
}

.homepage-prepayment-content::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: homepageShimmer 2s infinite;
}

.homepage-prepayment-icon {
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  border: 3px solid white;
  animation: homepageIconPulse 1.5s infinite;
}

.homepage-prepayment-icon i {
  color: white;
  font-size: 50px;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.homepage-prepayment-title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 15px;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  letter-spacing: 2px;
  animation: homepageTitleBounce 1s ease-out 0.5s both;
}

.homepage-prepayment-subtitle {
  font-size: 18px;
  font-weight: 600;
  opacity: 0.9;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  animation: homepageSubtitleFadeIn 1s ease-out 1s both;
}

@keyframes homepageAnimationSlideIn {
  0% {
    transform: scale(0.5) translateY(-100px);
    opacity: 0;
  }
  50% {
    transform: scale(1.1) translateY(0);
    opacity: 1;
  }
  100% {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

@keyframes homepageAnimationFadeOut {
  0%, 70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes homepageIconPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

@keyframes homepageTitleBounce {
  0% {
    transform: translateY(-20px);
    opacity: 0;
  }
  60% {
    transform: translateY(10px);
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes homepageSubtitleFadeIn {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 0.9;
    transform: translateY(0);
  }
}

@keyframes homepageShimmer {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

/* Responsive for homepage animation */
@media (max-width: 768px) {
  .homepage-prepayment-content {
    padding: 30px 40px;
    margin: 20px;
  }
  
  .homepage-prepayment-icon {
    width: 80px;
    height: 80px;
  }
  
  .homepage-prepayment-icon i {
    font-size: 40px;
  }
  
  .homepage-prepayment-title {
    font-size: 28px;
  }
  
  .homepage-prepayment-subtitle {
    font-size: 16px;
  }
}

/* ===== ROTATING CURRENCY ANIMATION ===== */
.currency-price-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 20px 0;
  font-size: 24px;
  font-weight: 600;
  color: var(--primary-color);
}

.currency-animation {
  display: inline-block;
  position: relative;
  overflow: hidden;
  height: 1.4em;
  vertical-align: bottom;
  min-width: 160px;
  text-align: center;
}

.currency-text {
  display: inline-block;
  animation: currencyRotate 6s infinite;
  font-weight: 700;
  color: var(--primary-color);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  width: 100%;
}

.currency-text span {
  display: block;
  line-height: 1.4;
  padding: 3px 0;
  width: 100%;
  text-align: center;
  white-space: nowrap;
  height: 1.4em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.currency-static {
  font-weight: 600;
  color: #666;
  font-size: 20px;
}

@keyframes currencyRotate {
  0%, 16.66% {
    transform: translateY(0);
  }
  33.33%, 50% {
    transform: translateY(-1.4em);
  }
  66.66%, 83.33% {
    transform: translateY(-2.8em);
  }
  100% {
    transform: translateY(0);
  }
}

/* Responsive for currency animation */
@media (max-width: 768px) {
  .currency-price-section {
    font-size: 20px;
    flex-direction: column;
    gap: 5px;
  }
  
  .currency-animation {
    min-width: 140px;
    height: 1.3em;
  }
  
  .currency-text span {
    height: 1.3em;
    line-height: 1.3;
  }
  
  .currency-static {
    font-size: 18px;
  }
}

/* ===== NOTIFICATIONS ===== */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10000;
  max-width: 400px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.notification.show {
  transform: translateX(0);
}

.notification-content {
  display: flex;
  align-items: center;
  padding: 16px 20px;
  gap: 12px;
}

.notification-success {
  border-left: 4px solid #25D366;
}

.notification-error {
  border-left: 4px solid #e74c3c;
}

.notification-info {
  border-left: 4px solid #3498db;
}

.notification-content i {
  font-size: 20px;
}

.notification-success .notification-content i {
  color: #25D366;
}

.notification-error .notification-content i {
  color: #e74c3c;
}

.notification-info .notification-content i {
  color: #3498db;
}

.notification-content span {
  flex: 1;
  font-weight: 500;
  color: #2d3436;
}

.notification-close {
  background: none;
  border: none;
  font-size: 20px;
  color: #6c757d;
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.2s ease;
}

.notification-close:hover {
  background-color: #f8f9fa;
}

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

.w-100 { width: 100%; }
.h-100 { height: 100%; }

/* ===== DASHBOARD STYLES ===== */
.dashboard-content {
  margin-top: 30px;
}

.dashboard-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.dashboard-card {
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border: 1px solid #e9ecef;
}

.dashboard-card h3 {
  margin: 0 0 15px 0;
  color: #2d3436;
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dashboard-card h3 i {
  color: #6c5ce7;
}

.tour-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #f1f2f6;
}

.tour-item:last-child {
  border-bottom: none;
}

.tour-name {
  font-weight: 500;
  color: #2d3436;
}

.tour-count {
  background: #6c5ce7;
  color: white;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 500;
}

.no-data {
  text-align: center;
  color: #636e72;
  font-style: italic;
  padding: 20px;
}

.status-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #f1f2f6;
}

.status-item:last-child {
  border-bottom: none;
}

.status-label {
  font-weight: 500;
  color: #2d3436;
}

.status-good {
  color: #00b894;
  font-weight: 500;
}

.status-warning {
  color: #fdcb6e;
  font-weight: 500;
}

.status-error {
  color: #e17055;
  font-weight: 500;
}

.loading {
  text-align: center;
  color: #636e72;
  font-style: italic;
  padding: 20px;
}

/* ===== FILTER STYLES ===== */
.filters-section {
  background: white;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border: 1px solid #e9ecef;
}

.filter-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr auto;
  gap: 15px;
  align-items: end;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.filter-group label {
  font-weight: 500;
  color: #2d3436;
  font-size: 0.9rem;
}

.filter-group input,
.filter-group select {
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 0.9rem;
  transition: border-color 0.2s ease;
}

.filter-group input:focus,
.filter-group select:focus {
  outline: none;
  border-color: #6c5ce7;
  box-shadow: 0 0 0 2px rgba(108, 92, 231, 0.1);
}

.reservation-count {
  background: #f8f9fa;
  padding: 10px 15px;
  border-radius: 6px;
  margin-bottom: 15px;
  font-weight: 500;
  color: #495057;
  border-left: 4px solid #6c5ce7;
}

@media (max-width: 768px) {
  .dashboard-row {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
