*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:Inter,sans-serif;
background:#0f172a;
color:#e5e7eb;
line-height:1.6;
}

a{
text-decoration:none;
color:inherit;
}

.container{
max-width:1200px;
margin:auto;
padding:0 20px;
}

/* HEADER */
.site-header{
position:sticky;
top:0;
background:rgba(15,23,42,0.9);
backdrop-filter:blur(10px);
z-index:1000;
}

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

.logo img{
height:44px;
}

.main-nav a{
margin-left:25px;
font-weight:500;
color:#cbd5f5;
}

.main-nav a:hover{
color:#38bdf8;
}

/* FOOTER */
.site-footer{
background:
linear-gradient(rgba(2,6,23,.95),rgba(2,6,23,.95)),
url("/assets/img/backgrounds/footer-bg.jpg") center/cover;
padding:60px 0 20px;
}

.footer-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:40px;
}

.site-footer h4{
margin-bottom:15px;
color:#38bdf8;
}

.site-footer ul{
list-style:none;
}

.site-footer ul li{
margin-bottom:8px;
}

.site-footer ul li a:hover{
color:#38bdf8;
}

.social-icons a{
display:inline-flex;
width:38px;
height:38px;
align-items:center;
justify-content:center;
background:#1e293b;
border-radius:50%;
margin-right:8px;
}

.social-icons a:hover{
background:#38bdf8;
}

.footer-bottom{
text-align:center;
margin-top:40px;
font-size:14px;
color:#94a3b8;
}
/* HERO SLIDER */
.hero-slider{
position:relative;
height:90vh;
overflow:hidden;
}
.slide{
position:absolute;
inset:0;
background-size:cover;
background-position:center;
opacity:0;
transition:opacity 1s ease;
}
.slide.active{opacity:1}
.slide::before{
content:"";
position:absolute;
inset:0;
background:rgba(15,23,42,.75);
}
.hero-content{
position:absolute;
bottom:20%;
left:50%;
transform:translateX(-50%);
text-align:center;
max-width:800px;
}
.hero-content h1{
font-size:48px;
margin-bottom:15px;
}
.hero-content p{
font-size:18px;
color:#cbd5f5;
}

/* SECTIONS */
.section{
padding:90px 0;
}
.section-title{
text-align:center;
font-size:36px;
margin-bottom:50px;
}

/* GEO */
.geo-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}
.geo-card{
background:#1e293b;
padding:40px;
text-align:center;
border-radius:12px;
font-weight:600;
}

/* STATS */
.stats-section{
background:#020617;
padding:70px 0;
}
.stats-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
text-align:center;
}
.stats-grid h3{
font-size:40px;
color:#38bdf8;
}

/* SERVICES */
.services-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:25px;
}
.service-bg{
height:220px;
background-size:cover;
background-position:center;
position:relative;
border-radius:14px;
overflow:hidden;
}
.service-bg::before{
content:"";
position:absolute;
inset:0;
background:rgba(15,23,42,.8);
}
.service-bg span{
position:absolute;
inset:0;
display:flex;
align-items:center;
justify-content:center;
font-size:18px;
font-weight:600;
text-align:center;
}

/* SUBSCRIBE */
.subscribe-section{
background:
linear-gradient(rgba(15,23,42,.9),rgba(15,23,42,.9)),
url("https://images.pexels.com/photos/6476252/pexels-photo-6476252.jpeg") center/cover;
padding:90px 0;
text-align:center;
}
.subscribe-form{
max-width:500px;
margin:30px auto;
display:flex;
}
.subscribe-form input{
flex:1;
padding:14px;
border:none;
border-radius:30px 0 0 30px;
}
.subscribe-form button{
padding:0 30px;
border:none;
background:#38bdf8;
border-radius:0 30px 30px 0;
font-weight:600;
}
/* ABOUT PAGE */
.page-title{
font-size:42px;
margin-bottom:30px;
text-align:center;
}

.about-content{
max-width:900px;
margin:auto;
}

.about-content p{
font-size:17px;
color:#cbd5f5;
margin-bottom:20px;
line-height:1.8;
}
/* PROCESS PAGE */
.process-content{
max-width:950px;
margin:auto;
}

.process-content h2{
font-size:28px;
margin:40px 0 15px;
color:#38bdf8;
}

.process-content h3{
font-size:22px;
margin:30px 0 10px;
}

.process-content p{
font-size:16px;
color:#cbd5f5;
margin-bottom:18px;
line-height:1.9;
}

.process-content ul{
margin:15px 0 25px 20px;
}

.process-content ul li{
margin-bottom:10px;
list-style:disc;
}

.process-highlight{
margin-top:40px;
padding:25px;
background:#1e293b;
border-left:4px solid #38bdf8;
border-radius:8px;
font-size:17px;
}
/* CONTACT PAGE */
.contact-section{
background:
linear-gradient(rgba(15,23,42,.95),rgba(15,23,42,.95)),
url("/assets/img/backgrounds/contact-bg.jpg") center/cover no-repeat;
}

.contact-container{
max-width:1000px;
margin:auto;
}

.contact-intro{
text-align:center;
max-width:700px;
margin:0 auto 50px;
color:#cbd5f5;
font-size:17px;
}

.contact-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:40px;
}

.contact-box{
background:rgba(255,255,255,0.08);
backdrop-filter:blur(12px);
padding:30px;
border-radius:14px;
border:1px solid rgba(255,255,255,0.15);
}

.contact-box h3{
margin-bottom:15px;
color:#38bdf8;
}

.contact-box p{
color:#cbd5f5;
line-height:1.8;
}

.contact-social a{
display:inline-flex;
width:40px;
height:40px;
align-items:center;
justify-content:center;
background:#1e293b;
border-radius:50%;
margin-right:10px;
}

.contact-social a:hover{
background:#38bdf8;
}
/* LEGAL PAGES (Privacy Policy & Terms) */
.legal-content{
max-width:950px;
margin:auto;
}

.legal-content h2{
font-size:26px;
margin:40px 0 15px;
color:#38bdf8;
}

.legal-content p{
font-size:16px;
color:#cbd5f5;
margin-bottom:15px;
line-height:1.9;
}

.legal-content ul{
margin:15px 0 25px 20px;
}

.legal-content ul li{
margin-bottom:10px;
list-style:disc;
}

/* Desktop - make images more visible */
@media (min-width: 1024px){
  .slide::before,
  .service-bg::before,
  .subscribe-section::before{
    background: rgba(15,23,42,0.55);
  }
}

/* Mobile - keep strong contrast */
@media (max-width: 1023px){
  .slide::before,
  .service-bg::before,
  .subscribe-section::before{
    background: rgba(15,23,42,0.80);
  }
}
