/* ===========================================================
   Creative Tours And Travels — Stylesheet
   Palette: trip.com-inspired light blue
   Fonts: Poppins (display) + Inter (body)
=========================================================== */

:root{
  --primary:        #1768F0;
  --primary-dark:   #0D4FC0;
  --primary-light:  #EAF3FF;
  --primary-lighter:#F5FAFF;
  --accent:         #00C2A8;
  --accent-dark:    #00A390;
  --navy:           #0B1F3A;
  --gray-700:       #3A4A63;
  --gray-500:       #6B7A94;
  --gray-300:       #C7D4E6;
  --gray-100:       #F4F8FD;
  --white:          #FFFFFF;
  --radius-sm:      8px;
  --radius:         14px;
  --radius-lg:      22px;
  --shadow-sm:      0 2px 10px rgba(11,31,58,0.06);
  --shadow:         0 10px 30px rgba(23,104,240,0.12);
  --shadow-lg:      0 20px 50px rgba(11,31,58,0.14);
  --container:      1180px;
}

*,*::before,*::after{ box-sizing:border-box; }

html{ scroll-behavior:smooth; }

body{
  margin:0;
  font-family:'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color:var(--gray-700);
  background:var(--white);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}

h1,h2,h3,h4,h5{
  font-family:'Poppins', 'Inter', sans-serif;
  color:var(--navy);
  margin:0 0 .6em;
  line-height:1.25;
  font-weight:600;
}

p{ margin:0 0 1em; }
a{ text-decoration:none; color:var(--primary); }
img{ max-width:100%; display:block; }
ul{ margin:0; padding:0; list-style:none; }
button{ font-family:inherit; cursor:pointer; }

.container{
  width:100%;
  max-width:var(--container);
  margin:0 auto;
  padding:0 24px;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:.78rem;
  font-weight:600;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--primary);
  background:var(--primary-light);
  padding:6px 14px;
  border-radius:999px;
  margin-bottom:14px;
}

.section-head{
  max-width:640px;
  margin:0 0 48px;
}
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head h2{ font-size:clamp(1.6rem,3vw,2.3rem); }
.section-head p{ color:var(--gray-500); font-size:1.02rem; }

section{ padding:88px 0; }
.bg-light{ background:var(--gray-100); }
.bg-primary-soft{ background:linear-gradient(180deg,var(--primary-lighter) 0%,var(--white) 100%); }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:13px 26px;
  border-radius:999px;
  font-weight:600;
  font-size:.95rem;
  border:2px solid transparent;
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space:nowrap;
}
.btn:hover{ transform:translateY(-2px); }
.btn-primary{
  background:var(--primary);
  color:var(--white);
  box-shadow:0 10px 24px rgba(23,104,240,.28);
}
.btn-primary:hover{ background:var(--primary-dark); color:var(--white); box-shadow:0 14px 30px rgba(23,104,240,.35); }
.btn-outline{
  background:var(--white);
  border-color:var(--gray-300);
  color:var(--navy);
}
.btn-outline:hover{ border-color:var(--primary); color:var(--primary); }
.btn-accent{
  background:var(--accent);
  color:var(--white);
  box-shadow:0 10px 24px rgba(0,194,168,.28);
}
.btn-accent:hover{ background:var(--accent-dark); color:var(--white); }
.btn-sm{ padding:9px 18px; font-size:.85rem; }
.btn-block{ width:100%; }

/* ---------- Navbar ---------- */
.navbar{
  position:fixed;
  top:0; left:0; right:0;
  z-index:1000;
  background:rgba(255,255,255,.9);
  backdrop-filter:blur(10px);
  border-bottom:1px solid transparent;
  transition:box-shadow .25s ease, border-color .25s ease, background .25s ease;
}
.navbar.scrolled{
  box-shadow:0 4px 20px rgba(11,31,58,.08);
  border-color:var(--gray-100);
}
.navbar .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:76px;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-family:'Poppins',sans-serif;
  font-weight:700;
  font-size:1.2rem;
  color:var(--navy);
}
.brand .brand-mark{
  width:38px;height:38px;
  display:flex;align-items:center;justify-content:center;
  flex:none;
}
.brand span{ color:var(--primary); }

