/* ══════════════════════════════════════════
   RESET & BASE
══════════════════════════════════════════ */
*,*::before,*::after{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{font-family:'Poppins',sans-serif;background:#f5f5f5;color:#222;overflow-x:hidden;}
a{text-decoration:none;color:inherit;}
img{max-width:100%;height:auto;}
button{font-family:'Poppins',sans-serif;}

:root{
  --blue:#2ea6cc;
  --orange:#f28c3c;
  --dark:#06202B;
  --light:#f5f5f5;
}

/* ══════════════════════════════════════════
   INLINE SVG ICON SIZING
   (icons are inline <svg> in the markup —
   no external icon font, nothing to fail to load)
══════════════════════════════════════════ */
.icon{
  width:1em;height:1em;
  display:inline-block;
  vertical-align:-0.125em;
  fill:none;
  stroke:currentColor;
  stroke-width:2;
  stroke-linecap:round;
  stroke-linejoin:round;
  flex-shrink:0;
}
.icon-fill{ fill:currentColor; stroke:none; }

/* ══════════════════════════════════════════
   NAVBAR — rounded-rectangle, not pill-shaped
   (predictable tap targets on mobile)
══════════════════════════════════════════ */
.navbar{
  position:absolute;
  top:20px;left:20px;right:20px;
  z-index:200;
  background:white;
  border-radius:16px;
  box-shadow:0 8px 28px rgba(0,0,0,0.08);
}
.nav-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 24px;
}
.nav-logo img{height:48px;width:auto;display:block;}

.nav-links{
  display:flex;
  align-items:center;
  gap:28px;
  list-style:none;
}
.nav-links a{
  color:#38a8c8;
  font-weight:500;
  font-size:15px;
  transition:color .2s;
}
.nav-links a:hover{color:#2f545f;}

.nav-apply{
  background:var(--orange);
  color:white!important;
  padding:10px 22px;
  border-radius:8px;
  font-weight:600;
  font-size:14px;
  transition:background .2s;
}
.nav-apply:hover{background:#e07e2a;}

/* dropdown */
.nav-dropdown{position:relative;}
.nav-dropdown > a{display:flex;align-items:center;gap:6px;}
.nav-dropdown-menu{
  position:absolute;top:calc(100% + 10px);left:0;
  background:white;border-radius:12px;min-width:170px;
  box-shadow:0 12px 32px rgba(0,0,0,0.12);
  padding:8px 0;list-style:none;
  opacity:0;visibility:hidden;transform:translateY(8px);
  transition:all .25s;
}
.nav-dropdown.open .nav-dropdown-menu{opacity:1;visibility:visible;transform:translateY(0);}
.nav-dropdown-menu li a{display:block;padding:10px 18px;color:#062C33;font-size:14px;}
.nav-dropdown-menu li:hover{background:#f5f5f5;}

/* hamburger (mobile) */
.hamburger{
  display:none;background:none;border:none;cursor:pointer;
  padding:8px;width:40px;height:40px;
  align-items:center;justify-content:center;
}
.hamburger .icon{width:24px;height:24px;color:var(--dark);}

/* mobile slide-down panel — full-width, generous tap targets */
.mobile-nav{
  display:none;
  flex-direction:column;
  border-top:1px solid #f0f0f0;
  padding:8px 8px 14px;
}
.mobile-nav.open{display:flex;}
.mobile-nav a{
  display:block;
  color:#38a8c8;
  font-weight:500;
  font-size:15px;
  padding:14px 16px;
  border-radius:10px;
}
.mobile-nav a:active,
.mobile-nav a:hover{background:#f5f9fb;}
.mobile-nav a.nav-apply-mobile{
  background:var(--orange);color:white;text-align:center;margin-top:4px;
}

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.faq-hero{
  min-height:46vh;
  background:linear-gradient(135deg,var(--dark) 0%,#0d3547 100%);
  position:relative;isolation:isolate;display:flex;align-items:center;justify-content:center;
  border-bottom-left-radius:36px;border-bottom-right-radius:36px;
  text-align:center;padding:130px 30px 64px;overflow:hidden;
}
.faq-hero::before{
  content:'';position:absolute;top:-80px;right:-80px;width:280px;height:280px;
  border-radius:50%;background:rgba(46,166,204,.10);
}
.faq-hero-inner{position:relative;z-index:1;}
.faq-tag{
  display:inline-block;background:rgba(242,140,60,.15);border:1px solid var(--orange);
  color:var(--orange);font-size:12px;font-weight:600;letter-spacing:2px;text-transform:uppercase;
  padding:6px 18px;border-radius:30px;margin-bottom:18px;
}
.faq-hero h1{font-family:'Abril Fatface',cursive;font-size:clamp(32px,5vw,52px);color:white;margin-bottom:14px;}
.faq-hero p{color:rgba(255,255,255,.75);font-size:15px;max-width:520px;margin:0 auto;}

/* ══════════════════════════════════════════
   SEARCH
══════════════════════════════════════════ */
.faq-search-wrap{max-width:600px;margin:-28px auto 0;padding:0 20px;position:relative;z-index:2;}
.faq-search{
  display:flex;align-items:center;gap:12px;
  background:white;border-radius:14px;padding:14px 20px;
  box-shadow:0 14px 36px rgba(0,0,0,0.12);
}
.faq-search .icon{color:#aaa;width:18px;height:18px;}
.faq-search input{
  border:none;outline:none;flex:1;font-family:'Poppins',sans-serif;
  font-size:14px;color:var(--dark);
}

/* ══════════════════════════════════════════
   CATEGORY TABS
══════════════════════════════════════════ */
.faq-tabs{
  display:flex;justify-content:center;gap:10px;flex-wrap:wrap;
  margin:44px auto 10px;max-width:900px;padding:0 20px;
}
.faq-tab{
  background:white;border:1.5px solid #e8e8e8;color:#555;
  padding:9px 20px;border-radius:10px;font-size:13px;font-weight:600;
  cursor:pointer;transition:all .25s;
}
.faq-tab:hover{border-color:var(--blue);color:var(--blue);}
.faq-tab.active{background:var(--blue);border-color:var(--blue);color:white;}

/* ══════════════════════════════════════════
   FAQ LIST
══════════════════════════════════════════ */
.faq-section{max-width:780px;margin:30px auto 80px;padding:0 20px;}
.faq-group{margin-bottom:38px;}
.faq-group-title{
  font-size:13px;font-weight:700;letter-spacing:1.5px;text-transform:uppercase;
  color:var(--orange);margin-bottom:14px;padding-left:4px;
}

.faq-item{
  background:white;border-radius:14px;margin-bottom:12px;
  box-shadow:0 3px 12px rgba(0,0,0,0.05);overflow:hidden;
  transition:box-shadow .3s;
}
.faq-item:hover{box-shadow:0 8px 24px rgba(0,0,0,0.09);}

.faq-question{
  display:flex;align-items:center;justify-content:space-between;
  gap:16px;padding:18px 20px;cursor:pointer;background:white;
  border:none;width:100%;text-align:left;transition:background .2s;
}
.faq-question:hover{background:#fafafa;}
.faq-question span{font-size:15px;font-weight:600;color:var(--dark);}

.faq-icon-box{
  width:28px;height:28px;border-radius:8px;background:#f0f0f0;
  display:flex;align-items:center;justify-content:center;flex-shrink:0;
  transition:transform .35s,background .3s;
}
.faq-icon-box .icon{width:14px;height:14px;color:#888;transition:color .3s;}
.faq-question.open .faq-icon-box{transform:rotate(45deg);background:var(--blue);}
.faq-question.open .faq-icon-box .icon{color:white;}

.faq-answer{max-height:0;overflow:hidden;transition:max-height .4s ease;}
.faq-answer.open{max-height:500px;}
.faq-answer-inner{padding:0 20px 20px;color:#555;font-size:14px;line-height:1.75;}
.faq-answer-inner strong{color:var(--dark);}

.faq-item.highlight{border:1.5px solid rgba(242,140,60,.3);}
.faq-item.highlight .faq-question span{color:var(--orange);}

.faq-empty{display:none;text-align:center;padding:60px 20px;color:#999;}
.faq-empty .icon{width:40px;height:40px;margin-bottom:14px;color:#ddd;}

/* ══════════════════════════════════════════
   CTA
══════════════════════════════════════════ */
.faq-cta{
  background:var(--blue);padding:54px 36px;text-align:center;
  border-radius:24px;max-width:780px;margin:0 auto 80px;
}
.faq-cta h2{font-family:'Abril Fatface',cursive;font-size:clamp(22px,3vw,28px);color:white;margin-bottom:10px;}
.faq-cta p{color:rgba(255,255,255,.85);font-size:14px;margin-bottom:22px;}
.faq-cta-btns{display:flex;gap:14px;justify-content:center;flex-wrap:wrap;}
.faq-btn-primary{background:var(--orange);color:white;padding:13px 28px;border-radius:8px;font-weight:600;font-size:14px;transition:all .3s;}
.faq-btn-primary:hover{background:white;color:var(--orange);transform:translateY(-2px);}
.faq-btn-outline{background:transparent;color:white;border:2px solid rgba(255,255,255,.6);padding:11px 26px;border-radius:8px;font-weight:600;font-size:14px;transition:all .3s;}
.faq-btn-outline:hover{background:white;color:var(--blue);border-color:white;}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
footer{background:var(--dark);color:white;padding:60px 40px;}
footer h3{font-size:17px;margin-bottom:16px;}
.footer-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:50px;}
.footer-about p{font-size:14px;line-height:1.7;opacity:.8;}
.social-icons{margin-top:18px;display:flex;gap:12px;flex-wrap:wrap;}
.social-icons a{
  width:38px;height:38px;border-radius:50%;background:#247a9f;
  display:flex;align-items:center;justify-content:center;color:white;transition:.3s;
}
.social-icons a .icon{width:16px;height:16px;}
.social-icons a:hover{background:var(--orange);transform:translateY(-3px);}
.footer-links ul{list-style:none;padding:0;margin:0;}
.footer-links ul li{margin-bottom:10px;}
.footlink,.footer-links ul a{color:rgba(255,255,255,.75);font-size:14px;transition:color .2s;}
.footlink:hover,.footer-links ul a:hover{color:var(--orange);}
.footer-contact p{font-size:14px;line-height:1.8;opacity:.8;display:flex;align-items:flex-start;gap:8px;}
.footer-contact .icon{width:14px;height:14px;margin-top:3px;color:var(--blue);flex-shrink:0;}
.newsletter{margin-top:46px;padding-top:36px;border-top:1px solid rgba(255,255,255,.1);text-align:center;}
.newsletter h3{font-size:15px;font-weight:500;margin-bottom:16px;}
.newsletter-form{display:flex;flex-wrap:wrap;gap:10px;justify-content:center;max-width:680px;margin:0 auto;}
.newsletter-form input{padding:12px 16px;border-radius:8px;border:none;font-family:'Poppins',sans-serif;font-size:.9rem;flex:1;min-width:170px;outline:none;}
.newsletter-form input:focus{box-shadow:0 0 0 3px rgba(251,150,62,.4);}
.newsletter-form button{padding:12px 24px;background:var(--orange);color:white;border:none;border-radius:8px;font-weight:600;cursor:pointer;transition:background .2s;}
.newsletter-form button:hover{background:#e07e2a;}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media(max-width:991px){
  .navbar{top:14px;left:14px;right:14px;}
  .nav-inner{padding:12px 18px;}
  .nav-links{display:none;}
  .hamburger{display:flex;}
  .faq-hero{padding:110px 20px 56px;border-bottom-left-radius:24px;border-bottom-right-radius:24px;}
  .faq-cta{padding:42px 24px;margin-left:14px;margin-right:14px;}
  footer{padding:46px 20px;}
  .footer-grid{grid-template-columns:1fr;gap:36px;text-align:center;}
  .social-icons{justify-content:center;}
  .footer-contact p{justify-content:center;}
  .newsletter-form{flex-direction:column;align-items:stretch;}
  .newsletter-form input,.newsletter-form button{width:100%;}
}
@media(max-width:575px){
  .faq-tabs{gap:8px;}
  .faq-tab{padding:8px 14px;font-size:12px;}
  .faq-question{padding:16px;}
  .faq-question span{font-size:14px;}
  .faq-answer-inner{padding:0 16px 16px;}
  footer{padding:36px 16px;}
}

/* ══════════════════════════════════════════
   BACK TO TOP
══════════════════════════════════════════ */
.back-to-top{
  position:fixed;bottom:26px;right:26px;z-index:500;
  width:44px;height:44px;border-radius:50%;
  background:#f28c3c;color:#fff;border:none;
  display:flex;align-items:center;justify-content:center;
  font-size:19px;line-height:1;cursor:pointer;
  box-shadow:0 4px 12px rgba(0,0,0,.3);
  opacity:0;visibility:hidden;transform:translateY(10px);
  transition:opacity .25s ease,transform .25s ease,visibility .25s ease,background .2s;
}
.back-to-top.visible{opacity:1;visibility:visible;transform:translateY(0);}
.back-to-top:hover{background:#e07e2a;}
@media(prefers-reduced-motion:reduce){.back-to-top{transition:none;}}
@media(max-width:575px){.back-to-top{width:40px;height:40px;bottom:18px;right:18px;font-size:16px;}}

/* ══════════════════════════════════════════
   HERO IMAGE CAROUSEL (auto-rotating, no user controls)
══════════════════════════════════════════ */
.faq-hero::after{content:'';position:absolute;inset:0;z-index:0;background:linear-gradient(180deg,rgba(6,32,43,.55) 0%,rgba(6,32,43,.75) 100%);}
.hero-carousel{position:absolute;inset:0;overflow:hidden;z-index:-1;}
.hero-carousel-slide{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;opacity:0;transition:opacity 1.8s ease-in-out;}
.hero-carousel-slide.active{opacity:1;}
@media (prefers-reduced-motion:reduce){.hero-carousel-slide{transition:none;}}
