/* ========================================
   TURKEY TOUR PACKAGE - COMPLETE CSS
   TravelGully - Turkey 6N/7D Magical Turkey
   Version: 1.0.0
   ======================================== */

/* ========== CSS VARIABLES ========== */
:root {
  /* Turkey Theme Colors - Red & White inspired by Turkish flag */
  --turkey-primary: #E30A17;
  --turkey-primary-dark: #C50815;
  --turkey-primary-light: #FF1A28;
  --turkey-secondary: #1A1A2E;
  --turkey-secondary-light: #16213E;
  --turkey-accent: #D4AF37;
  --turkey-accent-light: #F4CF47;
  
  /* Neutral Colors */
  --turkey-white: #FFFFFF;
  --turkey-off-white: #F8F9FA;
  --turkey-light-gray: #E9ECEF;
  --turkey-gray: #6C757D;
  --turkey-dark-gray: #495057;
  --turkey-black: #212529;
  --turkey-text: #333333;
  --turkey-text-light: #666666;
  --turkey-text-muted: #999999;
  
  /* Functional Colors */
  --turkey-success: #28A745;
  --turkey-warning: #FFC107;
  --turkey-danger: #DC3545;
  --turkey-info: #17A2B8;
  
  /* Gradients */
  --turkey-gradient-primary: linear-gradient(135deg, #E30A17 0%, #C50815 100%);
  --turkey-gradient-secondary: linear-gradient(135deg, #1A1A2E 0%, #16213E 100%);
  --turkey-gradient-accent: linear-gradient(135deg, #D4AF37 0%, #F4CF47 100%);
  --turkey-gradient-hero: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%);
  --turkey-gradient-overlay: linear-gradient(to bottom, rgba(227,10,23,0.9), rgba(26,26,46,0.95));
  
  /* Shadows */
  --turkey-shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
  --turkey-shadow: 0 4px 6px rgba(0,0,0,0.1);
  --turkey-shadow-md: 0 6px 12px rgba(0,0,0,0.15);
  --turkey-shadow-lg: 0 10px 25px rgba(0,0,0,0.2);
  --turkey-shadow-xl: 0 20px 40px rgba(0,0,0,0.25);
  --turkey-shadow-primary: 0 4px 15px rgba(227,10,23,0.3);
  --turkey-shadow-accent: 0 4px 15px rgba(212,175,55,0.3);
  
  /* Border Radius */
  --turkey-radius-sm: 4px;
  --turkey-radius: 8px;
  --turkey-radius-md: 12px;
  --turkey-radius-lg: 16px;
  --turkey-radius-xl: 24px;
  --turkey-radius-full: 50%;
  
  /* Typography */
  --turkey-font-primary: 'Poppins', sans-serif;
  --turkey-font-heading: 'Playfair Display', serif;
  --turkey-font-accent: 'Cormorant Garamond', serif;
  
  /* Spacing */
  --turkey-section-padding: 80px 0;
  --turkey-section-padding-mobile: 50px 0;
  
  /* Transitions */
  --turkey-transition-fast: 0.2s ease;
  --turkey-transition: 0.3s ease;
  --turkey-transition-slow: 0.5s ease;
  
  /* Z-Index */
  --turkey-z-preloader: 9999;
  --turkey-z-lightbox: 9998;
  --turkey-z-navbar: 1000;
  --turkey-z-sticky: 999;
  --turkey-z-dropdown: 100;
  --turkey-z-float: 99;
}

/* ========== RESET & BASE ========== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  max-width: 100%;
}

body.turkey-page {
  font-family: var(--turkey-font-primary);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--turkey-text);
  background-color: var(--turkey-white);
  overflow-x: hidden;
  max-width: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--turkey-transition);
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
  font-family: inherit;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* ========== UTILITY CLASSES ========== */
.turkey-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .turkey-container {
    padding: 0 30px;
  }
}

@media (min-width: 1200px) {
  .turkey-container {
    padding: 0 40px;
  }
}

.turkey-section {
  padding: var(--turkey-section-padding);
}

@media (max-width: 768px) {
  .turkey-section {
    padding: var(--turkey-section-padding-mobile);
  }
}

/* Section Headers */
.turkey-section-header {
  text-align: center;
  margin-bottom: 50px;
}

.turkey-section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--turkey-gradient-primary);
  color: var(--turkey-white);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.turkey-section-badge i {
  font-size: 0.8rem;
}

.turkey-section-title {
  font-family: var(--turkey-font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--turkey-secondary);
  margin-bottom: 15px;
  line-height: 1.2;
}

.turkey-section-title span {
  color: var(--turkey-primary);
}

.turkey-section-subtitle {
  font-size: 1.1rem;
  color: var(--turkey-text-light);
  max-width: 700px;
  margin: 0 auto;
}

/* ========== SKIP LINK ========== */
.turkey-skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--turkey-primary);
  color: var(--turkey-white);
  padding: 12px 24px;
  border-radius: var(--turkey-radius);
  font-weight: 600;
  z-index: calc(var(--turkey-z-preloader) + 1);
  transition: var(--turkey-transition);
}

.turkey-skip-link:focus {
  top: 20px;
}

/* ========== PRELOADER ========== */
.turkey-preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--turkey-gradient-overlay);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: var(--turkey-z-preloader);
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.turkey-preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.turkey-preloader-content {
  text-align: center;
  color: var(--turkey-white);
}

.turkey-preloader-icon {
  font-size: 4rem;
  margin-bottom: 20px;
  animation: turkeyBounce 1s ease infinite;
}

@keyframes turkeyBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.turkey-preloader-content h3 {
  font-family: var(--turkey-font-heading);
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.turkey-preloader-content p {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 25px;
}

.turkey-preloader-bar {
  width: 200px;
  height: 4px;
  background: rgba(255,255,255,0.2);
  border-radius: 10px;
  overflow: hidden;
  margin: 0 auto;
}

.turkey-preloader-bar span {
  display: block;
  width: 40%;
  height: 100%;
  background: var(--turkey-accent);
  border-radius: 10px;
  animation: turkeyLoading 1.5s ease infinite;
}

@keyframes turkeyLoading {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(350%); }
}

/* ========== BACK TO TOP BUTTON ========== */
.turkey-back-to-top {
  position: fixed;
  bottom: 100px;
  right: 25px;
  width: 50px;
  height: 50px;
  background: var(--turkey-gradient-primary);
  color: var(--turkey-white);
  border-radius: var(--turkey-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--turkey-shadow-primary);
  z-index: var(--turkey-z-float);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--turkey-transition);
}

.turkey-back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.turkey-back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: var(--turkey-shadow-lg);
}

@media (max-width: 768px) {
  .turkey-back-to-top {
    bottom: 140px;
    right: 15px;
    width: 45px;
    height: 45px;
  }
}

/* ========== WHATSAPP FLOAT ========== */
.turkey-whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: var(--turkey-white);
  padding: 12px 20px;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: var(--turkey-z-float);
  transition: var(--turkey-transition);
}

.turkey-whatsapp-float i {
  font-size: 1.5rem;
}

.turkey-whatsapp-float:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

@media (max-width: 768px) {
  .turkey-whatsapp-float {
    bottom: 20px;
    right: 15px;
    padding: 10px 14px;
    font-size: 0.85rem;
    border-radius: var(--turkey-radius-full);
    z-index: 999;
  }
  
  .turkey-whatsapp-float span {
    display: none;
  }
  
  .turkey-whatsapp-float i {
    font-size: 1.8rem;
  }
}

/* ========== NAVBAR ========== */
.turkey-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 0;
  z-index: var(--turkey-z-navbar);
  transition: var(--turkey-transition);
}

.turkey-navbar.scrolled {
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(10px);
  box-shadow: var(--turkey-shadow-md);
  padding: 10px 0;
}

.turkey-nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.turkey-nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--turkey-font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--turkey-white);
  transition: var(--turkey-transition);
}

.turkey-navbar.scrolled .turkey-nav-logo {
  color: var(--turkey-secondary);
}

.turkey-logo-icon {
  font-size: 2rem;
}

.turkey-logo-text span {
  color: var(--turkey-primary);
}

/* Nav Links */
.turkey-nav-links {
  display: flex;
  align-items: center;
  gap: 5px;
}

.turkey-nav-links li a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  color: var(--turkey-white);
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: var(--turkey-radius);
  transition: var(--turkey-transition);
}

.turkey-navbar.scrolled .turkey-nav-links li a {
  color: var(--turkey-text);
}

.turkey-nav-links li a:hover,
.turkey-nav-links li a.active {
  background: rgba(227,10,23,0.1);
  color: var(--turkey-primary);
}

.turkey-nav-links li a i {
  font-size: 0.85rem;
}

/* Nav Actions */
.turkey-nav-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.turkey-nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--turkey-white);
  font-weight: 500;
  padding: 8px 15px;
  border-radius: var(--turkey-radius);
  transition: var(--turkey-transition);
}

.turkey-navbar.scrolled .turkey-nav-phone {
  color: var(--turkey-primary);
}

.turkey-nav-phone:hover {
  background: rgba(227,10,23,0.1);
}

/* Hamburger */
.turkey-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  cursor: pointer;
  z-index: calc(var(--turkey-z-navbar) + 10);
}

.turkey-hamburger-line {
  width: 25px;
  height: 3px;
  background: var(--turkey-white);
  border-radius: 3px;
  transition: var(--turkey-transition);
}

.turkey-navbar.scrolled .turkey-hamburger-line {
  background: var(--turkey-secondary);
}

.turkey-hamburger.active .turkey-hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.turkey-hamburger.active .turkey-hamburger-line:nth-child(2) {
  opacity: 0;
}

.turkey-hamburger.active .turkey-hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu Overlay */
.turkey-nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: calc(var(--turkey-z-navbar) - 1);
  opacity: 0;
  visibility: hidden;
  transition: var(--turkey-transition);
}

