/* ============================================================
   picniki.ge — style.css v2 (redesigned)
   ============================================================ */

:root {
  --g1: #1f4a2e;
  --g2: #2e6b44;
  --g3: #3d8a5a;
  --g4: #7ab88a;
  --a1: #c97a10;
  --a2: #e8952a;
  --a3: #f4c060;
  --a4: #fdeab0;
  --cr: #fdf8f2;
  --cr2: #f5ead6;
  --tx: #1a2a1c;
  --mu: #5c7060;
  --wh: #ffffff;
  --sd: 0 1px 4px rgba(0,0,0,.06);
  --tm: 0.22s cubic-bezier(.4,0,.2,1);
  --rr: 12px;
  --font: 'Noto Sans Georgian', Georgia, serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--cr);
  color: var(--tx);
  line-height: 1.6;
  overflow-x: hidden;
  font-size: 15px;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-alt { background: var(--wh); }

.section-header { text-align: center; margin-bottom: 48px; }

.tag {
  display: inline-block;
  background: var(--a4);
  color: var(--a1);
  border-radius: 20px;
  padding: 3px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  margin-bottom: 10px;
}
.tag.green { background: rgba(31,74,46,.08); color: var(--g2); }

.section-title {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 800;
  color: var(--g1);
  letter-spacing: -.4px;
  margin-bottom: 10px;
}
.section-sub { color: var(--mu); font-size: 15px; max-width: 500px; margin: 0 auto; }
.section-footer { text-align: center; margin-top: 40px; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--tm);
  border: none;
}
.btn-primary { background: var(--a2); color: var(--wh); }
.btn-primary:hover { background: var(--a1); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--g1); border: 0.5px solid var(--g2); }
.btn-outline:hover { background: var(--g1); color: var(--wh); }
.btn-ghost { background: rgba(255,255,255,.12); color: var(--wh); border: 0.5px solid rgba(255,255,255,.3); }
.btn-ghost:hover { background: rgba(255,255,255,.22); border-color: rgba(255,255,255,.7); }
.btn-white { background: var(--wh); color: var(--g1); font-weight: 700; }
.btn-white:hover { background: var(--cr); transform: translateY(-1px); }
.btn-wa { background: #25D366; color: var(--wh); }
.btn-wa:hover { background: #1db954; }
.btn-whatsapp { background: #25D366; color: var(--wh); }
.btn-whatsapp:hover { background: #1db954; }

.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(253,248,242,.97);
  backdrop-filter: blur(12px);
  border-bottom: 0.5px solid rgba(31,74,46,.12);
  transition: box-shadow var(--tm);
}
.header.scrolled { box-shadow: 0 2px 12px rgba(0,0,0,.08); }
.nav-container { display: flex; align-items: center; height: 58px; gap: 4px; }

.logo { display: flex; align-items: center; gap: 8px; font-size: 17px; font-weight: 800; color: var(--g1); flex-shrink: 0; letter-spacing: -.3px; }
.logo-icon { font-size: 20px; }
.logo-dot { color: var(--a2); }
.logo-text { color: var(--g1); }

.nav { display: flex; align-items: center; gap: 2px; margin-left: auto; }
.nav-link {
  padding: 7px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--mu);
  transition: all var(--tm);
}
.nav-link:hover, .nav-link.active { color: var(--g1); background: rgba(31,74,46,.08); }
.nav-cta {
  background: var(--g1);
  color: var(--wh) !important;
  border-radius: 999px;
  padding: 8px 18px;
  font-weight: 700;
  margin-left: 8px;
}
.nav-cta:hover { background: var(--g2); }
.nav-cta.active { background: var(--g1); }

.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; margin-left: auto; }
.burger span { display: block; width: 22px; height: 2px; background: var(--g1); border-radius: 2px; transition: all var(--tm); }
.mobile-nav { display: none; flex-direction: column; padding: 10px 24px 18px; background: var(--cr); border-top: 0.5px solid rgba(31,74,46,.1); }
.mobile-nav.open { display: flex; }
.mob-link { padding: 12px 0; font-size: 14px; font-weight: 500; border-bottom: 0.5px solid rgba(31,74,46,.07); color: var(--tx); }
.mob-cta { margin-top: 10px; background: var(--g1); color: var(--wh); text-align: center; padding: 12px; border-radius: 999px; font-weight: 700; border-bottom: none; }

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--g1);
  position: relative;
  overflow: hidden;
  padding-top: 58px;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-dots { position: absolute; inset: 0; background-image: radial-gradient(circle,rgba(255,255,255,.08) 1px,transparent 1px); background-size: 28px 28px; }
