* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body{
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height:1.6;
color:#2D3436;
background-color:#F5F6FA;
}

section{
padding:60px 20px;
}

header{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 40px;
background:white;
box-shadow:0 4px 15px rgba(0,0,0,0.08);
position:sticky;
top:0;
z-index:100;
}

.logo{
font-size:28px;
font-weight:bold;
background: linear-gradient(135deg, #6C5CE7 0%, #00B894 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
cursor:pointer;
}

nav{
display:flex;
gap:25px;
}

nav a{
text-decoration:none;
color:#2D3436;
font-weight:500;
transition:0.3s ease;
position:relative;
}

nav a:hover{
color:#6C5CE7;
}

nav a::after{
content:'';
position:absolute;
bottom:-5px;
left:0;
width:0;
height:2px;
background:#6C5CE7;
transition:width 0.3s ease;
}

nav a:hover::after{
width:100%;
}

.call{
background:#6C5CE7;
color:white;
padding:10px 20px;
border-radius:25px;
font-weight:bold;
}

.call a{
color:white;
text-decoration:none;
}

.hero{
text-align:center;
padding:100px 20px;
background: linear-gradient(135deg, #6C5CE7 0%, #00B894 100%);
color:white;
}

.hero h1{
font-size:48px;
margin-bottom:15px;
}

.hero p{
font-size:18px;
margin-bottom:30px;
text-indent:0;
}

.btn{
background:#6C5CE7;
color:white;
padding:14px 28px;
border-radius:8px;
text-decoration:none;
transition:all 0.3s ease;
display:inline-block;
border:none;
cursor:pointer;
font-weight:bold;
font-size:16px;
}

.btn:hover{
background:#5A4FC5;
transform:translateY(-3px);
box-shadow:0 8px 20px rgba(108,92,231,0.3);
}

.btn-secondary{
background:#00B894;
}

.btn-secondary:hover{
background:#00A383;
}

.categories{
padding:60px 20px;
text-align:center;
background:white;
}

.categories h2{
font-size:36px;
margin-bottom:40px;
color:#2D3436;
}

.grid{
display:grid;
grid-template-columns:repeat(auto-fit, minmax(200px, 1fr));
gap:25px;
margin-top:30px;
max-width:1000px;
margin-left:auto;
margin-right:auto;
}

.card{
background:white;
padding:35px;
border-radius:12px;
box-shadow:0 4px 15px rgba(0,0,0,0.08);
cursor:pointer;
transition:all 0.3s ease;
border:2px solid transparent;
font-weight:bold;
color:#2D3436;
}

.card:hover{
transform:translateY(-8px);
border-color:#6C5CE7;
box-shadow:0 10px 30px rgba(108,92,231,0.15);
}

.deals{
padding:60px 20px;
text-align:center;
}

.deals h1{
font-size:36px;
margin-bottom:40px;
color:#2D3436;
}

.deal{
background:white;
margin:20px auto;
padding:25px;
max-width:600px;
border-radius:12px;
box-shadow:0 4px 15px rgba(0,0,0,0.08);
border-left:5px solid #6C5CE7;
}

footer{
background:#2D3436;
color:white;
text-align:center;
padding:40px 20px;
margin-top:50px;
}

footer a{
color:#6C5CE7;
text-decoration:none;
transition:0.3s;
}

footer a:hover{
color:#00B894;
text-decoration:underline;
}
.floating-call{
position:fixed;
bottom:20px;
right:20px;
background:linear-gradient(135deg, #6C5CE7 0%, #00B894 100%);
color:white;
padding:14px 20px;
border-radius:50px;
display:flex;
align-items:center;
gap:10px;
font-weight:bold;
text-decoration:none;
box-shadow:0 6px 20px rgba(108,92,231,0.4);
z-index:9999;
transition:all 0.3s ease;
}

.floating-call:hover{
transform:scale(1.1);
box-shadow:0 8px 25px rgba(108,92,231,0.5);
}

.call-icon{
font-size:20px;
}

.call-text{
font-size:14px;
}

p{
text-indent:0;
}

/* Popup Overlay */
.popup-overlay{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.7);
display:none;
align-items:center;
justify-content:center;
z-index:99999;
}

.popup-overlay.show{
display:flex;
}

/* Popup Box */
.popup-box{
background:#fff;
padding:40px;
border-radius:15px;
max-width:450px;
text-align:center;
box-shadow:0 10px 40px rgba(0,0,0,0.3);
position:relative;
animation:slideIn 0.3s ease;
}

@keyframes slideIn{
from{
transform:translateY(-50px);
opacity:0;
}
to{
transform:translateY(0);
opacity:1;
}
}

/* Close Button */
.close-popup{
position:absolute;
top:15px;
right:20px;
font-size:28px;
cursor:pointer;
color:#999;
transition:0.3s;
}

.close-popup:hover{
color:#2D3436;
}

/* Call Button in Popup */
.call-btn{
display:inline-block;
margin-top:20px;
background:linear-gradient(135deg, #6C5CE7 0%, #00B894 100%);
color:#fff;
padding:14px 30px;
border-radius:8px;
text-decoration:none;
font-size:16px;
font-weight:bold;
transition:all 0.3s ease;
}

.call-btn:hover{
transform:translateY(-2px);
box-shadow:0 8px 20px rgba(108,92,231,0.3);
}

.cta{
background:linear-gradient(135deg, #6C5CE7 0%, #00B894 100%);
color:white;
text-align:center;
padding:60px 20px;
}

.cta h2{
font-size:32px;
margin-bottom:20px;
}

.cta .btn{
background:white;
color:#6C5CE7;
margin:10px;
}

.cta .btn:hover{
background:#F5F6FA;
}

.space{
margin-top:30px;
color:rgba(255,255,255,0.9);
text-indent:0;
}

@media(max-width:768px){
header{
flex-direction:column;
gap:15px;
padding:15px 20px;
}

nav{
gap:15px;
}

.hero{
padding:60px 20px;
}

.hero h1{
font-size:32px;
}

.grid{
grid-template-columns:1fr;
}

.floating-call{
padding:12px 16px;
}

.call-text{
display:none;
}

.popup-box{
max-width:90%;
}
}