/* ═══════════════════════════════════════════════════
   Alanya Tour — Frontend Stylesheet
   Aesthetic: Luxury Mediterranean
   Fonts: Cormorant Garamond (display) + DM Sans (body)
   ═══════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,400;1,600&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── Variables ───────────────────────────────────── */
:root {
  --navy:       #0d1b2a;
  --navy-2:     #162236;
  --navy-light: #1e3352;
  --gold:       #c9965a;
  --gold-light: #e8b87a;
  --gold-pale:  #f5e6d3;
  --cream:      #faf7f2;
  --white:      #ffffff;
  --text:       #2d2d2d;
  --text-muted: #6b7280;
  --border:     rgba(201,150,90,.2);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;

  --shadow-sm:  0 2px 12px rgba(13,27,42,.08);
  --shadow-md:  0 8px 32px rgba(13,27,42,.14);
  --shadow-lg:  0 20px 60px rgba(13,27,42,.20);

  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  24px;
  --radius-xl:  40px;

  --trans: all .3s cubic-bezier(.4,0,.2,1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; transition: var(--trans); }
button { cursor: pointer; font-family: var(--font-body); }

/* ── Typography ──────────────────────────────────── */
.display-title {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -.01em;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--navy);
}
.section-subtitle {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

/* ── Buttons ─────────────────────────────────────── */
.btn-gold {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, #b8804a, #e5b96c);
  color: white;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  border: none;
  box-shadow: 0 4px 20px rgba(184,128,74,.35);
  transition: var(--trans);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(184,128,74,.45);
  color: white;
}
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  color: var(--navy);
  padding: 13px 31px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  border: 1.5px solid rgba(13,27,42,.2);
  transition: var(--trans);
}
.btn-outline:hover {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}
.btn-outline-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.12);
  color: white;
  padding: 13px 31px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  border: 1.5px solid rgba(255,255,255,.3);
  backdrop-filter: blur(8px);
  transition: var(--trans);
}
.btn-outline-white:hover {
  background: white;
  color: var(--navy);
  border-color: white;
}

/* ── Header ──────────────────────────────────────── */
#header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: var(--trans);
}
#header.scrolled {
  background: rgba(13,27,42,.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0,0,0,.3);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 40px;
  max-width: 1320px; margin: 0 auto;
  transition: padding .3s;
}
#header.scrolled .header-inner { padding: 14px 40px; }

.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: white;
}
.logo-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, #b8804a, #e5b96c);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.logo span { color: var(--gold-light); }

.nav-links {
  display: flex; align-items: center; gap: 8px;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,.8);
  font-size: 14px;
  font-weight: 400;
  padding: 8px 16px;
  border-radius: 50px;
  transition: var(--trans);
}
.nav-links a:hover { color: white; background: rgba(255,255,255,.08); }

.header-actions {
  display: flex; align-items: center; gap: 12px;
}
.lang-switcher {
  display: flex; align-items: center; gap: 4px;
  color: rgba(255,255,255,.7);
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,.15);
  cursor: pointer;
  transition: var(--trans);
}
.lang-switcher:hover { color: white; border-color: rgba(255,255,255,.3); }

.currency-switcher {
  color: rgba(255,255,255,.7);
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,.15);
  background: transparent;
  cursor: pointer;
  transition: var(--trans);
}
.currency-switcher:hover { color: white; border-color: rgba(255,255,255,.3); }

.mobile-menu-btn {
  display: none;
  background: none; border: none;
  color: white; font-size: 22px; padding: 4px;
}

/* ── Mobile Nav ──────────────────────────────────── */
.mobile-nav {
  display: none;
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--navy);
  z-index: 999;
  flex-direction: column;
  padding: 80px 40px 40px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: white; font-size: 28px;
  font-family: var(--font-display);
  padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.08);
}
.mobile-nav-close {
  position: absolute; top: 24px; right: 24px;
  background: none; border: none;
  color: white; font-size: 24px;
}