.turkey-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Mobile Styles */
@media (max-width: 1024px) {
  .turkey-nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--turkey-white);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 20px 30px;
    gap: 0;
    box-shadow: var(--turkey-shadow-xl);
    transition: var(--turkey-transition);
    overflow-y: auto;
    z-index: calc(var(--turkey-z-navbar) + 5);
  }
  
  .turkey-nav-links.active {
    right: 0;
  }
  
  .turkey-nav-links li {
    width: 100%;
  }
  
  .turkey-nav-links li a {
    width: 100%;
    padding: 15px 20px;
    color: var(--turkey-text);
    border-bottom: 1px solid var(--turkey-light-gray);
    border-radius: 0;
  }
  
  .turkey-nav-links li a:hover,
  .turkey-nav-links li a.active {
    background: rgba(227,10,23,0.05);
  }
  
  .turkey-nav-actions {
    display: none;
  }
  
  .turkey-hamburger {
    display: flex;
  }
  
  .turkey-nav-overlay {
    display: block;
  }
}

/* ========== HERO SECTION ========== */
.turkey-hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Hero Slider */
.turkey-hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
}

.turkey-hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease;
}

.turkey-hero-slide.active {
  opacity: 1;
}

.turkey-hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Hero Overlay */
.turkey-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--turkey-gradient-hero);
  z-index: 1;
}

/* Hero Content */
.turkey-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--turkey-white);
  padding: 0 20px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

/* Breadcrumb */
.turkey-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.9rem;
  margin-bottom: 20px;
  opacity: 0.9;
}

.turkey-breadcrumb a:hover {
  color: var(--turkey-accent);
}

.turkey-breadcrumb i {
  font-size: 0.7rem;
}

/* Hero Badges */
.turkey-hero-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.turkey-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
}

.turkey-badge-culture {
  background: rgba(212,175,55,0.2);
  color: var(--turkey-accent);
  border: 1px solid rgba(212,175,55,0.4);
}

.turkey-badge-nature {
  background: rgba(40,167,69,0.2);
  color: #7CFC00;
  border: 1px solid rgba(40,167,69,0.4);
}

.turkey-badge-rated {
  background: rgba(227,10,23,0.2);
  color: #FF6B6B;
  border: 1px solid rgba(227,10,23,0.4);
}

/* Hero Title */
.turkey-hero-title {
  font-family: var(--turkey-font-heading);
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

.turkey-hero-title span {
  color: var(--turkey-accent);
  display: block;
}

/* Hero Subtitle */
.turkey-hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  max-width: 800px;
  margin: 0 auto 25px;
  opacity: 0.95;
  line-height: 1.7;
}

/* Hero Description */
.turkey-hero-description {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  max-width: 800px;
  margin: 0 auto 25px;
  opacity: 0.95;
  line-height: 1.7;
}

/* Hero Meta */
.turkey-hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}

.turkey-hero-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  padding: 8px 16px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(5px);
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.2);
}

.turkey-hero-meta-item i {
  color: var(--turkey-accent);
}

/* Hero Info */
.turkey-hero-info {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}

/* Hero CTA */
.turkey-hero-cta {
  margin-top: 30px;
}

.turkey-hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 20px;
}

.turkey-hero-trust {
  font-size: 0.9rem;
  opacity: 0.85;
}

.turkey-hero-trust i {
  margin-right: 5px;
  color: var(--turkey-accent);
}

/* Hero Nav (Slider Arrows) */
.turkey-hero-nav {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Hero Controls */
.turkey-hero-controls {
  position: absolute;
  bottom: 120px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 3;
}

.turkey-hero-prev,
.turkey-hero-next {
  width: 45px;
  height: 45px;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(5px);
  color: var(--turkey-white);
  border-radius: var(--turkey-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--turkey-transition);
  border: 1px solid rgba(255,255,255,0.3);
}

.turkey-hero-prev:hover,
.turkey-hero-next:hover {
  background: var(--turkey-primary);
  border-color: var(--turkey-primary);
}

.turkey-hero-dots {
  display: flex;
  gap: 10px;
}

.turkey-hero-dot {
  width: 12px;
  height: 12px;
  background: rgba(255,255,255,0.4);
  border-radius: var(--turkey-radius-full);
  transition: var(--turkey-transition);
  cursor: pointer;
}

.turkey-hero-dot.active,
.turkey-hero-dot:hover {
  background: var(--turkey-white);
  transform: scale(1.2);
}

/* Scroll Indicator */
.turkey-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--turkey-white);
  font-size: 0.85rem;
  opacity: 0.8;
  z-index: 3;
  animation: turkeyScrollBounce 2s ease infinite;
}

.turkey-mouse {
  width: 26px;
  height: 40px;
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 15px;
  position: relative;
}

.turkey-wheel {
  width: 4px;
  height: 8px;
  background: var(--turkey-white);
  border-radius: 3px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: turkeyWheelScroll 1.5s ease infinite;
}

@keyframes turkeyScrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

@keyframes turkeyWheelScroll {
  0% { opacity: 1; top: 8px; }
  100% { opacity: 0; top: 20px; }
}

/* ================================
   MOBILE HERO FULL RESPONSIVE FIX
================================ */
@media (max-width: 768px) {
  .turkey-hero {
    min-height: 100svh;
    width: 100%;
    max-width: 100%;
  }
  
  .turkey-hero-slider,
  .turkey-hero-slide {
    width: 100%;
    max-width: 100%;
    min-height: 100svh;
  }
  
  .turkey-hero-content {
    width: 100%;
    max-width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
    text-align: center;
  }
  
  .turkey-breadcrumb {
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    font-size: 0.75rem;
  }
  
  .turkey-hero-title {
    font-size: 2rem;
    line-height: 1.2;
  }
  
  .turkey-hero-title span {
    display: block;
  }
  
  .turkey-hero-subtitle,
  .turkey-hero-description {
    font-size: 0.95rem;
    padding: 0 5px;
  }
  
  .turkey-hero-meta {
    gap: 10px;
  }
  
  .turkey-hero-meta-item {
    font-size: 0.8rem;
    padding: 6px 12px;
  }
  
  .turkey-hero-info {
    flex-direction: column;
    gap: 8px;
    font-size: 0.9rem;
  }
  
  .turkey-hero-buttons {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }
  
  .turkey-hero-buttons .turkey-btn {
    width: 100%;
    justify-content: center;
    padding: 14px;
    font-size: 0.95rem;
  }
  
  .turkey-hero-nav {
    display: none;
  }
  
  .turkey-hero-controls {
    bottom: 100px;
  }
  
  .turkey-hero-dots {
    bottom: 70px;
  }
  
  .turkey-hero-trust {
    flex-direction: column;
    text-align: center;
    gap: 6px;
    font-size: 0.8rem;
  }
  
  .turkey-scroll-indicator {
    display: none;
  }
}

/* ================================
   EXTRA SMALL DEVICES
================================ */
@media (max-width: 480px) {
  .turkey-hero-title {
    font-size: 1.7rem;
  }
  
  .turkey-hero-buttons .turkey-btn {
    font-size: 0.9rem;
    padding: 12px;
  }
  
  .turkey-hero-subtitle,
  .turkey-hero-description {
    font-size: 0.9rem;
  }
}

/* ================================
   SAFE IMAGE SCALING
================================ */
.turkey-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========== BUTTONS ========== */
.turkey-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--turkey-radius);
  transition: var(--turkey-transition);
  cursor: pointer;
  white-space: nowrap;
}

.turkey-btn i {
  font-size: 0.9rem;
}

/* Primary Button */
.turkey-btn-primary {
  background: var(--turkey-gradient-primary);
  color: var(--turkey-white);
  box-shadow: var(--turkey-shadow-primary);
}

.turkey-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(227,10,23,0.4);
}

/* Outline Button */
.turkey-btn-outline {
  background: transparent;
  color: var(--turkey-primary);
  border: 2px solid var(--turkey-primary);
}

.turkey-btn-outline:hover {
  background: var(--turkey-primary);
  color: var(--turkey-white);
}

/* Outline Light Button */
.turkey-btn-outline-light {
  background: transparent;
  color: var(--turkey-white);
  border: 2px solid rgba(255,255,255,0.6);
}

.turkey-btn-outline-light:hover {
  background: var(--turkey-white);
  color: var(--turkey-primary);
  border-color: var(--turkey-white);
}

/* Call Button */
.turkey-btn-call {
  background: var(--turkey-gradient-accent);
  color: var(--turkey-secondary);
  box-shadow: var(--turkey-shadow-accent);
}

.turkey-btn-call:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(212,175,55,0.4);
}

/* WhatsApp Button */
.turkey-btn-whatsapp {
  background: #25D366;
  color: var(--turkey-white);
  box-shadow: 0 4px 15px rgba(37,211,102,0.3);
}

.turkey-btn-whatsapp:hover {
  background: #128C7E;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37,211,102,0.4);
}

/* Button Sizes */
.turkey-btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}

.turkey-btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

.turkey-btn-block {
  width: 100%;
}

@media (max-width: 480px) {
  .turkey-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  
  .turkey-btn-lg {
    padding: 14px 28px;
    font-size: 1rem;
  }
}

/* ========== QUICK INFO STRIP ========== */
.turkey-quick-info {
  background: var(--turkey-gradient-secondary);
  padding: 25px 0;
}

.turkey-quick-info-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.turkey-quick-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  color: var(--turkey-white);
}

.turkey-quick-info-item i {
  font-size: 1.5rem;
  color: var(--turkey-accent);
  width: 40px;
  text-align: center;
}

.turkey-quick-info-item strong {
  display: block;
  font-size: 0.85rem;
  opacity: 0.8;
  font-weight: 400;
}

.turkey-quick-info-item span {
  font-weight: 600;
  font-size: 0.95rem;
}

@media (max-width: 1024px) {
  .turkey-quick-info-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .turkey-quick-info-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .turkey-quick-info-item {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
}

/* ========== PACKAGE OVERVIEW ========== */
.turkey-overview {
  background: var(--turkey-off-white);
}

.turkey-overview-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
}

.turkey-overview-content h3 {
  font-family: var(--turkey-font-heading);
  font-size: 1.8rem;
  color: var(--turkey-secondary);
  margin-bottom: 20px;
}

