/* ==========================
   GLOBAL RESET
========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    overflow-x: hidden;
}

/* ==========================
   NAVBAR
========================== */
nav {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 20px;
    background: #00000f;
}

nav .logo img {
    height: 100px;
    width: auto;
}

nav .call-btn {
    background: #00000f;
    color: #fff;
    padding: 10px 16px;
    border-radius: 6px;
    text-decoration: none;
    white-space: nowrap;
}

.btn-support.whatsapp {
    background: #25D366; /* WhatsApp green */
    color: #ffffff;
}

/* ==========================
   HELP SECTION
========================== */
.help-section {
    width: 100%;
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
    padding: 40px 20px;
}

.help-section h2 {
    font-size: 26px;
    margin-bottom: 20px;
    font-weight: 700;
}

.help-section h3 {
    font-size: 22px;
    margin-top: 35px;
    margin-bottom: 10px;
}

.help-section ul {
    list-style: none;
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 30px;
}

.help-section p {
    font-size: 15px;
    color: #444;
    margin-bottom: 20px;
}

/* ==========================
   BUTTONS
========================== */
.btn {
    display: inline-block;
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
}

.btn.primary {
    
    background: #00000f;
    color: #fff;
}

.btn.secondary,
.call-btn,
.whatsapp-btn {
    background: #00b140;

    color: #fff;
}

.btn-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 20px 0 30px;
}

/* ==========================
   SUPPORT SECTION
========================== */
.support-section {
    text-align: center;
    padding: 20px 20px;
}

.support-section h2 {
    font-size: 36px;
    color: #0071FF;
}

.support-section p {
    font-size: 18px;
    padding: 20px;
}

.support-buttons {
    display: flex;
    flex-direction: column;
    gap: 22px;
    max-width: 700px;
    margin: auto;
}

.btn-support {
    padding: 18px 0;
    background: #00000f;
    color: #fff;
    border-radius: 6px;
    font-size: 18px;
    text-decoration: none;
}

/* ==========================
   CONTACT FORM
========================== */
.contact-form {
    width: 60%;
    margin: auto;
    padding: 20px 30px;
    display: flex;
}

.contact-form form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.contact-form button {
    padding: 15px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

/* ==========================
   IMAGE SECTIONS
========================== */
.phone-image,
.single-image-section,
.single-image-last {
    text-align: center;
    padding: 20px 0;
}

.phone-image img {
    width: 160px;
}

.single-image-section img,
.single-image-last img {
    width: 100%;
    max-width: 900px;
}

/* ==========================
   TWO IMAGE SPLIT
========================== */
.two-image-split {
    text-align: center;
    padding: 10px 20px;
}

.two-image-split h2 {
    font-size: 28px;
    margin-bottom: 30px;
}

.two-img-container {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.img-box {
    width: 45%;
}

.img-box img {
    width: 100%;
    border-radius: 10px;
}

/* ==========================
   SUPPORT DETAILS / BLOCKS
========================== */
.support-details {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

.support-block {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.support-block h3 {
    font-size: 24px;
    color: #0071ff;
}

.support-block p {
    font-size: 17px;
    line-height: 1.5;
}

.btn-support-info {
    background: #00000f;
    color: white;
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;   /* important */
    margin-top: 10px; 
}

/* ==========================
   INSTANT HELP
========================== */
.instant-help {
    text-align: center;
    margin-top: 40px;
}

.help-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 25px;
    margin-bottom: 15px;
}

/* ==========================
   SECURITY REMINDER
========================== */
.security-reminder {
    margin-bottom: 40px;
}

/* ==========================
   FOOTER
========================== */

footer.footer {
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
    background: #000;
    color: #fff;
    text-align: center;
    padding: 60px 20px 30px;
}

.footer-content h2 {
    font-size: 26px;
    margin-bottom: 5px;
}

.footer-content .subtitle {
    font-size: 15px;
    opacity: .9;
    margin-bottom: 20px;
}

.footer-line {
    font-size: 14px;
    opacity: .85;
    margin: 6px 0;
}

/* ðŸ”¥ FIX: Make numbers + WhatsApp link white */
.footer-line a {
    color: #fff !important;
    text-decoration: none;
    font-weight: 600;
    opacity: 1;
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 15px;
    font-size: 15px;
    font-weight: 600;
    opacity: .7;
    border-top: 1px solid #333;
}





/* =====================================================
   RESPONSIVE CSS = ALL BREAKPOINTS AT BOTTOM
===================================================== */

/* ===== 992px ===== */
@media (max-width: 992px) {
    .two-img-container {
        flex-direction: column;
        gap: 30px;
    }

    .img-box {
        width: 100%;
    }

    .split-section {
        flex-direction: column;
        text-align: center;
        padding: 30px 15px !important;
    }

    .left-image,
    .right-text {
        width: 100%;
    }
}

/* ===== 768px ===== */
@media (max-width: 768px) {
    .contact-form {
        width: 90%;
        padding: 30px 15px;
    }
    .support-buttons {
        width: 95%;
    }
}

/* ===== 600px ===== */
@media (max-width: 600px) {
    .split-section {
        padding: 20px 10px !important;
        gap: 10px !important;
    }
    .support-section h2 {
        font-size: 28px;
    }
    .btn-support {
        font-size: 16px;
        padding: 15px 0;
    }
}

/* ===== 480px ===== */
@media (max-width: 480px) {

    nav .call-btn {
        font-size: 0 !important;
        padding: 10px 12px !important;
    }

    nav .call-btn::after {
        content: "+1 (859) 539-5236";
        font-size: 12px;
        color: #fff;
    }

    .help-buttons {
        gap: 10px;
        flex-direction: column;
    }

    .help-section h2 {
        font-size: 22px;
    }

    .help-section h3 {
        font-size: 18px;
    }
}