/* =====================================================
   BRAND SYSTEM
===================================================== */
:root {
    --primary: #0b2260;
    --accent: #ff5e14;
    --light: #f8f9fa;
    scrollbar-color:#ff5e14;
}

/* =====================================================
   GENERAL
===================================================== */
body {
    font-family: "Segoe UI", system-ui, sans-serif;
    background: #fff;
    color: #111;
    margin: 0;
}

/* =====================================================
   HERO (CLEAN & STABLE)
===================================================== */

#contact-hero {
    min-height: 85svh; /* mobile-safe viewport */
    background: var(--primary);
    overflow: hidden; /* prevent internal scrolling */
}

.hero-wrapper {
    display: flex;
    align-items: center;
    min-height: inherit;
}

/* HERO TEXT */
.hero-text {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* HERO IMAGE */
.hero-image {
    flex: 1;
    min-height: 85svh;
    aspect-ratio: 16 / 9;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* HERO TITLE */
.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: 2px;
}

/* HERO CTA AND DYNAMIC TEXT */
.hero-cta {
    margin-top: 1.5rem;
}

.hero-dynamic-text {
    margin-top: 1rem;
    font-size: 1.25rem;
    color: #fff;
    font-weight: 600;
}

/* =====================================================
   HERO – MOBILE & TABLET
===================================================== */

@media (max-width: 991px) {
    .hero-wrapper {
        flex-direction: column;
    }

    .hero-text {
        text-align: center;
        padding: 2.5rem 1.5rem;
    }

    .hero-image {
        min-height: 40vh;
    }
}

@media (max-width: 576px) {
    #contact-hero {
        min-height: 90svh;
    }

    .hero-image {
        min-height: 30vh;
    }
}

/* =====================================================
   CONTACT SECTION
===================================================== */
#contact-main {
    background: #fff;
    padding: 2rem 0;
}

.contact-card {
    background: var(--light);
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 12px;
}

.contact-label {
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 1px;
}

.contact-divider {
    height: 4px;
    width: 60px;
    background: var(--accent);
    margin-top: 15px;
}

/* =====================================================
   FORM
===================================================== */
.contact-form-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}

.form-control {
    padding: 14px;
    border-radius: 10px;
    border: 1px solid #ddd;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: none;
}

/* =====================================================
   BUTTONS
===================================================== */
.btn-primary-custom {
    background-color: var(--primary);
    color: #ffffff;
    border: none;
    border-radius: 0.375rem;
    padding: 0.75rem 1.5rem;
    font-weight: 700;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.btn-primary-custom:hover {
    background: var(--accent);
    color: #000;
}

/* =====================================================
   GOOGLE MAP
===================================================== */
.map-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 ratio */
    overflow: hidden;
}

.map-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 768px) {
    .map-wrapper {
        height: 320px;
    }
}

/* =====================================================
   CONTACT CARDS RESPONSIVE
===================================================== */
@media (max-width: 991px) {
    #contact-main .col-lg-4,
    #contact-main .col-lg-8 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 20px;
    }
}

@media (min-width: 992px) {
    #contact-main .col-lg-4 {
        flex: 0 0 45%;
        max-width: 45%;
    }

    #contact-main .col-lg-8 {
        flex: 0 0 55%;
        max-width: 55%;
    }
}

.contact-text {
    margin-top: 0.75rem;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--primary);
}

.contact-text a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.contact-text a:hover {
    color: var(--accent);
}

.contact-text b {
    display: block;
}

/* =====================================================
   FOOTER
===================================================== */
.site-footer {
    background: var(--primary);
    color: #fff;
    padding: 30px 0;
    margin-top: 60px;
}

.info-link-foot {
    color: #fff;
}

.info-link-foot:hover {
    text-decoration: underline;
    color: var(--accent);
}

/* Footer responsive */
@media (max-width: 576px) {
    .site-footer {
        padding: 20px 10px;
        text-align: center;
    }

    .site-footer h5,
    .site-footer p,
    .site-footer a {
        font-size: 0.9rem;
    }

    .contact-card svg {
        width: 48px;
        height: 48px;
    }
}
