* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --font-dm: 'DM Sans', sans-serif;
    --font-inter: 'Inter', sans-serif;
    --font-roboto: 'Roboto', sans-serif;
    --font-sora: 'Sora', sans-serif;
}
/* ================= HELP & SUPPORT ================= */

.help-support-section {
    padding: 90px 0;
    background: #ffffff;
}

.help-title {
    font-size: 32px;
    font-weight: 600;
    font-family: var(--font-inter);
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.help-subtitle {
    font-size: 14px;
    font-family: var(--font-inter);
    color: #1b1a1a !important;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Headings */
.form-heading {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
}

.form-subtext {
    font-size: 13px;
    color: #666;
    margin-bottom: 20px;
}

/* Inputs */
.custom-input {
    border: 1px solid #e0e0e0;
    border-radius: 2px;
    padding: 10px 12px;
    font-size: 14px;
    box-shadow: none;
}

.custom-input:focus {
    border-color: #2e7d32;
    box-shadow: none;
}

/* Submit Button */
.btn-submit {
    background: #1b7d3a;
    color: #fff;
    border: none;
    padding: 10px 22px;
    font-size: 13px;
    font-weight: 500;
    border-radius: 3px;
    transition: 0.3s;
}

.btn-submit:hover {
    background: #145c2b;
}

/* Message Button */
.btn-message {
    display: inline-block;
    border: 1px solid #000;
    padding: 10px 22px;
    font-size: 13px;
    background: #000 !important;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.btn-message:hover {
    background: #070707;
    color: #fff;
}

/* Contact Info */
.contact-info p {
    font-size: 14px;
    color: #444;
    margin-bottom: 6px;
}


/* ===== FULL WIDTH MAP – NO SCROLL FIX ===== */

/* ===== FULL WIDTH MAP FIX ===== */

.map-section-full {
    width: 100%;
    margin-top: 60px;
}

.map-header {
    max-width: 1200px;
    margin: 0 auto 20px;
    padding: 0 15px;
}

.map-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}

.map-subtitle {
    font-size: 14px;
    color: #666;
}

/* REAL FULL WIDTH MAP */
.map-box-full {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    height: 420px;
}

.map-box-full iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* Safety – no horizontal scroll */
body,
html {
    overflow-x: hidden;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
    .help-title {
        font-size: 24px;
    }

    .help-subtitle {
        font-size: 13px;
    }
}