/* ═══════════════════════════════════════════
   WebKing.ge — Mobile-First Shared Styles
   ═══════════════════════════════════════════ */
:root {
  --gold: #C9A84C;
  --gold-light: #E8C96A;
  --dark: #0A0A0F;
  --dark-2: #12121A;
  --dark-3: #1C1C28;
  --dark-4: #252535;
  --text: #E8E4D8;
  --text-muted: #9A9480;
  --white: #FAFAF5;
  --touch: 48px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; font-family: inherit; }

body {
  background: var(--dark);
  color: var(--text);
  font-family: 'Noto Sans Georgian', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0; z-index: 200;
  height: 60px;
  padding: 0 16px;
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  background: rgba(10,10,15,0.97);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.12);
}
.nav-logo {
  font-family: 'Cinzel', serif; font-size: 1.1rem; font-weight: 900;
  letter-spacing: 0.05em; color: var(--gold); text-decoration: none; flex-shrink: 0;
}
.nav-logo span { color: var(--white); }
.nav-links { display: none; list-style: none; }

.hamburger {
  display: flex; flex-direction: column; justify-content: center; gap: 5px;
  background: none; border: none; padding: 8px;
  min-width: var(--touch); min-height: var(--touch);
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--gold); transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav-drawer {
  display: none; position: fixed;
  top: 60px; left: 0; right: 0; bottom: 0;
  background: rgba(10,10,15,0.98);
  z-index: 199; flex-direction: column; padding: 20px 16px; gap: 2px; overflow-y: auto;
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
  display: flex; align-items: center; min-height: var(--touch);
  padding: 0 8px; font-size: 1rem; font-weight: 600;
  color: var(--text-muted); text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.05); transition: color 0.2s;
}
.nav-drawer a:hover, .nav-drawer a.active { color: var(--gold); }
.nav-drawer .drawer-cta {
  margin-top: 14px; background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark); justify-content: center; font-weight: 700;
  min-height: 52px; border-bottom: none;
}

.nav-cta {
  background: var(--gold); color: var(--dark); border: none;
  padding: 0 14px; height: 38px; font-family: 'Noto Sans Georgian', sans-serif;
  font-size: 0.78rem; font-weight: 700; text-decoration: none;
  display: inline-flex; align-items: center; white-space: nowrap;
  transition: background 0.2s; flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}
.nav-cta:hover { background: var(--gold-light); }

/* ── PAGE HEADER ── */
.page-header {
  padding: 100px 20px 56px; text-align: center;
  position: relative; overflow: hidden;
}
.page-header::before {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 400px; height: 300px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.08), transparent 70%);
  pointer-events: none;
}
.page-header-label {
  font-family: 'Cinzel', serif; font-size: 0.68rem; letter-spacing: 0.2em;
  color: var(--gold); text-transform: uppercase; margin-bottom: 10px; display: block;
}
.page-header h1 { font-size: 2rem; font-weight: 700; color: var(--white); line-height: 1.15; margin-bottom: 14px; }
.page-header h1 .gold { color: var(--gold); }
.page-header p { font-size: 0.95rem; color: var(--text-muted); max-width: 520px; margin: 0 auto; line-height: 1.7; font-weight: 300; }

/* ── SECTIONS ── */
section { position: relative; padding: 60px 20px; }
.inner { max-width: 1100px; margin: 0 auto; }
.inner-sm { max-width: 780px; margin: 0 auto; }
.section-label { font-family: 'Cinzel', serif; font-size: 0.68rem; letter-spacing: 0.2em; color: var(--gold); text-transform: uppercase; margin-bottom: 8px; display: block; }
.section-title { font-size: 1.65rem; font-weight: 700; color: var(--white); margin-bottom: 12px; line-height: 1.2; }
.section-sub { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; font-weight: 300; }

/* ── ORNAMENT ── */
.ornament { display: flex; align-items: center; gap: 12px; margin: 0 auto 36px; max-width: 220px; }
.ornament-line { flex: 1; height: 1px; background: linear-gradient(to right, transparent, rgba(201,168,76,0.3)); }
.ornament-line.r { transform: scaleX(-1); }
.ornament-symbol { color: var(--gold); font-size: 0.8rem; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark); border: none; padding: 0 28px; min-height: var(--touch);
  font-family: 'Noto Sans Georgian', sans-serif; font-size: 0.95rem; font-weight: 700;
  text-decoration: none; transition: all 0.25s; -webkit-tap-highlight-color: transparent;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.4); }
.btn-primary:active { transform: translateY(0); }
.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; color: var(--text-muted);
  border: 1px solid rgba(255,255,255,0.15); padding: 0 24px; min-height: var(--touch);
  font-family: 'Noto Sans Georgian', sans-serif; font-size: 0.95rem;
  text-decoration: none; transition: all 0.2s; -webkit-tap-highlight-color: transparent;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-full { width: 100%; }

