:root{
  --orange:#f45113;
  --dark:#111;
  --text:#171717;
  --muted:#666;
  --light:#f7f7f7;
  --line:#ececec;
  --shadow:0 12px 30px rgba(0,0,0,.12);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  color:var(--text);
  background:white;
  line-height:1.45;
}

.section, .services, .prices, .footer{
  opacity:0;
  transform:translateY(30px);
  transition:opacity .6s ease, transform .6s ease;
}
.section.visible, .services.visible, .prices.visible, .footer.visible{
  opacity:1;
  transform:translateY(0);
}

a{color:inherit;text-decoration:none}
img{max-width:100%}

.header{
  position:sticky;
  top:0;
  z-index:20;
  height:86px;
  display:flex;
  align-items:center;
  gap:28px;
  padding:0 6vw;
  background:white;
  box-shadow:0 2px 16px rgba(0,0,0,.08);
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  min-width:210px;
}

.brand-icon{
  width:42px;
  height:30px;
  display:grid;
  place-items:center;
  color:var(--orange);
  font-size:30px;
  font-weight:900;
}

.brand strong{
  display:block;
  font-size:24px;
  letter-spacing:.5px;
}
.brand em{
  color:var(--orange);
  font-style:normal;
}
.brand small{
  display:block;
  font-size:10px;
  text-transform:uppercase;
  margin-top:-3px;
}

.nav{
  display:flex;
  gap:26px;
  margin-right:auto;
  font-size:13px;
  text-transform:uppercase;
  font-weight:700;
}

.nav a{
  padding:32px 0 28px;
  border-bottom:3px solid transparent;
}

.nav a:hover{color:var(--orange);border-color:var(--orange)}

[id]{
  scroll-margin-top:100px;
}

.top-phones{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:20px;
  font-size:12px;
}
.top-phones a{
  display:flex;
  align-items:center;
  gap:12px;
  color:#222;
}
.top-phones a .contact-info{
  display:flex;
  flex-direction:column;
}
.top-phones a .contact-name{
  font-weight:700;
}
.top-phones a strong{
  display:block;
  font-size:16px;
  line-height:1.1;
}
.contact-icon{
  display:inline-flex;
  width:18px;
  justify-content:center;
  color:var(--orange);
  font-size:16px;
  line-height:1;
}
.top-phones .contact-icon{
  width:22px;
  font-size:20px;
}
.footer p .contact-icon{
  margin-right:8px;
}

.menu-btn{display:none}

.hero{
  min-height:470px;
  display:flex;
  align-items:center;
  padding:70px 6vw;
  background:
    linear-gradient(90deg, rgba(255,255,255,.95) 0%, rgba(255,255,255,.82) 43%, rgba(255,255,255,.2) 100%),
    url("images/hero.png");
  background-size:cover;
  background-position:center;
}

.hero-text{max-width:520px}
.hero h1{
  margin:0 0 8px;
  font-size:54px;
  line-height:1;
  text-transform:uppercase;
}
.hero h1 span{color:var(--orange)}
.hero p{
  font-size:22px;
  margin:12px 0;
}
.hero .note{
  font-size:15px;
  color:var(--muted);
}

.buttons{
  display:flex;
  gap:14px;
  margin-top:28px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:1px solid #ddd;
  background:white;
  padding:14px 24px;
  border-radius:7px;
  font-weight:800;
  text-transform:uppercase;
  font-size:14px;
  box-shadow:0 6px 14px rgba(0,0,0,.08);
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 20px rgba(0,0,0,.15);
}
.btn.primary{
  background:var(--orange);
  color:white;
  border-color:var(--orange);
}
.btn.primary:hover{
  background:#e55;
}

.services{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
  padding:48px 6vw;
  background:white;
}
.service-card{
  border-radius:10px;
  padding:12px 18px 22px
}

.service-card .icon{
  font-size:38px;
  color:var(--orange);
  margin-bottom:12px;
}
.service-card h3{
  margin:0 0 10px;
  text-transform:uppercase;
  font-size:16px;
}
.service-card p{
  margin:0;
  color:#333;
}
.service-card,
.destination{
  transition:transform .22s ease, box-shadow .22s ease;
}
.service-card:hover,
.destination:hover{
  transform:translateY(-4px);
  box-shadow:0 16px 28px rgba(0,0,0,.12);
  
}

.section{
  padding:56px 6vw;
  background:#fafafa;
}
.section:nth-of-type(even){background:white}

.section-head{
  text-align:center;
  margin-bottom:30px;
}

