/* =====================================================
   RESET
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f5f7fa;
    color: #17324d;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
textarea,
select {
    font-family: inherit;
}

img {
    display: block;
    max-width: 100%;
}

.container {
    width: 92%;
    max-width: 1200px;
    margin: 0 auto;
}


/* =====================================================
   TOP BAR
===================================================== */

.top-bar {
    background: #031f3d;
    color: #d7e3ee;
    font-size: 11px;
}

.top-inner {
    min-height: 35px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.top-left,
.top-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.top-separator {
    width: 1px;
    height: 12px;
    background: rgba(255,255,255,.25);
}

.top-right a,
.top-right button {
    border: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
    font-size: 11px;
}

.top-right a:hover,
.top-right button:hover {
    color: #dfb744;
}


/* =====================================================
   HEADER
===================================================== */

.header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(255,255,255,.98);
    border-bottom: 1px solid #e3eaf0;

    box-shadow: 0 4px 20px rgba(0,35,70,.07);
}

.header-inner {
    min-height: 82px;

    display: flex;
    align-items: center;

    gap: 20px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 9px;

    flex-shrink: 0;
}

.lic-logo {
    width: 58px;
    height: 58px;

    flex-shrink: 0;
}

.lic-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-line {
    width: 1px;
    height: 43px;
    background: #dce4eb;
}

.ms-logo {
    width: 50px;
    height: 50px;

    display: grid;
    place-items: center;

    flex-shrink: 0;

    border-radius: 50%;

    background: #063b78;
    color: #fff;

    border: 3px solid #d5a932;

    font-size: 13px;
    font-weight: 900;
}

.brand-name strong {
    display: block;

    color: #063b78;
    font-size: 18px;
    letter-spacing: .4px;
}

.brand-name small {
    display: block;

    color: #7b8c9d;
    font-size: 9px;

    margin-top: 2px;
}


/* =====================================================
   DESKTOP NAV
===================================================== */

.desktop-nav {
    margin-left: auto;

    display: flex;
    align-items: center;

    gap: 20px;
}

.desktop-nav a {
    position: relative;

    padding: 31px 0;

    color: #40556a;

    font-size: 11px;
    font-weight: 800;

    white-space: nowrap;

    transition: color .25s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
    color: #063b78;
}

.desktop-nav a.active::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 21px;

    height: 2px;

    background: #d5a932;
}


/* =====================================================
   HEADER BUTTON
===================================================== */

.header-btn {
    padding: 11px 17px;

    background: #063b78;
    color: #fff;

    font-size: 10px;
    font-weight: 900;

    white-space: nowrap;

    transition: .25s ease;
}

.header-btn:hover {
    background: #d5a932;
    color: #062d55;
}


/* =====================================================
   MOBILE MENU
===================================================== */

.menu-btn {
    display: none;

    width: 42px;
    height: 42px;

    border: 1px solid #dbe3eb;

    background: #fff;
    color: #063b78;

    font-size: 21px;

    cursor: pointer;
}

.mobile-nav {
    display: none;

    background: #fff;
    border-top: 1px solid #e8edf2;
}

.mobile-nav.open {
    display: block;
}

.mobile-nav a {
    display: block;

    padding: 14px 5%;

    border-bottom: 1px solid #e9eef3;

    color: #203c56;

    font-size: 13px;
    font-weight: 700;
}

.mobile-nav a:hover,
.mobile-nav a.active {
    background: #f5f8fb;
    color: #063b78;
}


/* =====================================================
   CONTACT HERO
===================================================== */

.contact-hero {
    position: relative;

    min-height: 520px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background: #032b54;
}

.contact-hero-background {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(2,31,60,.98) 0%,
            rgba(3,51,94,.88) 48%,
            rgba(3,64,110,.48) 100%
        ),
        url("images/contact/contact-bg.jpg")
        center center / cover no-repeat;

    transform: scale(1.02);
}

.contact-hero-background::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 82% 25%,
            rgba(219,178,61,.18),
            transparent 28%
        );
}

