@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css');

/* =========================
GLOBAL
========================= */

html{
scroll-behavior:smooth;
}

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

body{
font-family:Arial,sans-serif;
background:#fff;
color:#111;
overflow-x:hidden;
}

.toit-container{
width:100%;
overflow:hidden;
}

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

.desktop-header{
width:100%;
background:#fff;
padding:18px 40px;
display:flex;
align-items:center;
justify-content:space-between;
position:fixed;
top:0;
left:0;
z-index:9999;
box-shadow:0 2px 10px rgba(0,0,0,.06);
}

.toit-logo img{
max-height:70px;
width:auto;
display:block;
}

.toit-menu{
display:flex;
align-items:center;
gap:35px;
}

.toit-menu a{
text-decoration:none;
color:#111;
font-size:15px;
font-weight:700;
transition:.3s ease;
}

.toit-menu a:hover{
color:#ef2b2d;
}

.toit-phone{
background:#ef2b2d;
color:#fff;
padding:14px 25px;
border-radius:50px;
font-weight:bold;
text-decoration:none;
font-size:16px;
display:flex;
align-items:center;
gap:10px;
transition:.3s ease;
}

.toit-phone:hover{
transform:translateY(-2px);
}

.toit-phone i{
color:#fff;
}

/* =========================
MOBILE HEADER HIDDEN DESKTOP
========================= */

.mobile-header,
.mobile-menu,
.mobile-overlay{
display:none;
}

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

.hero-section{
position:relative;
min-height:950px;
background-size:cover;
background-position:center;
display:flex;
align-items:center;
padding-top:120px;
}

.hero-overlay{
position:absolute;
inset:0;
background:rgba(0,0,0,.38);
}

.hero-content{
position:relative;
z-index:2;
width:100%;
max-width:1400px;
margin:auto;
padding:70px 40px;
display:flex;
justify-content:space-between;
align-items:flex-start;
gap:50px;
}

.hero-left{
width:55%;
padding-top:30px;
}

.hero-badge img{
width:180px;
margin-bottom:40px;
display:block;
}

.hero-left h1{
font-size:92px;
line-height:.95;
color:#fff;
font-weight:900;
margin-bottom:35px;
text-transform:uppercase;
}

.hero-left p{
font-size:34px;
line-height:1.5;
color:#fff;
max-width:800px;
margin-bottom:45px;
font-weight:500;
}

.hero-icons{
display:flex;
gap:25px;
}

.hero-icon-box{
background:rgba(0,0,0,.35);
backdrop-filter:blur(4px);
padding:18px;
border-radius:8px;
min-width:230px;
color:#fff;
display:flex;
align-items:center;
gap:18px;
}

.hero-icon-box i{
font-size:42px;
color:#fff;
}

.hero-icon-box h3{
line-height:1.2;
font-size:24px;
font-weight:700;
}

/* =========================
FORM
========================= */

.hero-form{
width:450px;
background:#08386d;
padding:40px;
border-radius:18px;
color:#fff;
box-shadow:0 15px 50px rgba(0,0,0,.30);
}

.hero-form h2{
text-align:center;
font-size:46px;
line-height:1.1;
margin-bottom:15px;
text-transform:uppercase;
font-weight:900;
}

.hero-form h2 span{
color:#ef2b2d;
}

.hero-form p{
text-align:center;
margin-bottom:25px;
font-size:16px;
line-height:1.6;
}

.contact-shortcode{
width:100%;
}

.contact-shortcode input,
.contact-shortcode textarea,
.contact-shortcode select{
width:100%;
padding:18px;
border-radius:8px;
border:none;
margin-bottom:14px;
font-size:16px;
outline:none;
}

.contact-shortcode textarea{
min-height:140px;
resize:none;
}

.contact-shortcode input[type=submit],
.contact-shortcode button{
width:100%;
background:#ef2b2d!important;
color:#fff!important;
border:none;
padding:20px;
border-radius:60px;
font-size:20px;
font-weight:bold;
cursor:pointer;
transition:.3s ease;
}

.contact-shortcode input[type=submit]:hover{
transform:translateY(-2px);
}

.form-secure{
margin-top:15px;
text-align:center;
font-size:13px;
opacity:.9;
line-height:1.5;
}

/* =========================
SECTIONS
========================= */

.section{
padding:100px 40px;
}

.section-title{
text-align:center;
margin-bottom:60px;
}

.section-title h2{
font-size:56px;
color:#0b3b73;
margin-bottom:15px;
text-transform:uppercase;
font-weight:900;
}

.section-title p{
font-size:22px;
color:#666;
line-height:1.6;
}

/* =========================
SERVICES
========================= */

