/* ==========================================================
KING'S TOUR & TRAVELS
FAQ PAGE V1
FILE: assets/css/faq.css
========================================================== */

:root{
--ktt-primary:#ffcb45;
--ktt-secondary:#ff9f1a;
--ktt-dark:#071423;
--ktt-dark2:#102844;
--ktt-white:#ffffff;
--ktt-text:#5c6773;
--ktt-shadow:0 20px 60px rgba(0,0,0,.08);
}

.ktt-container{
width:100%;
max-width:1500px;
margin:auto;
padding-left:25px;
padding-right:25px;
}

/* ==========================================================
FAQ HERO
========================================================== */

.ktt-faq-hero{
position:relative;
padding:140px 0 100px;
overflow:hidden;
background:
linear-gradient(rgba(7,20,35,.88),rgba(7,20,35,.88)),
url('https://images.unsplash.com/photo-1519003722824-194d4455a60c?w=2000');
background-size:cover;
background-position:center;
background-attachment:fixed;
}

.ktt-faq-overlay{
position:absolute;
inset:0;
background:
radial-gradient(circle at top right,rgba(255,203,69,.12),transparent 40%),
radial-gradient(circle at bottom left,rgba(0,140,255,.08),transparent 40%);
}

.ktt-faq-hero-content{
position:relative;
z-index:2;
max-width:900px;
margin:auto;
text-align:center;
}

.ktt-faq-badge{
display:inline-block;
padding:12px 24px;
border-radius:60px;
background:rgba(255,255,255,.08);
border:1px solid rgba(255,255,255,.12);
color:#ffcb45;
font-weight:700;
margin-bottom:25px;
}

.ktt-faq-hero-content h1{
font-size:72px;
font-weight:900;
line-height:1.05;
color:#fff;
margin:0 0 20px;
}

.ktt-faq-hero-content p{
font-size:20px;
line-height:1.9;
color:rgba(255,255,255,.88);
margin:0 auto 35px;
max-width:750px;
}

.ktt-faq-search-box{
max-width:650px;
margin:auto;
position:relative;
}

.ktt-faq-search-box i{
position:absolute;
left:20px;
top:50%;
transform:translateY(-50%);
color:#ffcb45;
font-size:20px;
}

.ktt-faq-search-box input{
width:100%;
padding:18px 20px 18px 55px;
border-radius:60px;
border:none;
font-size:17px;
background:rgba(255,255,255,.95);
color:#071423;
transition:all .3s;
box-shadow:0 10px 40px rgba(0,0,0,.15);
}

.ktt-faq-search-box input:focus{
outline:none;
background:#fff;
box-shadow:0 15px 50px rgba(255,203,69,.2);
}

.ktt-faq-search-box input::placeholder{
color:#999;
}

/* ==========================================================
FAQ SECTION
========================================================== */

.ktt-faq-section{
padding:80px 0 120px;
background:#f8fafc;
}

.ktt-faq-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
}

.ktt-faq-category{
background:#fff;
border-radius:25px;
padding:35px;
box-shadow:var(--ktt-shadow);
}

.ktt-faq-cat-title{
display:flex;
align-items:center;
gap:12px;
font-size:26px;
font-weight:800;
color:#071423;
margin:0 0 25px;
padding-bottom:20px;
border-bottom:3px solid #f8fafc;
}

.ktt-faq-cat-title i{
color:#ffcb45;
font-size:28px;
}

.ktt-faq-list{
display:flex;
flex-direction:column;
gap:12px;
}

.ktt-faq-item{
border:2px solid #f0f2f5;
border-radius:16px;
overflow:hidden;
transition:all .3s;
}

.ktt-faq-item:hover{
border-color:#ffcb45;
}

.ktt-faq-question{
display:flex;
justify-content:space-between;
align-items:center;
padding:18px 20px;
cursor:pointer;
transition:all .3s;
user-select:none;
}

.ktt-faq-question:hover{
background:#f8fafc;
}

.ktt-faq-question h3{
font-size:17px;
font-weight:600;
color:#071423;
margin:0;
flex:1;
padding-right:15px;
}

.ktt-faq-question i{
font-size:16px;
color:#ffcb45;
transition:transform .3s;
flex-shrink:0;
}

.ktt-faq-answer{
max-height:0;
overflow:hidden;
transition:max-height .4s ease;
padding:0 20px;
}

.ktt-faq-answer p{
font-size:16px;
line-height:1.8;
color:#5c6773;
margin:0;
padding:0 0 20px;
}

/* ==========================================================
FAQ CONTACT
========================================================== */