.contact-hero-content {
    position: relative;
    z-index: 2;

    padding: 90px 0;
}

.hero-label {
    color: #dfb744;

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 3px;
}

.contact-hero h1 {
    max-width: 800px;

    margin-top: 17px;

    color: #fff;

    font-size: clamp(44px,7vw,76px);

    line-height: 1;

    font-weight: 500;

    letter-spacing: -2px;
}

.contact-hero h1 span {
    color: #dfb744;
    font-weight: 800;
}

.contact-hero p {
    max-width: 620px;

    margin-top: 24px;

    color: #d4e1ed;

    font-size: 14px;

    line-height: 1.9;
}

.hero-actions {
    display: flex;

    gap: 12px;

    margin-top: 31px;
}

.btn-primary,
.btn-outline {
    min-width: 155px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    padding: 14px 20px;

    font-size: 10px;
    font-weight: 900;

    transition: .3s ease;
}

.btn-primary {
    background: #d6aa35;
    color: #062d55;
}

.btn-outline {
    border: 1px solid rgba(255,255,255,.5);

    color: #fff;
}

.btn-primary:hover,
.btn-outline:hover {
    transform: translateY(-4px);
}

.btn-outline:hover {
    background: #fff;
    color: #063b78;
}


/* =====================================================
   SECTION HEADING
===================================================== */

.section-heading {
    max-width: 720px;
    margin-bottom: 45px;
}

.section-label {
    color: #b28724;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 2.5px;
}

.section-label.light {
    color: #e1b94d;
}

.section-heading h2 {
    margin-top: 12px;

    color: #063b78;

    font-size: clamp(32px,5vw,45px);

    line-height: 1.15;
}

.section-heading h2 span {
    color: #b28724;
}

.section-heading p {
    margin-top: 12px;

    color: #758799;

    font-size: 12px;
}


/* =====================================================
   CONTACT INFORMATION
===================================================== */

.contact-info-section {
    padding: 95px 0;

    background: #fff;
}

.contact-info-grid {
    display: grid;

    grid-template-columns: repeat(2,1fr);

    gap: 18px;
}

.contact-card {
    display: flex;

    align-items: flex-start;

    gap: 18px;

    padding: 27px;

    background: #f7f9fb;

    border: 1px solid #e0e8ef;

    transition:
        transform .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;
}

.contact-card:hover {
    transform: translateY(-6px);

    border-color: #d6aa35;

    box-shadow: 0 18px 40px rgba(0,40,80,.09);
}

.contact-card-icon {
    width: 52px;
    height: 52px;

    flex-shrink: 0;

    display: grid;
    place-items: center;

    background: #063b78;
    color: #fff;

    font-size: 21px;
}

.whatsapp-card .contact-card-icon {
    background: #25d366;
}

.contact-card span {
    display: block;

    color: #b28724;

    font-size: 8px;
    font-weight: 900;

    letter-spacing: 1.5px;
}

.contact-card h3 {
    margin-top: 4px;

    color: #17324d;

    font-size: 17px;

    word-break: break-word;
}

.contact-card p {
    margin-top: 5px;

    color: #8495a4;

    font-size: 10px;
}

.contact-card a {
    display: inline-block;

    margin-top: 12px;

    color: #063b78;

    font-size: 10px;
    font-weight: 900;
}

.contact-card a b {
    margin-left: 5px;

    color: #b28724;
}


/* =====================================================
   MAIN CONTACT
===================================================== */

.contact-main {
    padding: 100px 0;

    background: #f5f7fa;
}

.contact-main-grid {
    display: grid;

    grid-template-columns: .85fr 1.15fr;

    gap: 70px;

    align-items: start;
}

.contact-details h2 {
    margin-top: 13px;

    color: #063b78;

    font-size: clamp(34px,5vw,48px);

    line-height: 1.1;
}

.contact-details h2 span {
    color: #b28724;
}