.hero-glow { position: absolute; width: 600px; height: 600px; border-radius: 50%; background: rgba(61,138,90,.18); top: -200px; left: 50%; transform: translateX(-50%); }
.hero-shape { display: none; }
.hero-content { position: relative; z-index: 1; text-align: center; padding: 80px 24px 60px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.1);
  border: 0.5px solid rgba(255,255,255,.22);
  color: rgba(255,255,255,.8);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 24px;
}
.hero-pill { display: contents; }
.pill-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--a3); flex-shrink: 0; animation: pulse 2s infinite; display: inline-block; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.4} }

.hero-title {
  font-size: clamp(32px, 6vw, 66px);
  font-weight: 800;
  color: var(--wh);
  line-height: 1.1;
  margin-bottom: 22px;
  letter-spacing: -.6px;
}
.hero-title .accent { color: var(--a3); }
.hero-sub { color: rgba(255,255,255,.72); font-size: clamp(15px, 2vw, 17px); max-width: 480px; margin: 0 auto 32px; line-height: 1.65; }

.hero-actions { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 52px; }

.hero-stats { display: flex; align-items: center; justify-content: center; gap: 0; border-top: 0.5px solid rgba(255,255,255,.1); padding-top: 28px; }
.stat { padding: 0 28px; text-align: center; border-right: 0.5px solid rgba(255,255,255,.12); }
.stat:last-child { border-right: none; }
.stat-divider { display: none; }
.stat strong { display: block; font-size: 26px; font-weight: 800; color: var(--wh); }
.stat span { font-size: 12px; color: rgba(255,255,255,.5); margin-top: 2px; display: block; }
.hero-scroll { display: none; }

.steps-grid { display: flex; align-items: stretch; gap: 0; }
.step-card {
  flex: 1;
  background: var(--wh);
  border: 0.5px solid rgba(31,74,46,.1);
  border-radius: var(--rr);
  padding: 28px 20px;
  text-align: center;
  transition: all var(--tm);
}
.step-card:hover { border-color: var(--g4); transform: translateY(-4px); box-shadow: 0 8px 24px rgba(31,74,46,.1); }
.step-num { font-size: 48px; font-weight: 900; color: rgba(31,74,46,.07); line-height: 1; margin-bottom: 4px; }
.step-icon { font-size: 30px; margin: 6px 0 12px; }
.step-card h3 { font-size: 15px; font-weight: 700; color: var(--g1); margin-bottom: 7px; }
.step-card p { font-size: 13px; color: var(--mu); line-height: 1.55; }
.step-arrow { color: var(--g4); font-size: 22px; padding: 0 10px; display: flex; align-items: center; flex-shrink: 0; }

.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.service-card {
  background: var(--cr);
  border: 0.5px solid rgba(31,74,46,.1);
  border-radius: var(--rr);
  padding: 22px;
  transition: all var(--tm);
}
.service-card:hover { border-color: var(--g4); background: var(--wh); transform: translateY(-3px); box-shadow: 0 6px 18px rgba(31,74,46,.1); }
.service-card.dark, .service-card-highlight { background: var(--g1); border-color: transparent; }
.service-card.dark h3, .service-card-highlight h3 { color: var(--wh); }
.service-card.dark p, .service-card-highlight p { color: rgba(255,255,255,.7); }
.service-card.dark .service-link, .service-card-highlight .service-link { color: var(--a3); }
.service-icon { font-size: 28px; margin-bottom: 12px; }
.service-card h3 { font-size: 14px; font-weight: 700; color: var(--g1); margin-bottom: 7px; }
.service-card p { font-size: 13px; color: var(--mu); line-height: 1.55; margin-bottom: 10px; }
.service-link { font-size: 12px; font-weight: 600; color: var(--g3); transition: color var(--tm); }
.service-link:hover { color: var(--a2); }