/* ── FORM ── */
.form-row { margin-bottom: 14px; }
.form-row label { display: block; font-size: 0.73rem; letter-spacing: 0.07em; color: var(--text-muted); text-transform: uppercase; margin-bottom: 6px; }
.form-row input, .form-row select, .form-row textarea {
  width: 100%; background: var(--dark-2); border: 1px solid rgba(255,255,255,0.1);
  color: var(--text); padding: 0 14px; height: var(--touch);
  font-family: 'Noto Sans Georgian', sans-serif; font-size: 16px;
  outline: none; transition: border-color 0.2s; -webkit-appearance: none; border-radius: 0;
}
.form-row textarea { height: auto; padding: 14px; resize: vertical; min-height: 110px; }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { border-color: var(--gold); }
.form-row select option { background: var(--dark-2); }
.form-grid { display: grid; gap: 12px; }

/* ── FOOTER ── */
footer { background: var(--dark-2); border-top: 1px solid rgba(201,168,76,0.1); padding: 40px 20px 28px; }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-brand { margin-bottom: 28px; }
.footer-brand .logo { font-family: 'Cinzel', serif; font-size: 1.4rem; font-weight: 900; color: var(--gold); display: block; margin-bottom: 10px; text-decoration: none; }
.footer-brand .logo span { color: var(--white); }
.footer-brand p { font-size: 0.84rem; color: var(--text-muted); line-height: 1.7; font-weight: 300; max-width: 260px; }
.footer-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 24px; }
.footer-col h4 { font-family: 'Cinzel', serif; font-size: 0.68rem; letter-spacing: 0.15em; color: var(--gold); text-transform: uppercase; margin-bottom: 14px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 0.85rem; color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom { padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.05); display: flex; flex-direction: column; gap: 12px; align-items: center; text-align: center; }
.footer-copy { font-size: 0.74rem; color: rgba(154,148,128,0.5); }
.footer-socials { display: flex; gap: 8px; }
.footer-socials a { width: 38px; height: 38px; border: 1px solid rgba(201,168,76,0.2); display: flex; align-items: center; justify-content: center; color: var(--text-muted); text-decoration: none; font-size: 0.85rem; transition: all 0.2s; }
.footer-socials a:hover { border-color: var(--gold); color: var(--gold); }

/* ── WHATSAPP FLOAT ── */
.wa-float { position: fixed; bottom: 18px; right: 18px; z-index: 150; width: 52px; height: 52px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; box-shadow: 0 4px 20px rgba(37,211,102,0.4); transition: transform 0.25s; font-size: 1.4rem; }
.wa-float:hover { transform: scale(1.08); }
.wa-float .wa-badge { position: absolute; top: -2px; right: -2px; width: 14px; height: 14px; background: #ff4444; border-radius: 50%; border: 2px solid var(--dark); }

/* ── TRUST BAR ── */
.trust-bar { background: rgba(201,168,76,0.06); border-top: 1px solid rgba(201,168,76,0.15); border-bottom: 1px solid rgba(201,168,76,0.15); padding: 10px 20px; }
.trust-bar-inner { max-width: 1100px; margin: 0 auto; display: flex; flex-wrap: wrap; justify-content: center; gap: 16px 24px; }
.trust-item { display: flex; align-items: center; gap: 7px; font-size: 0.78rem; color: var(--text-muted); white-space: nowrap; }
.trust-item .ti { color: var(--gold); font-size: 0.85rem; }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
.fade-up { animation: fadeUp 0.6s ease both; }
.fade-up-2 { animation: fadeUp 0.6s 0.12s ease both; }
.fade-up-3 { animation: fadeUp 0.6s 0.24s ease both; }

/* ══════════════ TABLET ≥ 640 ══════════════ */
@media (min-width: 640px) {
  section { padding: 70px 32px; }
  .page-header { padding: 110px 32px 70px; }
  footer { padding: 48px 32px 28px; }
  nav { padding: 0 32px; }
  .page-header h1 { font-size: 2.6rem; }
  .section-title { font-size: 2rem; }
  .footer-cols { grid-template-columns: repeat(3, 1fr); }
  .form-grid { grid-template-columns: 1fr 1fr; }
  .trust-bar { padding: 10px 32px; }
}

/* ══════════════ DESKTOP ≥ 960 ══════════════ */
@media (min-width: 960px) {
  section { padding: 90px 40px; }
  .page-header { padding: 130px 40px 80px; }
  nav { padding: 0 5vw; height: 64px; }
  .nav-logo { font-size: 1.3rem; }
  .hamburger { display: none; }
  .nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
  .nav-links a { font-size: 0.82rem; color: var(--text-muted); text-decoration: none; padding: 8px 12px; transition: color 0.2s; white-space: nowrap; }
  .nav-links a:hover, .nav-links a.active { color: var(--gold); }
  .page-header h1 { font-size: 3.2rem; }
  .section-title { font-size: 2.4rem; }
  .footer-cols { grid-template-columns: 1.6fr 1fr 1fr 1fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}
