/* ===== Ежедневные поездки на море из Краснодара — стили ===== */
:root{
  --accent:#6699cc;
  --accent-dark:#4d7db3;
  --accent-bright:#3d8fd4;
  --cyan:#d7fbff;
  --ink:#3f3f3f;
  --muted:#8a8a8a;
  --line:#e6e6e6;
  --purple:#5b52e8;
  --yellow:#f4c20d;
  --red:#e2534b;
  --maxw:1180px;
  --radius:6px;
  --shadow:0 8px 30px rgba(0,0,0,.12);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:"Segoe UI",system-ui,-apple-system,"Helvetica Neue",Arial,sans-serif;
  color:var(--ink);
  font-size:17px;
  line-height:1.6;
  font-weight:400;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block}
a{color:var(--accent);text-decoration:none}
a:hover{color:var(--accent-dark)}
h1,h2,h3,h4{font-weight:300;line-height:1.2;margin:0 0 .5em;color:#333}

.container{max-width:var(--maxw);margin:0 auto;padding:0 24px}
.container.narrow{max-width:900px}

/* ===== Buttons ===== */
.btn{
  display:inline-block;border:0;cursor:pointer;font-size:16px;font-family:inherit;
  padding:14px 34px;border-radius:var(--radius);transition:.2s;line-height:1;
  text-align:center;
}
.btn-primary{background:var(--accent);color:#fff}
.btn-primary:hover{background:var(--accent-dark);color:#fff}
.btn-lg{padding:18px 46px;font-size:18px}
.btn-block{display:block;width:100%}
.btn-outline{background:transparent;border:2px solid var(--accent);color:var(--accent)}
.btn-outline:hover{background:var(--accent);color:#fff}

/* ===== Header ===== */
.site-header{
  position:fixed;top:0;left:0;right:0;z-index:50;
  transition:background .3s,box-shadow .3s,padding .3s;
  padding:6px 0;background:transparent;
}
.site-header.scrolled{background:rgba(60,63,66,.92);box-shadow:0 2px 12px rgba(0,0,0,.2)}
.header-inner{display:flex;align-items:center;gap:20px}
.logo img{height:46px;width:auto}
.main-nav{margin-left:auto;display:flex;gap:26px}
.main-nav a{color:#fff;text-transform:uppercase;font-size:13px;letter-spacing:.06em;opacity:.9}
.main-nav a:hover{opacity:1;color:#fff}
.header-phone{color:#fff;font-size:22px;font-weight:300;white-space:nowrap}
.header-phone:hover{color:#fff}
.nav-toggle{display:none;background:var(--accent);border:0;border-radius:50%;width:44px;height:44px;cursor:pointer;padding:12px}
.nav-toggle span{display:block;height:2px;background:#fff;margin:4px 0;border-radius:2px}

/* ===== Social fixed ===== */
.social-fixed{position:fixed;left:14px;top:38%;z-index:40;list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:10px}
.soc{display:flex;align-items:center;justify-content:center;width:38px;height:38px;border-radius:50%;color:#fff}
.soc-vk{background:#5b7fa6}
.soc-fb{background:#5b7fa6}
.soc-tw{background:#3fc0f0}
.soc:hover{color:#fff;opacity:.85}

/* ===== Hero ===== */
.hero{
  position:relative;min-height:88vh;display:flex;align-items:center;
  background:#1668bf url("../img/hero-bus.jpg") center/cover no-repeat;
  padding:120px 0 60px;color:#fff;text-align:center;
}
.hero-overlay{position:absolute;inset:0;background:linear-gradient(180deg,rgba(0,0,0,.15),rgba(0,0,0,.28))}
.hero-content{position:relative;z-index:2;width:100%}
.hero h1{color:#fff;font-size:clamp(30px,5vw,58px);text-shadow:0 2px 14px rgba(0,0,0,.35);margin-bottom:.3em}
.hero-sub{font-size:clamp(18px,2.5vw,26px);font-weight:300;margin:0 0 26px;text-shadow:0 1px 8px rgba(0,0,0,.4)}
.hero-sub a{color:#bfe0ff}
.dest-grid{
  list-style:none;margin:42px auto 0;padding:0;max-width:780px;
  display:grid;grid-template-columns:repeat(3,1fr);gap:22px 30px;text-align:left;
}
.dest-grid li{display:flex;align-items:center;gap:12px;font-size:18px;font-weight:300;text-shadow:0 1px 6px rgba(0,0,0,.5)}
.i-badge{
  flex:0 0 auto;width:26px;height:26px;background:var(--yellow);color:#fff;
  font-style:italic;font-weight:700;font-size:15px;display:flex;align-items:center;justify-content:center;
  border-radius:4px;font-family:Georgia,serif;
}

/* ===== CTA band ===== */
.cta-band{background:var(--cyan);padding:34px 0;text-align:center}
.cta-band .container{font-size:clamp(22px,3vw,34px);font-weight:300;color:#5a5a5a}
.cta-band a{color:var(--accent-bright)}

/* ===== Sections ===== */
.section{padding:70px 0}
.section-title{text-align:center;font-size:clamp(28px,4vw,46px);margin-bottom:50px}
.section-title.left{text-align:left}

/* Features */
.features{list-style:none;margin:0;padding:0;display:grid;grid-template-columns:repeat(3,1fr);gap:40px 30px;max-width:960px;margin:0 auto}
.features li{display:flex;align-items:center;gap:18px;font-size:17px;color:#555}
.features img{flex:0 0 auto;width:56px;height:56px}

/* Prices */
.section-prices{background:#fff}
.prices-grid{display:grid;grid-template-columns:1fr 1fr;gap:50px;align-items:start}
.prices-photo img{width:100%;border-radius:var(--radius);box-shadow:var(--shadow)}
.prices-text h3{font-size:26px;margin-top:10px;margin-bottom:.6em}
.routes{list-style:disc;padding-left:22px;margin:0 0 26px;columns:2;column-gap:30px}
.routes li{margin-bottom:8px;color:#555}
.note{margin:4px 0;color:#666}
.note-accent{color:var(--red)}
.prices-text .btn{margin-top:20px}

/* Booking phone */
.booking-phone{text-align:center;background:#fafafa}
.booking-phone h2{font-size:clamp(26px,3.5vw,40px)}
.booking-phone h2 a{color:var(--accent-bright)}
.booking-phone p{color:#777;margin:10px 0 26px}

/* Gallery */
.gallery{position:relative;max-width:1300px;margin:0 auto;overflow:hidden;padding:0 10px}
.gallery-track{display:flex;gap:16px;transition:transform .45s ease}
.gallery-item{flex:0 0 auto;width:300px}
.gallery-item img{width:300px;height:300px;object-fit:cover;border-radius:var(--radius);box-shadow:var(--shadow)}
.gallery-nav{position:absolute;top:50%;transform:translateY(-50%);z-index:3;border:0;cursor:pointer;
  width:48px;height:48px;border-radius:50%;background:rgba(102,153,204,.9);color:#fff;font-size:20px;line-height:1}
.gallery-nav:hover{background:var(--accent-dark)}
.gallery-nav.prev{left:14px}
.gallery-nav.next{right:14px}

/* Map */
.map-section{text-align:center;padding-top:20px}
.map-wrap{margin-top:26px}
.map-wrap iframe{width:100%;height:400px;border:0;border-radius:var(--radius);box-shadow:var(--shadow)}

/* Text block */
.text-block h3{font-size:24px;font-weight:300;line-height:1.4;margin-bottom:.7em}
.text-block p{margin:0 0 18px;color:#4a4a4a}
.adv-list,.route-points{padding-left:22px;margin:0 0 24px}
.adv-list li{margin-bottom:12px}
.route-points{list-style:disc}
.route-points li{margin-bottom:6px}

/* Footer */
.site-footer{background:#2f3236;color:#cfd3d6;padding:44px 0;text-align:center}
.footer-phone{font-size:26px;font-weight:300;margin:0 0 18px;color:#fff}
.footer-phone a{color:#8fc4f2}
.footer-share{display:flex;align-items:center;justify-content:center;gap:12px;flex-wrap:wrap;margin-bottom:18px}
.footer-share span{color:#aab0b5}
.footer-copy{font-size:13px;color:#8a9096;margin:0}

/* to top */
.to-top{position:fixed;right:22px;bottom:22px;z-index:45;width:46px;height:46px;border:0;border-radius:50%;
  background:rgba(102,153,204,.9);color:#fff;font-size:20px;cursor:pointer;opacity:0;pointer-events:none;transition:.3s}
.to-top.show{opacity:1;pointer-events:auto}
.to-top:hover{background:var(--accent-dark)}

/* ===== Responsive ===== */
@media(max-width:900px){
  .main-nav{
    position:fixed;top:0;right:0;height:100vh;width:74%;max-width:320px;background:#2f3236;
    flex-direction:column;gap:0;padding:80px 24px;transform:translateX(100%);transition:transform .3s;box-shadow:-6px 0 24px rgba(0,0,0,.3)
  }
  .main-nav.open{transform:none}
  .main-nav a{padding:16px 0;border-bottom:1px solid rgba(255,255,255,.1);font-size:15px}
  .nav-toggle{display:block;margin-left:auto;order:3}
  .header-phone{font-size:17px}
  .logo img{height:38px}
  .prices-grid{grid-template-columns:1fr;gap:30px}
  .features{grid-template-columns:1fr 1fr;gap:28px}
  .site-header{background:rgba(60,63,66,.92)}
}
@media(max-width:640px){
  body{font-size:16px}
  .section{padding:50px 0}
  .dest-grid{grid-template-columns:1fr 1fr;gap:16px}
  .features{grid-template-columns:1fr}
  .routes{columns:1}
  .hero{min-height:auto;padding:110px 0 50px}
  .header-phone{display:none}
  .social-fixed{top:auto;bottom:14px;left:50%;transform:translateX(-50%);flex-direction:row}
}