.turkey-overview-content p {
  color: var(--turkey-text-light);
  margin-bottom: 20px;
  line-height: 1.8;
}

/* Highlights Grid */
.turkey-highlights-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
  margin: 30px 0;
}

.turkey-highlight-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 10px;
  background: var(--turkey-white);
  border-radius: var(--turkey-radius-md);
  text-align: center;
  box-shadow: var(--turkey-shadow-sm);
  transition: var(--turkey-transition);
}

.turkey-highlight-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--turkey-shadow-md);
}

.turkey-highlight-item i {
  font-size: 1.8rem;
  color: var(--turkey-primary);
}

.turkey-highlight-item span {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--turkey-text);
}

/* Why Choose */
.turkey-why-choose {
  background: var(--turkey-white);
  padding: 25px;
  border-radius: var(--turkey-radius-lg);
  margin-top: 30px;
  box-shadow: var(--turkey-shadow-sm);
}

.turkey-why-choose h4 {
  font-family: var(--turkey-font-heading);
  font-size: 1.3rem;
  color: var(--turkey-secondary);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.turkey-why-choose h4 i {
  color: var(--turkey-primary);
}

.turkey-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.turkey-why-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: var(--turkey-off-white);
  border-radius: var(--turkey-radius);
  font-size: 0.9rem;
  font-weight: 500;
}

.turkey-why-item i {
  color: var(--turkey-primary);
  font-size: 1.1rem;
}

/* Sidebar */
.turkey-overview-sidebar {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* Inclusion/Exclusion Cards */
.turkey-inc-exc-card {
  background: var(--turkey-white);
  padding: 25px;
  border-radius: var(--turkey-radius-lg);
  box-shadow: var(--turkey-shadow);
}

.turkey-inc-exc-card h4 {
  font-family: var(--turkey-font-heading);
  font-size: 1.2rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.turkey-inclusions h4 {
  color: var(--turkey-success);
}

.turkey-exclusions h4 {
  color: var(--turkey-danger);
}

.turkey-inc-exc-card ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.turkey-inc-exc-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--turkey-text-light);
}

.turkey-inclusions li i {
  color: var(--turkey-success);
  margin-top: 3px;
}

.turkey-exclusions li i {
  color: var(--turkey-danger);
  margin-top: 3px;
}

/* Best Time Card */
.turkey-best-time {
  background: var(--turkey-white);
  padding: 25px;
  border-radius: var(--turkey-radius-lg);
  box-shadow: var(--turkey-shadow);
}

.turkey-best-time h4 {
  font-family: var(--turkey-font-heading);
  font-size: 1.2rem;
  color: var(--turkey-secondary);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.turkey-best-time h4 i {
  color: var(--turkey-primary);
}

.turkey-season-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.turkey-season-item {
  padding: 15px;
  border-radius: var(--turkey-radius);
  text-align: center;
}

.turkey-season-name {
  display: block;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 5px;
}

.turkey-season-label {
  font-size: 0.75rem;
  opacity: 0.9;
}

.turkey-season-best {
  background: linear-gradient(135deg, #28A745 0%, #20C997 100%);
  color: var(--turkey-white);
}

.turkey-season-good {
  background: linear-gradient(135deg, #FFC107 0%, #FF9800 100%);
  color: var(--turkey-secondary);
}

.turkey-season-cold {
  background: linear-gradient(135deg, #6C757D 0%, #495057 100%);
  color: var(--turkey-white);
}

@media (max-width: 1024px) {
  .turkey-overview-grid {
    grid-template-columns: 1fr;
  }
  
  .turkey-highlights-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .turkey-highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .turkey-why-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .turkey-season-grid {
    grid-template-columns: 1fr;
  }
}

/* ========== DESTINATIONS SECTION ========== */
.turkey-destinations-section {
  background: var(--turkey-white);
}

.turkey-destinations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.turkey-destination-card {
  background: var(--turkey-white);
  border-radius: var(--turkey-radius-lg);
  overflow: hidden;
  box-shadow: var(--turkey-shadow);
  transition: var(--turkey-transition);
}

.turkey-destination-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--turkey-shadow-lg);
}

.turkey-destination-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.turkey-destination-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--turkey-transition-slow);
}

.turkey-destination-card:hover .turkey-destination-image img {
  transform: scale(1.1);
}

.turkey-destination-day {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--turkey-primary);
  color: var(--turkey-white);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}

.turkey-destination-content {
  padding: 20px;
}

.turkey-destination-content h4 {
  font-family: var(--turkey-font-heading);
  font-size: 1.4rem;
  color: var(--turkey-secondary);
  margin-bottom: 10px;
}

.turkey-destination-content p {
  font-size: 0.9rem;
  color: var(--turkey-text-light);
  margin-bottom: 15px;
  line-height: 1.6;
}

.turkey-destination-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.turkey-destination-highlights span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  background: rgba(227,10,23,0.08);
  color: var(--turkey-primary);
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 50px;
}

.turkey-destination-highlights span i {
  font-size: 0.7rem;
}

@media (max-width: 1024px) {
  .turkey-destinations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .turkey-destinations-grid {
    grid-template-columns: 1fr;
  }
}

/* ========== ITINERARY SECTION ========== */
.turkey-itinerary-section {
  background: var(--turkey-off-white);
}

.turkey-itinerary-timeline {
  max-width: 900px;
  margin: 0 auto;
}

/* Day Card */
.turkey-day-card {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
}

.turkey-day-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.turkey-day-number {
  width: 60px;
  height: 60px;
  background: var(--turkey-gradient-primary);
  color: var(--turkey-white);
  border-radius: var(--turkey-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  box-shadow: var(--turkey-shadow-primary);
}

.turkey-day-line {
  width: 3px;
  flex: 1;
  background: linear-gradient(to bottom, var(--turkey-primary), var(--turkey-light-gray));
  margin-top: 10px;
  border-radius: 3px;
}

.turkey-day-content {
  flex: 1;
  background: var(--turkey-white);
  border-radius: var(--turkey-radius-lg);
  padding: 25px;
  box-shadow: var(--turkey-shadow);
}

.turkey-day-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 15px;
}

.turkey-day-title h3 {
  font-family: var(--turkey-font-heading);
  font-size: 1.4rem;
  color: var(--turkey-secondary);
  margin-bottom: 8px;
}

.turkey-day-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(227,10,23,0.1);
  color: var(--turkey-primary);
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
}

.turkey-day-toggle {
  width: 40px;
  height: 40px;
  background: var(--turkey-off-white);
  border-radius: var(--turkey-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--turkey-text-light);
  transition: var(--turkey-transition);
  flex-shrink: 0;
}

.turkey-day-toggle:hover {
  background: var(--turkey-primary);
  color: var(--turkey-white);
}

.turkey-day-toggle[aria-expanded="true"] i {
  transform: rotate(180deg);
}

.turkey-day-toggle i {
  transition: var(--turkey-transition);
}

.turkey-day-summary p {
  color: var(--turkey-text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Day Details */
.turkey-day-details {
  display: none;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--turkey-light-gray);
}

.turkey-day-details.active {
  display: block;
}

.turkey-day-image {
  border-radius: var(--turkey-radius-md);
  overflow: hidden;
  margin-bottom: 20px;
  height: 250px;
}

.turkey-day-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Schedule */
.turkey-day-schedule {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.turkey-schedule-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.turkey-time {
  min-width: 80px;
  padding: 5px 10px;
  background: var(--turkey-off-white);
  color: var(--turkey-primary);
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: var(--turkey-radius);
  text-align: center;
}

.turkey-activity {
  display: flex;
  gap: 12px;
  flex: 1;
}

.turkey-activity > i {
  width: 35px;
  height: 35px;
  background: rgba(227,10,23,0.1);
  color: var(--turkey-primary);
  border-radius: var(--turkey-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.turkey-activity strong {
  display: block;
  color: var(--turkey-secondary);
  margin-bottom: 3px;
}

.turkey-activity p {
  font-size: 0.9rem;
  color: var(--turkey-text-light);
  margin: 0;
}

/* Day Meals */
.turkey-day-meals {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px dashed var(--turkey-light-gray);
}

.turkey-meal {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(40,167,69,0.1);
  color: var(--turkey-success);
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: 50px;
}

/* Day Tips */
.turkey-day-tips {
  display: flex;
  gap: 12px;
  margin-top: 15px;
  padding: 15px;
  background: rgba(212,175,55,0.1);
  border-radius: var(--turkey-radius);
  border-left: 4px solid var(--turkey-accent);
}

.turkey-day-tips > i {
  color: var(--turkey-accent);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.turkey-day-tips p {
  font-size: 0.9rem;
  color: var(--turkey-text-light);
  margin: 0;
  line-height: 1.6;
}

/* Day Stay */
.turkey-day-stay {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
  padding: 12px 15px;
  background: var(--turkey-gradient-secondary);
  color: var(--turkey-white);
  border-radius: var(--turkey-radius);
  font-weight: 500;
}

.turkey-day-stay i {
  color: var(--turkey-accent);
}

/* Itinerary Actions */
.turkey-itinerary-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .turkey-day-card {
    flex-direction: column;
    gap: 15px;
  }
  
  .turkey-day-marker {
    flex-direction: row;
    gap: 15px;
  }
  
  .turkey-day-line {
    display: none;
  }
  
  .turkey-day-number {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  
  .turkey-schedule-item {
    flex-direction: column;
    gap: 10px;
  }
  
  .turkey-time {
    min-width: auto;
    align-self: flex-start;
  }
}

/* ========== GALLERY SECTION ========== */
.turkey-gallery-section {
  background: var(--turkey-white);
}

.turkey-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 15px;
}

.turkey-gallery-item {
  position: relative;
  border-radius: var(--turkey-radius-md);
  overflow: hidden;
  cursor: pointer;
}

.turkey-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--turkey-transition-slow);
}

.turkey-gallery-item:hover img {
  transform: scale(1.1);
}

.turkey-gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(227,10,23,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--turkey-transition);
}

.turkey-gallery-item:hover .turkey-gallery-overlay {
  opacity: 1;
}

.turkey-gallery-overlay span {
  color: var(--turkey-white);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Gallery Sizes */
.turkey-gallery-large {
  grid-column: span 2;
  grid-row: span 2;
}

.turkey-gallery-tall {
  grid-row: span 2;
}

.turkey-gallery-cta {
  text-align: center;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .turkey-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 150px;
  }
  
  .turkey-gallery-large {
    grid-column: span 2;
    grid-row: span 1;
  }
  
  .turkey-gallery-tall {
    grid-row: span 1;
  }
}

/* ========== BOOKING SECTION ========== */
.turkey-booking-section {
  background: var(--turkey-off-white);
}

.turkey-booking-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: start;
}

