/* ============================================
   Traventure.gr - Custom Styles
   ============================================ */

/* --- CSS Variables --- */
:root {
  --color-primary: #CEBD88;
  --color-primary-dark: #b09f6a;
  --color-primary-light: rgba(206,189,136,.15);
  --color-navy: #28364B;
  --color-navy-dark: #000419;
  --color-gray: #F1F0E8;
  --color-red: #E14C38;
  --color-white: #FFFFFF;
  --color-bg: #FFFFFF;
  --color-bg-alt: #F1F0E8;
  --color-bg-dark: #28364B;
  --color-text: #28364B;
  --color-text-muted: #6b7a8d;
  --color-text-light: #FFFFFF;
  --color-border: rgba(40,54,75,.1);
  --font-main: 'Raleway', sans-serif;
  --font-headers: 'Playfair Display', serif;
  --font-accent: 'Pinyon Script', cursive;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,.1);
  --shadow-lg: 0 10px 40px rgba(0,0,0,.15);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

/* --- Dark Mode --- */
[data-theme="dark"] {
  --color-bg: #0f172a;
  --color-bg-alt: #1e293b;
  --color-bg-dark: #0f172a;
  --color-text: #e2e8f0;
  --color-text-muted: #94a3b8;
  --color-border: rgba(255,255,255,.1);
  --color-gray: #1e293b;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.3);
  --shadow-md: 0 4px 20px rgba(0,0,0,.4);
  --shadow-lg: 0 10px 40px rgba(0,0,0,.5);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-main);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  font-size: 16px;
  transition: background var(--transition), color var(--transition);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary-dark); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-primary); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headers);
  color: var(--color-text);
  line-height: 1.3;
  font-weight: 700;
}

.accent-font { font-family: var(--font-accent); }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .5px;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-navy);
  border-color: var(--color-primary);
}
.btn-primary:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(206,189,136,.4);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}
.btn-outline:hover {
  background: var(--color-white);
  color: var(--color-navy);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--color-navy);
  color: var(--color-white);
  border-color: var(--color-navy);
}
.btn-dark:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-navy);
  transform: translateY(-2px);
}

/* --- Navigation --- */
.nav-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--transition);
}

.nav-bar.scrolled {
  background: rgba(15,23,42,.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 8px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,.2);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 70px;
  transition: height var(--transition);
}
.nav-bar.scrolled .nav-logo img { height: 50px; }

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

.nav-links a {
  color: var(--color-white);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .5px;
  text-transform: uppercase;
  position: relative;
  padding: 4px 0;
}

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

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

/* Dark mode toggle */
.theme-toggle {
  background: none;
  border: none;
  color: var(--color-white);
  font-size: 20px;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.theme-toggle:hover {
  background: rgba(255,255,255,.15);
}
.nav-bar.scrolled .theme-toggle { color: var(--color-white); }

/* Social icons in nav */
.nav-social {
  display: flex;
  gap: 12px;
}
.nav-social a {
  color: var(--color-white);
  font-size: 16px;
  opacity: .8;
  transition: all var(--transition);
}
.nav-social a:hover { opacity: 1; color: var(--color-primary); }

/* Mobile menu */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}
.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-white);
  transition: all var(--transition);
  border-radius: 2px;
}
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease;
  background-size: cover;
  background-position: center;
}
.hero-slide.active { opacity: 1; }
.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,4,25,.6) 0%, rgba(40,54,75,.7) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 24px;
}

.hero-subtitle {
  font-family: var(--font-accent);
  font-size: clamp(24px, 4vw, 40px);
  color: var(--color-primary);
  margin-bottom: 8px;
}

.hero-title {
  font-size: clamp(36px, 6vw, 72px);
  color: var(--color-white);
  margin-bottom: 20px;
  line-height: 1.1;
}

.hero-desc {
  font-size: clamp(16px, 2vw, 18px);
  color: rgba(255,255,255,.85);
  margin-bottom: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-indicators {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 3;
}
.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--color-white);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition);
}
.hero-dot.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.scroll-indicator {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  animation: bounce 2s infinite;
}
.scroll-indicator a { color: var(--color-white); font-size: 28px; }

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