.nav-links{
  display:flex;
  align-items:center;
  gap:34px;
}
.nav-links a{
  color:var(--gray-700);
  font-weight:500;
  font-size:.96rem;
  position:relative;
  padding:6px 0;
}
.nav-links a::after{
  content:"";
  position:absolute; left:0; bottom:0;
  width:0; height:2px;
  background:var(--primary);
  transition:width .25s ease;
}
.nav-links a:hover{ color:var(--primary); }
.nav-links a:hover::after{ width:100%; }
.nav-links a.tag-link{
  background:var(--primary-light);
  color:var(--primary);
  padding:8px 16px;
  border-radius:999px;
  font-weight:600;
}
.nav-links a.tag-link::after{ display:none; }
.nav-links a.tag-link:hover{ background:var(--primary); color:var(--white); }

.nav-cta{ display:flex; align-items:center; gap:14px; }

.nav-toggle{
  display:none;
  flex-direction:column;
  gap:5px;
  background:none;
  border:none;
  padding:8px;
}
.nav-toggle span{
  width:24px; height:2px; background:var(--navy); border-radius:2px;
  transition:transform .25s ease, opacity .25s ease;
}
.nav-toggle.open span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2){ opacity:0; }
.nav-toggle.open span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero{
  position:relative;
  padding:170px 0 90px;
  overflow:hidden;
  background:
    radial-gradient(60% 60% at 85% 10%, rgba(23,104,240,.10) 0%, rgba(23,104,240,0) 70%),
    radial-gradient(50% 50% at 5% 100%, rgba(0,194,168,.10) 0%, rgba(0,194,168,0) 70%),
    var(--white);
}
.hero .container{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:50px;
  align-items:center;
}
.hero h1{
  font-size:clamp(2.1rem,4.2vw,3.3rem);
  letter-spacing:-.01em;
}
.hero h1 .highlight{
  color:var(--primary);
  position:relative;
  white-space:nowrap;
}
.hero-lead{
  font-size:1.08rem;
  color:var(--gray-500);
  max-width:520px;
}
.hero-actions{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
  margin:30px 0 40px;
}
.hero-stats{
  display:flex;
  gap:36px;
  flex-wrap:wrap;
}
.hero-stats .stat b{
  display:block;
  font-family:'Poppins',sans-serif;
  font-size:1.6rem;
  color:var(--navy);
}
.hero-stats .stat span{
  font-size:.85rem;
  color:var(--gray-500);
}

.hero-art{ position:relative; }
.hero-art svg{ width:100%; height:auto; }

/* floating badge chips over hero art */
.floating-chip{
  position:absolute;
  display:flex;
  align-items:center;
  gap:10px;
  background:var(--white);
  border-radius:14px;
  padding:10px 16px;
  box-shadow:var(--shadow);
  font-size:.85rem;
  font-weight:600;
  color:var(--navy);
  animation:floatY 4.5s ease-in-out infinite;
}
.floating-chip.chip-1{ top:8%; left:-4%; animation-delay:0s; }
.floating-chip.chip-2{ bottom:12%; right:-6%; animation-delay:1.2s; }
.floating-chip .dot{
  width:9px;height:9px;border-radius:50%;background:var(--accent);
  box-shadow:0 0 0 4px rgba(0,194,168,.18);
}
@keyframes floatY{
  0%,100%{ transform:translateY(0); }
  50%{ transform:translateY(-12px); }
}

/* plane path animation */
.plane-path{
  stroke-dasharray:6 8;
  stroke:var(--gray-300);
  animation:dashMove 30s linear infinite;
}
@keyframes dashMove{ to{ stroke-dashoffset:-400; } }