/* Booking Info */
.turkey-booking-info {
  padding: 40px;
  background: var(--turkey-gradient-secondary);
  border-radius: var(--turkey-radius-xl);
  color: var(--turkey-white);
}

.turkey-booking-info .turkey-section-badge {
  margin-bottom: 20px;
}

.turkey-booking-info h2 {
  font-family: var(--turkey-font-heading);
  font-size: 2rem;
  margin-bottom: 15px;
}

.turkey-booking-info > p {
  opacity: 0.9;
  margin-bottom: 30px;
  line-height: 1.7;
}

/* Booking Features */
.turkey-booking-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 30px;
}

.turkey-booking-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
}

.turkey-booking-feature i {
  color: var(--turkey-accent);
}

/* Trust Items */
.turkey-booking-trust {
  display: flex;
  gap: 25px;
  margin-bottom: 30px;
  padding: 20px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--turkey-radius-md);
}

.turkey-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.turkey-trust-item i {
  font-size: 1.5rem;
  color: var(--turkey-accent);
}

.turkey-trust-item strong {
  display: block;
  font-size: 1.2rem;
}

.turkey-trust-item span {
  font-size: 0.8rem;
  opacity: 0.8;
}

/* Contact Items */
.turkey-booking-contact {
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.2);
}

.turkey-booking-contact > p {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 15px;
}

.turkey-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-size: 0.95rem;
  transition: var(--turkey-transition);
}

.turkey-contact-item:hover {
  color: var(--turkey-accent);
}

.turkey-contact-item i {
  width: 30px;
  color: var(--turkey-accent);
}

/* Form Container */
.turkey-booking-form-container {
  background: var(--turkey-white);
  padding: 40px;
  border-radius: var(--turkey-radius-xl);
  box-shadow: var(--turkey-shadow-lg);
}

/* Form Styles */
.turkey-booking-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.turkey-form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.turkey-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.turkey-form-group label {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--turkey-secondary);
  display: flex;
  align-items: center;
  gap: 6px;
}

.turkey-form-group label i {
  color: var(--turkey-primary);
}

.turkey-form-group label span {
  color: var(--turkey-danger);
}

.turkey-form-group input,
.turkey-form-group select,
.turkey-form-group textarea {
  padding: 14px 16px;
  border: 2px solid var(--turkey-light-gray);
  border-radius: var(--turkey-radius);
  font-size: 1rem;
  transition: var(--turkey-transition);
}

.turkey-form-group input:focus,
.turkey-form-group select:focus,
.turkey-form-group textarea:focus {
  outline: none;
  border-color: var(--turkey-primary);
  box-shadow: 0 0 0 3px rgba(227,10,23,0.1);
}

.turkey-form-group input.error,
.turkey-form-group select.error,
.turkey-form-group textarea.error {
  border-color: var(--turkey-danger);
}

.turkey-phone-input {
  display: flex;
  gap: 10px;
}

.turkey-phone-input select {
  width: 100px;
  flex-shrink: 0;
}

.turkey-phone-input input {
  flex: 1;
}

/* Trip Type Options */
.turkey-trip-type-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.turkey-trip-option {
  position: relative;
  cursor: pointer;
}

.turkey-trip-option input {
  position: absolute;
  opacity: 0;
}

.turkey-trip-option span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  background: var(--turkey-off-white);
  border: 2px solid var(--turkey-light-gray);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--turkey-transition);
}

.turkey-trip-option input:checked + span {
  background: rgba(227,10,23,0.1);
  border-color: var(--turkey-primary);
  color: var(--turkey-primary);
}

.turkey-trip-option:hover span {
  border-color: var(--turkey-primary);
}

/* Hotel Options */
.turkey-hotel-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.turkey-hotel-option {
  position: relative;
  cursor: pointer;
}

.turkey-hotel-option input {
  position: absolute;
  opacity: 0;
}

.turkey-hotel-option span {
  display: block;
  padding: 12px 15px;
  background: var(--turkey-off-white);
  border: 2px solid var(--turkey-light-gray);
  border-radius: var(--turkey-radius);
  text-align: center;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--turkey-transition);
}

.turkey-hotel-option input:checked + span {
  background: rgba(227,10,23,0.1);
  border-color: var(--turkey-primary);
  color: var(--turkey-primary);
}

.turkey-hotel-option:hover span {
  border-color: var(--turkey-primary);
}

/* Addon Options */
.turkey-addon-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.turkey-addon-option {
  position: relative;
  cursor: pointer;
}

.turkey-addon-option input {
  position: absolute;
  opacity: 0;
}

.turkey-addon-option span {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 15px;
  background: var(--turkey-off-white);
  border: 2px solid var(--turkey-light-gray);
  border-radius: var(--turkey-radius);
  font-size: 0.85rem;
  font-weight: 500;
  transition: var(--turkey-transition);
}

.turkey-addon-option input:checked + span {
  background: rgba(40,167,69,0.1);
  border-color: var(--turkey-success);
  color: var(--turkey-success);
}

.turkey-addon-option:hover span {
  border-color: var(--turkey-primary);
}

.turkey-addon-option span i {
  color: var(--turkey-primary);
}

.turkey-addon-option input:checked + span i {
  color: var(--turkey-success);
}

/* Consent */
.turkey-form-consent {
  margin-top: 10px;
}

.turkey-consent-option {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

.turkey-consent-option input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--turkey-primary);
}

.turkey-consent-option span {
  font-size: 0.85rem;
  color: var(--turkey-text-light);
  line-height: 1.5;
}

.turkey-consent-option a {
  color: var(--turkey-primary);
  text-decoration: underline;
}

/* Error Message */
.turkey-error-message {
  font-size: 0.8rem;
  color: var(--turkey-danger);
  min-height: 18px;
}

/* Form Note */
.turkey-form-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--turkey-text-light);
  margin-top: 15px;
}

.turkey-form-note i {
  color: var(--turkey-success);
  margin-right: 5px;
}

/* Form Messages */
.turkey-form-message {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  border-radius: var(--turkey-radius-md);
  margin-top: 20px;
}

.turkey-form-message i {
  font-size: 2rem;
  flex-shrink: 0;
}

.turkey-form-message strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.turkey-form-message p {
  font-size: 0.9rem;
  margin: 0;
}

.turkey-form-success {
  background: rgba(40,167,69,0.1);
  border: 1px solid var(--turkey-success);
}

.turkey-form-success i {
  color: var(--turkey-success);
}

.turkey-form-error {
  background: rgba(220,53,69,0.1);
  border: 1px solid var(--turkey-danger);
}

.turkey-form-error i {
  color: var(--turkey-danger);
}

.turkey-form-error a {
  color: var(--turkey-primary);
}

@media (max-width: 1024px) {
  .turkey-booking-wrapper {
    grid-template-columns: 1fr;
  }
  
  .turkey-booking-info {
    order: 2;
  }
}

@media (max-width: 600px) {
  .turkey-form-row {
    grid-template-columns: 1fr;
  }
  
  .turkey-booking-features {
    grid-template-columns: 1fr;
  }
  
  .turkey-booking-trust {
    flex-direction: column;
    gap: 15px;
  }
  
  .turkey-hotel-options,
  .turkey-addon-options {
    grid-template-columns: 1fr;
  }
  
  .turkey-booking-form-container {
    padding: 25px;
  }
  
  .turkey-booking-info {
    padding: 25px;
  }
}

/* ========== REVIEWS SECTION ========== */
.turkey-reviews-section {
  background: var(--turkey-white);
}

/* Rating Summary */
.turkey-reviews-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  margin-bottom: 50px;
  padding: 30px;
  background: var(--turkey-off-white);
  border-radius: var(--turkey-radius-xl);
}

.turkey-rating-big {
  text-align: center;
}

.turkey-rating-number {
  display: block;
  font-size: 4rem;
  font-weight: 700;
  color: var(--turkey-secondary);
  line-height: 1;
}

.turkey-rating-stars {
  margin: 10px 0;
}

.turkey-rating-stars i {
  color: #FFD700;
  font-size: 1.3rem;
}

.turkey-rating-count {
  font-size: 0.9rem;
  color: var(--turkey-text-light);
}

/* Rating Bars */
.turkey-rating-bars {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 250px;
}

.turkey-rating-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
}

.turkey-rating-bar > span:first-child {
  min-width: 35px;
  color: var(--turkey-text-light);
}

.turkey-bar {
  flex: 1;
  height: 8px;
  background: var(--turkey-light-gray);
  border-radius: 10px;
  overflow: hidden;
}

.turkey-bar span {
  display: block;
  height: 100%;
  background: var(--turkey-gradient-primary);
  border-radius: 10px;
  transition: width 1s ease;
}

.turkey-rating-bar > span:last-child {
  min-width: 40px;
  text-align: right;
  color: var(--turkey-text-light);
}

/* Reviews Grid */
.turkey-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.turkey-review-card {
  background: var(--turkey-white);
  padding: 25px;
  border-radius: var(--turkey-radius-lg);
  box-shadow: var(--turkey-shadow);
  transition: var(--turkey-transition);
}

.turkey-review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--turkey-shadow-lg);
}

.turkey-review-header {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 15px;
}

.turkey-review-header img {
  width: 50px;
  height: 50px;
  border-radius: var(--turkey-radius-full);
  object-fit: cover;
}