/* ── Hero ────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--navy);
  position: relative;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('/public/assets/img/hero-bg.jpg') center/cover no-repeat;
  opacity: .35;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero:hover .hero-bg { transform: scale(1.0); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg,
    rgba(13,27,42,.95) 0%,
    rgba(13,27,42,.6) 50%,
    rgba(22,50,86,.4) 100%
  );
}
.hero-content {
  position: relative; z-index: 1;
  max-width: 1320px; margin: 0 auto;
  padding: 120px 40px 80px;
  width: 100%;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,150,90,.15);
  border: 1px solid rgba(201,150,90,.3);
  color: var(--gold-light);
  font-size: 12px; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 8px 18px; border-radius: 50px;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  color: white;
  line-height: 1.05;
  margin-bottom: 24px;
  max-width: 760px;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-desc {
  color: rgba(255,255,255,.7);
  font-size: 18px; font-weight: 300;
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 64px; }
.hero-stats {
  display: flex; gap: 48px; flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 40px;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem; font-weight: 600;
  color: white; line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-num span { color: var(--gold-light); }
.hero-stat-label { color: rgba(255,255,255,.5); font-size: 13px; }

/* Search Box */
.search-box {
  background: white;
  border-radius: var(--radius-xl);
  padding: 6px 6px 6px 24px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow-lg);
  max-width: 680px;
  margin-top: 32px;
}
.search-box input {
  flex: 1; border: none; outline: none;
  font-family: var(--font-body);
  font-size: 15px; color: var(--text);
  background: transparent;
}
.search-box input::placeholder { color: #aaa; }
.search-box select {
  border: none; outline: none;
  font-family: var(--font-body);
  font-size: 14px; color: var(--text);
  padding: 0 16px 0 8px;
  border-left: 1px solid #e5e7eb;
  background: transparent;
  cursor: pointer;
}

/* Floating Card */
.hero-float-card {
  position: absolute; right: 60px; bottom: 120px;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  color: white;
  min-width: 220px;
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
.hero-float-card .label { font-size: 11px; opacity: .6; margin-bottom: 6px; letter-spacing: .08em; text-transform: uppercase; }
.hero-float-card .value { font-family: var(--font-display); font-size: 1.6rem; font-weight: 600; }
.hero-float-card .badge { display: inline-flex; align-items: center; gap: 4px; background: rgba(50,205,100,.2); color: #4ade80; font-size: 11px; padding: 3px 10px; border-radius: 20px; margin-top: 8px; }

/* ── Section Base ────────────────────────────────── */
.section {
  padding: clamp(60px,8vw,100px) 40px;
  max-width: 1320px; margin: 0 auto;
}
.section-header {
  margin-bottom: clamp(32px,4vw,56px);
}

/* ── Tour Cards ──────────────────────────────────── */
.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.tour-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--trans);
  position: relative;
}
.tour-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.tour-card-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #e5e7eb;
}
.tour-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.tour-card:hover .tour-card-img img { transform: scale(1.06); }
.tour-card-badge {
  position: absolute; top: 14px; left: 14px;
  background: linear-gradient(135deg,#b8804a,#e5b96c);
  color: white; font-size: 11px; font-weight: 500;
  padding: 5px 12px; border-radius: 50px;
  letter-spacing: .04em; text-transform: uppercase;
}
.tour-card-wishlist {
  position: absolute; top: 14px; right: 14px;
  width: 36px; height: 36px;
  background: rgba(255,255,255,.9);
  border: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; cursor: pointer;
  transition: var(--trans);
  backdrop-filter: blur(4px);
}
.tour-card-wishlist:hover { background: white; transform: scale(1.1); }

.tour-card-body { padding: 20px; }
.tour-card-cat {
  font-size: 11px; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 8px;
}
.tour-card-title {
  font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 600;
  color: var(--navy); line-height: 1.3;
  margin-bottom: 12px;
}
.tour-card-meta {
  display: flex; gap: 16px; flex-wrap: wrap;
  font-size: 13px; color: var(--text-muted);
  margin-bottom: 16px;
}
.tour-card-meta span { display: flex; align-items: center; gap: 5px; }
.tour-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px; border-top: 1px solid #f0f0f0;
}
.tour-price-label { font-size: 11px; color: var(--text-muted); margin-bottom: 2px; }
.tour-price {
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 600; color: var(--navy);
  line-height: 1;
}
.tour-price small { font-size: 13px; color: var(--text-muted); font-family: var(--font-body); font-weight: 400; }
.tour-rating { display: flex; align-items: center; gap: 5px; font-size: 13px; }
.stars { color: #fbbf24; letter-spacing: -2px; }
.tour-card-btn {
  display: block; width: 100%;
  background: var(--navy);
  color: white; border: none;
  padding: 12px; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 500;
  margin-top: 14px;
  transition: var(--trans);
  text-align: center;
}
.tour-card-btn:hover { background: var(--gold); color: white; }

/* ── Categories ──────────────────────────────────── */
.categories-section { background: var(--navy); }
.categories-section .section-title { color: white; }
.categories-section .section-subtitle { color: var(--gold-light); }

.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
}
.cat-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  cursor: pointer;
  transition: var(--trans);
  color: white;
}
.cat-card:hover {
  background: rgba(201,150,90,.15);
  border-color: rgba(201,150,90,.3);
  transform: translateY(-4px);
}
.cat-icon {
  font-size: 36px; margin-bottom: 12px;
  display: block;
}
.cat-name {
  font-size: 14px; font-weight: 500; margin-bottom: 4px;
}
.cat-count { font-size: 12px; color: rgba(255,255,255,.4); }

/* ── Why Us ──────────────────────────────────────── */
.why-us-section { background: white; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 32px;
}
.feature-item { padding: 8px; }
.feature-icon {
  width: 56px; height: 56px;
  background: var(--gold-pale);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; margin-bottom: 20px;
}
.feature-title {
  font-family: var(--font-display);
  font-size: 1.2rem; font-weight: 600;
  color: var(--navy); margin-bottom: 10px;
}
.feature-desc { color: var(--text-muted); font-size: 14px; line-height: 1.7; }

