/* frenebi.com.ge — brand styles */
:root{
  --brand:#0d63e0; --brand-dark:#0a4bb0; --brand-700:#0b56c4;
  --sky:#0ea5e9; --accent:#ff8a00; --accent-dark:#e67a00;
  --ink:#0f172a; --body:#33415a; --muted:#64748b;
  --bg:#ffffff; --soft:#f3f6fb; --soft-2:#eaf1fc; --line:#e2e8f0;
  --white:#fff;
  --radius:16px; --radius-sm:10px; --radius-lg:24px;
  --shadow:0 10px 30px rgba(13,99,224,.08); --shadow-lg:0 24px 60px rgba(13,99,224,.16);
  --maxw:1280px; --gap:24px;
  --font:"Noto Sans Georgian","Noto Sans",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
}
*,*::before,*::after{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;font-family:var(--font);color:var(--body);background:var(--bg);
  line-height:1.65;font-size:17px;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility}
h1,h2,h3{color:var(--ink);line-height:1.2;margin:0 0 .5em;font-weight:800;letter-spacing:-.01em}
h1{font-size:clamp(2rem,4.5vw,3.1rem)}
h2{font-size:clamp(1.5rem,3vw,2.1rem)}
h3{font-size:1.18rem;font-weight:700}
p{margin:0 0 1rem}
a{color:var(--brand);text-decoration:none}
a:hover{color:var(--brand-dark)}
img,svg,iframe{max-width:100%}
ul{margin:0;padding:0;list-style:none}
.container{width:100%;max-width:var(--maxw);margin:0 auto;padding:0 20px}
.narrow{max-width:780px}
.center{text-align:center;margin-top:32px}
.skip-link{position:absolute;left:-999px;top:0;background:var(--brand);color:#fff;padding:10px 16px;border-radius:0 0 8px 0;z-index:200}
.skip-link:focus{left:0}

/* buttons */
.btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;
  font-weight:700;font-size:1rem;padding:13px 24px;border-radius:999px;border:2px solid transparent;
  cursor:pointer;transition:.18s ease;white-space:nowrap;line-height:1}