.turkey-review-header h4 {
  font-size: 1rem;
  color: var(--turkey-secondary);
  margin-bottom: 3px;
}

.turkey-review-header > div > span {
  display: block;
  font-size: 0.8rem;
  color: var(--turkey-text-light);
}

.turkey-verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--turkey-success);
  font-size: 0.75rem;
  margin-top: 3px;
}

.turkey-review-rating {
  margin-left: auto;
}

.turkey-review-rating i {
  color: #FFD700;
  font-size: 0.85rem;
}

.turkey-review-card > p {
  font-size: 0.9rem;
  color: var(--turkey-text-light);
  line-height: 1.7;
  margin-bottom: 15px;
}

.turkey-review-images {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.turkey-review-images img {
  width: 60px;
  height: 60px;
  border-radius: var(--turkey-radius);
  object-fit: cover;
}

.turkey-review-helpful {
  padding-top: 15px;
  border-top: 1px solid var(--turkey-light-gray);
}

.turkey-review-helpful span {
  font-size: 0.85rem;
  color: var(--turkey-text-light);
}

.turkey-review-helpful i {
  color: var(--turkey-primary);
  margin-right: 5px;
}

.turkey-reviews-cta {
  text-align: center;
  margin-top: 40px;
}

@media (max-width: 1024px) {
  .turkey-reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .turkey-reviews-summary {
    flex-direction: column;
    gap: 30px;
  }
  
  .turkey-rating-bars {
    width: 100%;
  }
  
  .turkey-reviews-grid {
    grid-template-columns: 1fr;
  }
}

/* ========== FAQ SECTION ========== */
.turkey-faq-section {
  background: var(--turkey-off-white);
}

.turkey-faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.turkey-faq-item {
  background: var(--turkey-white);
  border-radius: var(--turkey-radius-md);
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: var(--turkey-shadow-sm);
}

.turkey-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 25px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--turkey-secondary);
  text-align: left;
  transition: var(--turkey-transition);
}

.turkey-faq-question:hover {
  background: var(--turkey-off-white);
}

.turkey-faq-question span {
  flex: 1;
  padding-right: 15px;
}

.turkey-faq-question i {
  color: var(--turkey-primary);
  transition: var(--turkey-transition);
}

.turkey-faq-question[aria-expanded="true"] i {
  transform: rotate(180deg);
}

.turkey-faq-answer {
  display: none;
  padding: 0 25px 25px;
}

.turkey-faq-answer.active {
  display: block;
}

.turkey-faq-answer p {
  font-size: 0.95rem;
  color: var(--turkey-text-light);
  line-height: 1.7;
  margin-bottom: 15px;
}

.turkey-faq-answer ul {
  margin-bottom: 15px;
}

.turkey-faq-answer li {
  font-size: 0.9rem;
  color: var(--turkey-text-light);
  padding: 8px 0;
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}

.turkey-faq-answer li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--turkey-primary);
  font-weight: 700;
}

.turkey-faq-answer li ul {
  margin-top: 10px;
  margin-bottom: 0;
}

/* FAQ CTA */
.turkey-faq-cta {
  text-align: center;
  margin-top: 40px;
  padding: 30px;
  background: var(--turkey-white);
  border-radius: var(--turkey-radius-lg);
}

.turkey-faq-cta > p {
  font-size: 1.1rem;
  color: var(--turkey-secondary);
  margin-bottom: 20px;
}

.turkey-faq-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* ========== CTA SECTION ========== */
.turkey-cta-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.turkey-cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.turkey-cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.turkey-cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--turkey-gradient-overlay);
}

.turkey-cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--turkey-white);
  max-width: 700px;
  margin: 0 auto;
}

.turkey-cta-content h2 {
  font-family: var(--turkey-font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 15px;
}

.turkey-cta-content > p {
  font-size: 1.15rem;
  opacity: 0.95;
  margin-bottom: 25px;
}

.turkey-cta-features {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}

.turkey-cta-features span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
}

.turkey-cta-features i {
  color: var(--turkey-accent);
}

.turkey-cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

.turkey-cta-note {
  font-size: 0.9rem;
  opacity: 0.85;
}

.turkey-cta-note i {
  color: var(--turkey-accent);
  margin-right: 5px;
}

@media (max-width: 600px) {
  .turkey-cta-section {
    padding: 60px 0;
  }
  
  .turkey-cta-content h2 {
    font-size: 1.8rem;
  }
  
  .turkey-cta-content > p {
    font-size: 1rem;
  }
  
  .turkey-cta-features {
    flex-direction: column;
    gap: 10px;
  }
  
  .turkey-cta-buttons {
    flex-direction: column;
  }
  
  .turkey-cta-buttons .turkey-btn {
    width: 100%;
  }
}

/* ========== TRUST SECTION ========== */
.turkey-trust-section {
  background: var(--turkey-secondary);
  padding: 30px 0;
}

.turkey-trust-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.turkey-trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--turkey-white);
  font-size: 0.9rem;
  font-weight: 500;
}

.turkey-trust-badge i {
  font-size: 1.3rem;
  color: var(--turkey-accent);
}

@media (max-width: 768px) {
  .turkey-trust-grid {
    gap: 25px;
  }
  
  .turkey-trust-badge {
    flex: 0 0 calc(50% - 15px);
    justify-content: center;
    font-size: 0.8rem;
  }
  
  .turkey-trust-badge i {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .turkey-trust-badge {
    flex: 0 0 100%;
  }
}

/* ========== FOOTER ========== */
.turkey-footer {
  background: var(--turkey-gradient-secondary);
  color: var(--turkey-white);
}

.turkey-footer-top {
  padding: 60px 0 40px;
}

.turkey-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
}

/* Footer About */
.turkey-footer-about {
  max-width: 350px;
}

.turkey-footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--turkey-font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--turkey-white);
  margin-bottom: 20px;
}

.turkey-footer-logo .turkey-logo-icon {
  font-size: 2rem;
}

.turkey-footer-logo .turkey-logo-text span {
  color: var(--turkey-primary);
}

.turkey-footer-about p {
  font-size: 0.9rem;
  opacity: 0.85;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Social Links */
.turkey-footer-social {
  display: flex;
  gap: 12px;
}

.turkey-footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--turkey-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--turkey-white);
  font-size: 1rem;
  transition: var(--turkey-transition);
}

.turkey-footer-social a:hover {
  background: var(--turkey-primary);
  transform: translateY(-3px);
}

/* Footer Columns */
.turkey-footer-col h4 {
  font-family: var(--turkey-font-heading);
  font-size: 1.2rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 12px;
}

.turkey-footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--turkey-primary);
  border-radius: 3px;
}

.turkey-footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.turkey-footer-col ul li a {
  font-size: 0.9rem;
  opacity: 0.85;
  transition: var(--turkey-transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.turkey-footer-col ul li a:hover {
  opacity: 1;
  color: var(--turkey-accent);
  padding-left: 5px;
}

.turkey-footer-col ul li a.active {
  color: var(--turkey-accent);
}

/* Footer Contact */
.turkey-footer-contact ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.turkey-footer-contact ul li i {
  color: var(--turkey-accent);
  width: 20px;
  margin-top: 3px;
  flex-shrink: 0;
}

.turkey-footer-contact ul li span,
.turkey-footer-contact ul li a {
  font-size: 0.9rem;
  opacity: 0.85;
}

.turkey-footer-contact ul li a:hover {
  opacity: 1;
  color: var(--turkey-accent);
}

/* Newsletter */
.turkey-footer-newsletter {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}

.turkey-footer-newsletter h4 {
  font-family: var(--turkey-font-heading);
  font-size: 1.3rem;
  margin-bottom: 10px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.turkey-footer-newsletter h4 i {
  color: var(--turkey-accent);
}

.turkey-footer-newsletter > p {
  font-size: 0.9rem;
  opacity: 0.85;
  margin-bottom: 20px;
}

.turkey-newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  gap: 10px;
}

.turkey-newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border: none;
  border-radius: var(--turkey-radius);
  font-size: 1rem;
  background: var(--turkey-white);
  color: var(--turkey-text);
}

.turkey-newsletter-form input::placeholder {
  color: var(--turkey-text-muted);
}

.turkey-newsletter-form input:focus {
  outline: 2px solid var(--turkey-primary);
  outline-offset: 2px;
}

.turkey-newsletter-form button {
  white-space: nowrap;
}

/* Footer Bottom */
.turkey-footer-bottom {
  background: rgba(0,0,0,0.2);
  padding: 20px 0;
}

.turkey-footer-bottom-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.turkey-footer-bottom-content > p {
  font-size: 0.85rem;
  opacity: 0.8;
}

.turkey-footer-links {
  display: flex;
  gap: 25px;
}

.turkey-footer-links a {
  font-size: 0.85rem;
  opacity: 0.8;
  transition: var(--turkey-transition);
}

.turkey-footer-links a:hover {
  opacity: 1;
  color: var(--turkey-accent);
}

.turkey-payment-methods {
  display: flex;
  align-items: center;
  gap: 12px;
}

.turkey-payment-methods span {
  font-size: 0.85rem;
  opacity: 0.8;
}

.turkey-payment-methods i {
  font-size: 1.5rem;
  opacity: 0.9;
}

@media (max-width: 1024px) {
  .turkey-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .turkey-footer-top {
    padding: 40px 0 30px;
  }
  
  .turkey-footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }
  
  .turkey-footer-about {
    max-width: 100%;
  }
  
  .turkey-footer-social {
    justify-content: center;
  }
  
  .turkey-footer-col h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .turkey-footer-col ul {
    align-items: center;
  }
  
  .turkey-footer-contact ul li {
    justify-content: center;
  }
  
  .turkey-newsletter-form {
    flex-direction: column;
  }
  
  .turkey-newsletter-form button {
    width: 100%;
  }
  
  .turkey-footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
  
  .turkey-footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }
  
  .turkey-payment-methods {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* ========== LIGHTBOX ========== */
.turkey-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.95);
  z-index: var(--turkey-z-lightbox);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--turkey-transition);
}

