*{margin:0; padding:0; box-sizing:border-box; font-family:'Poppins',sans-serif; scroll-behavior:smooth;}

body{background:#f5f7ff; overflow-x:hidden; padding-top:145px;}

	/* HEADER */

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:#fff;
    z-index:1000;
    box-shadow:0 2px 15px rgba(0,0,0,0.1);
}    
.header-container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:10px 5%;
    min-height:80px;
    flex-wrap:wrap;
    transition:all .35s ease;
}    
.logo{display:flex; align-items:center; gap:12px;}
.logo img{
    width:58px;
    height:58px;
    border-radius:50%;
    border:3px solid #ff9800;
    box-shadow:0 8px 20px rgba(255,152,0,.35);
    transition:.35s ease;
}

.logo img:hover{
    transform:scale(1.08) rotate(2deg);
    box-shadow:0 12px 28px rgba(255,152,0,.45);
}

.logo h1{
    font-size:20px;
    font-weight:800;
    line-height:1.35;
    color:#111;
    letter-spacing:.4px;
}

.header-contact{display:flex; gap:12px; flex-wrap:wrap;}
	.header-contact a{
    text-decoration:none;
    padding:12px 22px;
    border-radius:50px;
    background:linear-gradient(135deg,#ff9800,#ff5722);
    color:#fff;
    font-weight:700;
    box-shadow:0 10px 25px rgba(255,87,34,.25);
    transition:.35s ease;
}

.header-contact a:hover{
    transform:translateY(-4px);
    box-shadow:0 16px 32px rgba(255,87,34,.35);
}

	/* NAVIGATION */

nav{
    position:fixed;
    top:80px;
    left:0;
    width:100%;
    z-index:999;
    padding:10px 5%;
    background:rgba(17,17,17,.92);
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);
    border-bottom:1px solid rgba(255,255,255,.08);
    box-shadow:0 8px 25px rgba(0,0,0,.18);
}
nav ul{display:flex; justify-content:center; align-items:center; list-style:none; gap:25px; flex-wrap:wrap;}
	nav ul li a{
    position:relative;
    text-decoration:none;
    color:#fff;
    font-weight:600;
    padding:10px 18px;
    border-radius:40px;
    transition:.3s ease;
}

nav ul li a::after{
    content:"";
    position:absolute;
    left:18px;
    right:18px;
    bottom:6px;
    height:2px;
    background:#ff9800;
    transform:scaleX(0);
    transform-origin:center;
    transition:transform .3s ease;
}

nav ul li a:hover{
    color:#ffcc80;
    background:rgba(255,255,255,.06);
}

nav ul li a:hover::after{
    transform:scaleX(1);
}

	/* HERO */

	.hero{
    position:relative;
    min-height:calc(100vh - 160px);
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    overflow:hidden;
    padding:220px 20px 100px;
    background:
    linear-gradient(135deg,rgba(0,0,0,.75),rgba(0,0,0,.45)),
    url("images/carimage1.jpg") center center/cover no-repeat;
}

.hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:inherit;
    transform:scale(1);
    animation:heroZoom 18s ease-in-out infinite alternate;
    z-index:-2;
}

.hero::after{
    content:"";
    position:absolute;
    inset:0;
    background:
    radial-gradient(circle at top right,rgba(255,152,0,.18),transparent 40%),
    radial-gradient(circle at bottom left,rgba(255,87,34,.18),transparent 40%);
    z-index:-1;
}