.contact-lead {
    max-width: 500px;

    margin-top: 17px;

    color: #758799;

    font-size: 13px;

    line-height: 1.85;
}


/* =====================================================
   QUICK CONTACT
===================================================== */

.quick-contact {
    margin-top: 27px;

    display: flex;
    flex-direction: column;

    gap: 12px;
}

.quick-item {
    display: flex;

    align-items: center;

    gap: 14px;

    padding: 15px 17px;

    background: #fff;

    border: 1px solid #e1e8ee;

    transition: .25s ease;
}

.quick-item:hover {
    transform: translateX(5px);

    border-color: #d6aa35;

    box-shadow: 0 12px 28px rgba(0,40,80,.07);
}

.quick-icon {
    width: 45px;
    height: 45px;

    flex-shrink: 0;

    display: grid;
    place-items: center;

    background: #063b78;

    color: #fff;

    font-size: 17px;
}

.quick-icon.whatsapp {
    background: #25d366;
}

.quick-item strong {
    display: block;

    color: #17324d;

    font-size: 12px;
}

.quick-item span {
    display: block;

    margin-top: 2px;

    color: #8495a4;

    font-size: 10px;
}


/* =====================================================
   CONTACT NOTE
===================================================== */

.contact-note {
    margin-top: 25px;

    padding: 19px;

    background: #eef5fa;

    border-left: 3px solid #d6aa35;
}

.contact-note strong {
    color: #063b78;

    font-size: 12px;
}

.contact-note p {
    margin-top: 5px;

    color: #718698;

    font-size: 10px;

    line-height: 1.7;
}


/* =====================================================
   FORM BOX
===================================================== */

.contact-form-box {
    position: relative;

    padding: 40px;

    background: #fff;

    border: 1px solid #e0e8ef;

    box-shadow: 0 20px 55px rgba(0,40,80,.08);
}

.form-header > span {
    color: #b28724;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 2px;
}

.form-header h3 {
    margin-top: 10px;

    color: #063b78;

    font-size: 32px;

    line-height: 1.15;
}

.form-header p {
    margin-top: 7px;

    color: #758799;

    font-size: 11px;
}


/* =====================================================
   FORM
===================================================== */

#contactFormElement {
    margin-top: 28px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;

    margin-bottom: 7px;

    color: #29455e;

    font-size: 10px;
    font-weight: 800;
}

.form-group label span {
    color: #9aa8b5;
    font-weight: 400;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    border: 1px solid #d8e1e9;

    background: #fff;

    color: #17324d;

    outline: none;

    font-size: 12px;

    transition:
        border-color .25s ease,
        box-shadow .25s ease;
}

.form-group input,
.form-group select {
    height: 48px;

    padding: 0 14px;
}

.form-group textarea {
    min-height: 125px;

    padding: 13px 14px;

    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #a3afbb;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #063b78;

    box-shadow:
        0 0 0 3px rgba(6,59,120,.08);
}

.error-message {
    display: block;

    margin-top: 4px;

    color: #d43d3d;

    font-size: 9px;
}

.message-bottom {
    display: flex;

    justify-content: space-between;

    gap: 10px;
}

#messageCount {
    color: #9aa8b5;

    font-size: 9px;
}


/* =====================================================
   FORM SUBMIT
===================================================== */

.form-submit {
    width: 100%;

    min-height: 50px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    border: 0;

    background: #063b78;
    color: #fff;

    cursor: pointer;

    font-size: 11px;
    font-weight: 900;

    transition: .3s ease;
}

.form-submit:hover {
    background: #d6aa35;
    color: #062d55;

    transform: translateY(-2px);
}

.form-submit:disabled {
    opacity: .65;
    cursor: wait;
    transform: none;
}


/* =====================================================
   FORM SUCCESS
===================================================== */

.form-success {
    display: none;

    margin-top: 20px;

    padding: 20px;

    align-items: center;

    gap: 15px;

    background: #eef9f2;

    border: 1px solid #ccebd9;

    color: #17683a;
}

