/*=========================================
AREA COVERAGE
=========================================*/

.coverage-section{

padding:120px 0;

background:#080808;

}

.coverage-container{

max-width:1200px;

margin:auto;

padding:0 20px;

}

.coverage-heading{

max-width:850px;

margin:auto;

text-align:center;

margin-bottom:60px;

}

.coverage-heading h2{

font-size:46px;

font-weight:800;

color:#fff;

margin:22px 0;

line-height:1.2;

}

.coverage-heading p{

font-size:17px;

line-height:1.9;

color:#c4c4c4;

}

.coverage-highlight{

display:flex;

gap:30px;

align-items:center;

padding:35px;

border-radius:24px;

background:#111;

border:1px solid rgba(212,175,55,.15);

margin-bottom:60px;

}

.coverage-icon{

width:80px;

height:80px;

border-radius:50%;

background:#d4af37;

display:flex;

align-items:center;

justify-content:center;

font-size:34px;

flex-shrink:0;

}

.coverage-highlight h3{

color:#fff;

margin-bottom:12px;

font-size:28px;

}

.coverage-highlight p{

color:#bdbdbd;

line-height:1.9;

margin:0;

}

.coverage-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:18px;

}

.coverage-card{

display:flex;

justify-content:center;

align-items:center;

padding:22px;

background:#131313;

border-radius:16px;

text-decoration:none;

font-weight:700;

color:#fff;

border:1px solid rgba(212,175,55,.12);

transition:.3s;

}

.coverage-card:hover{

background:#d4af37;

color:#000;

transform:translateY(-4px);

}

.coverage-footer{

margin-top:60px;

text-align:center;

}

.coverage-footer p{

font-size:16px;

color:#bdbdbd;

margin-bottom:30px;

}

.coverage-btn{

display:inline-block;

padding:16px 36px;

background:#000;

color:#fff;

font-weight:700;

border-radius:50px;

text-decoration:none;

transition:.3s;

border:2px solid #d4af37;

}

.coverage-btn:hover{

background:#d4af37;

color:#000;

}

@media(max-width:991px){

.coverage-grid{

grid-template-columns:repeat(2,1fr);

}

.coverage-highlight{

flex-direction:column;

text-align:center;

}

.coverage-heading h2{

font-size:36px;

}

}

@media(max-width:768px){

.coverage-grid{

grid-template-columns:1fr;

}

.coverage-heading h2{

font-size:30px;

}

}