/* ================= MOBILE NAV ================= */

@media (max-width: 768px) {

    .header-wrapper {
        flex-wrap: wrap;
    }

    .nav-menu {
        width: 100%;
        margin-top: 10px;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 10px;
        background: #111;
        padding: 15px;
        display: none;
    }

    .nav-menu ul.show {
        display: flex;
    }

    /* MOBILE TOGGLE BUTTON */
    .menu-toggle {
        display: block;
        cursor: pointer;
        font-size: 22px;
        color: #fff;
    }

}



/* ================= HERO TITLE ================= */

.hero-title {
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: 1px;

    /* Responsive scaling */
    font-size: clamp(32px, 5vw, 64px);
}

/* Subtext responsive */
.hero-subtext {
    font-size: clamp(14px, 1.5vw, 18px);
    line-height: 1.6;
}

/* Fix manual <br> issue on mobile */
.hero-subtext br {
    display: block;
}

/* ================= MOBILE FIX ================= */

@media (max-width: 768px) {

    .hero-left {
        text-align: center;
        padding: 40px 0px;
    }

    .hero-title {
        font-size: 45px;
    }

    .hero-subtext {
        font-size: 14px;
    }

    /* Remove forced line breaks on small screens */
    .hero-subtext br {
        display: none;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-plus {
        display: none;
    }
}

/* ================= SMALL MOBILE ================= */

@media (max-width: 480px) {

    .hero-title {
        font-size: 45px;
		text-align:center;
    }

    .hero-subtext {
        font-size: 13px;
    }
}








/* DESKTOP HIDE TOGGLE */
.menu-toggle {
    display: none;
}


@media (max-width: 768px) {

    .header-wrapper {
        flex-wrap: nowrap;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
    }

    .nav-menu ul {
        flex-direction: column;
        background: #111;
        padding: 20px;
        display: none; /* FIX: not open by default */
    }

    .nav-menu ul.show {
        display: flex;
    }

    .menu-toggle {
        display: block;
        font-size: 22px;
        color: #fff;
        cursor: pointer;
    }

    /* HIDE DESKTOP ELEMENTS */
    .nav-menu ul {
        gap: 20px;
    }

    .header-cta {
        display: none; /* move CTA inside menu if needed later */
    }
}


@media (max-width: 992px) {

    .hero-image-box {
        width: 100%;
        max-width: 420px;
    }

    .pink-main {
        top: -40px;
        right: 60px;
        width: 200px;
        height: 120px;
    }

    .pink-step {
        top: 30px;
        right: 160px;
        width: 110px;
        height: 70px;
    }

    .orange-top {
        top: -40px;
        width: 70px;
        height: 120px;
    }

    .orange-bottom {
        left: 20px;
        width: 90px;
        height: 60px;
    }
}

@media (max-width: 576px) {

    .hero-image-box {
        max-width: 100%;
    }

    .pink-main {
        right: 20px;
        width: 140px;
        height: 40px;
    }

    .pink-step {
        right: 90px;
        width: 80px;
        height: 540px;
    }

    .orange-top {
        width: 50px;
        height: 40px;
    }

    .orange-bottom {
        width: 70px;
        height: 40px;
    }
}







/* ================= INTRO RESPONSIVE ================= */

@media (max-width: 992px) {

    .intro-title {
        font-size: 48px;
    }

    .intro-img {
        width: 140px;
    }

    .intro-img-left {
        left: -20px;
    }

    .intro-img-right {
        right: -20px;
    }
}

@media (max-width: 768px) {

    .intro-section {
        padding: 80px 20px;
    }

    .intro-title {
        font-size: 36px;
    }

    .intro-text {
        font-size: 14px;
    }

    /* hide floating images for clean mobile */
    .intro-img {
        display: none;
    }
}


/*team*/

@media (max-width: 480px) {

    .intro-title {
        font-size: 28px;
        line-height: 1.2;
    }

    .intro-tag {
        font-size: 12px;
    }
}




/* ================= RESPONSIVE TICKER ================= */

@media (max-width: 992px) {
    .ticker-track {
        font-size: 42px;
        gap: 50px;
    }
}

@media (max-width: 600px) {
    .ticker-track {
        font-size: 28px;
        gap: 30px;
    }

    .ticker-section {
        padding: 25px 0;
    }
}




/* team */
@media (max-width: 992px) {

    .team-section {
        padding: 80px 40px;
    }

    .team-header h2 {
        font-size: 48px;
    }

    .team-card {
        flex: 0 0 calc(50% - 15px);
    }
}

@media (max-width: 576px) {

    .team-section {
        padding: 60px 20px;
    }

    .team-header {
        flex-direction: column;
        gap: 20px;
    }

    .team-header h2 {
        font-size: 34px;
        line-height: 1.2;
    }

    .team-card {
        flex: 0 0 85%;
    }

    .team-arrows {
        display: none;
    }
}



/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
    .contact-title {
        font-size: 56px;
    }

    .contact-form {
        flex-direction: column;
        gap: 10px;
    }

    .contact-form button {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .contact-section {
        padding: 100px 15px;
    }

    .contact-title {
        font-size: 38px;
    }

    .contact-sub {
        font-size: 13px;
    }

    .corner {
        width: 70px;
        height: 70px;
    }

    .top-left { top: 20px; left: 20px; }
    .top-right { top: 20px; right: 20px; }
    .bottom-left { bottom: 40px; left: 20px; }
    .bottom-right { bottom: 40px; right: 20px; }
}



/* ================= LEGAL RESPONSIVE ================= */

@media (max-width: 992px) {

    .legal-section {
        padding: 120px 20px 60px;
    }

    .legal-section h1 {
        font-size: 36px;
    }

    .legal-section h2 {
        font-size: 20px;
    }

    .legal-section p {
        font-size: 15px;
    }

}

@media (max-width: 600px) {

    .legal-section h1 {
        font-size: 28px;
    }

    .legal-section .subtitle {
        font-size: 14px;
    }

    .legal-section h2 {
        font-size: 18px;
    }

}

/* ================= BREADCRUMB RESPONSIVE ================= */

@media (max-width: 768px) {

    .breadcrumb-sf360 {
        font-size: 12px;
        gap: 6px;
        margin-bottom: 15px;
    }

    .breadcrumb-sf360 .divider {
        font-size: 12px;
    }

}

@media (max-width: 768px) {

    .form-row {
        flex-direction: column;
    }

    .contact-form-wrapper {
        padding: 0 15px;
    }

    .submit-btn {
        width: 100%;
    }
}


@media (max-width: 768px) {

    .form-row {
        flex-direction: column;
    }

    .contact-form-wrapper {
        padding: 0 15px;
    }

    .submit-btn {
        width: 100%;
    }
}