.section-head h2{
  margin:0;
  font-size:32px;
  text-transform:uppercase;
}
.section-head h2:after{
  content:"";
  display:block;
  width:45px;
  height:3px;
  background:var(--orange);
  margin:10px auto 0;
}
.section-head p{color:var(--muted)}

.cards{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}
.destination{
  background:white;
  border:1px solid var(--line);
  border-radius:10px;
  padding:10px 0;
  box-shadow:0 6px 18px rgba(0,0,0,.06);
}
.destination h3{
  margin:18px 18px 4px;
  text-transform:uppercase;
}
.destination strong{
  display:block;
  margin:0 18px;
  color:var(--orange);
  font-size:20px;
}
.destination p{
  margin:12px 18px 22px;
  color:#444;
}
.small-note{
  text-align:center;
  color:#555;
  margin-top:24px;
  font-size:14px;
}

.assisted-grid{
  display:grid;
  grid-template-columns:1fr 280px;
  gap:20px;
  align-items:center;
  max-width:760px;
  margin:auto;
}
.checklist p{
  font-size:18px;
  margin:15px 0;
}
.checklist p::first-letter{color:var(--orange)}
.airport-description p{
  font-size:18px;
  margin:15px 0;
}
.price-box{
  border:1px solid #ffd0bf;
  background:white;
  border-radius:12px;
  padding:28px;
  text-align:center;
  box-shadow:0 8px 20px rgba(0,0,0,.06);
}
.price-box span{
  display:block;
  text-transform:uppercase;
  font-weight:800;
}
.price-box strong{
  display:block;
  color:var(--orange);
  font-size:28px;
  margin:16px 0 4px;
}
.price-box small{display:block;margin-bottom:22px;color:var(--muted)}

.price-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
  max-width:980px;
  margin:auto;
}
.price-card{
  background:white;
  border:1px solid var(--line);
  border-radius:12px;
  padding:24px;
}
.price-card h3{
  margin:0 0 18px;
  text-transform:uppercase;
}
.price-card p{
  display:flex;
  justify-content:space-between;
  gap:20px;
  margin:12px 0;
}
.price-card strong{color:var(--orange)}

