/* =========================
FILE : style.css
USE FOR ALL PAGES
========================= */

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

:root{
--orange:#ff7a00;
--blue:#4e5cff;
--dark:#030814;
--card:rgba(255,255,255,.04);
--white:#ffffff;
--text:#cfd4e4;
}

body{
background:var(--dark);
color:#fff;
overflow-x:hidden;
}

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

/* HEADER */
.header{
position:sticky;
top:0;
z-index:999;
padding:18px 0;
background:rgba(5,10,25,.82);
backdrop-filter:blur(12px);
border-bottom:1px solid rgba(255,255,255,.05);
}

.nav{
display:flex;
justify-content:space-between;
align-items:center;
gap:20px;
}

.logo{
font-size:30px;
font-weight:900;
text-decoration:none;
color:#fff;
}

.logo span{
color:var(--orange);
}

.menu{
display:flex;
gap:28px;
list-style:none;
}

.menu a{
color:#fff;
text-decoration:none;
font-size:15px;
font-weight:600;
transition:.3s;
}

.menu a:hover{
color:var(--orange);
}

/* BUTTONS */
.btn,
.btn-outline{
padding:14px 28px;
border-radius:50px;
text-decoration:none;
display:inline-block;
font-weight:700;
transition:.3s;
}

.btn{
background:linear-gradient(90deg,var(--blue),#d6327d);
color:#fff;
}

.btn:hover{
transform:translateY(-4px);
}

.btn-outline{
border:1px solid rgba(255,255,255,.15);
color:#fff;
}

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

/* HERO */
.hero{
padding:120px 0;
background:
radial-gradient(circle at top right,rgba(78,92,255,.20),transparent 30%),
radial-gradient(circle at left bottom,rgba(255,122,0,.18),transparent 35%);
}

.hero-grid{
display:grid;
grid-template-columns:1.1fr .9fr;
gap:40px;
align-items:center;
}

.tag{
font-size:13px;
letter-spacing:2px;
color:var(--orange);
margin-bottom:18px;
font-weight:700;
}

.hero h1{
font-size:68px;
line-height:1.05;
margin-bottom:20px;
}

.hero h1 span{
color:var(--orange);
}

.lead{
font-size:19px;
line-height:1.8;
color:var(--text);
max-width:620px;
margin-bottom:30px;
}

.hero-btns{
display:flex;
gap:16px;
flex-wrap:wrap;
}

.hero-card{
padding:38px;
border-radius:30px;
background:var(--card);
border:1px solid rgba(255,255,255,.06);
}

.hero-card h3{
font-size:28px;
margin-bottom:20px;
}

.hero-card ul{
list-style:none;
display:grid;
gap:14px;
font-size:18px;
color:var(--text);
}

/* SECTIONS */
.section{
padding:100px 0;
}

.title{
font-size:48px;
text-align:center;
margin-bottom:50px;
}

.title span{
color:var(--orange);
}

/* GRID */
.grid{
display:grid;
gap:24px;
}

.grid.four{
grid-template-columns:repeat(4,1fr);
}

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

.grid.two{
grid-template-columns:repeat(2,1fr);
}

/* CARD */
.card{
padding:32px;
border-radius:28px;
background:var(--card);
border:1px solid rgba(255,255,255,.06);
text-decoration:none;
color:#fff;
transition:.3s;
}

.card:hover{
transform:translateY(-8px);
border-color:rgba(78,92,255,.6);
}

.card h3{
font-size:24px;
margin-bottom:14px;
}

.card p{
font-size:17px;
line-height:1.7;
color:var(--text);
}

/* FOOTER */
.footer{
padding:40px 0;
text-align:center;
color:#a7adc1;
border-top:1px solid rgba(255,255,255,.05);
}

/* FLOATING */
.floating{
position:fixed;
right:22px;
top:80%;
transform:translateY(-50%);
display:flex;
flex-direction:column;
gap:16px;
z-index:9999;
}

.fab{
width:62px;
height:62px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:28px;
text-decoration:none;
color:#fff;
box-shadow:0 10px 30px rgba(0,0,0,.25);
transition:.3s;
}

.fab:hover{
transform:scale(1.08);
}

.wa{background:#22c55e;}
.ig{background:#e1306c;}
.call{background:#4caf50;}

/* SERVICE LINK LIST */
.links{
display:grid;
gap:12px;
margin-top:20px;
}

.links a{
padding:14px 18px;
border-radius:14px;
background:rgba(255,255,255,.03);
text-decoration:none;
color:#fff;
border:1px solid rgba(255,255,255,.05);
}

.links a:hover{
background:linear-gradient(90deg,var(--blue),#d6327d);
}

/* MOBILE */
@media(max-width:1100px){

.grid.four,
.grid.three{
grid-template-columns:repeat(2,1fr);
}

.hero-grid{
grid-template-columns:1fr;
}

.hero h1{
font-size:52px;
}
}

@media(max-width:768px){

.menu{
display:none;
}

.grid.four,
.grid.three,
.grid.two{
grid-template-columns:1fr;
}

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

.title{
font-size:34px;
}

.floating{
right:12px;
gap:10px;
}

.fab{
width:52px;
height:52px;
font-size:22px;
}
}