.services-grid{
max-width:1400px;
margin:auto;
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

.service-card{
background:#fff;
border-radius:14px;
overflow:hidden;
box-shadow:0 8px 25px rgba(0,0,0,.08);
text-align:center;
transition:.3s ease;
}

.service-card:hover{
transform:translateY(-5px);
}

.service-card img{
width:100%;
height:260px;
object-fit:cover;
display:block;
}

.service-content{
position:relative;
padding:70px 25px 35px;
}

.service-icon{
width:80px;
height:80px;
background:#0b3b73;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
margin:auto;
margin-top:-105px;
margin-bottom:25px;
position:relative;
z-index:5;
border:8px solid #fff;
}

.service-icon i{
color:#fff;
font-size:32px;
}

.service-content h3{
font-size:20px;
color:#0b3b73;
margin-bottom:20px;
line-height:1.3;
font-weight:900;
text-transform:uppercase;
}

.service-content p{
color:#555;
line-height:1.9;
font-size:15px;
}

/* =========================
WHY SECTION
========================= */

.why-section{
background:#08386d;
color:#fff;
}

.why-grid{
max-width:1400px;
margin:auto;
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
}

.why-box{
text-align:center;
border-right:1px solid rgba(255,255,255,.25);
padding:0 30px;
}

.why-box:last-child{
border-right:none;
}

.why-box i{
font-size:60px;
color:#fff;
margin-bottom:25px;
}

.why-box h3{
margin:20px 0 15px;
font-size:18px;
font-weight:900;
text-transform:uppercase;
}

.why-box p{
line-height:1.8;
font-size:16px;
}

/* =========================
REALISATIONS
========================= */

.realisations-grid{
max-width:1400px;
margin:auto;
display:grid;
grid-template-columns:repeat(5,1fr);
gap:20px;
}

.realisations-grid img{
width:100%;
height:260px;
object-fit:cover;
border-radius:12px;
display:block;
transition:.3s ease;
}

.realisations-grid img:hover{
transform:scale(1.03);
}

.realisation-btn{
text-align:center;
margin-top:45px;
}

.realisation-btn a{
background:#ef2b2d;
color:#fff;
text-decoration:none;
padding:18px 45px;
border-radius:60px;
font-weight:bold;
font-size:18px;
display:inline-block;
transition:.3s ease;
}

.realisation-btn a:hover{
transform:translateY(-2px);
}

/* =========================
AVIS
========================= */

.avis-grid{
max-width:1300px;
margin:auto;
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.avis-box{
background:#fff;
padding:40px;
border-radius:14px;
box-shadow:0 8px 25px rgba(0,0,0,.08);
text-align:center;
}

.stars{
color:#ffbf00;
font-size:24px;
margin-bottom:20px;
}

.avis-box p{
font-size:18px;
line-height:1.7;
color:#444;
margin-bottom:20px;
}

.avis-box strong{
font-size:18px;
}

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

.toit-footer{
background:#052d58;
color:#fff;
padding:70px 40px 30px;
}

.footer-grid{
max-width:1400px;
margin:auto;
display:grid;
grid-template-columns:1.2fr 1fr 1fr;
gap:50px;
}

.footer-logo img{
max-width:260px;
margin-bottom:20px;
display:block;
}

.footer-title{
font-size:28px;
margin-bottom:25px;
font-weight:800;
}

.footer-text{
line-height:1.8;
color:#ddd;
font-size:17px;
}

.footer-contact li{
list-style:none;
margin-bottom:18px;
font-size:18px;
line-height:1.7;
}

.footer-map img{
width:100%;
border-radius:12px;
display:block;
}

.footer-bottom{
border-top:1px solid rgba(255,255,255,.15);
margin-top:50px;
padding-top:25px;
display:flex;
justify-content:space-between;
align-items:center;
font-size:14px;
}

.footer-badge{
background:#ef2b2d;
padding:14px 28px;
border-radius:60px;
font-weight:bold;
}

/* =========================
FORMIDABLE
========================= */

div#frm_field_9_container{
display:none;
}

.frm_form_fields fieldset{
border:none;
}

.frm_form_fields fieldset legend{
display:none;
}

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

@media(max-width:992px){

.hero-content{
flex-direction:column;
padding:40px 20px;
}

.hero-left,
.hero-form{
width:100%;
}

.hero-left{
padding-top:20px;
}

.hero-left h1{
font-size:60px;
}

.hero-left p{
font-size:24px;
}

.hero-icons{
flex-direction:row;
flex-wrap:wrap;
}

.hero-icon-box{
width:48%;
min-width:48%;
}

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

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

.why-grid{
grid-template-columns:1fr 1fr;
gap:50px;
}

.why-box{
border:none;
}

}