.form-success.show {
    display: flex;
}

.form-success > div strong {
    display: block;

    font-size: 15px;
}

.form-success > div p {
    margin-top: 2px;

    color: #638171;

    font-size: 10px;
}


/* =====================================================
   HOURS
===================================================== */

.hours-section {
    padding: 85px 0;

    background: #031f3d;
}

.hours-box {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 60px;

    padding: 60px;

    background:
        linear-gradient(
            120deg,
            #063b78,
            #07538b
        );
}

.hours-content h2 {
    margin-top: 13px;

    color: #fff;

    font-size: clamp(34px,5vw,50px);

    line-height: 1.1;
}

.hours-content h2 span {
    color: #dfb744;
}

.hours-content p {
    max-width: 450px;

    margin-top: 17px;

    color: #c4d4e2;

    font-size: 12px;

    line-height: 1.8;
}

.hours-list {
    display: flex;

    flex-direction: column;

    justify-content: center;
}

.hours-row {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 18px 0;

    border-bottom: 1px solid rgba(255,255,255,.14);
}

.hours-row:first-child {
    border-top: 1px solid rgba(255,255,255,.14);
}

.hours-row span {
    color: #c4d4e2;

    font-size: 11px;
}

.hours-row strong {
    color: #fff;

    font-size: 11px;

    text-align: right;
}


/* =====================================================
   LOCATION
===================================================== */

.location-section {
    padding: 90px 0;

    background: #fff;
}

.location-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    overflow: hidden;

    box-shadow: 0 20px 50px rgba(0,35,70,.12);
}

.location-content {
    padding: 60px 55px;

    background: #031f3d;
}

.location-content h2 {
    margin-top: 13px;

    color: #fff;

    font-size: clamp(35px,5vw,52px);

    line-height: 1.1;
}

.location-content h2 span {
    color: #dfb744;
}

.location-content > p {
    max-width: 450px;

    margin-top: 17px;

    color: #b8c9d8;

    font-size: 12px;

    line-height: 1.8;
}

.location-details {
    margin-top: 30px;

    display: flex;

    flex-direction: column;

    gap: 17px;
}

.location-details > div {
    padding-bottom: 14px;

    border-bottom: 1px solid rgba(255,255,255,.1);
}

.location-details span {
    display: block;

    color: #dfb744;

    font-size: 8px;
    font-weight: 900;

    letter-spacing: 1.5px;
}

.location-details strong,
.location-details a {
    display: block;

    margin-top: 3px;

    color: #fff;

    font-size: 12px;
}

.location-details a:hover {
    color: #dfb744;
}


/* =====================================================
   MAP
===================================================== */

.map-box {
    min-height: 390px;
}

.map-placeholder {
    position: relative;

    width: 100%;
    height: 100%;
    min-height: 390px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #dce8f1,
            #cbd9e4
        );

    text-align: center;
}

.map-placeholder::before,
.map-placeholder::after {
    content: "";

    position: absolute;

    border: 1px solid rgba(6,59,120,.12);

    border-radius: 50%;
}

.map-placeholder::before {
    width: 280px;
    height: 280px;
}

.map-placeholder::after {
    width: 190px;
    height: 190px;
}

.map-icon {
    position: relative;
    z-index: 2;

    width: 70px;
    height: 70px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: #063b78;
    color: #fff;

    font-size: 28px;

    box-shadow: 0 15px 35px rgba(0,40,80,.2);
}

.map-placeholder h3 {
    position: relative;
    z-index: 2;

    margin-top: 18px;

    color: #063b78;

    font-size: 15px;
}

.map-placeholder p {
    position: relative;
    z-index: 2;

    color: #718698;

    font-size: 10px;
}

.map-placeholder a {
    position: relative;
    z-index: 2;

    margin-top: 15px;

    padding: 11px 16px;

    background: #063b78;
    color: #fff;

    font-size: 9px;
    font-weight: 900;

    transition: .25s ease;
}