.ktt-faq-contact{
padding:100px 0;
background:#fff;
}

.ktt-faq-contact-box{
background:
linear-gradient(135deg,#071423,#102844);
padding:70px;
border-radius:35px;
text-align:center;
}

.ktt-faq-contact-box h2{
font-size:50px;
font-weight:900;
color:#fff;
margin:0 0 20px;
}

.ktt-faq-contact-box p{
font-size:18px;
line-height:1.9;
color:rgba(255,255,255,.85);
margin:0 0 35px;
max-width:700px;
margin-left:auto;
margin-right:auto;
}

.ktt-faq-contact-buttons{
display:flex;
justify-content:center;
gap:15px;
flex-wrap:wrap;
}

.ktt-faq-contact-buttons a{
padding:16px 32px;
border-radius:60px;
text-decoration:none;
font-weight:700;
display:flex;
align-items:center;
gap:10px;
transition:all .3s;
}

.ktt-faq-contact-buttons a:first-child{
background:#fff;
color:#071423;
}

.ktt-faq-contact-buttons a:first-child:hover{
transform:translateY(-4px);
box-shadow:0 10px 30px rgba(255,255,255,.2);
}

.ktt-faq-contact-buttons a:nth-child(2){
background:#25D366;
color:#fff;
}

.ktt-faq-contact-buttons a:nth-child(2):hover{
transform:translateY(-4px);
box-shadow:0 10px 30px rgba(37,211,102,.3);
}

.ktt-faq-contact-buttons a:last-child{
background:rgba(255,255,255,.12);
color:#fff;
border:1px solid rgba(255,255,255,.2);
}

.ktt-faq-contact-buttons a:last-child:hover{
transform:translateY(-4px);
background:rgba(255,255,255,.2);
}

/* ==========================================================
TABLET
========================================================== */

@media(max-width:1100px){

.ktt-faq-grid{
grid-template-columns:1fr;
gap:30px;
}

.ktt-faq-hero-content h1{
font-size:52px;
}

.ktt-faq-contact-box{
padding:50px 30px;
}

.ktt-faq-contact-box h2{
font-size:38px;
}

}

/* ==========================================================
MOBILE
========================================================== */

@media(max-width:768px){

.ktt-container{
padding-left:18px;
padding-right:18px;
}

.ktt-faq-hero{
padding:90px 0 70px;
background-attachment:scroll;
}

.ktt-faq-hero-content h1{
font-size:38px;
}

.ktt-faq-hero-content p{
font-size:16px;
}

.ktt-faq-search-box input{
padding:15px 16px 15px 50px;
font-size:15px;
border-radius:50px;
}

.ktt-faq-search-box i{
left:16px;
font-size:18px;
}

.ktt-faq-section{
padding:60px 0 80px;
}

.ktt-faq-category{
padding:20px;
border-radius:20px;
}

.ktt-faq-cat-title{
font-size:22px;
margin-bottom:20px;
padding-bottom:15px;
}

.ktt-faq-cat-title i{
font-size:22px;
}

.ktt-faq-question{
padding:14px 16px;
}

.ktt-faq-question h3{
font-size:15px;
}

.ktt-faq-answer p{
font-size:15px;
padding:0 0 16px;
}

.ktt-faq-contact{
padding:60px 0;
}

.ktt-faq-contact-box{
padding:35px 20px;
border-radius:25px;
}

.ktt-faq-contact-box h2{
font-size:30px;
}

.ktt-faq-contact-box p{
font-size:16px;
}

.ktt-faq-contact-buttons{
flex-direction:column;
align-items:center;
}

.ktt-faq-contact-buttons a{
width:100%;
justify-content:center;
padding:14px 24px;
}

}

/* ==========================================================
SMALL MOBILE
========================================================== */

@media(max-width:480px){

.ktt-faq-hero-content h1{
font-size:30px;
}

.ktt-faq-hero-content p{
font-size:14px;
}

.ktt-faq-search-box input{
padding:12px 14px 12px 44px;
font-size:14px;
border-radius:40px;
}

.ktt-faq-search-box i{
left:14px;
font-size:16px;
}

.ktt-faq-category{
padding:15px;
}

.ktt-faq-cat-title{
font-size:19px;
}

.ktt-faq-question h3{
font-size:14px;
}

.ktt-faq-answer p{
font-size:14px;
}

.ktt-faq-contact-box h2{
font-size:26px;
}

.ktt-faq-contact-box p{
font-size:15px;
}

.ktt-faq-contact-buttons a{
font-size:14px;
padding:12px 20px;
}

}