.turkey-lightbox[hidden] {
  display: none;
}

.turkey-lightbox.active {
  opacity: 1;
  visibility: visible;
}

.turkey-lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.1);
  color: var(--turkey-white);
  border-radius: var(--turkey-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: var(--turkey-transition);
  z-index: 10;
  cursor: pointer;
}

.turkey-lightbox-close:hover {
  background: var(--turkey-primary);
  transform: scale(1.1);
}

.turkey-lightbox-prev,
.turkey-lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.1);
  color: var(--turkey-white);
  border-radius: var(--turkey-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--turkey-transition);
  z-index: 10;
  cursor: pointer;
}

.turkey-lightbox-prev {
  left: 20px;
}

.turkey-lightbox-next {
  right: 20px;
}

.turkey-lightbox-prev:hover,
.turkey-lightbox-next:hover {
  background: var(--turkey-primary);
  transform: translateY(-50%) scale(1.1);
}

.turkey-lightbox-content {
  max-width: 90%;
  max-height: 90%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.turkey-lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--turkey-radius);
  box-shadow: 0 10px 50px rgba(0,0,0,0.5);
}

.turkey-lightbox-caption {
  color: var(--turkey-white);
  font-size: 1rem;
  margin-top: 15px;
  opacity: 0.9;
  max-width: 600px;
}

@media (max-width: 768px) {
  .turkey-lightbox-close {
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  
  .turkey-lightbox-prev,
  .turkey-lightbox-next {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .turkey-lightbox-prev {
    left: 10px;
  }
  
  .turkey-lightbox-next {
    right: 10px;
  }
  
  .turkey-lightbox-caption {
    font-size: 0.9rem;
    padding: 0 20px;
  }
}

/* ========== STICKY BOTTOM CTA (MOBILE) ========== */
.turkey-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--turkey-white);
  padding: 12px 15px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  z-index: var(--turkey-z-sticky);
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.turkey-sticky-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 10px 5px;
  border-radius: var(--turkey-radius);
  font-size: 0.75rem;
  font-weight: 600;
  transition: var(--turkey-transition);
  text-decoration: none;
}

.turkey-sticky-btn i {
  font-size: 1.2rem;
}

.turkey-sticky-call {
  background: var(--turkey-gradient-accent);
  color: var(--turkey-secondary);
}

.turkey-sticky-call:hover {
  transform: scale(1.02);
}

.turkey-sticky-whatsapp {
  background: #25D366;
  color: var(--turkey-white);
}

.turkey-sticky-whatsapp:hover {
  background: #128C7E;
}

.turkey-sticky-enquire {
  background: var(--turkey-gradient-primary);
  color: var(--turkey-white);
}

.turkey-sticky-enquire:hover {
  transform: scale(1.02);
}

@media (max-width: 768px) {
  .turkey-sticky-cta {
    display: grid;
  }
  
  /* Adjust WhatsApp float on mobile when sticky CTA is visible */
  .turkey-whatsapp-float {
    display: none;
  }
  
  /* Adjust back to top button position */
  .turkey-back-to-top {
    bottom: 90px;
  }
}

/* ========== ANIMATIONS ========== */
@keyframes turkeyFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes turkeyFadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes turkeyFadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes turkeyFadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes turkeyFadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes turkeyPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes turkeyShake {
  0%, 100% {
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translateX(-5px);
  }
  20%, 40%, 60%, 80% {
    transform: translateX(5px);
  }
}

@keyframes turkeyFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes turkeyGlow {
  0%, 100% {
    box-shadow: 0 0 5px rgba(227, 10, 23, 0.5);
  }
  50% {
    box-shadow: 0 0 20px rgba(227, 10, 23, 0.8);
  }
}

@keyframes turkeyRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes turkeyZoomIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes turkeySlideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes turkeyHeartbeat {
  0%, 100% {
    transform: scale(1);
  }
  14% {
    transform: scale(1.1);
  }
  28% {
    transform: scale(1);
  }
  42% {
    transform: scale(1.1);
  }
  70% {
    transform: scale(1);
  }
}

/* Animation Classes */
.turkey-animate-fade-in {
  animation: turkeyFadeIn 0.6s ease forwards;
}

.turkey-animate-fade-in-up {
  animation: turkeyFadeInUp 0.6s ease forwards;
}

.turkey-animate-fade-in-down {
  animation: turkeyFadeInDown 0.6s ease forwards;
}

.turkey-animate-fade-in-left {
  animation: turkeyFadeInLeft 0.6s ease forwards;
}

.turkey-animate-fade-in-right {
  animation: turkeyFadeInRight 0.6s ease forwards;
}

.turkey-animate-pulse {
  animation: turkeyPulse 2s ease infinite;
}

.turkey-animate-float {
  animation: turkeyFloat 3s ease infinite;
}

.turkey-animate-glow {
  animation: turkeyGlow 2s ease infinite;
}

.turkey-animate-shake {
  animation: turkeyShake 0.5s ease;
}

.turkey-animate-rotate {
  animation: turkeyRotate 2s linear infinite;
}

.turkey-animate-zoom-in {
  animation: turkeyZoomIn 0.4s ease forwards;
}

.turkey-animate-heartbeat {
  animation: turkeyHeartbeat 1.5s ease infinite;
}

/* Stagger animations */
.turkey-stagger-1 { animation-delay: 0.1s; }
.turkey-stagger-2 { animation-delay: 0.2s; }
.turkey-stagger-3 { animation-delay: 0.3s; }
.turkey-stagger-4 { animation-delay: 0.4s; }
.turkey-stagger-5 { animation-delay: 0.5s; }
.turkey-stagger-6 { animation-delay: 0.6s; }
.turkey-stagger-7 { animation-delay: 0.7s; }
.turkey-stagger-8 { animation-delay: 0.8s; }
.turkey-stagger-9 { animation-delay: 0.9s; }
.turkey-stagger-10 { animation-delay: 1.0s; }

/* ========== UTILITY CLASSES ========== */

/* Text Alignment */
.turkey-text-center {
  text-align: center;
}

.turkey-text-left {
  text-align: left;
}

.turkey-text-right {
  text-align: right;
}

/* Text Colors */
.turkey-text-primary {
  color: var(--turkey-primary);
}

.turkey-text-secondary {
  color: var(--turkey-secondary);
}

.turkey-text-accent {
  color: var(--turkey-accent);
}

.turkey-text-success {
  color: var(--turkey-success);
}

.turkey-text-danger {
  color: var(--turkey-danger);
}

.turkey-text-warning {
  color: var(--turkey-warning);
}

.turkey-text-info {
  color: var(--turkey-info);
}

.turkey-text-muted {
  color: var(--turkey-text-muted);
}

.turkey-text-white {
  color: var(--turkey-white);
}

/* Background Colors */
.turkey-bg-primary {
  background-color: var(--turkey-primary);
}

.turkey-bg-secondary {
  background-color: var(--turkey-secondary);
}

.turkey-bg-accent {
  background-color: var(--turkey-accent);
}

.turkey-bg-white {
  background-color: var(--turkey-white);
}

.turkey-bg-off-white {
  background-color: var(--turkey-off-white);
}

.turkey-bg-light-gray {
  background-color: var(--turkey-light-gray);
}

.turkey-bg-transparent {
  background-color: transparent;
}

/* Margin Utilities */
.turkey-m-0 { margin: 0; }
.turkey-m-1 { margin: 10px; }
.turkey-m-2 { margin: 20px; }
.turkey-m-3 { margin: 30px; }
.turkey-m-4 { margin: 40px; }
.turkey-m-5 { margin: 50px; }
.turkey-m-auto { margin: auto; }

.turkey-mt-0 { margin-top: 0; }
.turkey-mt-1 { margin-top: 10px; }
.turkey-mt-2 { margin-top: 20px; }
.turkey-mt-3 { margin-top: 30px; }
.turkey-mt-4 { margin-top: 40px; }
.turkey-mt-5 { margin-top: 50px; }

.turkey-mb-0 { margin-bottom: 0; }
.turkey-mb-1 { margin-bottom: 10px; }
.turkey-mb-2 { margin-bottom: 20px; }
.turkey-mb-3 { margin-bottom: 30px; }
.turkey-mb-4 { margin-bottom: 40px; }
.turkey-mb-5 { margin-bottom: 50px; }

.turkey-ml-0 { margin-left: 0; }
.turkey-ml-1 { margin-left: 10px; }
.turkey-ml-2 { margin-left: 20px; }
.turkey-ml-auto { margin-left: auto; }

.turkey-mr-0 { margin-right: 0; }
.turkey-mr-1 { margin-right: 10px; }
.turkey-mr-2 { margin-right: 20px; }
.turkey-mr-auto { margin-right: auto; }

.turkey-mx-0 { margin-left: 0; margin-right: 0; }
.turkey-mx-1 { margin-left: 10px; margin-right: 10px; }
.turkey-mx-2 { margin-left: 20px; margin-right: 20px; }
.turkey-mx-auto { margin-left: auto; margin-right: auto; }

.turkey-my-0 { margin-top: 0; margin-bottom: 0; }
.turkey-my-1 { margin-top: 10px; margin-bottom: 10px; }
.turkey-my-2 { margin-top: 20px; margin-bottom: 20px; }
.turkey-my-3 { margin-top: 30px; margin-bottom: 30px; }
.turkey-my-4 { margin-top: 40px; margin-bottom: 40px; }
.turkey-my-5 { margin-top: 50px; margin-bottom: 50px; }

/* Padding Utilities */
.turkey-p-0 { padding: 0; }
.turkey-p-1 { padding: 10px; }
.turkey-p-2 { padding: 20px; }
.turkey-p-3 { padding: 30px; }
.turkey-p-4 { padding: 40px; }
.turkey-p-5 { padding: 50px; }

.turkey-pt-0 { padding-top: 0; }
.turkey-pt-1 { padding-top: 10px; }
.turkey-pt-2 { padding-top: 20px; }
.turkey-pt-3 { padding-top: 30px; }
.turkey-pt-4 { padding-top: 40px; }
.turkey-pt-5 { padding-top: 50px; }