.dest-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.dest-card { background: var(--wh); border: 0.5px solid rgba(31,74,46,.08); border-radius: 14px; overflow: hidden; cursor: pointer; transition: all var(--tm); }
.dest-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(31,74,46,.12); border-color: var(--g4); }
.dest-card-large, .dest-card.large { grid-row: span 2; }
.dest-img { display: flex; align-items: center; justify-content: center; font-size: 52px; height: 150px; position: relative; }
.dest-card-large .dest-img, .dest-card.large .dest-img { height: 100%; min-height: 200px; }
.dest-overlay { display: none; }
.dest-emoji { font-size: 52px; }
.dest-badge { position: absolute; top: 10px; right: 10px; background: rgba(255,255,255,.9); backdrop-filter: blur(6px); border-radius: 20px; padding: 3px 9px; font-size: 11px; font-weight: 700; color: var(--g1); }
.dest-info { padding: 14px; }
.dest-meta { display: flex; gap: 8px; font-size: 11px; color: var(--mu); margin-bottom: 5px; }
.dest-card h3 { font-size: 15px; font-weight: 800; color: var(--g1); margin-bottom: 4px; }
.dest-card p { font-size: 12px; color: var(--mu); margin-bottom: 8px; line-height: 1.5; }
.dest-price { font-size: 13px; font-weight: 700; color: var(--g2); }

.packages-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; align-items: start; }
.pkg-card { background: var(--wh); border: 0.5px solid rgba(31,74,46,.1); border-radius: 14px; overflow: hidden; transition: all var(--tm); padding: 24px 18px; text-align: center; position: relative; }
.pkg-card:hover { transform: translateY(-3px); }
.pkg-card.pkg-popular, .pkg-card.popular { border: 1.5px solid var(--a2); }
.pkg-badge { position: absolute; top: -11px; left: 50%; transform: translateX(-50%); background: var(--a2); color: var(--wh); font-size: 10px; font-weight: 700; padding: 3px 12px; border-radius: 20px; white-space: nowrap; }
.pkg-icon { font-size: 36px; margin-bottom: 8px; }
.pkg-name { font-size: 16px; font-weight: 800; color: var(--g1); margin-bottom: 12px; }
.pkg-price { font-size: 13px; color: var(--mu); margin-bottom: 18px; }
.pkg-price span, .pkg-price strong { display: block; font-size: 38px; font-weight: 900; color: var(--g1); line-height: 1.1; }
.pkg-features { list-style: none; display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; text-align: left; }
.pkg-features li { font-size: 12px; padding: 4px 0; border-bottom: 0.5px solid rgba(31,74,46,.06); color: var(--tx); }
.pkg-features li.disabled, .pkg-features li.off { color: var(--mu); opacity: .4; }

.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.review-card { background: var(--wh); border: 0.5px solid rgba(31,74,46,.08); border-radius: var(--rr); padding: 22px; transition: all var(--tm); }
.review-card:hover { transform: translateY(-3px); box-shadow: 0 6px 18px rgba(31,74,46,.08); }
.review-card.featured, .review-card.review-featured { background: var(--g1); border-color: transparent; }
.review-stars { color: var(--a2); font-size: 14px; margin-bottom: 8px; }
.review-card.featured .review-stars, .review-card.review-featured .review-stars { color: var(--a3); }
.review-text { font-size: 13px; font-style: italic; color: var(--mu); line-height: 1.6; margin-bottom: 14px; }
.review-card.featured .review-text, .review-card.review-featured .review-text { color: rgba(255,255,255,.85); }
.review-card p { font-size: 13px; font-style: italic; color: var(--mu); line-height: 1.6; margin-bottom: 14px; }
.review-card.featured p, .review-card.review-featured p { color: rgba(255,255,255,.85); }
.review-author { display: flex; align-items: center; gap: 9px; }
.author-avatar { width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; color: var(--wh); flex-shrink: 0; background: var(--g3); }
.review-card.featured .author-avatar, .review-card.review-featured .author-avatar { background: rgba(255,255,255,.18); }
.author-name, .review-author strong { font-size: 13px; font-weight: 600; color: var(--tx); display: block; }
.review-card.featured .author-name, .review-card.review-featured .author-name,
.review-card.featured .review-author strong, .review-card.review-featured .review-author strong { color: var(--wh); }
.author-sub, .review-author small { font-size: 11px; color: var(--mu); }
.review-card.featured .author-sub, .review-card.review-featured .author-sub,
.review-card.featured .review-author small, .review-card.review-featured .review-author small { color: rgba(255,255,255,.55); }

