/* =========================
RESET
========================= */

*{
margin:0;
padding:0;
box-sizing:border-box;
text-decoration:none;
list-style:none;
scroll-behavior:smooth;
}

:root{
--primary:#7b2cff;
--secondary:#a855f7;
--dark:#071b2a;
--text:#222;
--white:#fff;
}

body{
font-family:'Poppins',sans-serif;
overflow-x:hidden;
background:
radial-gradient(circle at top left,#8b5cf620,transparent 30%),
radial-gradient(circle at bottom right,#7b2cff18,transparent 30%),
#ffffff;
color:var(--text);
position:relative;
}

body::before{
content:'';
position:fixed;
inset:0;
background-image:
linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
background-size:40px 40px;
pointer-events:none;
opacity:.25;
z-index:-1;
}

img{
max-width:100%;
display:block;
}

.container{
width:90%;
max-width:1350px;
margin:auto;
}

section{
padding:110px 0;
position:relative;
}

::-webkit-scrollbar{
width:10px;
}

::-webkit-scrollbar-track{
background:#071b2a;
}

::-webkit-scrollbar-thumb{
background:linear-gradient(var(--primary),var(--secondary));
border-radius:50px;
}

/* =========================
BUTTONS
========================= */

.btn{
display:inline-flex;
align-items:center;
justify-content:center;
gap:10px;
padding:17px 38px;
border-radius:18px;
font-weight:600;
transition:.4s;
position:relative;
overflow:hidden;
}

.btn-primary{
background:linear-gradient(45deg,var(--primary),var(--secondary));
color:#fff;
box-shadow:0 15px 35px rgba(140,82,255,.35);
}

.btn-primary::before{
content:'';
position:absolute;
width:140px;
height:140px;
background:rgba(255,255,255,.2);
border-radius:50%;
top:-50px;
left:-40px;
transition:.6s;
}

.btn-primary:hover::before{
transform:scale(2.5);
opacity:0;
}

.btn-primary:hover{
transform:translateY(-5px);
box-shadow:0 20px 45px rgba(140,82,255,.45);
}

.btn-outline{
border:1px solid rgba(255,255,255,.2);
color:#fff;
backdrop-filter:blur(12px);
background:rgba(255,255,255,.05);
}

.btn-outline:hover{
background:rgba(255,255,255,.12);
}

/* =========================
SECTION TITLE
========================= */

.section-top{
text-align:center;
margin-bottom:70px;
}

.section-top span{
color:#c084fc;
font-size:14px;
font-weight:700;
letter-spacing:2px;
}

.section-top h2{
font-size:56px;
margin-top:15px;
font-weight:900;
line-height:1.1;
}

.section-top p{
max-width:760px;
margin:20px auto 0;
line-height:1.8;
color:#666;
}

/* =========================
HEADER
========================= */

header{
position:fixed;
top:0;
left:0;
width:100%;
z-index:999;
transition:.4s;
}

header.active{
background:rgba(255,255,255,.72);
backdrop-filter:blur(18px);
border-bottom:1px solid rgba(255,255,255,.4);
box-shadow:0 10px 40px rgba(0,0,0,.08);
}

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 0;
}

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

.logo img{
width:75px;
height:75px;
object-fit:contain;
border-radius:22px;
filter:drop-shadow(0 10px 25px rgba(140,82,255,.35));
transition:.4s;
}

.logo img:hover{
transform:scale(1.06) rotate(-3deg);
}

.logo-text h1{
font-size:30px;
font-weight:800;
line-height:1;
background:linear-gradient(45deg,#fff,#d9c2ff);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}

.logo-text span{
font-size:13px;
color:rgba(255,255,255,.75);
}

header.active .logo-text h1{
background:linear-gradient(45deg,var(--primary),var(--secondary));
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}

header.active .logo-text span{
color:#666;
}

nav{
display:flex;
gap:35px;
}

nav a{
color:#fff;
font-weight:500;
position:relative;
transition:.3s;
}

header.active nav a{
color:#ffffff;
}

nav a::after{
content:'';
position:absolute;
left:0;
bottom:-6px;
width:0;
height:2px;
background:var(--secondary);
transition:.3s;
}

nav a:hover::after{
width:100%;
}

nav a:hover{
color:#c084fc;
}

.menu-btn{
display:none;
font-size:30px;
cursor:pointer;
color:#fff;
z-index:1000;
}

header.active .menu-btn{
color:#222;
}

/* =========================
MOBILE MENU
========================= */

.menu-overlay{
position:fixed;
inset:0;
background:rgba(0,0,0,.5);
backdrop-filter:blur(5px);
opacity:0;
visibility:hidden;
transition:.3s;
z-index:997;
}

.menu-overlay.active{
opacity:1;
visibility:visible;
}

/* =========================
HERO
========================= */

.hero{
min-height:100vh;
display:flex;
align-items:center;
position:relative;
overflow:hidden;
background:
linear-gradient(rgba(0,0,0,.72),rgba(0,0,0,.72)),
url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?q=80&w=1600&auto=format&fit=crop')
center/cover;
}

.hero::before{
content:'';
position:absolute;
inset:0;
background:
radial-gradient(circle at top right,#7b2cff55,transparent 40%),
radial-gradient(circle at bottom left,#a855f744,transparent 35%);
}

.hero::after{
content:'';
position:absolute;
width:700px;
height:700px;
background:#7b2cff;
filter:blur(180px);
opacity:.18;
top:-250px;
right:-180px;
border-radius:50%;
}

.hero-wrapper{
display:grid;
grid-template-columns:1.1fr .9fr;
gap:70px;
align-items:center;
position:relative;
z-index:2;
}

.hero-badge{
display:inline-flex;
align-items:center;
gap:10px;
background:rgba(255,255,255,.08);
border:1px solid rgba(168,85,247,.2);
padding:12px 20px;
border-radius:100px;
color:#fff;
backdrop-filter:blur(12px);
margin-bottom:30px;
}

.hero-text h1{
font-size:82px;
line-height:1.05;
font-weight:900;
color:#fff;
letter-spacing:-3px;
text-shadow:0 10px 40px rgba(0,0,0,.35);
}

.hero-text span{
color:#c084fc;
}

.hero-text p{
font-size:18px;
line-height:1.9;
color:rgba(255,255,255,.82);
margin:30px 0 40px;
max-width:650px;
}

.hero-buttons{
display:flex;
gap:15px;
flex-wrap:wrap;
}

.hero-stats{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;
margin-top:50px;
}

.hero-stat{
background:rgba(255,255,255,.08);
border:1px solid rgba(255,255,255,.08);
backdrop-filter:blur(12px);
padding:28px 20px;
border-radius:28px;
text-align:center;
color:#fff;
}

.hero-stat h3{
font-size:38px;
font-weight:800;
}

.hero-image{
position:relative;
}

.hero-image img{
border-radius:40px;
box-shadow:0 30px 60px rgba(0,0,0,.4);
transform:rotateY(-8deg) rotateX(3deg);
transition:.5s;
}

.hero-image img:hover{
transform:rotateY(0) rotateX(0) scale(1.02);
}

.floating-card{
position:absolute;
bottom:25px;
left:-30px;
background:#fff;
padding:22px;
border-radius:28px;
box-shadow:0 20px 50px rgba(0,0,0,.15);
display:flex;
align-items:center;
gap:18px;
max-width:280px;
}

.floating-card i{
width:65px;
height:65px;
border-radius:20px;
background:linear-gradient(45deg,var(--primary),var(--secondary));
display:flex;
align-items:center;
justify-content:center;
color:#fff;
font-size:28px;
}

/* =========================
CARDS
========================= */

.feature-wrapper,
.service-card,
.process-card,
.testimonial-card,
.contact-form{
position:relative;
overflow:hidden;
}

.service-card::before,
.process-card::before,
.testimonial-card::before{
content:'';
position:absolute;
inset:0;
background:linear-gradient(
135deg,
rgba(255,255,255,.45),
transparent
);
opacity:0;
transition:.4s;
}

.service-card:hover::before,
.process-card:hover::before,
.testimonial-card:hover::before{
opacity:1;
}

.feature-wrapper{
background:#fff;
border-radius:40px;
padding:45px;
box-shadow:0 20px 60px rgba(0,0,0,.08);
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
margin-top:-70px;
z-index:5;
}

.feature-box,
.service-card,
.process-card,
.testimonial-card{
background:#fff;
border-radius:35px;
box-shadow:0 10px 30px rgba(0,0,0,.05);
transition:.4s;
}

.feature-box{
padding:30px;
text-align:center;
}

.service-card,
.process-card,
.testimonial-card{
padding:40px 30px;
}

.service-card:hover,
.process-card:hover,
.testimonial-card:hover,
.feature-box:hover{
transform:translateY(-10px);
box-shadow:
0 30px 60px rgba(123,44,255,.15),
0 10px 25px rgba(0,0,0,.08);
}

.feature-box i,
.service-card i,
.process-card i{
width:85px;
height:85px;
border-radius:26px;
background:linear-gradient(45deg,var(--primary),var(--secondary));
display:flex;
align-items:center;
justify-content:center;
margin:auto auto 25px;
color:#fff;
font-size:34px;
}

/* =========================
GRIDS
========================= */

.services{
background:#f8fbfd;
}

.services-grid,
.process-wrapper,
.gallery-grid,
.testimonial-wrapper{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

.testimonial-wrapper{
grid-template-columns:repeat(3,1fr);
}

.gallery-item{
overflow:hidden;
border-radius:35px;
}

.gallery-item img{
height:320px;
width:100%;
object-fit:cover;
transition:.5s;
}

.gallery-item:hover img{
transform:scale(1.08);
}

/* =========================
ABOUT
========================= */

.about-wrapper{
display:grid;
grid-template-columns:1fr 1fr;
gap:70px;
align-items:center;
}

.about-image{
position:relative;
}

.about-image img{
border-radius:40px;
}

.experience-box{
position:absolute;
right:-20px;
bottom:20px;
background:linear-gradient(45deg,var(--primary),var(--secondary));
padding:30px;
border-radius:30px;
color:#fff;
text-align:center;
width:220px;
}

.experience-box h3{
font-size:50px;
}

.about-content span{
color:#c084fc;
font-size:14px;
font-weight:700;
letter-spacing:2px;
}

.about-content h2{
font-size:55px;
margin:20px 0;
font-weight:900;
}

.about-content p{
line-height:1.9;
color:#666;
margin-bottom:40px;
}

.about-list{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:20px;
}

.about-item{
display:flex;
align-items:center;
gap:15px;
background:#f8fbfd;
padding:18px;
border-radius:20px;
}

.about-item i{
width:55px;
height:55px;
border-radius:18px;
background:linear-gradient(45deg,var(--primary),var(--secondary));
display:flex;
align-items:center;
justify-content:center;
color:#fff;
}

/* =========================
CONTACT
========================= */

.contact{
background:#071b2a;
color:#fff;
}

.contact-wrapper{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}

.contact-info h2{
font-size:58px;
font-weight:900;
margin-bottom:25px;
}

.contact-info p{
line-height:1.9;
color:rgba(255,255,255,.7);
margin-bottom:40px;
}

.contact-box{
display:flex;
gap:20px;
margin-bottom:25px;
align-items:center;
}

.contact-box i{
width:75px;
height:75px;
border-radius:25px;
background:linear-gradient(45deg,var(--primary),var(--secondary));
display:flex;
align-items:center;
justify-content:center;
font-size:30px;
}

.contact-form{
background:#fff;
padding:50px;
border-radius:40px;
}

.contact-form h3{
color:#222;
font-size:34px;
margin-bottom:30px;
}

.contact-form form{
display:flex;
flex-direction:column;
gap:20px;
}

.contact-form input,
.contact-form textarea{
width:100%;
padding:18px 22px;
border-radius:18px;
border:1px solid #ddd;
outline:none;
font-family:'Poppins',sans-serif;
transition:.3s;
}

.contact-form input:focus,
.contact-form textarea:focus{
border-color:#a855f7;
box-shadow:0 0 0 5px rgba(168,85,247,.15);
}

.contact-form textarea{
resize:none;
height:150px;
}

/* =========================
FOOTER
========================= */

footer{
background:#04111c;
padding:70px 20px;
text-align:center;
color:rgba(255,255,255,.7);
}

footer h3{
font-size:30px;
margin-bottom:10px;
color:#fff;
}

.footer-social{
display:flex;
justify-content:center;
gap:15px;
margin:30px 0;
}

.footer-social a{
width:50px;
height:50px;
border-radius:18px;
background:rgba(255,255,255,.08);
display:flex;
align-items:center;
justify-content:center;
color:#fff;
font-size:20px;
transition:.3s;
}

.footer-social a:hover{
background:linear-gradient(45deg,var(--primary),var(--secondary));
transform:translateY(-5px);
}

/* =========================
TABLET
========================= */

@media(max-width:1100px){

.hero-wrapper,
.about-wrapper,
.contact-wrapper{
grid-template-columns:1fr;
}

.services-grid,
.process-wrapper,
.gallery-grid{
grid-template-columns:repeat(2,1fr);
}

.testimonial-wrapper{
grid-template-columns:1fr;
}

.hero{
padding-top:150px;
}

.hero-image{
max-width:700px;
margin:auto;
}

}

/* =========================
MOBILE
========================= */

@media(max-width:768px){

section{
padding:80px 0;
}

.navbar{
padding:16px 0;
}

.logo img{
width:60px;
height:60px;
}

.logo-text h1{
font-size:24px;
}

nav{
position:fixed;
top:0;
right:-100%;
width:300px;
height:100vh;
background:#071b2a;
flex-direction:column;
padding:120px 30px;
transition:.4s;
z-index:998;
}

nav.active{
right:0;
}

nav a{
width:100%;
padding:15px 0;
border-bottom:1px solid rgba(255,255,255,.08);
font-size:17px;
}

.menu-btn{
display:block;
}

.hero{
min-height:auto;
padding-top:140px;
padding-bottom:100px;
}

.hero-wrapper,
.services-grid,
.process-wrapper,
.gallery-grid,
.about-wrapper,
.contact-wrapper,
.hero-stats,
.about-list,
.feature-wrapper{
grid-template-columns:1fr;
}

.hero-text{
text-align:center;
}

.hero-text h1{
font-size:46px;
line-height:1.15;
letter-spacing:-1px;
}

.hero-text p{
font-size:16px;
margin:25px auto 35px;
}

.hero-buttons{
flex-direction:column;
}

.btn{
width:100%;
}

.hero-image img{
transform:none;
}

.floating-card{
position:relative;
left:0;
bottom:0;
margin-top:20px;
max-width:100%;
}

.section-top h2,
.about-content h2,
.contact-info h2{
font-size:36px;
line-height:1.2;
}

.feature-wrapper{
padding:25px;
margin-top:-40px;
}

.contact-form{
padding:30px 20px;
}

.experience-box{
position:relative;
right:auto;
bottom:auto;
margin-top:20px;
width:100%;
}

.gallery-item img{
height:250px;
}

.contact-box{
align-items:flex-start;
}

}

/* =========================
SMALL MOBILE
========================= */

@media(max-width:480px){

.hero-text h1{
font-size:38px;
}

.section-top h2,
.about-content h2,
.contact-info h2{
font-size:30px;
}

.hero-stat h3{
font-size:30px;
}

.service-card,
.process-card,
.testimonial-card{
padding:30px 24px;
}

}
/* Floating Contact Buttons */
.jetkolay-floating-contact{
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 99999;

    display: flex;
    flex-direction: column;
    gap: 12px;
}

.jetkolay-floating-contact__item{
    width: 58px;
    height: 58px;

    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;
    color: #fff;

    box-shadow: 0 10px 30px rgba(0,0,0,0.18);

    transition: all .3s ease;
    animation: jetkolayFloatingPulse 2s infinite;
}

.jetkolay-floating-contact__item svg{
    width: 28px;
    height: 28px;
}

.jetkolay-floating-contact__item:hover{
    transform: translateY(-4px) scale(1.05);
}

.jetkolay-floating-contact__item--whatsapp{
    background: #25D366;
}

.jetkolay-floating-contact__item--call{
    background: #111827;
}

@keyframes jetkolayFloatingPulse{
    0%{
        box-shadow: 0 0 0 0 rgba(0,0,0,0.25);
    }
    70%{
        box-shadow: 0 0 0 14px rgba(0,0,0,0);
    }
    100%{
        box-shadow: 0 0 0 0 rgba(0,0,0,0);
    }
}

/* Mobile */
@media (max-width: 768px){

    .jetkolay-floating-contact{
        right: 14px;
        bottom: 14px;
        gap: 10px;
    }

    .jetkolay-floating-contact__item{
        width: 54px;
        height: 54px;
    }

    .jetkolay-floating-contact__item svg{
        width: 25px;
        height: 25px;
    }

}