.hero-content{max-width:900px; color:#fff; position:relative; z-index:2; animation:fadeIn 1.2s ease;}
	.hero h2{font-size:64px; font-weight:800; margin-bottom:20px; line-height:1.2; letter-spacing:1px;  text-shadow:0 8px 30px rgba(0,0,0,.5);}
.hero p{font-size:20px; line-height:1.9; max-width:850px; margin:0 auto 35px; color:#f2f2f2;}
	.hero-btn{
    display:inline-block;
    padding:18px 42px;
    border-radius:50px;
    text-decoration:none;
    font-size:18px;
    font-weight:700;
	letter-spacing:.5px;
    color:#fff;
    background:linear-gradient(45deg,#ff9800,#ff5722);
    box-shadow:0 10px 25px rgba(255,87,34,.35);
    transition:.35s;
}

.hero-btn:hover{
    transform:translateY(-5px);
    box-shadow:0 18px 35px rgba(255,87,34,.45);
}

.hero-badges{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:15px;
    margin-top:35px;
}

.hero-badges span{
    padding:12px 20px;
    border-radius:50px;
    background:rgba(255,255,255,.15);
    backdrop-filter:blur(10px);
    color:#fff;
    border:1px solid rgba(255,255,255,.25);
    font-size:15px;
    font-weight:600;
    transition:.3s;
}

.hero-badges span:hover{
    background:#ff9800;
    transform:translateY(-4px);
}

.hero-call-btn{
    display:inline-block;
    padding:18px 42px;
    margin-right:15px;
    border-radius:50px;
    text-decoration:none;
    font-size:18px;
    font-weight:700;
    letter-spacing:.5px;
    color:#fff;
    background:linear-gradient(135deg,#25D366,#128C7E);
    box-shadow:0 10px 25px rgba(37,211,102,.35);
    transition:.35s ease;
}

.hero-call-btn:hover{
    transform:translateY(-5px);
    box-shadow:0 18px 35px rgba(37,211,102,.45);
}
.hero-buttons{
    display:flex;
    justify-content:center;
    gap:18px;
    flex-wrap:wrap;
    margin-top:30px;
}

	/* SECTION */

	section{padding:90px 5%; scroll-margin-top:130px;}
	.section-title{text-align:center; margin-bottom:50px;}
	.section-title h2{font-size:42px; margin-bottom:15px; font-weight:800;}
	.section-title p{color:#555; font-size:18px;}

	/* ABOUT */

	.about-grid{display:grid; grid-template-columns:repeat(auto-fit,minmax(300px,1fr)); gap:40px; align-items:center;}
	.about-img img{width:100%; border-radius:20px; box-shadow:0 10px 25px rgba(0,0,0,0.1);}
	.about-content h3{font-size:35px; margin-bottom:20px;}
	.about-content p{line-height:2; color:#555;}

	/* SLIDER */

	.slider{overflow:hidden; position:relative;}
	.slide-track{display:flex; width:max-content; animation:scroll 28s linear infinite; will-change:transform;}
	.slide-track:hover{animation-play-state:paused;}

	@media(max-width:500px){
	.hero h2{font-size:28px;}
	.hero p{font-size:15px;}
	.btn{width:100%; text-align:center;}
	}
	.card{
    position:relative;
    width:320px;
    margin:18px;
    background:#fff;
    border-radius:22px;
    overflow:hidden;
    border:1px solid rgba(255,152,0,.10);
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.35s ease;
}

.card:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 50px rgba(0,0,0,.15);
}

.card img{
    width:100%;
    height:220px;
    object-fit:cover;
    transition:.45s ease;
}

.card:hover img{
    transform:scale(1.08);
}

.card-content{
    padding:24px;
}

.card-content h3{
    font-size:22px;
    margin-bottom:12px;
    color:#111;
}

.card-content p{
    color:#666;
    line-height:1.8;
    margin-bottom:18px;
}

	/* FORM */

	.form-tabs{display:flex; justify-content:center; gap:15px; margin-bottom:35px; flex-wrap:wrap;}
	.tab-btn{padding:14px 25px; border:none; border-radius:50px; background:#ddd; font-weight:700; cursor:pointer; transition:0.4s;}
	.tab-btn.active, .tab-btn:hover{background:linear-gradient(45deg,#ff9800,#ff5722); color:#fff;}
.form-box{
    display:none;
    background:#fff;
    padding:45px;
    border-radius:25px;
    border:1px solid rgba(255,152,0,.15);
    box-shadow:0 18px 45px rgba(0,0,0,.08);
}
.form-box.active{display:block; animation:fadeIn 0.6s ease;}
	.form-grid{display:grid; grid-template-columns:repeat(auto-fit,minmax(250px,1fr)); gap:20px;}
	.input-box{display:flex; flex-direction:column;}
.input-box label{
    margin-bottom:8px;
    font-size:14px;
    font-weight:700;
    color:#333;
}
.input-box input,
.input-box select,
.input-box textarea{
    width:100%;
    padding:15px 18px;
    border:1px solid #d9d9d9;
    border-radius:14px;
    background:#fff;
    font-size:15px;
    transition:.3s ease;
}

.input-box input:focus,
.input-box select:focus,
.input-box textarea:focus{
    border-color:#ff9800;
    box-shadow:0 0 0 4px rgba(255,152,0,.15);
    transform:translateY(-2px);
}
textarea{resize:none; height:120px;}
	.btn-group{display:flex; gap:15px; flex-wrap:wrap; margin-top:30px;}
	.btn{padding:15px 30px; border:none; border-radius:50px; font-weight:700; cursor:pointer; transition:0.4s; background:linear-gradient(45deg,#ff9800,#ff5722);
			color:#fff; box-shadow:0 8px 20px rgba(0,0,0,0.2); position:relative; overflow:hidden;}
	.btn::before{content:""; position:absolute; width:100%; height:100%; top:0; left:-100%; transition:0.5s;
					background:linear-gradient(120deg,transparent,rgba(255,255,255,0.5),transparent);}
	.btn:hover::before{left:100%;}
	.btn:hover{transform:translateY(-5px) scale(1.05);}
	.preview-btn{background:linear-gradient(45deg,#2196f3,#3f51b5); color:#fff;}
	.submit-btn{background:linear-gradient(45deg,#4caf50,#009688); color:#fff;}
	.reset-btn{background:linear-gradient(45deg,#f44336,#ff5722); color:#fff;}

	/* CONTACT */

	.contact-grid{display:grid; grid-template-columns:repeat(auto-fit,minmax(300px,1fr)); gap:30px;}
	.contact-box{background:#fff; padding:30px; border-radius:20px; box-shadow:0 10px 25px rgba(0,0,0,0.1);}
	.contact-box h3{margin-bottom:20px;}
	.contact-box p{margin-bottom:15px; line-height:1.8;}
	.contact-box a{text-decoration:none; color:#ff5722; font-weight:600;}

	/* FOOTER */

	footer{background:#111; color:#fff; padding:40px 5%; text-align:center;}
	footer h3{font-size:28px; margin-bottom:20px;}
	footer p{line-height:2; color:#ddd;}
	
	/* FOOTER CALL CONTACT */
	
	.fcontactbox a{text-decoration:none; color:#ff5722; font-weight:600;}

	/* FLOAT */

	.float-btn{position:fixed; right:20px; width:60px; height:60px; border-radius:50%; display:flex; justify-content:center; align-items:center;
				font-size:28px; color:#fff; text-decoration:none; z-index:999; box-shadow:0 10px 20px rgba(0,0,0,0.2); animation:pulse 2s infinite;}
	.call-btn{bottom:100px;	background:#ff5722;}
	.whatsapp-btn{bottom:30px; background:#25D366;}


	/* PAYMENT */	
		.payment-btn{bottom:170px; background:#4caf50; font-size:30px; font-weight:700;}
		
	/* ANIMATION */

	@keyframes pulse{
	0%{transform:scale(1);}
	50%{transform:scale(1.08);}
	100%{transform:scale(1);}
	}

	@keyframes fadeIn{
	from{opacity:0; transform:translateY(30px);}
	to{opacity:1; transform:translateY(0);}
	}

	@keyframes scroll{
	0%{transform:translateX(0);}
	100%{transform:translateX(calc(-350px * 6));}
	}

	@keyframes heroZoom{
	0%{
	transform:scale(1);
	}
	100%{
	transform:scale(1.12);
	}
	}
	/* MOBILE */

	@media(max-width:768px){
	body{padding-top:185px;}
	nav{top:140px;}
	.hero{padding-top:170px;}
	.hero h2{font-size:38px;}
	.hero p{font-size:17px;}
	.logo h1{font-size:15px;}
	.header-container{flex-direction:column;}
	nav ul{gap:10px;}
	nav ul li a{font-size:13px;	padding:8px 14px;}
	.section-title h2{font-size:30px;}
	}
		
/* VISITOR COUNTER */

	.visitor-box{margin-top:30px; text-align:center; padding:20px; border-radius:15px;
					background:rgba(255,255,255,0.05); backdrop-filter:blur(5px);}
	.visitor-box h3{color:#fff;	margin-bottom:15px;	font-size:24px;}
	.visitor-box img{max-width:100%; border-radius:10px;}

.card-btn{
    display:inline-block;
    padding:10px 22px;
    border-radius:50px;
    background:linear-gradient(135deg,#ff9800,#ff5722);
    color:#fff;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.card-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(255,87,34,.35);
}

.trust-section{
    background:#fff;
}

.trust-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:25px;
}

.trust-card{
    background:#fff;
    border-radius:22px;
    padding:35px 25px;
    text-align:center;
    border:1px solid rgba(255,152,0,.12);
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.35s ease;
}

.trust-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 45px rgba(0,0,0,.15);
}

.trust-card i{
    font-size:45px;
    color:#ff9800;
    margin-bottom:20px;
}

.trust-card h3{
    font-size:22px;
    margin-bottom:12px;
    color:#111;
}

.trust-card p{
    color:#666;
    line-height:1.8;
}

/* FAQ */

.faq-container{
    max-width:900px;
    margin:auto;
}

.faq-item{
    margin-bottom:18px;
    border-radius:15px;
    overflow:hidden;
    background:#fff;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.faq-question{
    width:100%;
    border:none;
    outline:none;
    background:#fff;
    cursor:pointer;
    padding:22px 25px;
    text-align:left;
    font-size:18px;
    font-weight:600;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.faq-question span{
    font-size:28px;
    color:#ff9800;
    transition:.3s;
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .35s ease;
}

.faq-answer p{
    padding:0 25px 22px;
    line-height:1.8;
    color:#555;
}

.faq-item.active .faq-answer{
    max-height:250px;
}

.faq-item.active .faq-question span{
    transform:rotate(45deg);
}