.cta-banner, .cta-bg + .container { background: var(--g1); padding: 60px 0; text-align: center; position: relative; overflow: hidden; }
.cta-banner { background: var(--g1); }
.cta-bg, .cta-shape { display: none; }
.cta-content { position: relative; z-index: 1; }
.cta-content h2 { font-size: clamp(20px,4vw,32px); font-weight: 800; color: var(--wh); margin-bottom: 10px; letter-spacing: -.3px; }
.cta-content p { color: rgba(255,255,255,.7); font-size: 15px; margin-bottom: 28px; }
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }

.footer { background: #111d12; padding: 40px 0 0; }
.footer-inner { display: grid; grid-template-columns: 220px 1fr; gap: 48px; padding-bottom: 32px; }
.footer-brand .logo { margin-bottom: 10px; }
.footer-brand .logo-text { color: var(--wh); }
.footer-brand p { font-size: 12px; color: rgba(255,255,255,.38); line-height: 1.65; }
.footer-links { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.footer-col h4 { color: rgba(255,255,255,.88); font-size: 12px; font-weight: 700; margin-bottom: 12px; letter-spacing: .05em; }
.footer-col a { display: block; font-size: 12px; color: rgba(255,255,255,.38); padding: 3px 0; transition: color var(--tm); }
.footer-col a:hover { color: var(--a3); }
.footer-bottom { border-top: 0.5px solid rgba(255,255,255,.08); padding: 14px 24px; font-size: 11px; color: rgba(255,255,255,.22); }

.wa-float {
  position: fixed; bottom: 28px; right: 28px;
  width: 52px; height: 52px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  font-size: 24px; box-shadow: 0 4px 14px rgba(37,211,102,.4); z-index: 200;
  opacity: 0; transform: translateY(12px) scale(0.85);
  transition: all 0.3s cubic-bezier(.4,0,.2,1); text-decoration: none;
}
.wa-float.visible { opacity: 1; transform: translateY(0) scale(1); }
.wa-float:hover { background: #1db954; transform: scale(1.08) translateY(-2px); }

.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: #111d12; color: rgba(255,255,255,.8);
  padding: 14px 28px; display: flex; align-items: center;
  justify-content: space-between; gap: 16px; z-index: 300;
  font-family: var(--font); font-size: 13px; transform: translateY(100%); transition: transform 0.4s ease;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner p { margin: 0; }
.cookie-banner button {
  background: var(--a2); color: var(--wh); border: none; border-radius: 999px;
  padding: 7px 20px; font-family: var(--font); font-size: 13px; font-weight: 600;
  cursor: pointer; white-space: nowrap; flex-shrink: 0;
}
.cookie-banner button:hover { background: var(--a1); }

@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .packages-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .steps-grid { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .footer-links { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 640px) {
  .section { padding: 52px 0; }
  .nav { display: none; }
  .burger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .dest-grid { grid-template-columns: 1fr; }
  .dest-card-large, .dest-card.large { grid-row: span 1; }
  .hero-stats { flex-wrap: wrap; }
  .stat { padding: 0 16px; }
  .stat strong { font-size: 20px; }
  .footer-links { grid-template-columns: 1fr; }
}