.btn-primary{background:var(--accent);color:#fff;box-shadow:0 8px 20px rgba(255,138,0,.28)}
.btn-primary:hover{background:var(--accent-dark);color:#fff;transform:translateY(-1px)}
.btn-ghost{background:rgba(255,255,255,.12);color:#fff;border-color:rgba(255,255,255,.5)}
.btn-ghost:hover{background:rgba(255,255,255,.22);color:#fff}
.btn-outline{background:transparent;color:var(--brand);border-color:var(--brand)}
.btn-outline:hover{background:var(--brand);color:#fff}
.btn-light{background:#fff;color:var(--brand-dark)}
.btn-light:hover{background:#f1f5f9;color:var(--brand-dark);transform:translateY(-1px)}
.link-arrow{font-weight:700;color:var(--brand)}

/* header */
.site-header{position:sticky;top:0;z-index:100;background:rgba(255,255,255,.92);
  backdrop-filter:saturate(150%) blur(8px);border-bottom:1px solid var(--line)}
.header-inner{display:flex;align-items:center;gap:18px;height:70px}
.brand{display:inline-flex;align-items:center;gap:10px;font-weight:800;font-size:1.35rem;color:var(--ink)}
.brand:hover{color:var(--ink)}
.brand-mark{display:inline-grid;place-items:center;width:38px;height:38px;border-radius:11px;
  background:linear-gradient(135deg,var(--brand),var(--sky));color:#fff}
.brand-mark svg{width:22px;height:22px;fill:#fff}
.brand-name{letter-spacing:-.02em}
.site-nav{margin-left:auto;display:flex;align-items:center;gap:14px}
.site-nav>a{color:var(--ink);font-weight:600;font-size:.9rem;white-space:nowrap}
.site-nav>a:hover,.site-nav>a[aria-current=page]{color:var(--brand)}
.lang-switch{display:flex;align-items:center;gap:2px;border:1px solid var(--line);border-radius:999px;padding:3px;background:#fff}
.lang-switch a{font-size:.8rem;font-weight:700;color:var(--muted);padding:5px 9px;border-radius:999px;line-height:1}
.lang-switch a.is-active{background:var(--brand);color:#fff}
.nav-cta{padding:9px 15px;font-size:.9rem}
.nav-toggle{display:none;margin-left:auto;width:44px;height:44px;border:1px solid var(--line);
  background:#fff;border-radius:10px;cursor:pointer;flex-direction:column;gap:5px;align-items:center;justify-content:center}
.nav-toggle span{width:22px;height:2px;background:var(--ink);border-radius:2px;transition:.2s}
.nav-toggle[aria-expanded=true] span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.nav-toggle[aria-expanded=true] span:nth-child(2){opacity:0}
.nav-toggle[aria-expanded=true] span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

/* hero */
.hero{position:relative;color:#fff;padding:64px 0 0;
  background:radial-gradient(1200px 500px at 80% -10%,rgba(14,165,233,.55),transparent),
             linear-gradient(135deg,var(--brand-dark),var(--brand) 55%,var(--sky))}
.hero::after{content:"";position:absolute;left:0;right:0;bottom:0;height:120px;background:var(--bg);
  clip-path:polygon(0 60%,100% 0,100% 100%,0 100%);z-index:0}
.hero-decor{position:absolute;inset:0;z-index:0;pointer-events:none;overflow:hidden}
.hero-decor svg{position:absolute;top:0;right:0;width:min(640px,62%);height:100%}
.hero-inner{position:relative;z-index:1;max-width:880px}
.hero h1{color:#fff;margin-bottom:14px}
.hero-inner p{color:rgba(255,255,255,.92);font-size:1.12rem;max-width:620px}
.hero-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:24px}
.hero-stats{display:flex;gap:34px;flex-wrap:wrap;margin-top:34px}
.hstat{display:flex;flex-direction:column;gap:2px}
.hstat-n{font-size:1.85rem;font-weight:800;color:#fff;line-height:1}
.hstat-l{color:rgba(255,255,255,.85);font-size:.9rem;font-weight:600}
.search-card{position:relative;z-index:2;background:#fff;border-radius:var(--radius-lg);
  box-shadow:var(--shadow-lg);padding:28px;margin:36px 0 -60px}
.search-card h2{margin-bottom:4px}
.search-hint{color:var(--muted);font-size:.97rem;margin-bottom:18px}
#tpwl-search:empty,#tpwl-tickets:empty{min-height:0}

/* generic section */
.section{padding:84px 0}
.section-soft{background:var(--soft)}
.section-head{text-align:center;max-width:680px;margin:0 auto 44px}
.section-head p{color:var(--muted);font-size:1.05rem}
.kicker{font-weight:700;color:var(--brand)}
.lead{font-size:1.2rem;color:var(--ink);font-weight:500}

/* page hero (inner pages) */
.page-hero{position:relative;overflow:hidden;color:#fff;padding:60px 0;
  background:radial-gradient(900px 360px at 88% -40%,rgba(14,165,233,.5),transparent),
             linear-gradient(135deg,var(--brand-dark),var(--brand))}
.page-hero::after{content:"";position:absolute;right:-40px;top:-30px;width:280px;height:200px;opacity:.5;
  background:radial-gradient(circle at 70% 30%,rgba(255,255,255,.14),transparent 60%);pointer-events:none}
.page-hero .container{position:relative;z-index:1}
.page-hero h1{color:#fff;margin-bottom:8px}
.page-hero p{color:rgba(255,255,255,.9);max-width:680px;margin:0}

/* destinations */
.dest-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}
.dest-card{display:flex;flex-direction:column;background:#fff;border:1px solid var(--line);
  border-radius:var(--radius);padding:18px;position:relative;transition:.18s;overflow:hidden}
.dest-card:hover{transform:translateY(-3px);box-shadow:var(--shadow);border-color:#cdddfb}
.dest-main{display:flex;flex-direction:column;gap:6px;color:var(--ink);flex:1 0 auto}
.dest-main:hover{color:var(--ink)}
.dest-flag{width:46px;height:31px;border-radius:6px;object-fit:cover;display:block;
  box-shadow:0 1px 5px rgba(15,23,42,.2);transition:transform .18s}
.dest-card:hover .dest-flag{transform:scale(1.06)}
.dest-body{display:flex;flex-direction:column;gap:2px}
.dest-city{font-weight:800;font-size:1.15rem}
.dest-country{color:var(--muted);font-size:.9rem}
.dest-price{margin-top:8px;color:var(--body);font-size:.95rem}
.dest-price strong{color:var(--brand);font-size:1.15rem}
.dest-actions{display:flex;align-items:center;gap:12px;margin-top:14px;padding-top:12px;border-top:1px solid var(--line)}
.dest-guide{font-weight:700;color:var(--brand);font-size:.9rem}
.dest-guide:hover{color:var(--brand-dark)}
.dest-search{margin-left:auto;font-weight:700;color:var(--accent-dark);font-size:.92rem;white-space:nowrap}
.dest-search:hover{color:var(--accent-dark)}

/* features */
.feature-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:22px}
.feature-grid-3{grid-template-columns:repeat(3,1fr)}
.feature{background:#fff;border:1px solid var(--line);border-radius:var(--radius);padding:26px}
.section-soft .feature{background:#fff}
.feature-icon{display:inline-grid;place-items:center;width:52px;height:52px;border-radius:14px;
  background:var(--soft-2);color:var(--brand);margin-bottom:14px}
.feature-icon svg{width:26px;height:26px;fill:var(--brand)}
.feature h3{margin-bottom:6px}
.feature p{color:var(--muted);margin:0}

/* steps */
.steps{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;counter-reset:s}
.step{background:var(--soft);border-radius:var(--radius);padding:28px;position:relative}
.step-num{display:inline-grid;place-items:center;width:42px;height:42px;border-radius:50%;
  background:var(--brand);color:#fff;font-weight:800;margin-bottom:12px}
.step h3{margin-bottom:6px}
.step p{color:var(--muted);margin:0}

/* offers */
.offer-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.offer-card{background:#fff;border:1px solid var(--line);border-radius:var(--radius);padding:26px;position:relative}
.offer-badge{position:absolute;top:18px;right:18px;background:var(--accent);color:#fff;font-weight:800;
  font-size:.78rem;padding:5px 11px;border-radius:999px}
.offer-card h3{margin:6px 0 8px;max-width:80%}
.offer-card p{color:var(--muted);margin-bottom:16px}

/* posts */
.post-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.post-card{background:#fff;border:1px solid var(--line);border-radius:var(--radius);padding:26px;
  display:flex;flex-direction:column}
.post-tag{align-self:flex-start;background:var(--soft-2);color:var(--brand);font-weight:700;font-size:.78rem;
  padding:4px 11px;border-radius:999px;margin-bottom:12px}
.post-card h3{margin-bottom:8px}
.post-card p{color:var(--muted);flex:1}

/* faq */
.faq-list{display:flex;flex-direction:column;gap:12px}
.faq-item{background:#fff;border:1px solid var(--line);border-radius:var(--radius-sm);overflow:hidden}
.faq-item summary{cursor:pointer;padding:18px 22px;font-weight:700;color:var(--ink);list-style:none;
  display:flex;justify-content:space-between;align-items:center;gap:12px}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item summary::after{content:"+";font-size:1.4rem;color:var(--brand);font-weight:700;transition:.2s}
.faq-item[open] summary::after{transform:rotate(45deg)}
.faq-answer{padding:0 22px 18px}
.faq-answer p{margin:0;color:var(--body)}

/* stats */
.stats{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;text-align:center}
.stat{background:#fff;border-radius:var(--radius);padding:30px;border:1px solid var(--line)}
.stat-n{display:block;font-size:2.6rem;font-weight:800;color:var(--brand);line-height:1}
.stat-l{color:var(--muted);font-weight:600}

/* cta band */
.cta-band{background:linear-gradient(135deg,var(--brand),var(--sky));color:#fff;padding:56px 0}
.cta-band-inner{display:flex;align-items:center;justify-content:space-between;gap:24px;flex-wrap:wrap}
.cta-band h2{color:#fff;margin-bottom:4px}
.cta-band p{color:rgba(255,255,255,.92);margin:0}

/* contact */
.contact-grid{display:grid;grid-template-columns:1fr 1.1fr;gap:40px;align-items:start}
.contact-list{display:flex;flex-direction:column;gap:20px;margin-bottom:24px}
.contact-list>li{display:flex;gap:14px;align-items:flex-start}
.contact-list svg{width:24px;height:24px;fill:var(--brand);flex:none;margin-top:3px}
.contact-label{display:block;font-size:.82rem;text-transform:uppercase;letter-spacing:.04em;color:var(--muted);font-weight:700;margin-bottom:2px}
.contact-list a{color:var(--ink);font-weight:600}
.contact-list a:hover{color:var(--brand)}
.plain li{color:var(--ink);font-weight:600}
.contact-social{margin-top:8px}
.contact-form-wrap{background:var(--soft);border-radius:var(--radius-lg);padding:30px}
.contact-form{display:flex;flex-direction:column;gap:16px}
.contact-form label{display:flex;flex-direction:column;gap:6px;font-weight:600;color:var(--ink);font-size:.95rem}
.contact-form input,.contact-form textarea{font:inherit;padding:12px 14px;border:1px solid var(--line);
  border-radius:var(--radius-sm);background:#fff;color:var(--ink)}
.contact-form input:focus,.contact-form textarea:focus{outline:2px solid var(--brand);border-color:var(--brand)}
.map-wrap{margin-top:40px;border-radius:var(--radius);overflow:hidden;border:1px solid var(--line);line-height:0}
.map-wrap iframe{width:100%;height:360px;border:0;display:block}

/* footer */
.site-footer{background:#0b1726;color:#cbd5e1;padding:56px 0 24px;margin-top:0}
.footer-grid{display:grid;grid-template-columns:1.4fr 1fr 1.3fr;gap:40px}
.site-footer .brand,.site-footer .brand-name{color:#fff}
.footer-brand p{margin:14px 0 16px;color:#94a3b8;max-width:300px}
.footer-col h3{color:#fff;font-size:1rem;margin-bottom:14px}
.footer-col ul li{margin-bottom:9px}
.footer-col a{color:#cbd5e1}
.footer-col a:hover{color:#fff}
.footer-contact li{display:flex;align-items:center;gap:10px}
.footer-contact svg{width:18px;height:18px;fill:var(--sky);flex:none}
.footer-social{display:flex;gap:10px}
.footer-social a{display:inline-grid;place-items:center;width:38px;height:38px;border-radius:10px;
  background:rgba(255,255,255,.08)}
.footer-social a:hover{background:var(--brand)}
.footer-social svg{width:20px;height:20px;fill:#fff}
.footer-bottom{display:flex;justify-content:space-between;gap:16px;flex-wrap:wrap;
  border-top:1px solid rgba(255,255,255,.1);margin-top:36px;padding-top:20px;color:#94a3b8;font-size:.88rem}
.footer-bottom p{margin:0}

/* responsive */
@media (max-width:920px){
  .dest-grid,.feature-grid,.feature-grid-3{grid-template-columns:repeat(2,1fr)}
  .offer-grid,.post-grid,.steps,.stats{grid-template-columns:1fr 1fr}
  .footer-grid{grid-template-columns:1fr 1fr}
  .contact-grid{grid-template-columns:1fr}
}
@media (max-width:1160px){
  .nav-toggle{display:flex}
  .site-nav{position:fixed;inset:70px 0 auto 0;background:#fff;flex-direction:column;align-items:stretch;
    gap:0;padding:10px 20px 24px;border-bottom:1px solid var(--line);box-shadow:var(--shadow);
    transform:translateY(-130%);transition:transform .25s ease;margin:0;max-height:calc(100vh - 70px);overflow:auto}
  .site-nav.open{transform:translateY(0)}
  .site-nav>a{padding:13px 4px;border-bottom:1px solid var(--line)}
  .lang-switch{align-self:flex-start;margin:14px 0}
  .nav-cta{margin-top:6px}
}
@media (max-width:760px){
  body{font-size:16px}
  .section{padding:60px 0}
  .search-card{margin-bottom:-40px;padding:20px}
  .offer-grid,.post-grid,.steps,.stats,.dest-grid,.feature-grid,.feature-grid-3,.footer-grid{grid-template-columns:1fr}
  .cta-band-inner{flex-direction:column;align-items:flex-start}
}
@media (max-width:420px){
  .dest-grid{grid-template-columns:1fr 1fr}
}

/* blog */
.crumbs{font-size:.85rem;color:var(--muted);margin-bottom:16px}
.crumbs a{color:var(--brand);font-weight:600}
.crumbs>span{margin:0 6px;color:#cbd5e1}
.crumbs-cur{color:var(--muted)}
.article{padding:44px 0 0}
.article h1{margin-bottom:10px}
.article-meta{display:flex;align-items:center;gap:6px;font-size:.9rem;color:var(--muted);font-weight:500;margin:0 0 20px}
.article-meta svg{width:16px;height:16px;fill:currentColor;flex:none}
.article .lead{font-size:1.18rem;color:var(--ink);font-weight:500;margin-bottom:22px}
.article h2{margin:34px 0 12px}
.article p{margin:0 0 1rem}
.article ul,.article ol{margin:0 0 1.1rem;padding-left:1.35em}
.article li{margin-bottom:7px}
.article ul li{list-style:disc}
.article ol li{list-style:decimal}
.section-inline{margin-top:40px}
.related-list li{margin-bottom:8px;list-style:none}
.related-list a{font-weight:600}
.pillar-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.pillar-card{background:#fff;border:1px solid var(--line);border-radius:var(--radius);padding:24px}
.pillar-card h3{margin-bottom:8px}
.pillar-card p{color:var(--muted);margin-bottom:12px;font-size:.95rem}
.pillar-count{font-size:.85rem;font-weight:700;color:var(--brand)}
.post-card h3 a{color:var(--ink)}
.post-card h3 a:hover{color:var(--brand)}
@media(max-width:920px){.pillar-grid{grid-template-columns:1fr 1fr}}
@media(max-width:760px){.pillar-grid{grid-template-columns:1fr}}

/* trust elements */
.hero-trustline{display:inline-flex;align-items:center;gap:8px;margin:16px 0 0;
  color:rgba(255,255,255,.95);font-weight:600;font-size:.95rem}
.hero-trustline svg{width:18px;height:18px;fill:#fff;opacity:.9}
.search-secure{display:flex;align-items:center;gap:8px;margin:16px 0 0;
  color:var(--muted);font-size:.9rem;font-weight:600}
.search-secure svg{width:18px;height:18px;fill:#1aa463}
.trust-strip{background:#fff;border-bottom:1px solid var(--line);padding:88px 0 30px}
.trust-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:22px}
.trust-item{display:flex;gap:12px;align-items:flex-start}
.trust-icon{display:inline-grid;place-items:center;width:42px;height:42px;border-radius:11px;
  background:var(--soft-2);flex:none}
.trust-icon svg{width:22px;height:22px;fill:var(--brand)}
.trust-item strong{display:block;color:var(--ink);font-size:1rem;line-height:1.3}
.trust-item span{display:block;color:var(--muted);font-size:.85rem;margin-top:2px}
.partners{padding:54px 0;text-align:center}
.partners-title{color:var(--muted);font-weight:700;text-transform:uppercase;letter-spacing:.06em;
  font-size:.85rem;margin:0 0 20px}
.partner-row{display:flex;flex-wrap:wrap;gap:12px;justify-content:center}
.partner-chip{background:var(--soft);border:1px solid var(--line);border-radius:999px;
  padding:9px 18px;font-weight:700;color:var(--body);font-size:.95rem}
@media (max-width:920px){ .trust-grid{grid-template-columns:1fr 1fr} }
@media (max-width:520px){ .trust-grid{grid-template-columns:1fr} }