.map-placeholder a:hover {
    background: #d6aa35;
    color: #062d55;
}


/* =====================================================
   FAQ
===================================================== */

.faq-section {
    padding: 90px 0;

    background: #f5f7fa;
}

.faq-list {
    max-width: 900px;
}

.faq-item {
    margin-bottom: 10px;

    background: #fff;

    border: 1px solid #e0e8ef;
}

.faq-question {
    width: 100%;

    min-height: 62px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 16px 20px;

    border: 0;

    background: #fff;

    color: #17324d;

    cursor: pointer;

    text-align: left;

    font-size: 12px;
    font-weight: 800;
}

.faq-question b {
    width: 28px;
    height: 28px;

    display: grid;
    place-items: center;

    flex-shrink: 0;

    background: #063b78;
    color: #fff;

    font-size: 17px;

    transition: .25s ease;
}

.faq-question:hover {
    color: #063b78;
}

.faq-answer {
    display: none;

    padding: 0 20px 20px;
}

.faq-item.open .faq-answer {
    display: block;
}

.faq-item.open .faq-question b {
    background: #d6aa35;
    color: #062d55;

    transform: rotate(45deg);
}

.faq-answer p {
    color: #758799;

    font-size: 11px;

    line-height: 1.8;
}


/* =====================================================
   FINAL CTA
===================================================== */

.final-cta {
    padding: 75px 0;

    background: #fff;
}

.final-cta-box {
    padding: 45px 50px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 35px;

    background:
        linear-gradient(
            110deg,
            #063b78,
            #07538b
        );
}

.final-cta-box > div:first-child > span {
    color: #dfb744;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 2px;
}

.final-cta-box h2 {
    margin-top: 8px;

    color: #fff;

    font-size: 31px;
}

.final-cta-box p {
    margin-top: 7px;

    color: #c4d4e2;

    font-size: 11px;
}

.final-actions {
    display: flex;

    gap: 9px;

    flex-shrink: 0;
}

.final-call,
.final-whatsapp {
    min-width: 125px;
    min-height: 45px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 12px 18px;

    font-size: 10px;
    font-weight: 900;

    transition: .3s ease;
}

.final-call {
    background: #d6aa35;
    color: #062d55;
}

.final-whatsapp {
    border: 1px solid rgba(255,255,255,.45);

    background: rgba(255,255,255,.04);

    color: #fff;
}

.final-call:hover,
.final-whatsapp:hover {
    transform: translateY(-3px);
}

.final-whatsapp:hover {
    background: #25d366;
    border-color: #25d366;
}


/* =====================================================
   FOOTER
===================================================== */

.footer {
    padding: 58px 0 0;

    background: #021b34;

    color: #9fb2c4;
}

.footer-grid {
    display: grid;

    grid-template-columns: 1.5fr 1fr 1fr 1fr;

    gap: 45px;
}

.footer-logo {
    color: #fff;

    font-size: 17px;
}

.footer-grid > div:first-child > p {
    margin-top: 4px;

    font-size: 10px;
}

.footer-text {
    max-width: 240px;

    margin-top: 15px !important;

    line-height: 1.7;
}

.footer-column {
    display: flex;

    flex-direction: column;

    gap: 9px;
}

.footer-column strong {
    margin-bottom: 6px;

    color: #fff;

    font-size: 11px;
}

.footer-column a,
.footer-column span {
    color: #9fb2c4;

    font-size: 10px;
}

.footer-column a:hover {
    color: #dfb744;
}

.footer-bottom {
    margin-top: 45px;

    padding: 18px 0;

    display: flex;

    justify-content: space-between;

    gap: 20px;

    border-top: 1px solid rgba(255,255,255,.09);

    font-size: 8px;
}


/* =====================================================
   FLOATING CONTACT
===================================================== */

.floating-contact {
    position: fixed;

    right: 18px;
    bottom: 18px;

    z-index: 9999;

    display: flex;

    flex-direction: column;

    gap: 10px;
}