.text-cta{
  display:block;
  margin-top:14px;
  color:var(--orange);
  font-weight:800;
}
.contact-section{background:var(--light)}
.contact-grid{
  display:grid;
  grid-template-columns:.8fr 1.2fr;
  gap:55px;
  max-width:1050px;
  margin:auto;
  align-items:start;
}
.contact-copy h3{font-size:28px;margin:0 0 15px}
.contact-copy>p{color:var(--muted)}
.contact-list{display:grid;gap:13px;margin-top:28px}
.contact-list a{display:flex;align-items:center;gap:8px;width:max-content;font-weight:800}
.contact-list .contact-icon{color:var(--orange);font-size:20px}
.form-card{background:#fff;padding:34px;border:1px solid var(--line);border-radius:12px;box-shadow:var(--shadow)}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:14px}
.form-card label{display:grid;gap:7px;margin-bottom:14px}
.form-card label>span:first-child{font-size:12px;text-transform:uppercase;letter-spacing:.07em;color:#666}
.form-card input,.form-card select,.form-card textarea{width:100%;border:1px solid #d7d7d7;border-radius:6px;background:#fafafa;padding:14px 15px;color:#222;font:inherit;outline:none}
.form-card input:focus,.form-card select:focus,.form-card textarea:focus{border-color:var(--orange);box-shadow:0 0 0 3px rgba(244,81,19,.12)}
.form-card textarea{resize:vertical}
.submit-btn{width:100%;border:0;cursor:pointer;font:inherit}
.form-consent{display:grid!important;grid-template-columns:20px 1fr;align-items:start;gap:11px;margin:16px 0 18px!important;cursor:pointer}
.form-card .form-consent .consent-text{font-size:13px;text-transform:none;letter-spacing:0;line-height:1.5;color:#666}
.form-consent input[type="checkbox"]{position:absolute;width:1px;height:1px;margin:0;padding:0;opacity:0;overflow:hidden}
.form-card .form-consent .consent-check{display:block;width:20px;height:20px;border:2px solid #aaa;background:#fff;position:relative}
.form-consent input:checked+.consent-check{border-color:var(--orange);background:var(--orange)}
.form-consent input:checked+.consent-check::after{content:"";position:absolute;left:5px;top:1px;width:5px;height:10px;border:solid #fff;border-width:0 2px 2px 0;transform:rotate(45deg)}
.form-consent a{color:var(--orange);font-weight:800}
.honeypot{position:absolute!important;left:-9999px!important}
.form-message{padding:13px 15px;margin-bottom:18px;border-radius:6px}
.form-message.success{background:#e8f4eb;color:#225b31}
.form-message.error{background:#f8e8e8;color:#8a2d2d}

.footer{
  padding:70px 6vw 28px;
  background:#070809;
  color:white;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.25fr 1fr 1fr;
  gap:60px 80px;
  max-width:1500px;
  margin:auto;
}
.footer h2{
  margin:0 0 28px;
  color:white;
  font-family:Georgia, "Times New Roman", serif;
  font-size:28px;
  font-weight:500;
}
.footer p{
  margin:0;
  color:#999;
}
.footer-about{
  max-width:390px;
}
.footer-about .brand{
  width:max-content;
  margin-bottom:30px;
}
.footer-about .brand small{
  color:#aaa;
  letter-spacing:1px;
}
.footer-about p{
  line-height:1.8;
}
.footer-sitemap{
  padding:0;
  margin:0;
  border:0;
  text-align:left;
}
.footer-sitemap div{
  display:grid;
  grid-template-columns:repeat(2,minmax(120px,1fr));
  gap:14px 28px;
}
.footer-sitemap a{
  color:#aaa;
  font-size:16px;
}
.footer-sitemap a:hover,
.footer-sitemap a:focus-visible{
  color:var(--orange);
}
.footer-contact address{
  display:grid;
  gap:14px;
  color:#aaa;
  font-style:normal;
}
.footer-contact a{
  width:max-content;
  color:#eee;
}
.footer-contact a:hover,
.footer-contact a:focus-visible{
  color:var(--orange);
}
.footer-contact a .contact-icon{
  display:inline-block;
  min-width:24px;
  color:var(--orange);
}
.footer .copyright{
  grid-column:1/-1;
  padding-top:30px;
  border-top:1px solid #272727;
  text-align:center;
  font-size:14px;
  margin-top:38px;
  color:#aaa;
}
.footer .copyright a{margin-left:12px;color:#ccc}
.footer .copyright a:hover{color:var(--orange)}

.sticky-call{
  display:none;
  position:fixed;
  bottom:0;
  left:0;
  right:0;
  z-index:30;
  background:var(--orange);
  color:white;
  text-align:center;
  padding:16px;
  text-transform:uppercase;
  font-weight:900;
}

@media (max-width: 980px){
  .header{
    height:70px;
    padding:0 20px;
  }
  .menu-btn{
    display:block;
    margin-left:auto;
    border:0;
    background:white;
    font-size:30px;
  }
  .nav{
    display:none;
    position:absolute;
    left:0;
    right:0;
    top:70px;
    background:white;
    padding:12px 20px 20px;
    box-shadow:0 12px 20px rgba(0,0,0,.1);
  }
  .menu-open .nav{display:grid}
  .nav a{
    padding:12px;
    border:0;
    border-radius:6px;
  }
  .nav a:hover{background:#fff1eb}
  .top-phones{display:none}
  .brand strong{font-size:20px}
  .hero{
    min-height:520px;
    padding:50px 20px;
    align-items:flex-start;
    background:
      linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.8) 45%, rgba(255,255,255,.15) 100%),
      url("images/hero.png");
    background-size:cover;
    background-position:center bottom;
  }
  .hero h1{font-size:36px}
  .hero p{font-size:18px}
  .buttons{flex-direction:column;max-width:320px}
  .services{
    grid-template-columns:1fr;
    gap:12px;
    padding:24px 20px;
  }
  .service-card{
    display:grid;
    grid-template-columns:42px 1fr;
    gap:12px;
    align-items:center;
    border:1px solid var(--line);
    border-radius:8px;
    padding:14px;
    background:white;
  }
  .service-card .icon{margin:0}
  .service-card p{grid-column:2}
  .section{padding:38px 20px}
  .cards{grid-template-columns:1fr}
  .assisted-grid{grid-template-columns:1fr}
  .price-grid{grid-template-columns:1fr}
  .contact-grid,.form-row{grid-template-columns:1fr}
  .contact-grid{gap:28px}
  .form-card{padding:24px 18px}
  .footer{padding:52px 20px 90px}
  .footer-grid{grid-template-columns:1fr;gap:42px}
  .footer-about{max-width:100%}
  .footer .copyright{margin-top:8px}
  .sticky-call{display:block}
}