/* --- Sections --- */
.section {
  padding: 100px 0;
  position: relative;
}
.section-alt { background: var(--color-bg-alt); }
.section-dark {
  background: var(--color-navy);
  color: var(--color-white);
}
[data-theme="dark"] .section-dark { background: #0c1425; }
[data-theme="dark"] .section-alt { background: var(--color-bg-alt); }

.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header .subtitle {
  font-family: var(--font-accent);
  font-size: 28px;
  color: var(--color-primary);
  display: block;
  margin-bottom: 8px;
}
.section-header h2 {
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 16px;
}
.section-dark .section-header h2 { color: var(--color-white); }
.section-header p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--color-text-muted);
  font-size: 17px;
  line-height: 1.8;
}
.section-dark .section-header p { color: rgba(255,255,255,.7); }

.section-divider {
  width: 60px;
  height: 3px;
  background: var(--color-primary);
  margin: 20px auto;
  border-radius: 2px;
}

/* --- Service Cards --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
  position: relative;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-card .card-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.service-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.service-card:hover .card-image img { transform: scale(1.08); }

.service-card .card-body {
  padding: 28px;
}
.service-card .card-body h3 {
  font-size: 22px;
  margin-bottom: 12px;
}
.service-card .card-body p {
  color: var(--color-text-muted);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
}
.card-link {
  color: var(--color-primary-dark);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.card-link:hover { gap: 10px; }

/* --- Stats / Counter --- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}
.stat-item h3 {
  font-size: 56px;
  color: var(--color-primary);
  margin-bottom: 8px;
  line-height: 1;
}
.stat-item h4 {
  font-size: 18px;
  color: var(--color-white);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.stat-item p {
  color: rgba(255,255,255,.7);
  font-size: 14px;
  line-height: 1.7;
  max-width: 300px;
  margin: 0 auto;
}

/* --- Excursions Grid --- */
.excursions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.excursion-card {
  background: var(--color-bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.excursion-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.excursion-card .card-image {
  height: 200px;
  overflow: hidden;
}
.excursion-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.excursion-card:hover .card-image img { transform: scale(1.05); }
.excursion-card .card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.excursion-card .card-body h4 {
  font-size: 18px;
  margin-bottom: 8px;
}
.excursion-card .card-body p {
  color: var(--color-text-muted);
  font-size: 14px;
  line-height: 1.6;
  flex: 1;
}

/* --- Packages --- */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.package-card {
  background: var(--color-bg);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border-top: 4px solid transparent;
}
.package-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-top-color: var(--color-primary);
}
.package-card .pkg-icon {
  font-size: 28px;
  color: var(--color-primary);
  margin-bottom: 16px;
}
.package-card h4 {
  font-size: 20px;
  margin-bottom: 16px;
}
.package-card ul {
  list-style: none;
  padding: 0;
}
.package-card ul li {
  padding: 4px 0;
  color: var(--color-text-muted);
  font-size: 14px;
  position: relative;
  padding-left: 20px;
}
.package-card ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

/* --- Video Section --- */
.video-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.video-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,4,25,.75);
}
.video-section .container { position: relative; z-index: 1; }

.video-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
}

.video-text h2 { color: var(--color-white); margin-bottom: 20px; }
.video-text p { color: rgba(255,255,255,.8); line-height: 1.8; margin-bottom: 28px; }

.video-play {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}
.video-play img {
  width: 100%;
  display: block;
}
.video-play .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--color-navy);
  transition: all var(--transition);
  box-shadow: 0 0 0 0 rgba(206,189,136,.5);
}
.video-play:hover .play-btn {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 0 0 20px rgba(206,189,136,.15);
}

/* --- Zakynthos Section --- */
.zakynthos-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.zakynthos-text h2 { margin-bottom: 20px; }
.zakynthos-text p {
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}
.zakynthos-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.zakynthos-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

/* --- Contact Section --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info h3 {
  font-size: 28px;
  margin-bottom: 20px;
}
.contact-info p {
  color: var(--color-text-muted);
  margin-bottom: 24px;
  line-height: 1.8;
}

.contact-list {
  list-style: none;
  padding: 0;
}
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 12px 0;
  color: var(--color-text);
  font-size: 15px;
}
.contact-list li i {
  color: var(--color-primary);
  font-size: 18px;
  margin-top: 3px;
  min-width: 20px;
}
.contact-list li a { color: var(--color-text); }
.contact-list li a:hover { color: var(--color-primary); }

.contact-social {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}
.contact-social a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary-dark);
  font-size: 18px;
  transition: all var(--transition);
}
.contact-social a:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-3px);
}

.contact-form {
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.contact-form h3 {
  font-size: 24px;
  margin-bottom: 24px;
}
.contact-form .form-group {
  margin-bottom: 20px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 20px;
  border: 2px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-main);
  font-size: 15px;
  transition: border-color var(--transition);
  outline: none;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--color-primary);
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form .btn { width: 100%; justify-content: center; }

/* --- Hours --- */
.hours-grid {
  display: grid;
  gap: 8px;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 15px;
}
.hours-row span:first-child { font-weight: 600; }
.hours-row span:last-child { color: var(--color-text-muted); }