.floating-contact a {
    width: 52px;
    height: 52px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    box-shadow:
        0 7px 22px rgba(0,0,0,.20);

    font-size: 11px;
    font-weight: 900;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.floating-contact a:hover {
    transform: scale(1.1);

    box-shadow:
        0 10px 28px rgba(0,0,0,.28);
}

.float-whatsapp {
    background: #25d366;
    color: #fff;
}

.float-call {
    background: #063b78;
    color: #fff;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1100px) {

    .desktop-nav {
        gap: 12px;
    }

    .desktop-nav a {
        font-size: 9px;
    }

    .header-btn {
        padding: 10px 12px;
    }

    .contact-main-grid {
        gap: 40px;
    }

    .hours-box {
        gap: 35px;
        padding: 45px;
    }

    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
    }
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 760px) {

    .container {
        width: 92%;
    }


    /* TOP BAR */

    .top-inner {
        min-height: 32px;
    }

    .top-left span:first-child {
        display: none;
    }

    .top-right {
        margin-left: auto;
    }


    /* HEADER */

    .desktop-nav,
    .header-btn {
        display: none;
    }

    .menu-btn {
        display: block;

        margin-left: auto;
    }

    .header-inner {
        min-height: 70px;

        gap: 9px;
    }

    .lic-logo {
        width: 45px;
        height: 45px;
    }

    .brand-line {
        height: 34px;
    }

    .ms-logo {
        width: 42px;
        height: 42px;

        font-size: 11px;
    }

    .brand-name strong {
        font-size: 13px;
    }

    .brand-name small {
        font-size: 8px;
    }


    /* HERO */

    .contact-hero {
        min-height: 540px;
    }

    .contact-hero-content {
        padding: 70px 0;
    }

    .contact-hero h1 {
        font-size: 43px;

        letter-spacing: -1px;
    }

    .contact-hero p {
        font-size: 12px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
    }


    /* CONTACT INFO */

    .contact-info-section {
        padding: 70px 0;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;

        gap: 14px;
    }

    .contact-card {
        padding: 20px;
    }


    /* MAIN CONTACT */

    .contact-main {
        padding: 70px 0;
    }

    .contact-main-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .contact-details h2 {
        font-size: 36px;
    }

    .contact-form-box {
        padding: 28px 20px;
    }

    .form-header h3 {
        font-size: 29px;
    }


    /* HOURS */

    .hours-section {
        padding: 65px 0;
    }

    .hours-box {
        grid-template-columns: 1fr;

        gap: 35px;

        padding: 35px 25px;
    }

    .hours-row {
        flex-direction: column;

        align-items: flex-start;

        gap: 4px;
    }

    .hours-row strong {
        text-align: left;
    }


    /* LOCATION */

    .location-section {
        padding: 65px 0;
    }

    .location-grid {
        grid-template-columns: 1fr;
    }

    .location-content {
        padding: 50px 25px;
    }

    .map-box,
    .map-placeholder {
        min-height: 300px;
    }


    /* FAQ */

    .faq-section {
        padding: 65px 0;
    }

    .faq-question {
        padding: 15px;

        font-size: 11px;
    }

    .faq-answer {
        padding: 0 15px 18px;
    }


    /* FINAL CTA */

    .final-cta {
        padding: 55px 0;
    }

    .final-cta-box {
        display: block;

        padding: 32px 25px;
    }

    .final-cta-box h2 {
        font-size: 27px;
    }

    .final-actions {
        margin-top: 25px;

        display: grid;

        grid-template-columns: 1fr 1fr;

        gap: 8px;
    }

    .final-call,
    .final-whatsapp {
        width: 100%;
    }


    /* FOOTER */

    .footer-grid {
        grid-template-columns: 1fr 1fr;

        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;

        align-items: flex-start;
    }


    /* FLOATING */

    .floating-contact {
        right: 14px;
        bottom: 14px;
    }

    .floating-contact a {
        width: 48px;
        height: 48px;
    }
}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 430px) {

    .brand-name {
        display: none;
    }

    .contact-hero h1 {
        font-size: 36px;
    }

    .contact-hero {
        min-height: 510px;
    }

    .contact-card {
        padding: 17px;
        gap: 12px;
    }

    .contact-card-icon {
        width: 44px;
        height: 44px;

        font-size: 17px;
    }

    .contact-card h3 {
        font-size: 13px;
    }

    .contact-form-box {
        padding: 24px 16px;
    }

    .location-content {
        padding: 45px 22px;
    }

    .final-actions {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .floating-contact {
        right: 12px;
        bottom: 12px;
    }

    .floating-contact a {
        width: 46px;
        height: 46px;
    }
}


/* =====================================================
   FINAL RESPONSIVE FIX - LOCATION / GOOGLE MAP
   ===================================================== */

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

.location-section,
.location-section .container,
.location-grid,
.location-content,
.map-box,
.map-placeholder {
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
}

.location-grid {
    width: 100%;
}

.map-box {
    width: 100%;
    overflow: hidden;
}

.map-placeholder {
    width: 100%;
    overflow: hidden;
}

.map-placeholder iframe {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    border: 0 !important;
    box-sizing: border-box !important;
}

.location-content,
.location-content > p,
.location-details,
.location-details > div,
.location-details strong,
.location-details a {
    overflow-wrap: anywhere;
    word-break: break-word;
}

.map-placeholder h3 {
    width: 90%;
    max-width: 520px;
    box-sizing: border-box;
    overflow-wrap: anywhere;
}

@media (max-width: 760px) {

    .location-section {
        width: 100%;
        padding: 60px 0 !important;
        overflow: hidden !important;
    }

    .location-section > .container {
        width: 92% !important;
        max-width: 1200px !important;
        margin: 0 auto !important;
    }

    .location-grid {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        overflow: hidden !important;
        box-shadow: 0 14px 35px rgba(0,35,70,.12);
    }

    .location-content {
        width: 100% !important;
        max-width: 100% !important;
        padding: 42px 22px !important;
        overflow: hidden !important;
    }

    .location-content h2 {
        width: 100% !important;
        max-width: 100% !important;
        font-size: clamp(34px, 10vw, 46px) !important;
        line-height: 1.08 !important;
        letter-spacing: -1px;
    }

    .location-content > p {
        width: 100% !important;
        max-width: 100% !important;
        font-size: 12px !important;
        line-height: 1.8 !important;
    }

    .location-details {
        width: 100% !important;
        max-width: 100% !important;
        gap: 16px !important;
    }

    .location-details > div {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        padding-bottom: 13px !important;
    }

    .location-details strong,
    .location-details a {
        width: 100% !important;
        max-width: 100% !important;
        font-size: 12px !important;
        line-height: 1.65 !important;
        white-space: normal !important;
    }

    .map-box {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        height: 360px !important;
        min-height: 360px !important;
        overflow: hidden !important;
    }

    .map-placeholder {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        height: 360px !important;
        min-height: 360px !important;
        overflow: hidden !important;
    }

    .map-placeholder h3 {
        width: 88% !important;
        max-width: 88% !important;
        font-size: 14px !important;
        line-height: 1.4 !important;
        margin-top: 15px !important;
    }

    .map-placeholder iframe {
        width: 100% !important;
        max-width: 100% !important;
        height: 360px !important;
        min-width: 0 !important;
        display: block !important;
    }
}

@media (max-width: 430px) {

    .location-section {
        padding: 50px 0 !important;
    }

    .location-content {
        padding: 38px 20px !important;
    }

    .location-content h2 {
        font-size: 34px !important;
    }

    .map-box,
    .map-placeholder {
        height: 310px !important;
        min-height: 310px !important;
    }

    .map-placeholder iframe {
        height: 310px !important;
    }

    .map-placeholder h3 {
        font-size: 13px !important;
    }
}
