/* =========================================================
   WTCOYS ULTRA PRO HOMEPAGE CSS
   File: assets/css/wtcoys-home.css
========================================================= */

/* ===============================
   GLOBAL
=============================== */

body{
background:#05070d;
overflow-x:hidden;
}

.section-title{
font-size:42px;
font-weight:800;
color:#fff;
margin-bottom:15px;
}

.section-subtitle{
font-size:16px;
color:#9aa4b2;
max-width:700px;
margin:auto;
}

/* ===============================
   HERO SECTION
=============================== */

.hero-section{
position:relative;
padding:140px 0 110px;
overflow:hidden;
background:
linear-gradient(rgba(5,7,13,.75),rgba(5,7,13,.85)),
url('../img/banner/home-banner.jpg') center/cover no-repeat;
}

.hero-overlay{
position:absolute;
inset:0;
background:
radial-gradient(circle at top right,
rgba(255,90,0,.18),
transparent 35%);
}

.hero-content{
position:relative;
z-index:2;
}

.hero-badge{
display:inline-flex;
align-items:center;
gap:8px;
padding:10px 18px;
border-radius:50px;
background:rgba(255,255,255,.08);
border:1px solid rgba(255,255,255,.08);
backdrop-filter:blur(10px);
color:#fff;
font-size:14px;
margin-bottom:25px;
}

.hero-title{
font-size:62px;
line-height:1.1;
font-weight:900;
color:#fff;
margin-bottom:20px;
}

.hero-title span{
color:#ff5a00;
}

.hero-subtitle{
font-size:18px;
line-height:1.8;
color:#cfd6df;
max-width:760px;
margin:auto;
margin-bottom:40px;
}

/* SEARCH BOX */

.hero-search-box{
background:#fff;
border-radius:22px;
padding:18px;
box-shadow:0 25px 60px rgba(0,0,0,.45);
max-width:1100px;
margin:auto;
position:relative;
z-index:5;
}

.hero-search-inner{
display:flex;
gap:15px;
align-items:center;
}

.search-field{
flex:1;
position:relative;
}

.search-field input,
.search-field select{
width:100%;
height:62px;
border:none;
outline:none;
padding:0 20px 0 52px;
border-radius:14px;
background:#f5f7fb;
font-size:15px;
font-weight:500;
}

.search-field i{
position:absolute;
left:20px;
top:50%;
transform:translateY(-50%);
color:#ff5a00;
font-size:18px;
}