/* --- Partners --- */
.partners-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.partners-grid img {
  height: 80px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: .6;
  transition: opacity var(--transition);
}
.partners-grid img:hover { opacity: 1; }

/* --- Footer --- */
.site-footer {
  background: var(--color-navy-dark);
  color: rgba(255,255,255,.7);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-brand img { height: 60px; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; line-height: 1.7; }

.footer-links h4,
.footer-contact h4 {
  color: var(--color-white);
  font-size: 18px;
  margin-bottom: 20px;
}
.footer-links ul {
  list-style: none;
  padding: 0;
}
.footer-links ul li { padding: 6px 0; }
.footer-links ul li a {
  color: rgba(255,255,255,.7);
  font-size: 14px;
  transition: color var(--transition);
}
.footer-links ul li a:hover { color: var(--color-primary); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 6px 0;
  font-size: 14px;
}
.footer-contact-item i {
  color: var(--color-primary);
  margin-top: 3px;
  min-width: 16px;
}
.footer-contact-item a { color: rgba(255,255,255,.7); }
.footer-contact-item a:hover { color: var(--color-primary); }

.footer-bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 14px;
}

/* --- Back to top --- */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  border: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition);
  z-index: 999;
  box-shadow: var(--shadow-md);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* --- Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Map --- */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-top: 60px;
}
.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
}

/* --- Video Modal --- */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}
.video-modal.active { opacity: 1; visibility: visible; }
.video-modal .modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: white;
  font-size: 32px;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 10001;
}
.video-modal iframe {
  width: 90vw;
  max-width: 900px;
  height: 50.625vw;
  max-height: 506px;
  border: none;
  border-radius: var(--radius);
}

/* --- CTA Banner --- */
.cta-banner {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
  padding: 100px 0;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,4,25,.8);
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--color-white); font-size: clamp(28px, 4vw, 44px); margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,.8); font-size: 18px; margin-bottom: 32px; max-width: 600px; margin-left: auto; margin-right: auto; }

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-social { display: none; }
  .mobile-toggle { display: flex; }

  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15,23,42,.98);
    backdrop-filter: blur(20px);
    justify-content: center;
    align-items: center;
    gap: 24px;
    z-index: 999;
  }
  .nav-links.active a { font-size: 20px; }

  .video-grid { grid-template-columns: 1fr; }
  .zakynthos-content { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* --- Language Switcher --- */
.lang-switcher {
  position: relative;
}
.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 6px 12px;
  color: var(--color-text);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  transition: border-color 0.3s, background 0.3s;
}
.lang-btn:hover {
  border-color: var(--color-primary);
  background: rgba(var(--color-primary-rgb, 198, 163, 80), 0.1);
}
.lang-arrow {
  font-size: 10px;
  transition: transform 0.3s;
}
.lang-switcher.open .lang-arrow {
  transform: rotate(180deg);
}
.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 6px 0;
  min-width: 160px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.25s, visibility 0.25s, transform 0.25s;
  z-index: 1000;
  list-style: none;
}
.lang-switcher.open .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.lang-dropdown li {
  padding: 0;
}
.lang-dropdown button {
  width: 100%;
  text-align: left;
  padding: 10px 18px;
  background: none;
  border: none;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.lang-dropdown button:hover {
  background: rgba(var(--color-primary-rgb, 198, 163, 80), 0.15);
  color: var(--color-primary);
}
.lang-dropdown button.active {
  color: var(--color-primary);
  font-weight: 700;
}

/* --- Detail Modals --- */
.detail-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s;
}
.detail-modal.active {
  opacity: 1;
  visibility: visible;
}
.detail-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}
.detail-modal-content {
  position: relative;
  background: var(--color-bg);
  color: var(--color-text);
  border-radius: 16px;
  padding: 48px 40px 36px;
  max-width: 680px;
  width: 90%;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: translateY(30px) scale(0.96);
  transition: transform 0.35s ease;
}
.detail-modal.active .detail-modal-content {
  transform: translateY(0) scale(1);
}
.detail-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 22px;
  color: var(--color-text-light);
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.detail-modal-close:hover {
  background: rgba(0, 0, 0, 0.08);
  color: var(--color-text);
}
.detail-modal-content h3 {
  font-family: var(--font-heading);
  font-size: 26px;
  margin-bottom: 20px;
  padding-right: 32px;
  color: var(--color-heading);
}
.detail-modal-content h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  margin: 24px 0 8px;
  color: var(--color-primary);
}
.detail-modal-content p {
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 14px;
  color: var(--color-text);
}
.detail-modal-content ul {
  padding-left: 20px;
  margin-bottom: 18px;
}
.detail-modal-content ul li {
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 6px;
}
.detail-modal-book {
  display: inline-block;
  margin-top: 16px;
}
@media (max-width: 600px) {
  .detail-modal-content {
    padding: 36px 24px 28px;
    border-radius: 12px;
  }
  .detail-modal-content h3 {
    font-size: 22px;
  }
}