/* ── Destinations ────────────────────────────────── */
.dest-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.dest-grid-col { display: flex; flex-direction: column; gap: 20px; }
.dest-card {
  position: relative; overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: pointer;
  background: #e5e7eb;
}
.dest-card.large { aspect-ratio: 3/4; }
.dest-card.small { aspect-ratio: 16/9; }
.dest-card img {
  width: 100%; height: 100%;
  object-fit: cover; transition: transform .5s;
}
.dest-card:hover img { transform: scale(1.05); }
.dest-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,27,42,.85) 0%, transparent 60%);
}
.dest-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 24px; color: white;
}
.dest-name {
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 600; margin-bottom: 4px;
}
.dest-count { font-size: 12px; opacity: .7; }

/* ── Testimonials ────────────────────────────────── */
.testimonials-section { background: var(--cream); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.review-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: var(--trans);
}
.review-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.review-quote {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 400;
  color: var(--navy); line-height: 1.65;
  margin-bottom: 24px;
  font-style: italic;
}
.review-quote::before { content: '"'; color: var(--gold); font-size: 3rem; line-height: 0; vertical-align: -1rem; margin-right: 4px; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold-pale); overflow: hidden;
  font-family: var(--font-display);
  font-size: 1.2rem; font-weight: 600; color: var(--gold);
  display: flex; align-items: center; justify-content: center;
}
.review-avatar img { width: 100%; height: 100%; object-fit: cover; }
.review-name { font-weight: 600; font-size: 14px; color: var(--navy); }
.review-meta { font-size: 12px; color: var(--text-muted); }
.review-stars { color: #fbbf24; font-size: 13px; letter-spacing: -2px; margin-left: auto; }

/* ── CTA Banner ──────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; top: -50%; left: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,150,90,.15) 0%, transparent 70%);
}
.cta-section::after {
  content: '';
  position: absolute; bottom: -30%; right: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,150,90,.1) 0%, transparent 70%);
}
.cta-content {
  position: relative; z-index: 1;
  text-align: center; color: white;
}
.cta-content .section-title { color: white; }

/* ── Footer ──────────────────────────────────────── */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,.7);
  padding: 64px 40px 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1320px; margin: 0 auto;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand p { font-size: 14px; line-height: 1.7; margin-top: 16px; max-width: 280px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.06);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: rgba(255,255,255,.6);
  transition: var(--trans);
}
.footer-social a:hover { background: var(--gold); color: white; }

.footer-col h5 {
  color: white; font-size: 14px; font-weight: 600;
  margin-bottom: 20px; letter-spacing: .04em;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,.5); transition: var(--trans); }
.footer-col ul li a:hover { color: var(--gold-light); padding-left: 4px; }

.footer-bottom {
  max-width: 1320px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 32px; font-size: 13px;
  color: rgba(255,255,255,.35);
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom a { color: rgba(255,255,255,.35); }
.footer-bottom a:hover { color: var(--gold-light); }

/* ── Sticky Currency / Language Bar ─────────────── */
.sticky-topbar {
  background: var(--navy-2);
  color: rgba(255,255,255,.6);
  font-size: 12px;
  padding: 8px 40px;
  display: flex; justify-content: space-between; align-items: center;
}
.topbar-left { display: flex; gap: 20px; }
.topbar-left a { color: rgba(255,255,255,.5); }
.topbar-left a:hover { color: var(--gold-light); }
.topbar-right { display: flex; gap: 12px; align-items: center; }

/* ── Scroll to top ───────────────────────────────── */
.scroll-top {
  position: fixed; bottom: 32px; right: 32px; z-index: 500;
  width: 44px; height: 44px;
  background: var(--gold);
  color: white; border: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  box-shadow: 0 4px 20px rgba(201,150,90,.5);
  opacity: 0; pointer-events: none;
  transition: var(--trans);
}
.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { background: var(--navy); transform: translateY(-3px); }

/* ── Animations ──────────────────────────────────── */
.fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible { opacity: 1; transform: none; }
[data-delay="1"] { transition-delay: .1s; }
[data-delay="2"] { transition-delay: .2s; }
[data-delay="3"] { transition-delay: .3s; }
[data-delay="4"] { transition-delay: .4s; }

/* ── Utilities ───────────────────────────────────── */
.bg-cream  { background: var(--cream); }
.bg-white  { background: white; }
.bg-navy   { background: var(--navy); }
.text-gold { color: var(--gold); }
.full-width { max-width: none; }
.container  { max-width: 1320px; margin: 0 auto; padding: 0 40px; }

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 992px) {
  .nav-links, .header-actions .btn-gold { display: none; }
  .mobile-menu-btn { display: block; }
  .hero-float-card { display: none; }
  .dest-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .header-inner { padding: 16px 20px; }
  .sticky-topbar { display: none; }
  .section { padding: 48px 20px; }
  .hero-content { padding: 100px 20px 60px; }
  .hero-stats { gap: 28px; }
  .search-box { flex-direction: column; border-radius: var(--radius-md); padding: 16px; }
  .search-box select { border-left: none; border-top: 1px solid #e5e7eb; padding: 8px 0 0; }
  .footer { padding: 48px 20px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
  .tours-grid { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
}