.plane-icon{
  offset-path:path("M40,230 C160,60 340,340 460,120");
  animation:flyPlane 7s ease-in-out infinite;
}
@keyframes flyPlane{
  0%{ offset-distance:0%; }
  100%{ offset-distance:100%; }
}
.pulse-dot{ animation:pulseDot 2.4s ease-out infinite; transform-origin:center; }
.pulse-dot.delay{ animation-delay:1.2s; }
@keyframes pulseDot{
  0%{ transform:scale(.6); opacity:.9; }
  70%{ transform:scale(2.2); opacity:0; }
  100%{ opacity:0; }
}
.cloud{ animation:driftCloud 18s ease-in-out infinite; }
.cloud.c2{ animation-duration:22s; animation-delay:-6s; }
.cloud.c3{ animation-duration:26s; animation-delay:-12s; }
@keyframes driftCloud{
  0%,100%{ transform:translateX(0); }
  50%{ transform:translateX(18px); }
}

/* ---------- Services / icons ---------- */
.services-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.service-card{
  background:var(--white);
  border:1px solid var(--gray-100);
  border-radius:var(--radius);
  padding:30px 26px;
  box-shadow:var(--shadow-sm);
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-card:hover{
  transform:translateY(-6px);
  box-shadow:var(--shadow);
  border-color:var(--primary-light);
}
.service-icon{
  width:58px; height:58px;
  border-radius:16px;
  background:var(--primary-light);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:18px;
  transition:transform .35s ease, background .35s ease;
}
.service-card:hover .service-icon{
  background:var(--primary);
  transform:rotate(-8deg) scale(1.08);
}
.service-card:hover .service-icon svg *{ stroke:var(--white); }
.service-icon svg{ width:28px; height:28px; }
.service-icon svg *{ stroke:var(--primary); transition:stroke .35s ease; }
.service-card h3{ font-size:1.08rem; margin-bottom:8px; }
.service-card p{ font-size:.92rem; color:var(--gray-500); margin-bottom:14px; }
.service-card .card-link{ font-size:.88rem; font-weight:600; }
.service-card .card-link svg{ width:14px; height:14px; vertical-align:-2px; transition:transform .2s ease; }
.service-card .card-link:hover svg{ transform:translateX(3px); }

/* ---------- About ---------- */
.about-wrap{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:60px;
  align-items:center;
}
.about-art svg{ width:100%; height:auto; }
.about-list{ margin-top:22px; display:grid; gap:14px; }
.about-list li{
  display:flex; gap:12px; align-items:flex-start;
  font-size:.98rem; color:var(--gray-700);
}
.about-list .check{
  flex:none;
  width:24px;height:24px;
  border-radius:50%;
  background:var(--primary-light);
  display:flex;align-items:center;justify-content:center;
  margin-top:2px;
}
.about-list .check svg{ width:13px;height:13px; }
.about-badges{
  display:flex; gap:14px; margin-top:30px; flex-wrap:wrap;
}
.about-badge{
  display:flex; align-items:center; gap:12px;
  background:var(--gray-100);
  border-radius:var(--radius-sm);
  padding:12px 16px;
}
.about-badge b{ display:block; font-family:'Poppins',sans-serif; color:var(--navy); }
.about-badge span{ font-size:.78rem; color:var(--gray-500); }

/* ---------- Pricing tabs ---------- */
.pricing-tabs{
  display:flex;
  justify-content:center;
  gap:10px;
  margin-bottom:36px;
  flex-wrap:wrap;
}
.tab-btn{
  background:var(--white);
  border:1.5px solid var(--gray-300);
  color:var(--gray-700);
  padding:11px 24px;
  border-radius:999px;
  font-weight:600;
  font-size:.92rem;
  transition:all .2s ease;
}
.tab-btn.active,.tab-btn:hover{
  background:var(--primary);
  border-color:var(--primary);
  color:var(--white);
}
.price-panel{ display:none; }
.price-panel.active{ display:block; animation:fadeUp .4s ease; }
@keyframes fadeUp{ from{ opacity:0; transform:translateY(10px);} to{opacity:1; transform:translateY(0);} }

/* ---------- Pricing cards + slider (signature element) ---------- */
.price-slider{
  position:relative;
  display:flex;
  align-items:center;
  gap:14px;
}
.price-track{
  flex:1;
  display:flex;
  gap:22px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  scroll-behavior:smooth;
  padding:6px 4px 26px;
  -ms-overflow-style:none;
  scrollbar-width:none;
}
.price-track::-webkit-scrollbar{ display:none; }

.price-card{
  scroll-snap-align:start;
  flex:0 0 auto;
  width:280px;
  background:var(--white);
  border:1px solid var(--gray-100);
  border-radius:var(--radius-lg);
  padding:26px 24px 24px;
  box-shadow:var(--shadow-sm);
  display:flex;
  flex-direction:column;
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.price-card:hover{
  transform:translateY(-6px);
  box-shadow:var(--shadow);
  border-color:var(--primary-light);
}
.price-card-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:8px;
  margin-bottom:18px;
  flex-wrap:wrap;
}
.visa-tag{
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-size:.72rem;
  font-weight:700;
  letter-spacing:.04em;
  text-transform:uppercase;
  color:var(--accent-dark);
  background:rgba(0,194,168,.12);
  padding:5px 11px;
  border-radius:999px;
}
.price-table .entry-badge,
.entry-badge{
  display:inline-block;
  background:var(--primary-light);
  color:var(--primary-dark);
  font-weight:600;
  font-size:.78rem;
  padding:4px 10px;
  border-radius:999px;
}
.price-card-fees{
  border-top:1px dashed var(--gray-300);
  border-bottom:1px dashed var(--gray-300);
  padding:14px 0;
  margin-bottom:16px;
  display:grid;
  gap:9px;
}
.fee-row{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  font-size:.86rem;
  color:var(--gray-500);
  gap:10px;
}
.fee-row small{ font-size:.72rem; opacity:.85; }
.fee-row b{ color:var(--gray-700); font-weight:600; white-space:nowrap; }
.price-card-total{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  margin-bottom:20px;
  gap:10px;
}
.price-card-total span{
  font-size:.82rem;
  color:var(--gray-500);
  line-height:1.3;
}
.price-card-total span small{ display:block; font-size:.72rem; }
.price-card-total strong{
  font-family:'Poppins',sans-serif;
  font-size:1.5rem;
  color:var(--navy);
  white-space:nowrap;
}

.slider-arrow{
  flex:none;
  width:44px; height:44px;
  border-radius:50%;
  background:var(--white);
  border:1.5px solid var(--gray-300);
  color:var(--navy);
  display:flex; align-items:center; justify-content:center;
  box-shadow:var(--shadow-sm);
  transition:all .2s ease;
}
.slider-arrow svg{ width:18px; height:18px; }
.slider-arrow:hover{ background:var(--primary); border-color:var(--primary); color:var(--white); }
.slider-arrow:disabled{ opacity:.35; cursor:default; }
.slider-arrow:disabled:hover{ background:var(--white); border-color:var(--gray-300); color:var(--navy); }

.slider-dots{
  display:flex;
  justify-content:center;
  gap:8px;
  margin:-8px 0 26px;
}
.slider-dots .sdot{
  width:8px;height:8px;
  border-radius:50%;
  background:var(--gray-300);
  transition:all .25s ease;
}
.slider-dots .sdot.active{
  width:22px;
  border-radius:5px;
  background:var(--primary);
}

.doc-btn{
  background:var(--white);
  border:1.5px solid var(--primary);
  color:var(--primary);
  padding:11px 16px;
  border-radius:999px;
  font-size:.85rem;
  font-weight:600;
  display:inline-flex; align-items:center; justify-content:center; gap:6px;
  transition:all .2s ease;
  margin-top:auto;
}
.doc-btn:hover{ background:var(--primary); color:var(--white); }
.doc-btn svg{ width:13px; height:13px; }

.price-note{
  text-align:center;
  font-size:.85rem;
  color:var(--gray-500);
  margin-top:4px;
}

@media (max-width:575px){
  .price-slider{ gap:8px; }
  .slider-arrow{ width:38px; height:38px; }
  .price-card{ width:240px; padding:22px 20px 20px; }
}

/* Document modal */
.modal-content{
  border-radius:var(--radius-lg);
  border:none;
  box-shadow:var(--shadow-lg);
}
.modal-header{
  border-bottom:1px solid var(--gray-100);
  padding:22px 26px;
}
.modal-header .modal-title{
  font-family:'Poppins',sans-serif;
  font-size:1.15rem;
  color:var(--navy);
}
.modal-header .modal-sub{ font-size:.82rem; color:var(--gray-500); margin-top:2px; }
.modal-body{ padding:22px 26px; }
.doc-list{ display:grid; gap:12px; }
.doc-list li{
  display:flex; gap:12px; align-items:flex-start;
  font-size:.93rem;
  padding:10px 12px;
  background:var(--gray-100);
  border-radius:var(--radius-sm);
}
.doc-list .num{
  flex:none;
  width:22px; height:22px;
  border-radius:50%;
  background:var(--primary);
  color:var(--white);
  font-size:.72rem;
  font-weight:700;
  display:flex; align-items:center; justify-content:center;
  margin-top:1px;
}
.modal-footer{ border-top:1px solid var(--gray-100); padding:18px 26px; }

/* ---------- Why choose us ---------- */
.why-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}
.why-card{ text-align:center; padding:10px; }
.why-icon{
  width:64px;height:64px;
  margin:0 auto 16px;
  border-radius:50%;
  background:var(--white);
  box-shadow:var(--shadow-sm);
  display:flex;align-items:center;justify-content:center;
}
.why-icon svg{ width:28px;height:28px; }
.why-card h4{ font-size:1rem; margin-bottom:6px; }
.why-card p{ font-size:.88rem; color:var(--gray-500); }