/* --- About Full Section --- */
.about-full {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}
.about-image {
  position: relative;
}
.about-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}
.about-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.about-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: transform 0.3s, background 0.3s;
}
.about-social a:hover {
  transform: translateY(-3px);
  background: var(--color-text);
}
.about-text h2 {
  font-size: 32px;
  margin-bottom: 16px;
}
.about-text p {
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* --- About Details (Accordion + Destinations) --- */
.about-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Accordion */
.accordion-item {
  border: 1px solid var(--color-border);
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.3s;
}
.accordion-item.active {
  border-color: var(--color-primary);
}
.accordion-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  background: var(--color-bg);
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  color: var(--color-text);
  transition: background 0.3s, color 0.3s;
}
.accordion-header:hover {
  background: var(--color-primary);
  color: #fff;
}
.accordion-item.active .accordion-header {
  background: var(--color-primary);
  color: #fff;
}
.accordion-header i {
  transition: transform 0.3s;
  font-size: 14px;
}
.accordion-item.active .accordion-header i {
  transform: rotate(180deg);
}
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 24px;
}
.accordion-item.active .accordion-body {
  max-height: 300px;
  padding: 20px 24px;
}
.accordion-body p {
  color: var(--color-text-muted);
  line-height: 1.8;
}

/* Progress Bars */
.about-destinations h4 {
  font-size: 24px;
  margin-bottom: 24px;
}
.progress-item {
  margin-bottom: 20px;
}
.progress-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
}
.progress-bar {
  width: 100%;
  height: 8px;
  background: var(--color-border);
  border-radius: 4px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--color-primary), #e6c97a);
  border-radius: 4px;
  transition: width 1.5s ease;
}

/* --- Booking / Reservations Section --- */
.booking-intro {
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;
}
.booking-intro p {
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 12px;
}
.booking-intro blockquote {
  background: var(--color-bg-alt);
  border-left: 4px solid var(--color-primary);
  padding: 20px 28px;
  margin: 24px 0 0;
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: var(--color-text);
  line-height: 1.7;
}
.booking-form-wrap {
  max-width: 800px;
  margin: 0 auto;
}
.booking-form {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 40px;
}
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.booking-form label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--color-text);
}
.booking-form input,
.booking-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: var(--color-bg-alt);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 15px;
  transition: border-color 0.3s;
}
.booking-form input:focus,
.booking-form textarea:focus {
  outline: none;
  border-color: var(--color-primary);
}
.booking-form textarea {
  min-height: 120px;
  resize: vertical;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .excursions-grid { grid-template-columns: 1fr; }
  .packages-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .stat-item h3 { font-size: 42px; }
  .partners-grid { gap: 24px; }
  .partners-grid img { height: 50px; }
  .contact-form { padding: 24px; }
  .zakynthos-image img { height: 300px; }
  .about-full { grid-template-columns: 1fr; }
  .about-details { grid-template-columns: 1fr; }
  .booking-grid { grid-template-columns: 1fr; }
  .booking-form { padding: 24px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-title { font-size: 32px; }
  .hero-subtitle { font-size: 22px; }
}
