.section{
    padding:96px 0;
    scroll-margin-top:92px;
}

.section-container{
    width:min(1180px,calc(100% - 48px));
    margin:0 auto;
}

.section-kicker{
    display:inline-flex;
    align-items:center;
    gap:8px;
    margin-bottom:14px;
    color:#ffc928;
    font-size:13px;
    font-weight:800;
    letter-spacing:0;
    text-transform:uppercase;
}

.section h2{
    margin:0 0 18px;
    color:#ffffff;
    font-size:clamp(2rem,4vw,3.5rem);
    line-height:1.12;
}

.section h3{
    margin:0 0 14px;
}

.section p{
    color:#c5cedf;
    line-height:1.7;
}

.location-section,
.updates-section{
    background:#071237;
}

.tariff-section,
.contact-section{
    background:#f5f7fb;
    color:#071237;
}

.tariff-section h2,
.tariff-section h3,
.contact-section h2,
.contact-section h3{
    color:#071237;
}

.tariff-section p,
.contact-section p{
    color:#46536a;
}

.location-grid,
.contact-grid{
    display:grid;
    grid-template-columns:minmax(0,0.9fr) minmax(320px,1.1fr);
    gap:48px;
    align-items:center;
}

.address-card,
.empty-updates{
    margin-top:28px;
    padding:28px;
    border:1px solid rgba(255,255,255,.12);
    background:rgba(255,255,255,.05);
    border-radius:8px;
}

.address-card p{
    margin:0 0 18px;
}

.text-link{
    color:#ffc928;
    font-weight:800;
    text-decoration:none;
}

.text-link:hover{
    text-decoration:underline;
}

.map-wrap{
    min-height:460px;
    border:1px solid rgba(255,255,255,.14);
    border-radius:8px;
    overflow:hidden;
    background:#0f1b42;
}

.map-wrap iframe{
    display:block;
    width:100%;
    height:460px;
    border:0;
}

.section-heading{
    max-width:760px;
    margin-bottom:42px;
}

.split-heading{
    max-width:none;
    display:flex;
    justify-content:space-between;
    gap:24px;
    align-items:end;
}

.tariff-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:24px;
}

.tariff-card,
.contact-form{
    padding:34px;
    border:1px solid #dde4ef;
    background:#ffffff;
    border-radius:8px;
    box-shadow:0 18px 45px rgba(7,18,55,.08);
}

.tariff-card.highlighted{
    border-color:#ffc928;
    background:#fff9dc;
}

.card-note{
    margin-top:-4px;
}

.price-list{
    display:grid;
    gap:14px;
    margin:28px 0;
    padding:0;
    list-style:none;
}

.price-list li{
    display:flex;
    justify-content:space-between;
    gap:20px;
    align-items:center;
    padding:16px 0;
    border-bottom:1px solid #e7ecf4;
}

.price-list span{
    color:#46536a;
}

.price-list strong{
    color:#071237;
    white-space:nowrap;
}

.card-button,
.contact-form button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:52px;
    padding:0 24px;
    border:0;
    border-radius:8px;
    background:#071237;
    color:#ffffff;
    font-weight:800;
    text-decoration:none;
    cursor:pointer;
}

.card-button:hover,
.contact-form button:hover{
    background:#10225a;
}

.updates-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:24px;
}

.update-card{
    overflow:hidden;
    border:1px solid rgba(255,255,255,.12);
    border-radius:8px;
    background:rgba(255,255,255,.05);
}

.update-image{
    display:flex;
    align-items:center;
    justify-content:center;
    aspect-ratio:16/10;
    background:linear-gradient(135deg,#11306b,#0f8b78);
    color:#ffffff;
    font-weight:800;
    text-decoration:none;
}

.update-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.update-content{
    padding:24px;
}

.update-content time{
    color:#ffc928;
    font-size:13px;
    font-weight:800;
}

.update-content h3{
    margin:10px 0;
    line-height:1.3;
}

.update-content a{
    text-decoration:none;
}

.contact-list{
    margin-top:28px;
    padding-top:8px;
}

.contact-list a,
.footer-details a,
.footer-links a,
.footer-bottom a{
    text-decoration:none;
}

.contact-list a:hover,
.footer-details a:hover,
.footer-links a:hover,
.footer-bottom a:hover{
    text-decoration:underline;
}

.form-status{
    display:none;
    margin:0 0 20px;
    padding:14px 16px;
    border-radius:8px;
    background:#eef8f3;
    color:#145f3c;
    font-weight:700;
}

.form-status.is-visible{
    display:block;
}

.form-row{
    margin-bottom:18px;
}

.form-row label{
    display:block;
    margin-bottom:8px;
    color:#071237;
    font-weight:800;
}

.form-row input,
.form-row select,
.form-row textarea{
    width:100%;
    min-height:52px;
    padding:12px 14px;
    border:1px solid #cfd8e6;
    border-radius:8px;
    background:#ffffff;
    color:#071237;
    font:inherit;
}

.form-row textarea{
    resize:vertical;
}

.two-col{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:16px;
}

.honeypot{
    position:absolute;
    left:-9999px;
}

.site-footer{
    background:#020b28;
    border-top:1px solid rgba(255,255,255,.1);
    color:#ffffff;
}

.footer-container{
    width:min(1180px,calc(100% - 48px));
    margin:0 auto;
    padding:64px 0;
    display:grid;
    grid-template-columns:1.2fr 1fr 0.8fr;
    gap:40px;
}

.footer-brand img{
    width:180px;
    height:auto;
}

.footer-brand p,
.footer-details p,
.footer-bottom p{
    color:#c5cedf;
    line-height:1.7;
}

.footer-details h2,
.footer-links h2{
    margin:0 0 16px;
    font-size:20px;
}

.footer-links{
    display:grid;
    align-content:start;
    gap:12px;
}

.footer-bottom{
    width:min(1180px,calc(100% - 48px));
    margin:0 auto;
    padding:22px 0;
    border-top:1px solid rgba(255,255,255,.1);
    display:flex;
    justify-content:space-between;
    gap:20px;
    align-items:center;
}

.footer-bottom div{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

@media(max-width:900px){
    .section{
        padding:72px 0;
    }

    .location-grid,
    .contact-grid,
    .tariff-grid,
    .updates-grid,
    .footer-container{
        grid-template-columns:1fr;
    }

    .split-heading,
    .footer-bottom{
        align-items:flex-start;
        flex-direction:column;
    }
}

@media(max-width:640px){
    .section-container,
    .footer-container,
    .footer-bottom{
        width:min(100% - 32px,1180px);
    }

    .tariff-card,
    .contact-form,
    .address-card{
        padding:24px;
    }

    .two-col{
        grid-template-columns:1fr;
    }

    .price-list li{
        align-items:flex-start;
        flex-direction:column;
        gap:6px;
    }

    .map-wrap,
    .map-wrap iframe{
        min-height:360px;
        height:360px;
    }
}
