:root {
  --coral: #FF4B47;
  --sky: #57A5FF;
  --lime: #83AF4E;
  --green: #353D27;
  --ink: #0E1A2B;
  --cream: #F5F1E8;
  --serif: "Instrument Serif", "Noto Sans Georgian", serif;
  --sans: "Inter", "Noto Sans Georgian", system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); color: var(--ink); background: var(--cream); line-height: 1.5; }
img { display: block; width: 100%; }

h1, h2, h3 { font-family: var(--serif); font-weight: 400; letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: 1.5rem; }

/* Header */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 20;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1rem 1.5rem;
  transition: background 0.3s ease;
}
.logo { font-family: var(--serif); font-style: italic; font-size: 1.6rem; color: #fff; text-decoration: none; }
.logo span { color: var(--cream); opacity: 0.75; }
.langs { display: flex; gap: 0.25rem; }
.lang-btn {
  background: none; border: 1px dashed transparent; color: #fff;
  font: 600 0.8rem var(--sans); padding: 0.35rem 0.6rem; cursor: pointer; border-radius: 999px;
}
.lang-btn.active { border-color: #fff; }
body.scrolled .header { background: rgba(14, 26, 43, 0.85); backdrop-filter: blur(8px); }

/* Hero */
.hero { position: relative; height: 100svh; display: grid; place-items: center; overflow: hidden; color: #fff; }
.hero-slider, .slide { position: absolute; inset: 0; }
.slide { opacity: 0; transition: opacity 1.2s ease; background-size: cover; background-position: center; }
.slide.active { opacity: 1; }
.slide-1 { background-image: linear-gradient(180deg, #FF4B47 0%, #10233F 70%, #0E1A2B 100%); }
.slide-2 { background-image: linear-gradient(180deg, #57A5FF 0%, #0E1A2B 80%); }
.slide-3 { background-image: linear-gradient(180deg, #F870A4 0%, #FF4B47 40%, #0E1A2B 100%); }
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
}
.hero-content { position: relative; z-index: 2; text-align: center; padding: 0 1.5rem; max-width: 42rem; }
.hero-content h1 { font-size: clamp(3rem, 9vw, 6rem); font-style: italic; text-shadow: 0 0 40px rgba(0,0,0,0.35); }
.hero-content p { margin: 1rem 0 2rem; font-size: 1.1rem; opacity: 0.9; }

/* Buttons */
.btn {
  display: inline-block; background: var(--coral); color: #fff; text-decoration: none;
  font: 600 0.95rem var(--sans); padding: 0.8rem 1.6rem; border-radius: 999px;
  transition: transform 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-2px); background: #e63e3a; }
.btn-hero { background: #fff; color: var(--ink); }
.btn-hero:hover { background: var(--cream); }

/* Sections */
.section { max-width: 72rem; margin: 0 auto; padding: 5rem 1.5rem; }
.section-alt { max-width: none; background: #fff; }
.section-alt > * { max-width: 72rem; margin-left: auto; margin-right: auto; }
.section-alt h2 { margin-bottom: 1.5rem; }

/* Tabs */
.tabs { display: flex; gap: 0.5rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.tab {
  border: 1px solid var(--ink); background: none; border-radius: 999px;
  padding: 0.5rem 1.1rem; font: 500 0.9rem var(--sans); cursor: pointer;
}
.tab.active { background: var(--ink); color: #fff; }

/* Cards */
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(17rem, 1fr)); gap: 1.5rem; }
.card {
  background: #fff; border-radius: 1rem; overflow: hidden; display: flex; flex-direction: column;
  border: 1px solid rgba(14, 26, 43, 0.08); transition: box-shadow 0.2s ease, outline 0.2s;
}
.card:hover { box-shadow: 0 12px 32px rgba(14, 26, 43, 0.12); }
.card.highlight { outline: 3px dashed var(--coral); outline-offset: 4px; }
.card-photo { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.card-photo img { height: 100%; object-fit: cover; }
.badge {
  position: absolute; top: 0.75rem; left: 0.75rem; background: var(--lime); color: var(--green);
  font: 600 0.75rem var(--sans); padding: 0.3rem 0.7rem; border-radius: 999px;
}
.card-body { display: flex; flex-direction: column; gap: 0.6rem; padding: 1.1rem; flex: 1; }
.card-body h3 { font-size: 1.45rem; }
.card-body p { font-size: 0.92rem; color: rgba(14, 26, 43, 0.75); flex: 1; }
.card-meta { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.card-meta span {
  font-size: 0.78rem; border: 1px dashed rgba(14, 26, 43, 0.35);
  padding: 0.2rem 0.6rem; border-radius: 999px;
}
.card-foot { display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; }
.price { font: 600 1.05rem var(--sans); }
.price small { display: block; font-weight: 400; font-size: 0.72rem; color: rgba(14, 26, 43, 0.6); }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr)); gap: 2rem; }
.step em { font-family: var(--serif); font-style: italic; font-size: 2.2rem; color: var(--coral); }
.step h3 { font-size: 1.5rem; margin: 0.4rem 0; }
.step p { font-size: 0.95rem; color: rgba(14, 26, 43, 0.75); }

/* About */
.about-text { font-family: var(--serif); font-size: clamp(1.3rem, 3vw, 1.9rem); max-width: 46rem; }

/* FAQ */
#faq details { border-bottom: 1px solid rgba(14, 26, 43, 0.15); padding: 1rem 0; }
#faq summary { font: 600 1.05rem var(--sans); cursor: pointer; list-style: none; }
#faq summary::after { content: "+"; float: right; font-family: var(--serif); font-size: 1.3rem; }
#faq details[open] summary::after { content: "–"; }
#faq details p { margin-top: 0.6rem; color: rgba(14, 26, 43, 0.75); }

/* Footer */
.footer { background: var(--ink); color: #fff; text-align: center; padding: 4rem 1.5rem 3rem; }
.footer-mark { font-family: var(--serif); font-style: italic; font-size: clamp(2.5rem, 8vw, 5rem); color: var(--coral); }
.footer p { margin: 0.5rem 0 1.5rem; opacity: 0.8; }
.footer-links { display: flex; gap: 1rem; justify-content: center; }
.footer-links a { color: #fff; border: 1px dashed rgba(255,255,255,0.5); border-radius: 999px; padding: 0.5rem 1.2rem; text-decoration: none; font-size: 0.9rem; }

/* Floating WhatsApp button */
.float-wa {
  position: fixed; right: 1rem; bottom: 1rem; z-index: 30;
  background: #25D366; color: #fff; text-decoration: none;
  font: 600 0.9rem var(--sans); padding: 0.85rem 1.4rem; border-radius: 999px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  opacity: 0; transform: translateY(6rem); transition: opacity 0.3s, transform 0.3s;
}
.float-wa.visible { opacity: 1; transform: none; }
@media (min-width: 768px) { .float-wa { display: none; } }