.search-btn{
height:62px;
padding:0 35px;
border:none;
border-radius:14px;
background:linear-gradient(135deg,#ff5a00,#ff7b00);
color:#fff;
font-weight:700;
font-size:16px;
transition:.3s;
white-space:nowrap;
}

.search-btn:hover{
transform:translateY(-3px);
box-shadow:0 15px 30px rgba(255,90,0,.4);
}

/* HERO STATS */

.hero-stats{
margin-top:60px;
}

.hero-stat-box{
background:rgba(255,255,255,.06);
border:1px solid rgba(255,255,255,.08);
backdrop-filter:blur(10px);
padding:28px;
border-radius:20px;
text-align:center;
transition:.35s;
height:100%;
}

.hero-stat-box:hover{
transform:translateY(-8px);
border-color:rgba(255,255,255,.16);
}

.hero-stat-box h3{
font-size:38px;
font-weight:800;
color:#ff5a00;
margin-bottom:8px;
}

.hero-stat-box p{
color:#d2dae4;
margin:0;
font-size:15px;
}

/* ===============================
   SERVICE SECTION
=============================== */

.service-category-section{
padding:100px 0;
background:
radial-gradient(circle at top,#0b0f1a,#05070d);
}

.service-card-pro{
display:block;
text-decoration:none;
height:100%;
}

.service-card-box{
background:
linear-gradient(145deg,#0f141a,#0a0d11);
border-radius:24px;
padding:28px;
height:100%;
border:1px solid rgba(255,255,255,0.06);
transition:.35s ease;
position:relative;
overflow:hidden;
}

.service-card-box::before{
content:'';
position:absolute;
top:-80px;
right:-80px;
width:180px;
height:180px;
background:rgba(255,90,0,.08);
border-radius:50%;
transition:.4s;
}

.service-card-box:hover{
transform:translateY(-8px);
border-color:rgba(255,255,255,0.15);
box-shadow:
0 18px 50px rgba(0,0,0,.55),
0 0 25px rgba(255,255,255,.03);
}

.service-card-box:hover::before{
transform:scale(1.3);
}

.service-icon{
margin-bottom:25px;
}

.service-icon img{
width:72px;
height:72px;
object-fit:contain;
filter:drop-shadow(0 0 14px rgba(255,255,255,.2));
}

.service-row{
display:flex;
align-items:center;
justify-content:space-between;
gap:10px;
}

.service-row h5{
font-size:20px;
font-weight:700;
color:#fff;
margin:0;
line-height:1.4;
}

.learn-more{
font-size:14px;
font-weight:600;
color:#9aa4b2;
transition:.3s;
}

.learn-more::after{
content:'→';
margin-left:6px;
transition:.3s;
}

.service-card-box:hover .learn-more{
color:#fff;
}

.service-card-box:hover .learn-more::after{
margin-left:12px;
}

/* ===============================
   AMC SECTION
=============================== */

.home-services{
padding:100px 0;
background:
linear-gradient(180deg,#05070d,#0b0f1a);
}

.amc-card{
display:block;
background:
linear-gradient(145deg,#0f141a,#0a0d11);
border-radius:24px;
overflow:hidden;
border:1px solid rgba(255,255,255,.05);
transition:.35s;
height:100%;
position:relative;
text-decoration:none;
}

.amc-card:hover{
transform:translateY(-10px);
border-color:rgba(255,255,255,.15);
box-shadow:
0 20px 60px rgba(0,0,0,.55),
0 0 30px rgba(255,255,255,.04);
}

.amc-image{
position:relative;
height:240px;
overflow:hidden;
}

.amc-image img{
width:100%;
height:100%;
object-fit:cover;
transition:.45s;
filter:brightness(.85);
}

.amc-card:hover img{
transform:scale(1.1);
filter:brightness(1);
}

.amc-badge{
position:absolute;
top:18px;
left:18px;
background:#ff5a00;
padding:8px 14px;
border-radius:50px;
font-size:12px;
font-weight:700;
color:#fff;
box-shadow:0 10px 25px rgba(255,90,0,.45);
}

.amc-content{
padding:24px;
}

.amc-content h5{
font-size:20px;
font-weight:700;
color:#fff;
margin-bottom:10px;
}

.amc-content p{
font-size:14px;
line-height:1.7;
color:#9aa4b2;
margin-bottom:18px;
}

.amc-btn{
display:inline-flex;
align-items:center;
gap:8px;
font-size:14px;
font-weight:700;
color:#ff5a00;
transition:.3s;
}

.amc-btn::after{
content:'→';
transition:.3s;
}

.amc-card:hover .amc-btn{
color:#fff;
letter-spacing:.5px;
}

.amc-card:hover .amc-btn::after{
transform:translateX(6px);
}

/* ===============================
   WHY CHOOSE US
=============================== */

.why-us-section{
padding:100px 0;
background:#fff;
}

.why-card{
background:#fff;
border-radius:22px;
padding:35px 28px;
text-align:center;
height:100%;
border:1px solid #eef1f6;
transition:.35s;
box-shadow:0 10px 30px rgba(0,0,0,.04);
}

.why-card:hover{
transform:translateY(-8px);
box-shadow:0 20px 40px rgba(0,0,0,.08);
}

.why-icon{
width:78px;
height:78px;
border-radius:20px;
background:linear-gradient(135deg,#ff5a00,#ff8400);
display:flex;
align-items:center;
justify-content:center;
margin:auto auto 22px;
color:#fff;
font-size:30px;
box-shadow:0 15px 30px rgba(255,90,0,.28);
}

.why-card h5{
font-size:20px;
font-weight:700;
margin-bottom:12px;
color:#101828;
}

.why-card p{
font-size:14px;
line-height:1.8;
color:#667085;
margin:0;
}

/* ===============================
   CITY SECTION
=============================== */

.city-section{
padding:100px 0;
background:
linear-gradient(135deg,#f7f8fb,#eef1f6);
}

.city-map-box{
background:
linear-gradient(135deg,#2f327a,#1c1f5c);
border-radius:20px;
height:100%;
display:flex;
align-items:center;
justify-content:center;
padding:25px;
box-shadow:0 15px 40px rgba(0,0,0,.12);
}

.city-map-box img{
max-width:100%;
height:auto;
filter:drop-shadow(0 5px 18px rgba(0,0,0,.35));
}

.city-list-box{
border-radius:20px;
padding:25px;
height:100%;
background:#fff;
box-shadow:0 15px 40px rgba(0,0,0,.06);
}

.alphabet-filter{
display:flex;
flex-wrap:wrap;
gap:8px;
margin-bottom:25px;
}

.alpha{
padding:8px 12px;
border-radius:8px;
background:#f1f3f6;
font-size:13px;
font-weight:600;
cursor:pointer;
transition:.3s;
}

.alpha:hover,
.alpha.active{
background:#ff5a00;
color:#fff;
}

.city-scroll{
max-height:420px;
overflow-y:auto;
padding-right:5px;
}

.city-name{
font-size:14px;
padding:10px 12px;
border-radius:10px;
transition:.3s;
font-weight:500;
}

.city-name:hover{
background:#fff3ed;
color:#ff5a00;
transform:translateX(5px);
}

/* ===============================
   HOW IT WORKS
=============================== */

.bookus-section{
padding:100px 0;
background:
linear-gradient(180deg,#05070d,#0b0f1a);
}

.book-item{
background:
linear-gradient(145deg,#10151d,#0b1017);
padding:35px 25px;
border-radius:24px;
height:100%;
position:relative;
border:1px solid rgba(255,255,255,.05);
transition:.35s;
overflow:hidden;
}

.book-item:hover{
transform:translateY(-8px);
border-color:rgba(255,255,255,.12);
}

.book-icon{
width:78px;
height:78px;
border-radius:20px;
display:flex;
align-items:center;
justify-content:center;
font-size:34px;
color:#fff;
margin-bottom:22px;
box-shadow:0 12px 30px rgba(0,0,0,.25);
}

.book-info h6{
font-size:20px;
font-weight:700;
margin-bottom:12px;
}

.book-info p{
font-size:14px;
line-height:1.8;
margin:0;
color:#d3dae3;
}

/* ===============================
   TESTIMONIALS
=============================== */

.testimonial-section{
padding:100px 0;
background:#fff;
}

.testimonial-card{
background:#fff;
padding:35px;
border-radius:24px;
box-shadow:0 15px 40px rgba(0,0,0,.06);
height:100%;
position:relative;
overflow:hidden;
}

.testimonial-card::before{
content:'★★★★★';
position:absolute;
top:18px;
right:25px;
font-size:14px;
letter-spacing:2px;
color:#ffb400;
}

.testimonial-card p{
font-size:15px;
line-height:1.9;
color:#667085;
margin-bottom:28px;
}

.testimonial-user{
display:flex;
align-items:center;
gap:14px;
}

.testimonial-user img{
width:58px;
height:58px;
border-radius:50%;
object-fit:cover;
}

.testimonial-user h6{
margin:0;
font-size:17px;
font-weight:700;
}

.testimonial-user span{
font-size:13px;
color:#98a2b3;
}

/* ===============================
   CTA SECTION
=============================== */

.cta-section{
padding:100px 0;
background:
linear-gradient(135deg,#ff5a00,#ff8400);
position:relative;
overflow:hidden;
}

.cta-section::before{
content:'';
position:absolute;
top:-100px;
right:-100px;
width:300px;
height:300px;
background:rgba(255,255,255,.1);
border-radius:50%;
}

.cta-content{
position:relative;
z-index:2;
text-align:center;
}

.cta-content h2{
font-size:48px;
font-weight:900;
color:#fff;
margin-bottom:20px;
}

.cta-content p{
font-size:18px;
color:#fff;
opacity:.92;
max-width:760px;
margin:auto auto 35px;
}

.cta-btn{
display:inline-flex;
align-items:center;
gap:10px;
padding:18px 34px;
border-radius:14px;
background:#fff;
color:#111827;
font-weight:800;
font-size:16px;
text-decoration:none;
transition:.35s;
}

.cta-btn:hover{
transform:translateY(-5px);
box-shadow:0 18px 35px rgba(0,0,0,.18);
}

/* ===============================
   STICKY MOBILE CTA
=============================== */

.mobile-sticky-cta{
position:fixed;
bottom:0;
left:0;
width:100%;
background:#fff;
padding:12px;
display:none;
z-index:999;
box-shadow:0 -5px 25px rgba(0,0,0,.12);
}

.mobile-sticky-inner{
display:flex;
gap:12px;
}

.mobile-call-btn,
.mobile-book-btn{
flex:1;
height:52px;
border-radius:12px;
display:flex;
align-items:center;
justify-content:center;
font-weight:700;
font-size:15px;
text-decoration:none;
}

.mobile-call-btn{
background:#f5f7fb;
color:#111827;
}

.mobile-book-btn{
background:linear-gradient(135deg,#ff5a00,#ff8400);
color:#fff;
}

/* ===============================
   WHATSAPP FLOAT
=============================== */

.whatsapp-float{
position:fixed;
right:22px;
bottom:95px;
width:62px;
height:62px;
border-radius:50%;
background:#25D366;
display:flex;
align-items:center;
justify-content:center;
color:#fff;
font-size:32px;
z-index:999;
box-shadow:0 15px 35px rgba(37,211,102,.35);
transition:.3s;
}

.whatsapp-float:hover{
transform:scale(1.08);
color:#fff;
}

/* ===============================
   SCROLLBAR
=============================== */

.city-scroll::-webkit-scrollbar{
width:6px;
}

.city-scroll::-webkit-scrollbar-thumb{
background:#d0d5dd;
border-radius:50px;
}

/* ===============================
   RESPONSIVE
=============================== */

@media(max-width:991px){

.hero-title{
font-size:46px;
}

.hero-search-inner{
flex-direction:column;
}

.search-btn{
width:100%;
}

.section-title{
font-size:34px;
}

.cta-content h2{
font-size:38px;
}

}

@media(max-width:767px){

.hero-section{
padding:110px 0 80px;
}

.hero-title{
font-size:36px;
}

.hero-subtitle{
font-size:15px;
}

.section-title{
font-size:28px;
}

.cta-content h2{
font-size:30px;
}

.mobile-sticky-cta{
display:block;
}

.whatsapp-float{
bottom:90px;
width:56px;
height:56px;
font-size:28px;
}

.amc-image{
height:190px;
}

}

@media(max-width:576px){

.hero-title{
font-size:30px;
}

.hero-search-box{
padding:15px;
border-radius:18px;
}

.search-field input,
.search-field select,
.search-btn{
height:56px;
}

.hero-stat-box{
padding:22px;
}

.service-card-box,
.book-item,
.testimonial-card{
padding:25px;
}

}