.turkey-pb-0 { padding-bottom: 0; }
.turkey-pb-1 { padding-bottom: 10px; }
.turkey-pb-2 { padding-bottom: 20px; }
.turkey-pb-3 { padding-bottom: 30px; }
.turkey-pb-4 { padding-bottom: 40px; }
.turkey-pb-5 { padding-bottom: 50px; }

.turkey-pl-0 { padding-left: 0; }
.turkey-pl-1 { padding-left: 10px; }
.turkey-pl-2 { padding-left: 20px; }

.turkey-pr-0 { padding-right: 0; }
.turkey-pr-1 { padding-right: 10px; }
.turkey-pr-2 { padding-right: 20px; }

.turkey-px-0 { padding-left: 0; padding-right: 0; }
.turkey-px-1 { padding-left: 10px; padding-right: 10px; }
.turkey-px-2 { padding-left: 20px; padding-right: 20px; }
.turkey-px-3 { padding-left: 30px; padding-right: 30px; }

.turkey-py-0 { padding-top: 0; padding-bottom: 0; }
.turkey-py-1 { padding-top: 10px; padding-bottom: 10px; }
.turkey-py-2 { padding-top: 20px; padding-bottom: 20px; }
.turkey-py-3 { padding-top: 30px; padding-bottom: 30px; }

/* Display Utilities */
.turkey-hidden {
  display: none !important;
}

.turkey-visible {
  display: block !important;
}

.turkey-invisible {
  visibility: hidden;
}

.turkey-flex {
  display: flex;
}

.turkey-inline-flex {
  display: inline-flex;
}

.turkey-grid {
  display: grid;
}

.turkey-inline-block {
  display: inline-block;
}

.turkey-block {
  display: block;
}

/* Flexbox Utilities */
.turkey-flex-row {
  flex-direction: row;
}

.turkey-flex-col {
  flex-direction: column;
}

.turkey-flex-wrap {
  flex-wrap: wrap;
}

.turkey-flex-nowrap {
  flex-wrap: nowrap;
}

.turkey-items-start {
  align-items: flex-start;
}

.turkey-items-center {
  align-items: center;
}

.turkey-items-end {
  align-items: flex-end;
}

.turkey-items-stretch {
  align-items: stretch;
}

.turkey-justify-start {
  justify-content: flex-start;
}

.turkey-justify-center {
  justify-content: center;
}

.turkey-justify-end {
  justify-content: flex-end;
}

.turkey-justify-between {
  justify-content: space-between;
}

.turkey-justify-around {
  justify-content: space-around;
}

.turkey-justify-evenly {
  justify-content: space-evenly;
}

.turkey-flex-1 {
  flex: 1;
}

.turkey-flex-auto {
  flex: auto;
}

.turkey-flex-none {
  flex: none;
}

/* Gap Utilities */
.turkey-gap-0 { gap: 0; }
.turkey-gap-1 { gap: 10px; }
.turkey-gap-2 { gap: 20px; }
.turkey-gap-3 { gap: 30px; }
.turkey-gap-4 { gap: 40px; }
.turkey-gap-5 { gap: 50px; }

/* Width Utilities */
.turkey-w-full {
  width: 100%;
}

.turkey-w-auto {
  width: auto;
}

.turkey-w-50 {
  width: 50%;
}

.turkey-w-screen {
  width: 100vw;
}

.turkey-max-w-full {
  max-width: 100%;
}

.turkey-min-w-0 {
  min-width: 0;
}

/* Height Utilities */
.turkey-h-full {
  height: 100%;
}

.turkey-h-auto {
  height: auto;
}

.turkey-h-screen {
  height: 100vh;
}

.turkey-min-h-screen {
  min-height: 100vh;
}

/* Border Utilities */
.turkey-border {
  border: 1px solid var(--turkey-light-gray);
}

.turkey-border-0 {
  border: 0;
}

.turkey-border-primary {
  border-color: var(--turkey-primary);
}

.turkey-border-accent {
  border-color: var(--turkey-accent);
}

.turkey-rounded {
  border-radius: var(--turkey-radius);
}

.turkey-rounded-sm {
  border-radius: var(--turkey-radius-sm);
}

.turkey-rounded-md {
  border-radius: var(--turkey-radius-md);
}

.turkey-rounded-lg {
  border-radius: var(--turkey-radius-lg);
}

.turkey-rounded-xl {
  border-radius: var(--turkey-radius-xl);
}

.turkey-rounded-full {
  border-radius: var(--turkey-radius-full);
}

.turkey-rounded-none {
  border-radius: 0;
}

/* Shadow Utilities */
.turkey-shadow-none {
  box-shadow: none;
}

.turkey-shadow-sm {
  box-shadow: var(--turkey-shadow-sm);
}

.turkey-shadow {
  box-shadow: var(--turkey-shadow);
}

.turkey-shadow-md {
  box-shadow: var(--turkey-shadow-md);
}

.turkey-shadow-lg {
  box-shadow: var(--turkey-shadow-lg);
}

.turkey-shadow-xl {
  box-shadow: var(--turkey-shadow-xl);
}

/* Overflow Utilities */
.turkey-overflow-hidden {
  overflow: hidden;
}

.turkey-overflow-auto {
  overflow: auto;
}

.turkey-overflow-scroll {
  overflow: scroll;
}

.turkey-overflow-visible {
  overflow: visible;
}

.turkey-overflow-x-hidden {
  overflow-x: hidden;
}

.turkey-overflow-y-auto {
  overflow-y: auto;
}

/* Position Utilities */
.turkey-relative {
  position: relative;
}

.turkey-absolute {
  position: absolute;
}

.turkey-fixed {
  position: fixed;
}

.turkey-sticky {
  position: sticky;
}

.turkey-static {
  position: static;
}

/* Z-Index Utilities */
.turkey-z-0 { z-index: 0; }
.turkey-z-10 { z-index: 10; }
.turkey-z-20 { z-index: 20; }
.turkey-z-30 { z-index: 30; }
.turkey-z-40 { z-index: 40; }
.turkey-z-50 { z-index: 50; }
.turkey-z-auto { z-index: auto; }

/* Cursor Utilities */
.turkey-cursor-pointer {
  cursor: pointer;
}

.turkey-cursor-default {
  cursor: default;
}

.turkey-cursor-not-allowed {
  cursor: not-allowed;
}

.turkey-cursor-grab {
  cursor: grab;
}

/* Pointer Events */
.turkey-pointer-events-none {
  pointer-events: none;
}

.turkey-pointer-events-auto {
  pointer-events: auto;
}

/* User Select */
.turkey-select-none {
  user-select: none;
}

.turkey-select-text {
  user-select: text;
}

.turkey-select-all {
  user-select: all;
}

/* Opacity Utilities */
.turkey-opacity-0 { opacity: 0; }
.turkey-opacity-25 { opacity: 0.25; }
.turkey-opacity-50 { opacity: 0.5; }
.turkey-opacity-75 { opacity: 0.75; }
.turkey-opacity-100 { opacity: 1; }

/* Transition Utilities */
.turkey-transition-none {
  transition: none;
}

.turkey-transition-fast {
  transition: var(--turkey-transition-fast);
}

.turkey-transition {
  transition: var(--turkey-transition);
}

.turkey-transition-slow {
  transition: var(--turkey-transition-slow);
}

/* Transform Utilities */
.turkey-transform-none {
  transform: none;
}

.turkey-scale-100 {
  transform: scale(1);
}

.turkey-scale-105 {
  transform: scale(1.05);
}

.turkey-scale-110 {
  transform: scale(1.1);
}

.turkey-rotate-45 {
  transform: rotate(45deg);
}

.turkey-rotate-90 {
  transform: rotate(90deg);
}

.turkey-rotate-180 {
  transform: rotate(180deg);
}

/* Text Utilities */
.turkey-font-normal {
  font-weight: 400;
}

.turkey-font-medium {
  font-weight: 500;
}

.turkey-font-semibold {
  font-weight: 600;
}

.turkey-font-bold {
  font-weight: 700;
}

.turkey-text-xs {
  font-size: 0.75rem;
}

.turkey-text-sm {
  font-size: 0.875rem;
}

.turkey-text-base {
  font-size: 1rem;
}

.turkey-text-lg {
  font-size: 1.125rem;
}

.turkey-text-xl {
  font-size: 1.25rem;
}

.turkey-text-2xl {
  font-size: 1.5rem;
}

.turkey-text-3xl {
  font-size: 2rem;
}

.turkey-uppercase {
  text-transform: uppercase;
}

.turkey-lowercase {
  text-transform: lowercase;
}

.turkey-capitalize {
  text-transform: capitalize;
}

.turkey-normal-case {
  text-transform: none;
}

.turkey-underline {
  text-decoration: underline;
}

.turkey-line-through {
  text-decoration: line-through;
}

.turkey-no-underline {
  text-decoration: none;
}

