/*=========================================================
PAGE BANNER
=========================================================*/

.page-banner{

    background:linear-gradient(135deg,#003366,#0056b3);

    color:#fff;

    padding:80px 20px;

    text-align:center;

}

.page-banner h1{

    font-size:42px;

    margin-bottom:15px;

    font-weight:700;

}

.page-banner p{

    font-size:18px;

    opacity:.95;

}


/*=========================================================
SEARCH
=========================================================*/

.branch-search{

    background:#fff;

    padding:40px 0;

}

.branch-search form{

    max-width:800px;

    margin:auto;

    display:flex;

    gap:15px;

}

.branch-search input{

    flex:1;

    height:55px;

    border:1px solid #ddd;

    border-radius:50px;

    padding:0 25px;

    font-size:16px;

    outline:none;

}

.branch-search input:focus{

    border-color:#0056b3;

}

.branch-search button{

    border:none;

    background:#0056b3;

    color:#fff;

    padding:0 35px;

    border-radius:50px;

    cursor:pointer;

    font-size:16px;

    transition:.3s;

}

.branch-search button:hover{

    background:#003366;

}


/*=========================================================
SECTION
=========================================================*/

.branches-section{

    background:#f7f9fc;

    padding:80px 0;

}

.section-title{

    text-align:center;

    margin-bottom:45px;

}

.section-title h2{

    color:#003366;

    font-size:36px;

    margin-bottom:10px;

}

.section-title p{

    color:#666;

}


/*=========================================================
GRID
=========================================================*/

.branch-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(340px,1fr));

    gap:30px;

}


/*=========================================================
CARD
=========================================================*/

.branch-card{

    background:#fff;

    border-radius:18px;

    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.35s;

}

.branch-card:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 40px rgba(0,0,0,.12);

}


/*=========================================================
IMAGE
=========================================================*/

.branch-image{

    height:220px;

    overflow:hidden;

}

.branch-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.5s;

}

.branch-card:hover img{

    transform:scale(1.08);

}


/*=========================================================
CONTENT
=========================================================*/

.branch-content{

    padding:25px;

}

.branch-content h3{

    color:#003366;

    margin-bottom:8px;

    font-size:26px;

}

.branch-code{

    display:inline-block;

    background:#0056b3;

    color:#fff;

    padding:6px 14px;

    border-radius:30px;

    font-size:13px;

    margin-bottom:20px;

}

.branch-content ul{

    list-style:none;

    margin:0;

    padding:0;

}

.branch-content li{

    display:flex;

    align-items:flex-start;

    gap:12px;

    margin-bottom:16px;

    color:#555;

    line-height:25px;

}

.branch-content li i{

    color:#0056b3;

    width:20px;

    margin-top:3px;

}

.branch-content a{

    color:#444;

    text-decoration:none;

}

.branch-content a:hover{

    color:#0056b3;

}


/*=========================================================
BUTTONS
=========================================================*/

.branch-buttons{

    display:flex;

    gap:15px;

    margin-top:25px;

}

.branch-buttons a{

    flex:1;

    text-align:center;

    padding:14px;

    border-radius:8px;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.call-btn{

    background:#0056b3;

    color:#fff !important;

}

.call-btn:hover{

    background:#003366;

}

.map-btn{

    background:#16a34a;

    color:#fff !important;

}

.map-btn:hover{

    background:#15803d;

}


/*=========================================================
NO DATA
=========================================================*/

.no-branch{

    width:100%;

    grid-column:1/-1;

    text-align:center;

    background:#fff;

    border-radius:15px;

    padding:70px 20px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.no-branch i{

    font-size:70px;

    color:#0056b3;

    margin-bottom:20px;

}

.no-branch h2{

    color:#003366;

    margin-bottom:10px;

}

.no-branch p{

    color:#777;

}


/*=========================================================
RESPONSIVE
=========================================================*/

@media(max-width:991px){

.page-banner{

padding:70px 20px;

}

.page-banner h1{

font-size:34px;

}

.branch-grid{

grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

}

}


@media(max-width:768px){

.branch-search form{

flex-direction:column;

}

.branch-search button{

height:55px;

width:100%;

}

.branch-buttons{

flex-direction:column;

}

.page-banner{

padding:60px 20px;

}

.page-banner h1{

font-size:30px;

}

.section-title h2{

font-size:30px;

}

.branch-image{

height:200px;

}

}


@media(max-width:480px){

.page-banner h1{

font-size:26px;

}

.page-banner p{

font-size:15px;

}

.branch-content{

padding:20px;

}

.branch-content h3{

font-size:22px;

}

.branch-content li{

font-size:14px;

}

}