/* ---------- FAQ ---------- */
.faq-wrap{ max-width:800px; margin:0 auto; }
.accordion-item{
  border:1px solid var(--gray-100);
  border-radius:var(--radius) !important;
  margin-bottom:14px;
  overflow:hidden;
}
.accordion-button{
  font-family:'Poppins',sans-serif;
  font-weight:600;
  font-size:.98rem;
  color:var(--navy);
  padding:20px 24px;
  background:var(--white);
  box-shadow:none !important;
}
.accordion-button:not(.collapsed){
  color:var(--primary);
  background:var(--primary-lighter);
}
.accordion-button::after{
  filter:hue-rotate(190deg) saturate(3);
}
.accordion-body{
  padding:0 24px 22px;
  color:var(--gray-500);
  font-size:.93rem;
}

/* ---------- Contact ---------- */
.contact-wrap{
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:50px;
}
.contact-info-card{
  background:var(--navy);
  color:var(--white);
  border-radius:var(--radius-lg);
  padding:36px 30px;
  position:relative;
  overflow:hidden;
}
.contact-info-card h3{ color:var(--white); }
.contact-info-card p{ color:#AFC0DA; }
.contact-item{
  display:flex; gap:14px; align-items:flex-start;
  margin-top:22px;
}
.contact-item .ico{
  flex:none;
  width:40px;height:40px;
  border-radius:12px;
  background:rgba(255,255,255,.1);
  display:flex;align-items:center;justify-content:center;
}
.contact-item b{ display:block; color:var(--white); font-size:.9rem; }
.contact-item span{ font-size:.85rem; color:#AFC0DA; }
.social-row{ display:flex; gap:10px; margin-top:28px; }
.social-row a{
  width:38px;height:38px;
  border-radius:50%;
  background:rgba(255,255,255,.1);
  display:flex;align-items:center;justify-content:center;
  color:var(--white);
  transition:background .2s ease, transform .2s ease;
}
.social-row a:hover{ background:var(--primary); transform:translateY(-3px); }
.social-row svg{ width:16px;height:16px; }

.contact-form{
  background:var(--white);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow);
  padding:34px;
  border:1px solid var(--gray-100);
}
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.form-group{ margin-bottom:18px; }
.form-group label{
  display:block; font-size:.85rem; font-weight:600; color:var(--navy); margin-bottom:7px;
}
.form-control,.form-select{
  width:100%;
  border:1.5px solid var(--gray-300);
  border-radius:var(--radius-sm);
  padding:12px 14px;
  font-size:.93rem;
  font-family:inherit;
  transition:border-color .2s ease, box-shadow .2s ease;
}
.form-control:focus,.form-select:focus{
  outline:none;
  border-color:var(--primary);
  box-shadow:0 0 0 4px rgba(23,104,240,.12);
}
textarea.form-control{ resize:vertical; min-height:110px; }

/* ---------- Footer ---------- */
footer{
  background:var(--navy);
  color:#AFC0DA;
  padding:70px 0 26px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr 1.2fr;
  gap:40px;
  padding-bottom:40px;
  border-bottom:1px solid rgba(255,255,255,.1);
}
.footer-brand{ display:flex; align-items:center; gap:10px; font-family:'Poppins',sans-serif; font-weight:700; font-size:1.15rem; color:var(--white); margin-bottom:14px; }
.footer-brand span{ color:#7FB0FF; }
footer h5{ color:var(--white); font-family:'Poppins',sans-serif; font-size:.95rem; margin-bottom:18px; }
.footer-links li{ margin-bottom:10px; }
.footer-links a{ color:#AFC0DA; font-size:.9rem; }
.footer-links a:hover{ color:var(--white); }
.footer-bottom{
  padding-top:24px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:12px;
  font-size:.83rem;
}
.footer-bottom a{ color:#AFC0DA; }
.footer-bottom a:hover{ color:var(--white); }

/* ---------- Back to top ---------- */
.back-to-top{
  position:fixed;
  right:24px; bottom:24px;
  width:46px;height:46px;
  border-radius:50%;
  background:var(--primary);
  color:var(--white);
  display:flex;align-items:center;justify-content:center;
  box-shadow:var(--shadow);
  opacity:0; visibility:hidden;
  transform:translateY(10px);
  transition:all .3s ease;
  z-index:900;
  border:none;
}
.back-to-top.show{ opacity:1; visibility:visible; transform:translateY(0); }
.back-to-top:hover{ background:var(--primary-dark); }

/* ---------- Reveal on scroll ---------- */
.reveal{ opacity:0; transform:translateY(24px); transition:opacity .7s ease, transform .7s ease; }
.reveal.in-view{ opacity:1; transform:translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width:991px){
  .hero .container{ grid-template-columns:1fr; }
  .hero{ padding-top:150px; text-align:center; }
  .hero-lead{ margin-left:auto; margin-right:auto; }
  .hero-actions,.hero-stats{ justify-content:center; }
  .hero-art{ order:-1; max-width:420px; margin:0 auto 30px; }
  .about-wrap{ grid-template-columns:1fr; }
  .about-art{ max-width:380px; margin:0 auto; }
  .services-grid{ grid-template-columns:repeat(2,1fr); }
  .why-grid{ grid-template-columns:repeat(2,1fr); }
  .contact-wrap{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns:1fr 1fr; }
}
@media (max-width:767px){
  .nav-links{
    position:fixed; top:76px; left:0; right:0;
    background:var(--white);
    flex-direction:column;
    align-items:flex-start;
    gap:0;
    padding:10px 24px 20px;
    box-shadow:0 12px 24px rgba(11,31,58,.08);
    transform:translateY(-140%);
    opacity:0;
    transition:transform .3s ease, opacity .3s ease;
  }
  .nav-links.open{ transform:translateY(0); opacity:1; }
  .nav-links a{ width:100%; padding:14px 0; border-bottom:1px solid var(--gray-100); }
  .nav-links a.tag-link{ margin-top:10px; text-align:center; }
  .nav-toggle{ display:flex; }
  .nav-cta .btn{ display:none; }
  section{ padding:64px 0; }
  .services-grid{ grid-template-columns:1fr; }
  .why-grid{ grid-template-columns:1fr 1fr; }
  .form-row{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns:1fr; gap:30px; }
  .pricing-tabs{ gap:8px; }
  .tab-btn{ padding:9px 16px; font-size:.85rem; }
}
@media (prefers-reduced-motion: reduce){
  *{ animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; }
}