.turkey-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.turkey-break-words {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.turkey-whitespace-nowrap {
  white-space: nowrap;
}

.turkey-whitespace-normal {
  white-space: normal;
}

/* Line Height */
.turkey-leading-none {
  line-height: 1;
}

.turkey-leading-tight {
  line-height: 1.25;
}

.turkey-leading-normal {
  line-height: 1.5;
}

.turkey-leading-relaxed {
  line-height: 1.75;
}

.turkey-leading-loose {
  line-height: 2;
}

/* Letter Spacing */
.turkey-tracking-tight {
  letter-spacing: -0.025em;
}

.turkey-tracking-normal {
  letter-spacing: 0;
}

.turkey-tracking-wide {
  letter-spacing: 0.025em;
}

.turkey-tracking-wider {
  letter-spacing: 0.05em;
}

.turkey-tracking-widest {
  letter-spacing: 0.1em;
}

/* ========== PRINT STYLES ========== */
@media print {
  .turkey-navbar,
  .turkey-back-to-top,
  .turkey-whatsapp-float,
  .turkey-sticky-cta,
  .turkey-preloader,
  .turkey-lightbox,
  .turkey-hero-controls,
  .turkey-scroll-indicator,
  .turkey-btn,
  .turkey-gallery-overlay,
  .turkey-day-toggle,
  .turkey-faq-question i {
    display: none !important;
  }
  
  .turkey-hero {
    height: auto;
    min-height: auto;
    padding: 30px 20px;
    page-break-after: always;
  }
  
  .turkey-hero-slide {
    position: relative;
    opacity: 1;
  }
  
  .turkey-hero-slide:not(.active) {
    display: none;
  }
  
  .turkey-hero-overlay {
    background: rgba(0,0,0,0.3);
  }
  
  .turkey-section {
    padding: 20px 0;
    page-break-inside: avoid;
  }
  
  .turkey-day-details {
    display: block !important;
  }
  
  .turkey-faq-answer {
    display: block !important;
  }
  
  .turkey-booking-section,
  .turkey-cta-section {
    display: none;
  }
  
  body.turkey-page {
    font-size: 11pt;
    color: #000;
    background: #fff;
    line-height: 1.4;
  }
  
  a {
    color: #000;
    text-decoration: underline;
  }
  
  a[href^="http"]::after {
    content: " (" attr(href) ")";
    font-size: 9pt;
    color: #666;
  }
  
  h1, h2, h3, h4, h5, h6 {
    page-break-after: avoid;
    color: #000;
  }
  
  img {
    max-width: 100% !important;
    page-break-inside: avoid;
  }
  
  table {
    border-collapse: collapse;
  }
  
  table, th, td {
    border: 1px solid #000;
  }
  
  .turkey-destinations-grid,
  .turkey-reviews-grid {
    display: block;
  }
  
  .turkey-destination-card,
  .turkey-review-card {
    page-break-inside: avoid;
    margin-bottom: 20px;
    border: 1px solid #ccc;
  }
  
  .turkey-footer {
    background: none;
    color: #000;
    border-top: 2px solid #000;
    padding: 20px 0;
  }
  
  .turkey-footer-social,
  .turkey-footer-newsletter {
    display: none;
  }
}

/* ========== ACCESSIBILITY ========== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  .turkey-hero-slide {
    transition: none;
  }
  
  .turkey-preloader-icon {
    animation: none;
  }
  
  .turkey-preloader-bar span {
    animation: none;
    width: 100%;
  }
  
  .turkey-scroll-indicator {
    animation: none;
  }
  
  .turkey-wheel {
    animation: none;
  }
}

/* Focus Visible Styles */
.turkey-btn:focus-visible,
.turkey-nav-links a:focus-visible,
.turkey-gallery-item:focus-visible,
.turkey-faq-question:focus-visible,
.turkey-day-toggle:focus-visible {
  outline: 3px solid var(--turkey-primary);
  outline-offset: 2px;
}

.turkey-form-group input:focus-visible,
.turkey-form-group select:focus-visible,
.turkey-form-group textarea:focus-visible {
  outline: none;
  border-color: var(--turkey-primary);
  box-shadow: 0 0 0 3px rgba(227, 10, 23, 0.2);
}

/* Screen Reader Only */
.turkey-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.turkey-not-sr-only {
  position: static;
  width: auto;
  height: auto;
  padding: 0;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  :root {
    --turkey-primary: #CC0000;
    --turkey-primary-dark: #990000;
    --turkey-secondary: #000000;
    --turkey-accent: #FFD700;
    --turkey-text: #000000;
    --turkey-text-light: #333333;
    --turkey-light-gray: #CCCCCC;
  }
  
  .turkey-btn {
    border: 2px solid currentColor;
  }
  
  .turkey-btn-outline {
    border-width: 3px;
  }
  
  .turkey-nav-links li a,
  .turkey-footer-col ul li a {
    text-decoration: underline;
  }
  
  .turkey-form-group input,
  .turkey-form-group select,
  .turkey-form-group textarea {
    border-width: 3px;
  }
}

/* Dark Mode Support (Optional - Currently using light mode as default) */
@media (prefers-color-scheme: dark) {
  /* 
   * Uncomment and customize if you want to support dark mode
   * 
   * :root {
   *   --turkey-white: #1a1a2e;
   *   --turkey-off-white: #16213e;
   *   --turkey-text: #f5f5f5;
   *   --turkey-text-light: #cccccc;
   * }
   */
}

/* ========== CUSTOM SCROLLBAR ========== */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--turkey-light-gray);
}

::-webkit-scrollbar-thumb {
  background: var(--turkey-primary);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--turkey-primary-dark);
}

::-webkit-scrollbar-corner {
  background: var(--turkey-light-gray);
}

/* Firefox Scrollbar */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--turkey-primary) var(--turkey-light-gray);
}

/* ========== SELECTION STYLES ========== */
::selection {
  background: var(--turkey-primary);
  color: var(--turkey-white);
}

::-moz-selection {
  background: var(--turkey-primary);
  color: var(--turkey-white);
}

/* ========== PLACEHOLDER STYLES ========== */
::placeholder {
  color: var(--turkey-text-muted);
  opacity: 1;
}

::-webkit-input-placeholder {
  color: var(--turkey-text-muted);
}

::-moz-placeholder {
  color: var(--turkey-text-muted);
}

:-ms-input-placeholder {
  color: var(--turkey-text-muted);
}

::-ms-input-placeholder {
  color: var(--turkey-text-muted);
}

/* ========== AUTOCOMPLETE STYLES ========== */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
textarea:-webkit-autofill:active,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus,
select:-webkit-autofill:active {
  -webkit-text-fill-color: var(--turkey-text);
  -webkit-box-shadow: 0 0 0px 1000px var(--turkey-white) inset;
  box-shadow: 0 0 0px 1000px var(--turkey-white) inset;
  transition: background-color 5000s ease-in-out 0s;
}

/* ========== IMAGE PLACEHOLDER ========== */
.turkey-img-placeholder {
  background: linear-gradient(135deg, var(--turkey-light-gray) 0%, var(--turkey-off-white) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--turkey-text-muted);
  font-size: 2rem;
}

/* ========== LOADING SKELETON ========== */
.turkey-skeleton {
  background: linear-gradient(90deg, var(--turkey-light-gray) 25%, var(--turkey-off-white) 50%, var(--turkey-light-gray) 75%);
  background-size: 200% 100%;
  animation: turkeySkeletonLoading 1.5s infinite;
  border-radius: var(--turkey-radius);
}

@keyframes turkeySkeletonLoading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

.turkey-skeleton-text {
  height: 1em;
  margin-bottom: 0.5em;
}

.turkey-skeleton-title {
  height: 1.5em;
  width: 60%;
  margin-bottom: 1em;
}

.turkey-skeleton-image {
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
}

.turkey-skeleton-circle {
  border-radius: 50%;
}

/* ========== TOOLTIP ========== */
.turkey-tooltip {
  position: relative;
  cursor: help;
}

.turkey-tooltip::before,
.turkey-tooltip::after {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transition: var(--turkey-transition);
  z-index: 100;
}

.turkey-tooltip::before {
  content: attr(data-tooltip);
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  padding: 8px 12px;
  background: var(--turkey-secondary);
  color: var(--turkey-white);
  font-size: 0.85rem;
  font-weight: 400;
  white-space: nowrap;
  border-radius: var(--turkey-radius);
  box-shadow: var(--turkey-shadow-md);
}

.turkey-tooltip::after {
  content: '';
  bottom: calc(100% + 2px);
  left: 50%;
  transform: translateX(-50%);
  border: 8px solid transparent;
  border-top-color: var(--turkey-secondary);
}

.turkey-tooltip:hover::before,
.turkey-tooltip:hover::after,
.turkey-tooltip:focus::before,
.turkey-tooltip:focus::after {
  opacity: 1;
  visibility: visible;
}

/* Tooltip Positions */
.turkey-tooltip-bottom::before {
  bottom: auto;
  top: calc(100% + 10px);
}

.turkey-tooltip-bottom::after {
  bottom: auto;
  top: calc(100% + 2px);
  border-top-color: transparent;
  border-bottom-color: var(--turkey-secondary);
}

.turkey-tooltip-left::before {
  bottom: auto;
  top: 50%;
  left: auto;
  right: calc(100% + 10px);
  transform: translateY(-50%);
}

.turkey-tooltip-left::after {
  bottom: auto;
  top: 50%;
  left: auto;
  right: calc(100% + 2px);
  transform: translateY(-50%);
  border-top-color: transparent;
  border-left-color: var(--turkey-secondary);
}

.turkey-tooltip-right::before {
  bottom: auto;
  top: 50%;
  left: calc(100% + 10px);
  transform: translateY(-50%);
}

.turkey-tooltip-right::after {
  bottom: auto;
  top: 50%;
  left: calc(100% + 2px);
  transform: translateY(-50%);
  border-top-color: transparent;
  border-right-color: var(--turkey-secondary);
}

/* ========== BADGE VARIANTS ========== */
.turkey-badge-sm {
  padding: 4px 10px;
  font-size: 0.7rem;
}

.turkey-badge-lg {
  padding: 10px 20px;
  font-size: 0.95rem;
}

.turkey-badge-success {
  background: rgba(40, 167, 69, 0.15);
  color: var(--turkey-success);
  border: 1px solid rgba(40, 167, 69, 0.3);
}

.turkey-badge-warning {
  background: rgba(255, 193, 7, 0.15);
  color: #856404;
  border: 1px solid rgba(255, 193, 7, 0.3);
}

.turkey-badge-danger {
  background: rgba(220, 53, 69, 0.15);
  color: var(--turkey-danger);
  border: 1px solid rgba(220, 53, 69, 0.3);
}

.turkey-badge-info {
  background: rgba(23, 162, 184, 0.15);
  color: var(--turkey-info);
  border: 1px solid rgba(23, 162, 184, 0.3);
}

/* ================================
   REMOVE RIGHT WHITE SPACE ISSUE
================================ */
.turkey-container,
.turkey-hero-content,
.turkey-hero-slider {
  margin-left: auto;
  margin-right: auto;
}

/* ========== END OF CSS ========== */