/*-----------------------------------------------------------------------------------

    Project Name: Coindox - ICO & Crypto Landing HTML Template
    Author: XpressBuddy -->> (https://themeforest.net/user/xpressbuddy)
    Support: wasimmia.info@gmail.com
    Description: Coindox - ICO & Crypto Landing HTML Template
    Developer: Mohammad Wasim Mia -> wasimmia.info@gmail.com
    Version: 1.0

-----------------------------------------------------------------------------------

    CSS INDEX
    ===================

	01. Theme default CSS
    02. header
    03. global
    04. hero
    05. about
    06. feature
    07. token
    08. roadmap
    09. team
    10. faq
    11. brand
    12. contact
    13. blog
    14. user option
    15. advantages
    16. solution
    17. pricing
    18. service
    19. product
    20. cta
    21. newslatter
    22. preloader
    23. backtotop
    24. breadcrumb
    25. sec-title
    

-----------------------------------------------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&amp;family=Plus+Jakarta+Sans:wght@300;400;500;600;700&amp;family=Titillium+Web:wght@400;600;700&amp;display=swap");
/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.logo-icon img {
    width: 200px;
}

body {
    font-family: 'Manrope', sans-serif;
    background: #F7F9FC;
    color: #020D1A;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 30px;
}
/* ===== COLOR VARIABLES ===== */
:root {
    --midnight: #071A2F;
    --royal: #1E5EFF;
    --gold: #D6B25E;
    --light: #F7F9FC;
    --white: #FFFFFF;
    --dark: #020D1A;
    --shadow: 0 20px 60px rgba(7, 26, 47, 0.12);
    --radius: 18px;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --shadow-gold: 0 15px 50px rgba(214, 178, 94, 0.25);
    --radius: 20px;
    --gradient-gold: linear-gradient(135deg, #D6B25E 0%, #F0D68A 50%, #D6B25E 100%);
    --gradient-royal: linear-gradient(135deg, #1E5EFF 0%, #4A7FFF 50%, #1E5EFF 100%);
    --glass-bg: rgba(255, 255, 255, 0.12);
    --glass-border: rgba(255, 255, 255, 0.18);
}
/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light);
}

::-webkit-scrollbar-thumb {
    background: var(--royal);
    border-radius: 10px;
}
/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes pulseGold {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(214, 178, 94, 0.4);
    }

    50% {
        box-shadow: 0 0 0 18px rgba(214, 178, 94, 0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate {
    animation: fadeUp 0.8s ease forwards;
}

.animate-delay-1 {
    animation-delay: 0.1s;
}

.animate-delay-2 {
    animation-delay: 0.2s;
}

.animate-delay-3 {
    animation-delay: 0.3s;
}

.animate-delay-4 {
    animation-delay: 0.4s;
}

.animate-delay-5 {
    animation-delay: 0.5s;
}
/* ============================================================
           ANIMATIONS
           ============================================================ */
@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(2deg);
    }
}

@keyframes pulseGold {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(214, 178, 94, 0.4);
    }

    50% {
        box-shadow: 0 0 0 20px rgba(214, 178, 94, 0);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.4;
    }

    50% {
        opacity: 0.8;
    }
}

@keyframes rotateSlow {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.animate-slide {
    animation: slideUp 0.8s ease forwards;
}

/* ============================================================
           BREADCRUMB SECTION - PREMIUM
           ============================================================ */
.breadcrumb {
    background: var(--midnight);
    padding: 24px 0 24px;
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid var(--gold);
    position: relative;
}

    .breadcrumb::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -20%;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(214, 178, 94, 0.08) 0%, transparent 70%);
        border-radius: 50%;
        animation: float 8s ease-in-out infinite;
    }

    .breadcrumb::after {
        content: '';
        position: absolute;
        bottom: -40%;
        left: -10%;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(30, 94, 255, 0.05) 0%, transparent 70%);
        border-radius: 50%;
        animation: float 10s ease-in-out infinite reverse;
    }

.breadcrumb__content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.breadcrumb__title {
    font-size: 34px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

    .breadcrumb__title i {
        color: var(--gold);
        margin-right: 12px;
        animation: pulseGold 2s ease-in-out infinite;
    }

    .breadcrumb__title::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: var(--gradient-gold);
        border-radius: 4px;
        box-shadow: 0 0 20px rgba(214, 178, 94, 0.3);
    }

.breadcrumb__subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    font-weight: 400;
    margin-top: 16px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

    .breadcrumb__subtitle i {
        color: var(--gold);
        margin: 0 6px;
        font-size: 6px;
        vertical-align: middle;
    }

/* Decorative floating particles */
.breadcrumb__particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0.15;
    animation: float 12s ease-in-out infinite;
}

    .particle:nth-child(1) {
        top: 15%;
        left: 10%;
        animation-delay: 0s;
        width: 8px;
        height: 8px;
    }

    .particle:nth-child(2) {
        top: 70%;
        left: 5%;
        animation-delay: 1.5s;
    }

    .particle:nth-child(3) {
        top: 25%;
        right: 15%;
        animation-delay: 3s;
        width: 10px;
        height: 10px;
        opacity: 0.1;
    }

    .particle:nth-child(4) {
        bottom: 20%;
        right: 8%;
        animation-delay: 0.8s;
    }

    .particle:nth-child(5) {
        top: 50%;
        left: 50%;
        animation-delay: 2.2s;
        width: 12px;
        height: 12px;
        opacity: 0.06;
    }

.breadcrumb__shape {
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 0.06;
    z-index: 1;
}

    .breadcrumb__shape img {
        max-width: 100%;
    }

/* ============================================================
           LOGIN FORM SECTION - PREMIUM GLASS
           ============================================================ */
.ico-contact {
    padding: 90px 0 100px;
    background: var(--light);
    position: relative;
    min-height: 75vh;
    overflow: hidden;
}

    /* Background decorative circles */
    .ico-contact::before {
        content: '';
        position: absolute;
        top: -30%;
        right: -10%;
        width: 700px;
        height: 700px;
        background: radial-gradient(circle, rgba(30, 94, 255, 0.04) 0%, transparent 70%);
        border-radius: 50%;
        animation: float 15s ease-in-out infinite;
    }

    .ico-contact::after {
        content: '';
        position: absolute;
        bottom: -30%;
        left: -10%;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(214, 178, 94, 0.04) 0%, transparent 70%);
        border-radius: 50%;
        animation: float 12s ease-in-out infinite reverse;
    }

.ico-contact__wrap {
    max-width: 560px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 52px 44px 44px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    position: relative;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: var(--transition);
    animation: slideUp 0.8s ease forwards;
}

    .ico-contact__wrap::before {
        content: '';
        display:none;
        position: absolute;
        top: -2px;
        left: -2px;
        right: -2px;
        bottom: -2px;
        background: var(--gradient-gold);
        border-radius: calc(var(--radius) + 2px);
        z-index: -1;
        opacity: 0.3;
        transition: var(--transition);
    }

    .ico-contact__wrap:hover::before {
        opacity: 0.6;
    }

    .ico-contact__wrap:hover {
        transform: translateY(-6px);
        box-shadow: 0 35px 90px rgba(7, 26, 47, 0.22);
    }

/* ===== LOGIN HEADER WITH ICON ===== */
.login-header {
    text-align: center;
    margin-bottom: 28px;
}

    .login-header .avatar-icon {
        width: 80px;
        height: 80px;
        background: var(--gradient-royal);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 14px;
        font-size: 34px;
        color: var(--white);
        box-shadow: 0 12px 40px rgba(30, 94, 255, 0.3);
        transition: var(--transition);
        position: relative;
    }

        .login-header .avatar-icon::after {
            content: '';
            position: absolute;
            top: -4px;
            left: -4px;
            right: -4px;
            bottom: -4px;
            border-radius: 50%;
            border: 2px solid var(--gold);
            opacity: 0.3;
            animation: pulseGold 2s ease-in-out infinite;
        }

        .login-header .avatar-icon:hover {
            transform: scale(1.05) rotate(-5deg);
            box-shadow: 0 18px 50px rgba(30, 94, 255, 0.4);
        }

.ico-contact__wrap .title {
    font-size: 26px;
    font-weight: 700;
    color: var(--midnight);
    text-align: center;
    margin-bottom: 4px;
    position: relative;
}

    .ico-contact__wrap .title span {
        color: var(--gold);
    }

.login-subtitle {
    text-align: center;
    color: #8A9BB0;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 24px;
}

    .login-subtitle i {
        color: var(--gold);
        margin: 0 4px;
    }

/* ===== TEMPDATA MESSAGE ===== */
.ico-contact__wrap .alert-message {
    text-align: center;
    padding: 12px 18px;
    background: rgba(214, 178, 94, 0.10);
    border-radius: 12px;
    border-left: 4px solid var(--gold);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 18px;
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

    .ico-contact__wrap .alert-message i {
        font-size: 18px;
    }

/* ===== FORM ELEMENTS - PREMIUM ===== */
.contact__form .row {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact__form .col-lg-12 {
    width: 100%;
    position: relative;
}

/* Input wrapper with icon */
.input-wrapper {
    position: relative;
}

    .input-wrapper .input-icon {
        position: absolute;
        left: 18px;
        top: 50%;
        transform: translateY(-50%);
        color: #9AA6B5;
        font-size: 16px;
        transition: var(--transition);
        z-index: 3;
    }

        .input-wrapper .input-icon i {
            transition: var(--transition);
        }

    .input-wrapper .toggle-password {
        position: absolute;
        right: 18px;
        top: 50%;
        transform: translateY(-50%);
        color: #9AA6B5;
        font-size: 16px;
        cursor: pointer;
        transition: var(--transition);
        z-index: 3;
        background: none;
        border: none;
        padding: 4px;
    }

        .input-wrapper .toggle-password:hover {
            color: var(--gold);
        }

.form-control {
    width: 100%;
    padding: 16px 20px 16px 50px;
    border: 2px solid #E8ECF2;
    border-radius: 14px;
    font-size: 15px;
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    color: var(--dark);
    background: var(--light);
    transition: var(--transition);
    outline: none;
    height: 58px;
}

    .form-control:focus {
        border-color: var(--royal);
        box-shadow: 0 0 0 5px rgba(30, 94, 255, 0.12);
        background: var(--white);
    }

        .form-control:focus ~ .input-icon,
        .form-control:focus + .input-icon {
            color: var(--royal);
        }

    .form-control::placeholder {
        color: #9AA6B5;
        font-weight: 400;
        font-size: 14px;
    }

    .form-control.h-56-px {
        height: 58px;
    }

    .form-control.bg-neutral-50 {
        background: var(--light);
    }

    .form-control.radius-12 {
        border-radius: 14px;
    }

/* ===== SUBMIT BUTTON - PREMIUM ===== */
.thm-btn {
    width: 100%;
    padding: 18px 30px;
    background: var(--gradient-royal);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 700;
    font-family: 'Manrope', sans-serif;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 10px 35px rgba(30, 94, 255, 0.35);
}

    .thm-btn i {
        font-size: 18px;
        transition: var(--transition);
    }

    .thm-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -200%;
        width: 200%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: var(--transition);
        transform: skewX(-25deg);
    }

    .thm-btn:hover::before {
        left: 200%;
    }

    .thm-btn:hover {
        transform: translateY(-4px) scale(1.02);
        box-shadow: 0 18px 50px rgba(30, 94, 255, 0.45);
    }

        .thm-btn:hover i {
            transform: translateX(4px);
        }

    .thm-btn:active {
        transform: translateY(0) scale(0.98);
    }

    /* Button shimmer effect */
    .thm-btn .shimmer {
        position: absolute;
        top: 0;
        left: -100%;
        width: 300%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
        animation: shimmer 3s ease-in-out infinite;
    }

.ico-contact__btn {
    margin-top: 4px;
}

/* ===== FORGOT PASSWORD - PREMIUM ===== */
.forgot-link {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

    .forgot-link i {
        color: var(--gold);
        font-size: 13px;
    }

    .forgot-link a {
        color: var(--royal);
        transition: var(--transition);
        position: relative;
        font-weight: 600;
        padding: 4px 0;
    }

        .forgot-link a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient-gold);
            transition: var(--transition);
        }

        .forgot-link a:hover {
            color: var(--gold);
        }

            .forgot-link a:hover::after {
                width: 100%;
            }

/* ===== DIVIDER ===== */
.divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 18px 0 8px;
}

    .divider::before,
    .divider::after {
        content: '';
        flex: 1;
        height: 1px;
        background: linear-gradient(90deg, transparent, #D6B25E, transparent);
    }

    .divider span {
        color: #9AA6B5;
        font-size: 12px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 2px;
        white-space: nowrap;
    }

/* ===== REGISTER LINK ===== */
.register-link {
    text-align: center;
    margin-top: 14px;
    font-size: 14px;
    color: #8A9BB0;
}

    .register-link a {
        color: var(--gold);
        font-weight: 700;
        transition: var(--transition);
        position: relative;
    }

        .register-link a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient-gold);
            transition: var(--transition);
        }

        .register-link a:hover {
            color: var(--royal);
        }

            .register-link a:hover::after {
                width: 100%;
            }

/* ============================================================
           SHAPES / DECORATIVE ELEMENTS
           ============================================================ */
.ico-contact__shape-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

    .ico-contact__shape-img .shape {
        position: absolute;
        animation: float 10s ease-in-out infinite;
    }

    .ico-contact__shape-img .shape--1 {
        top: -50px;
        right: -50px;
        opacity: 0.06;
        animation-delay: 0s;
    }

    .ico-contact__shape-img .shape--2 {
        bottom: -50px;
        left: -50px;
        opacity: 0.06;
        animation-delay: 3s;
    }

    .ico-contact__shape-img .shape img {
        max-width: 140px;
    }

.ico-contact__shape {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

    .ico-contact__shape .shape {
        position: absolute;
        opacity: 0.04;
        animation: float 12s ease-in-out infinite;
    }

    .ico-contact__shape .shape--1 {
        bottom: 0;
        left: 0;
        animation-delay: 0s;
    }

    .ico-contact__shape .shape--2 {
        top: 15%;
        right: 0;
        animation-delay: 2s;
    }

    .ico-contact__shape .shape--3 {
        bottom: 25%;
        right: 12%;
        animation-delay: 4s;
    }

    .ico-contact__shape .shape img {
        max-width: 110px;
    }

/* ============================================================
           RESPONSIVE DESIGN - All Devices
           ============================================================ */

/* ===== TABLET (768px - 1024px) ===== */
@media (max-width: 1024px) {
    .breadcrumb__title {
        font-size: 36px;
    }

    .ico-contact__wrap {
        max-width: 480px;
        padding: 42px 34px 36px;
    }

        .ico-contact__wrap .title {
            font-size: 24px;
        }

    .login-header .avatar-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
}

/* ===== MOBILE LANDSCAPE (576px - 767px) ===== */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .breadcrumb {
        padding: 38px 0 32px;
    }

    .breadcrumb__title {
        font-size: 30px;
    }

        .breadcrumb__title::after {
            width: 50px;
            bottom: -8px;
            height: 3px;
        }

    .breadcrumb__subtitle {
        font-size: 12px;
        letter-spacing: 2px;
    }

    .ico-contact {
        padding: 55px 0 65px;
    }

    .ico-contact__wrap {
        max-width: 100%;
        padding: 34px 24px 30px;
        border-radius: 16px;
    }

        .ico-contact__wrap .title {
            font-size: 22px;
        }

    .login-header .avatar-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .form-control {
        padding: 14px 16px 14px 44px;
        font-size: 14px;
        height: 52px !important;
    }

    .input-wrapper .input-icon {
        left: 14px;
        font-size: 14px;
    }

    .thm-btn {
        padding: 15px 24px;
        font-size: 15px;
    }

    .forgot-link {
        font-size: 13px;
    }

    .ico-contact__shape-img .shape img,
    .ico-contact__shape .shape img {
        max-width: 70px;
    }

    .ico-contact__shape-img .shape--1 {
        top: -30px;
        right: -30px;
    }

    .ico-contact__shape-img .shape--2 {
        bottom: -30px;
        left: -30px;
    }
}

/* ===== SMALL MOBILE (320px - 575px) ===== */
@media (max-width: 480px) {
    .container {
        padding: 0 14px;
    }

    .breadcrumb {
        padding: 30px 0 26px;
    }

    .breadcrumb__title {
        font-size: 22px;
        letter-spacing: 1px;
    }

        .breadcrumb__title i {
            margin-right: 8px;
            font-size: 18px;
        }

        .breadcrumb__title::after {
            width: 35px;
            height: 2px;
            bottom: -6px;
        }

    .breadcrumb__subtitle {
        font-size: 10px;
        letter-spacing: 1.5px;
        margin-top: 12px;
    }

        .breadcrumb__subtitle i {
            font-size: 4px;
            margin: 0 4px;
        }

    .particle {
        display: none;
    }

    .ico-contact {
        padding: 40px 0 50px;
    }

    .ico-contact__wrap {
        padding: 26px 18px 22px;
        border-radius: 14px;
    }

        .ico-contact__wrap .title {
            font-size: 19px;
        }

    .login-subtitle {
        font-size: 12px;
        margin-bottom: 18px;
    }

    .login-header .avatar-icon {
        width: 52px;
        height: 52px;
        font-size: 20px;
        margin-bottom: 10px;
    }

        .login-header .avatar-icon::after {
            border-width: 1.5px;
        }

    .form-control {
        padding: 12px 14px 12px 38px;
        font-size: 13px;
        height: 46px !important;
        border-radius: 12px;
    }

        .form-control::placeholder {
            font-size: 12px;
        }

    .input-wrapper .input-icon {
        left: 12px;
        font-size: 13px;
    }

    .input-wrapper .toggle-password {
        right: 12px;
        font-size: 13px;
    }

    .thm-btn {
        padding: 13px 20px;
        font-size: 14px;
        border-radius: 40px;
        gap: 8px;
    }

        .thm-btn i {
            font-size: 15px;
        }

    .forgot-link {
        font-size: 12px;
        margin-top: 16px;
    }

    .divider {
        margin: 14px 0 4px;
        gap: 10px;
    }

        .divider span {
            font-size: 10px;
            letter-spacing: 1px;
        }

    .register-link {
        font-size: 12px;
        margin-top: 10px;
    }

    .ico-contact__wrap .alert-message {
        font-size: 12px;
        padding: 10px 14px;
        border-radius: 10px;
    }

        .ico-contact__wrap .alert-message i {
            font-size: 14px;
        }

    .ico-contact__shape-img .shape img,
    .ico-contact__shape .shape img {
        max-width: 50px;
    }

    .ico-contact__shape-img .shape--1 {
        top: -20px;
        right: -20px;
    }

    .ico-contact__shape-img .shape--2 {
        bottom: -20px;
        left: -20px;
    }

    .ico-contact__shape .shape--1 img,
    .ico-contact__shape .shape--2 img,
    .ico-contact__shape .shape--3 img {
        max-width: 50px;
    }
}

/* ===== EXTRA SMALL (below 320px) ===== */
@media (max-width: 359px) {
    .breadcrumb__title {
        font-size: 18px;
    }

    .ico-contact__wrap {
        padding: 20px 12px 18px;
    }

        .ico-contact__wrap .title {
            font-size: 17px;
        }

    .form-control {
        font-size: 12px;
        height: 42px !important;
        padding: 10px 12px 10px 34px;
    }

    .input-wrapper .input-icon {
        font-size: 11px;
        left: 10px;
    }

    .thm-btn {
        font-size: 12px;
        padding: 10px 16px;
    }

    .login-header .avatar-icon {
        width: 44px;
        height: 44px;
        font-size: 17px;
    }
}

/* ============================================================
                       REGISTRATION FORM SECTION - PREMIUM GLASS
                       ============================================================ */
.ico-contact {
    padding: 90px 0 100px;
    background: var(--light);
    position: relative;
    min-height: 75vh;
    overflow: hidden;
}

    /* Background decorative circles */
    .ico-contact::before {
        content: '';
        position: absolute;
        top: -30%;
        right: -10%;
        width: 700px;
        height: 700px;
        background: radial-gradient(circle, rgba(30, 94, 255, 0.04) 0%, transparent 70%);
        border-radius: 50%;
        animation: float 15s ease-in-out infinite;
    }

    .ico-contact::after {
        content: '';
        position: absolute;
        bottom: -30%;
        left: -10%;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(214, 178, 94, 0.04) 0%, transparent 70%);
        border-radius: 50%;
        animation: float 12s ease-in-out infinite reverse;
    }

.ico-contact__wrap {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 52px 44px 44px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    position: relative;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: var(--transition);
    animation: slideUp 0.8s ease forwards;
}

    .ico-contact__wrap::before {
        content: '';
        position: absolute;
        top: -2px;
        left: -2px;
        right: -2px;
        bottom: -2px;
        background: var(--gradient-gold);
        border-radius: calc(var(--radius) + 2px);
        z-index: -1;
        opacity: 0.3;
        transition: var(--transition);
    }

    .ico-contact__wrap:hover::before {
        opacity: 0.6;
    }

    .ico-contact__wrap:hover {
        transform: translateY(-6px);
        box-shadow: 0 35px 90px rgba(7, 26, 47, 0.22);
    }

/* ===== REGISTRATION HEADER WITH ICON ===== */
.register-header {
    text-align: center;
    margin-bottom: 28px;
}

    .register-header .avatar-icon {
        width: 80px;
        height: 80px;
        background: var(--gradient-royal);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 14px;
        font-size: 34px;
        color: var(--white);
        box-shadow: 0 12px 40px rgba(30, 94, 255, 0.3);
        transition: var(--transition);
        position: relative;
    }

        .register-header .avatar-icon::after {
            content: '';
            position: absolute;
            top: -4px;
            left: -4px;
            right: -4px;
            bottom: -4px;
            border-radius: 50%;
            border: 2px solid var(--gold);
            opacity: 0.3;
            animation: pulseGold 2s ease-in-out infinite;
        }

        .register-header .avatar-icon:hover {
            transform: scale(1.05) rotate(-5deg);
            box-shadow: 0 18px 50px rgba(30, 94, 255, 0.4);
        }

.ico-contact__wrap .title {
    font-size: 26px;
    font-weight: 700;
    color: var(--midnight);
    text-align: center;
    margin-bottom: 4px;
    position: relative;
}

    .ico-contact__wrap .title span {
        color: var(--gold);
    }

.register-subtitle {
    text-align: center;
    color: #8A9BB0;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 24px;
}

    .register-subtitle i {
        color: var(--gold);
        margin: 0 4px;
    }

/* ===== TEMPDATA MESSAGE ===== */
.ico-contact__wrap .alert-message {
    text-align: center;
    padding: 12px 18px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-left: 4px solid #00ff14;
    background: rgba(0, 255, 20, 0.08);
    color: #00cc11;
}

    .ico-contact__wrap .alert-message i {
        font-size: 18px;
    }

    .ico-contact__wrap .alert-message.error {
        border-left-color: #ff6060;
        background: rgba(255, 96, 96, 0.08);
        color: #ff6060;
    }

/* ===== FORM ELEMENTS - PREMIUM ===== */
.contact__form .row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact__form .col-lg-12 {
    grid-column: 1 / -1;
    width: 100%;
    position: relative;
}

.contact__form .col-lg-6 {
    width: 100%;
    position: relative;
}

/* Input wrapper with icon */
.input-wrapper {
    position: relative;
}

    .input-wrapper .input-icon {
        position: absolute;
        left: 18px;
        top: 50%;
        transform: translateY(-50%);
        color: #9AA6B5;
        font-size: 15px;
        transition: var(--transition);
        z-index: 3;
    }

        .input-wrapper .input-icon i {
            transition: var(--transition);
        }

        .input-wrapper .input-icon.password-icon {
            right: 18px;
            left: auto;
            cursor: pointer;
        }

            .input-wrapper .input-icon.password-icon:hover {
                color: var(--gold);
            }

.form-control {
    width: 100%;
    padding: 16px 20px 16px 50px;
    border: 2px solid #E8ECF2;
    border-radius: 14px;
    font-size: 15px;
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    color: var(--dark);
    background: var(--light);
    transition: var(--transition);
    outline: none;
    height: 58px;
}

    .form-control:focus {
        border-color: var(--royal);
        box-shadow: 0 0 0 5px rgba(30, 94, 255, 0.12);
        background: var(--white);
    }

        .form-control:focus ~ .input-icon,
        .form-control:focus + .input-icon {
            color: var(--royal);
        }

    .form-control::placeholder {
        color: #9AA6B5;
        font-weight: 400;
        font-size: 14px;
    }

    .form-control.h-56-px {
        height: 58px;
    }

    .form-control.bg-neutral-50 {
        background: var(--light);
    }

    .form-control.radius-12 {
        border-radius: 14px;
    }

    .form-control[readonly] {
        background: rgba(214, 178, 94, 0.06);
        border-color: rgba(214, 178, 94, 0.2);
        color: var(--midnight);
        font-weight: 600;
    }

        .form-control[readonly] ~ .input-icon {
            color: var(--gold);
        }

/* ===== LABELS ===== */
.field-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--midnight);
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}

    .field-label i {
        color: var(--gold);
        margin-right: 4px;
    }

    .field-label .required {
        color: #ff6060;
        margin-left: 2px;
    }

/* Validation messages */
#chem, #chm, #chtxp, #chsp {
    font-size: 12px;
    font-weight: 600;
    padding: -2px 0;
    display: block;
    min-height: 20px;
}

#chem {
    color: #ff6060;
}

#chm {
    color: #ff6060;
}

#chtxp {
    color: #ff6060;
}

#chsp {
    color: var(--gold);
}

/* ===== SUBMIT BUTTON - PREMIUM ===== */
.thm-btn {
    width: 100%;
    padding: 18px 30px;
    background: var(--gradient-royal);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 700;
    font-family: 'Manrope', sans-serif;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 10px 35px rgba(30, 94, 255, 0.35);
}

    .thm-btn i {
        font-size: 18px;
        transition: var(--transition);
    }

    .thm-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -200%;
        width: 200%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: var(--transition);
        transform: skewX(-25deg);
    }

    .thm-btn:hover::before {
        left: 200%;
    }

    .thm-btn:hover {
        transform: translateY(-4px) scale(1.02);
        box-shadow: 0 18px 50px rgba(30, 94, 255, 0.45);
    }

        .thm-btn:hover i {
            transform: translateX(4px);
        }

    .thm-btn:active {
        transform: translateY(0) scale(0.98);
    }

    /* Button shimmer effect */
    .thm-btn .shimmer {
        position: absolute;
        top: 0;
        left: -100%;
        width: 300%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
        animation: shimmer 3s ease-in-out infinite;
    }

.ico-contact__btn {
    margin-top: 4px;
    grid-column: 1 / -1;
}

/* ===== DIVIDER ===== */
.divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 18px 0 8px;
    grid-column: 1 / -1;
}

    .divider::before,
    .divider::after {
        content: '';
        flex: 1;
        height: 1px;
        background: linear-gradient(90deg, transparent, #D6B25E, transparent);
    }

    .divider span {
        color: #9AA6B5;
        font-size: 12px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 2px;
        white-space: nowrap;
    }

/* ===== LOGIN LINK ===== */
.login-link {
    text-align: center;
    margin-top: 14px;
    font-size: 14px;
    color: #8A9BB0;
    grid-column: 1 / -1;
}

    .login-link a {
        color: var(--gold);
        font-weight: 700;
        transition: var(--transition);
        position: relative;
    }

        .login-link a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient-gold);
            transition: var(--transition);
        }

        .login-link a:hover {
            color: var(--royal);
        }

            .login-link a:hover::after {
                width: 100%;
            }

/* ============================================================
                       SHAPES / DECORATIVE ELEMENTS
                       ============================================================ */
.ico-contact__shape-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

    .ico-contact__shape-img .shape {
        position: absolute;
        animation: float 10s ease-in-out infinite;
    }

    .ico-contact__shape-img .shape--1 {
        top: -50px;
        right: -50px;
        opacity: 0.06;
        animation-delay: 0s;
    }

    .ico-contact__shape-img .shape--2 {
        bottom: -50px;
        left: -50px;
        opacity: 0.06;
        animation-delay: 3s;
    }

    .ico-contact__shape-img .shape img {
        max-width: 140px;
    }

.ico-contact__shape {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

    .ico-contact__shape .shape {
        position: absolute;
        opacity: 0.04;
        animation: float 12s ease-in-out infinite;
    }

    .ico-contact__shape .shape--1 {
        bottom: 0;
        left: 0;
        animation-delay: 0s;
    }

    .ico-contact__shape .shape--2 {
        top: 15%;
        right: 0;
        animation-delay: 2s;
    }

    .ico-contact__shape .shape--3 {
        bottom: 25%;
        right: 12%;
        animation-delay: 4s;
    }

    .ico-contact__shape .shape img {
        max-width: 110px;
    }

/* ============================================================
                       RESPONSIVE DESIGN - All Devices
                       ============================================================ */

/* ===== TABLET (768px - 1024px) ===== */
@media (max-width: 1024px) {
    .breadcrumb__title {
        font-size: 36px;
    }

    .ico-contact__wrap {
        max-width: 700px;
        padding: 42px 34px 36px;
    }

        .ico-contact__wrap .title {
            font-size: 24px;
        }

    .register-header .avatar-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }

    .contact__form .row {
        grid-template-columns: 1fr 1fr;
    }
}

/* ===== MOBILE LANDSCAPE (576px - 767px) ===== */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .breadcrumb {
        padding: 38px 0 32px;
    }

    .breadcrumb__title {
        font-size: 30px;
    }

        .breadcrumb__title::after {
            width: 50px;
            bottom: -8px;
            height: 3px;
        }

    .breadcrumb__subtitle {
        font-size: 12px;
        letter-spacing: 2px;
    }

    .ico-contact {
        padding: 55px 0 65px;
    }

    .ico-contact__wrap {
        max-width: 100%;
        padding: 34px 24px 30px;
        border-radius: 16px;
    }

        .ico-contact__wrap .title {
            font-size: 22px;
        }

    .register-header .avatar-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .contact__form .row {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .form-control {
        padding: 14px 16px 14px 44px;
        font-size: 14px;
        height: 52px !important;
    }

    .input-wrapper .input-icon {
        left: 14px;
        font-size: 14px;
    }

    .thm-btn {
        padding: 15px 24px;
        font-size: 15px;
    }

    .ico-contact__shape-img .shape img,
    .ico-contact__shape .shape img {
        max-width: 70px;
    }

    .ico-contact__shape-img .shape--1 {
        top: -30px;
        right: -30px;
    }

    .ico-contact__shape-img .shape--2 {
        bottom: -30px;
        left: -30px;
    }

    .field-label {
        font-size: 11px;
    }
}

/* ===== SMALL MOBILE (320px - 575px) ===== */
@media (max-width: 480px) {
    .container {
        padding: 0 14px;
    }

    .breadcrumb {
        padding: 30px 0 26px;
    }

    .breadcrumb__title {
        font-size: 22px;
        letter-spacing: 1px;
    }

        .breadcrumb__title i {
            margin-right: 8px;
            font-size: 18px;
        }

        .breadcrumb__title::after {
            width: 35px;
            height: 2px;
            bottom: -6px;
        }

    .breadcrumb__subtitle {
        font-size: 10px;
        letter-spacing: 1.5px;
        margin-top: 12px;
    }

        .breadcrumb__subtitle i {
            font-size: 4px;
            margin: 0 4px;
        }

    .particle {
        display: none;
    }

    .ico-contact {
        padding: 40px 0 50px;
    }

    .ico-contact__wrap {
        padding: 26px 18px 22px;
        border-radius: 14px;
    }

        .ico-contact__wrap .title {
            font-size: 19px;
        }

    .register-subtitle {
        font-size: 12px;
        margin-bottom: 18px;
    }

    .register-header .avatar-icon {
        width: 52px;
        height: 52px;
        font-size: 20px;
        margin-bottom: 10px;
    }

        .register-header .avatar-icon::after {
            border-width: 1.5px;
        }

    .form-control {
        padding: 12px 14px 12px 38px;
        font-size: 13px;
        height: 46px !important;
        border-radius: 12px;
    }

        .form-control::placeholder {
            font-size: 12px;
        }

    .input-wrapper .input-icon {
        left: 12px;
        font-size: 13px;
    }

    .thm-btn {
        padding: 13px 20px;
        font-size: 14px;
        border-radius: 40px;
        gap: 8px;
    }

        .thm-btn i {
            font-size: 15px;
        }

    .divider {
        margin: 14px 0 4px;
        gap: 10px;
    }

        .divider span {
            font-size: 10px;
            letter-spacing: 1px;
        }

    .login-link {
        font-size: 12px;
        margin-top: 10px;
    }

    .ico-contact__wrap .alert-message {
        font-size: 12px;
        padding: 10px 14px;
        border-radius: 10px;
    }

        .ico-contact__wrap .alert-message i {
            font-size: 14px;
        }

    .ico-contact__shape-img .shape img,
    .ico-contact__shape .shape img {
        max-width: 50px;
    }

    .ico-contact__shape-img .shape--1 {
        top: -20px;
        right: -20px;
    }

    .ico-contact__shape-img .shape--2 {
        bottom: -20px;
        left: -20px;
    }

    .ico-contact__shape .shape--1 img,
    .ico-contact__shape .shape--2 img,
    .ico-contact__shape .shape--3 img {
        max-width: 50px;
    }

    .field-label {
        font-size: 10px;
    }

    #chem, #chm, #chtxp, #chsp {
        font-size: 10px;
        min-height: 16px;
    }
}

/* ===== EXTRA SMALL (below 320px) ===== */
@media (max-width: 359px) {
    .breadcrumb__title {
        font-size: 18px;
    }

    .ico-contact__wrap {
        padding: 20px 12px 18px;
    }

        .ico-contact__wrap .title {
            font-size: 17px;
        }

    .form-control {
        font-size: 12px;
        height: 42px !important;
        padding: 10px 12px 10px 34px;
    }

    .input-wrapper .input-icon {
        font-size: 11px;
        left: 10px;
    }

    .thm-btn {
        font-size: 12px;
        padding: 10px 16px;
    }

    .register-header .avatar-icon {
        width: 44px;
        height: 44px;
        font-size: 17px;
    }
}
/* ===== WELCOME HEADER WITH ICON ===== */
.welcome-header {
    text-align: center;
    margin-bottom: 28px;
}

    .welcome-header .success-icon {
        width: 100px;
        height: 100px;
        background: var(--gradient-gold);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 18px;
        font-size: 48px;
        color: var(--white);
        box-shadow: 0 12px 40px rgba(214, 178, 94, 0.4);
        transition: var(--transition);
        position: relative;
        animation: scalePulse 2s ease-in-out infinite;
    }

        .welcome-header .success-icon::after {
            content: '';
            position: absolute;
            top: -6px;
            left: -6px;
            right: -6px;
            bottom: -6px;
            border-radius: 50%;
            border: 3px solid var(--gold);
            opacity: 0.3;
            animation: pulseGold 2s ease-in-out infinite;
        }

        .welcome-header .success-icon i {
            filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.15));
        }

        .welcome-header .success-icon:hover {
            transform: scale(1.08) rotate(-5deg);
            box-shadow: 0 18px 50px rgba(214, 178, 94, 0.5);
        }

.ico-contact__wrap .title {
    font-size: 32px;
    font-weight: 800;
    color: var(--midnight);
    text-align: center;
    margin-bottom: 6px;
    position: relative;
}

    .ico-contact__wrap .title span {
        color: var(--gold);
    }

    .ico-contact__wrap .title i {
        color: var(--gold);
        margin-right: 8px;
    }

.welcome-subtitle {
    text-align: center;
    color: #8A9BB0;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 28px;
    line-height: 1.8;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

    .welcome-subtitle i {
        color: var(--gold);
        margin: 0 4px;
    }

/* ===== CREDENTIALS CARD ===== */
.credentials-card {
    background: var(--midnight);
    border-radius: 16px;
    padding: 28px 32px;
    margin-bottom: 28px;
    border: 1px solid rgba(214, 178, 94, 0.15);
    position: relative;
    overflow: hidden;
}

    .credentials-card::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -20%;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(214, 178, 94, 0.05) 0%, transparent 70%);
        border-radius: 50%;
    }

    .credentials-card::after {
        content: '';
        position: absolute;
        bottom: -30%;
        left: -10%;
        width: 200px;
        height: 200px;
        background: radial-gradient(circle, rgba(30, 94, 255, 0.05) 0%, transparent 70%);
        border-radius: 50%;
    }

.credential-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    z-index: 2;
}

    .credential-item:last-child {
        border-bottom: none;
    }

    .credential-item .label {
        display: flex;
        align-items: center;
        gap: 12px;
        color: rgba(255, 255, 255, 0.6);
        font-size: 14px;
        font-weight: 500;
    }

        .credential-item .label i {
            color: var(--gold);
            font-size: 16px;
            width: 20px;
            text-align: center;
        }

    .credential-item .value {
        color: var(--white);
        font-size: 16px;
        font-weight: 700;
        letter-spacing: 0.5px;
        background: rgba(255, 255, 255, 0.05);
        padding: 4px 16px;
        border-radius: 30px;
        border: 1px solid rgba(255, 255, 255, 0.06);
        font-family: 'Manrope', monospace;
        display: flex;
        align-items: center;
        gap: 10px;
    }

        .credential-item .value .copy-btn {
            background: none;
            border: none;
            color: rgba(255, 255, 255, 0.3);
            cursor: pointer;
            font-size: 13px;
            transition: var(--transition);
            padding: 2px 4px;
        }

            .credential-item .value .copy-btn:hover {
                color: var(--gold);
            }

/* ===== SUCCESS MESSAGE ===== */
.success-message {
    text-align: center;
    padding: 14px 20px;
    background: rgba(214, 178, 94, 0.08);
    border-radius: 12px;
    border-left: 4px solid var(--gold);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--gold);
    font-size: 14px;
    font-weight: 600;
}

    .success-message i {
        font-size: 20px;
    }

/* ===== DASHBOARD BUTTON - PREMIUM ===== */
.dashboard-btn-wrapper {
    text-align: center;
    margin-top: 4px;
}

.thm-btn {
    width: 100%;
    padding: 18px 30px;
    background: var(--gradient-royal);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 700;
    font-family: 'Manrope', sans-serif;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 10px 35px rgba(30, 94, 255, 0.35);
    text-decoration: none;
}

    .thm-btn i {
        font-size: 18px;
        transition: var(--transition);
    }

    .thm-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -200%;
        width: 200%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: var(--transition);
        transform: skewX(-25deg);
    }

    .thm-btn:hover::before {
        left: 200%;
    }

    .thm-btn:hover {
        transform: translateY(-4px) scale(1.02);
        box-shadow: 0 18px 50px rgba(30, 94, 255, 0.45);
        color: var(--white);
        text-decoration: none;
    }

        .thm-btn:hover i {
            transform: translateX(6px);
        }

    .thm-btn:active {
        transform: translateY(0) scale(0.98);
    }

    /* Button shimmer effect */
    .thm-btn .shimmer {
        position: absolute;
        top: 0;
        left: -100%;
        width: 300%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
        animation: shimmer 3s ease-in-out infinite;
    }

/* ===== DIVIDER ===== */
.divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 22px 0 16px;
}

    .divider::before,
    .divider::after {
        content: '';
        flex: 1;
        height: 1px;
        background: linear-gradient(90deg, transparent, #D6B25E, transparent);
    }

    .divider span {
        color: #9AA6B5;
        font-size: 12px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 2px;
        white-space: nowrap;
    }

/* ===== ADDITIONAL LINKS ===== */
.additional-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 16px;
    flex-wrap: wrap;
}

    .additional-links a {
        color: #8A9BB0;
        font-size: 13px;
        font-weight: 500;
        transition: var(--transition);
        display: flex;
        align-items: center;
        gap: 6px;
    }

        .additional-links a i {
            color: var(--gold);
            font-size: 12px;
        }

        .additional-links a:hover {
            color: var(--gold);
        }

            .additional-links a:hover i {
                transform: translateX(4px);
                transition: var(--transition);
            }

/* ============================================================
                       SHAPES / DECORATIVE ELEMENTS
                       ============================================================ */
.ico-contact__shape-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

    .ico-contact__shape-img .shape {
        position: absolute;
        animation: float 10s ease-in-out infinite;
    }

    .ico-contact__shape-img .shape--1 {
        top: -50px;
        right: -50px;
        opacity: 0.06;
        animation-delay: 0s;
    }

    .ico-contact__shape-img .shape--2 {
        bottom: -50px;
        left: -50px;
        opacity: 0.06;
        animation-delay: 3s;
    }

    .ico-contact__shape-img .shape img {
        max-width: 140px;
    }

.ico-contact__shape {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

    .ico-contact__shape .shape {
        position: absolute;
        opacity: 0.04;
        animation: float 12s ease-in-out infinite;
    }

    .ico-contact__shape .shape--1 {
        bottom: 0;
        left: 0;
        animation-delay: 0s;
    }

    .ico-contact__shape .shape--2 {
        top: 15%;
        right: 0;
        animation-delay: 2s;
    }

    .ico-contact__shape .shape--3 {
        bottom: 25%;
        right: 12%;
        animation-delay: 4s;
    }

    .ico-contact__shape .shape img {
        max-width: 110px;
    }

/* ============================================================
                       CONFETTI ANIMATION (Celebration Effect)
                       ============================================================ */
.confetti-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}

.confetti {
    position: absolute;
    width: 10px;
    height: 10px;
    top: -10px;
    animation: confettiFall linear infinite;
}

    .confetti:nth-child(1) {
        left: 10%;
        animation-duration: 4s;
        animation-delay: 0s;
        background: #D6B25E;
    }

    .confetti:nth-child(2) {
        left: 20%;
        animation-duration: 5s;
        animation-delay: 0.5s;
        background: #1E5EFF;
    }

    .confetti:nth-child(3) {
        left: 30%;
        animation-duration: 4.5s;
        animation-delay: 1s;
        background: #071A2F;
    }

    .confetti:nth-child(4) {
        left: 40%;
        animation-duration: 3.8s;
        animation-delay: 0.2s;
        background: #D6B25E;
        width: 8px;
        height: 14px;
    }

    .confetti:nth-child(5) {
        left: 50%;
        animation-duration: 5.2s;
        animation-delay: 0.8s;
        background: #1E5EFF;
        width: 12px;
        height: 8px;
    }

    .confetti:nth-child(6) {
        left: 60%;
        animation-duration: 4.2s;
        animation-delay: 1.5s;
        background: #F7F9FC;
    }

    .confetti:nth-child(7) {
        left: 70%;
        animation-duration: 4.8s;
        animation-delay: 0.3s;
        background: #D6B25E;
    }

    .confetti:nth-child(8) {
        left: 80%;
        animation-duration: 3.5s;
        animation-delay: 0.7s;
        background: #1E5EFF;
        width: 6px;
        height: 12px;
    }

    .confetti:nth-child(9) {
        left: 90%;
        animation-duration: 5.5s;
        animation-delay: 1.2s;
        background: #071A2F;
    }

    .confetti:nth-child(10) {
        left: 15%;
        animation-duration: 4s;
        animation-delay: 2s;
        background: #D6B25E;
        width: 14px;
        height: 6px;
    }

    .confetti:nth-child(11) {
        left: 45%;
        animation-duration: 4.5s;
        animation-delay: 1.8s;
        background: #1E5EFF;
    }

    .confetti:nth-child(12) {
        left: 75%;
        animation-duration: 5s;
        animation-delay: 2.5s;
        background: #D6B25E;
    }

/* ============================================================
                       RESPONSIVE DESIGN - All Devices
                       ============================================================ */

/* ===== TABLET (768px - 1024px) ===== */
@media (max-width: 1024px) {
    .breadcrumb__title {
        font-size: 36px;
    }

    .ico-contact__wrap {
        max-width: 600px;
        padding: 42px 34px 36px;
    }

        .ico-contact__wrap .title {
            font-size: 28px;
        }

    .welcome-header .success-icon {
        width: 80px;
        height: 80px;
        font-size: 36px;
    }

    .credentials-card {
        padding: 24px 28px;
    }

    .credential-item .value {
        font-size: 14px;
        padding: 3px 12px;
    }
}

/* ===== MOBILE LANDSCAPE (576px - 767px) ===== */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .breadcrumb {
        padding: 38px 0 32px;
    }

    .breadcrumb__title {
        font-size: 30px;
    }

        .breadcrumb__title::after {
            width: 50px;
            bottom: -8px;
            height: 3px;
        }

    .breadcrumb__subtitle {
        font-size: 12px;
        letter-spacing: 2px;
    }

    .ico-contact {
        padding: 55px 0 65px;
    }

    .ico-contact__wrap {
        max-width: 100%;
        padding: 34px 24px 30px;
        border-radius: 16px;
    }

        .ico-contact__wrap .title {
            font-size: 24px;
        }

    .welcome-subtitle {
        font-size: 14px;
    }

    .welcome-header .success-icon {
        width: 70px;
        height: 70px;
        font-size: 30px;
        margin-bottom: 14px;
    }

    .credentials-card {
        padding: 20px 18px;
    }

    .credential-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        padding: 10px 0;
    }

        .credential-item .label {
            font-size: 13px;
        }

        .credential-item .value {
            font-size: 14px;
            padding: 4px 12px;
            width: 100%;
            justify-content: space-between;
        }

    .thm-btn {
        padding: 15px 24px;
        font-size: 15px;
    }

    .additional-links {
        gap: 16px;
    }

        .additional-links a {
            font-size: 12px;
        }

    .ico-contact__shape-img .shape img,
    .ico-contact__shape .shape img {
        max-width: 70px;
    }

    .ico-contact__shape-img .shape--1 {
        top: -30px;
        right: -30px;
    }

    .ico-contact__shape-img .shape--2 {
        bottom: -30px;
        left: -30px;
    }
}

/* ===== SMALL MOBILE (320px - 575px) ===== */
@media (max-width: 480px) {
    .container {
        padding: 0 14px;
    }

    .breadcrumb {
        padding: 30px 0 26px;
    }

    .breadcrumb__title {
        font-size: 22px;
        letter-spacing: 1px;
    }

        .breadcrumb__title i {
            margin-right: 8px;
            font-size: 18px;
        }

        .breadcrumb__title::after {
            width: 35px;
            height: 2px;
            bottom: -6px;
        }

    .breadcrumb__subtitle {
        font-size: 10px;
        letter-spacing: 1.5px;
        margin-top: 12px;
    }

        .breadcrumb__subtitle i {
            font-size: 4px;
            margin: 0 4px;
        }

    .particle {
        display: none;
    }

    .ico-contact {
        padding: 40px 0 50px;
    }

    .ico-contact__wrap {
        padding: 26px 18px 22px;
        border-radius: 14px;
    }

        .ico-contact__wrap .title {
            font-size: 20px;
        }

            .ico-contact__wrap .title i {
                font-size: 18px;
            }

    .welcome-subtitle {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .welcome-header .success-icon {
        width: 60px;
        height: 60px;
        font-size: 26px;
        margin-bottom: 12px;
    }

        .welcome-header .success-icon::after {
            border-width: 2px;
        }

    .credentials-card {
        padding: 16px 14px;
        border-radius: 12px;
    }

    .credential-item {
        padding: 8px 0;
    }

        .credential-item .label {
            font-size: 12px;
            gap: 8px;
        }

            .credential-item .label i {
                font-size: 13px;
                width: 16px;
            }

        .credential-item .value {
            font-size: 13px;
            padding: 3px 10px;
            letter-spacing: 0.3px;
        }

            .credential-item .value .copy-btn {
                font-size: 11px;
            }

    .success-message {
        font-size: 12px;
        padding: 10px 14px;
        border-radius: 10px;
    }

        .success-message i {
            font-size: 16px;
        }

    .thm-btn {
        padding: 13px 20px;
        font-size: 14px;
        border-radius: 40px;
        gap: 8px;
    }

        .thm-btn i {
            font-size: 15px;
        }

    .divider {
        margin: 16px 0 10px;
        gap: 10px;
    }

        .divider span {
            font-size: 10px;
            letter-spacing: 1px;
        }

    .additional-links {
        gap: 12px;
        flex-direction: column;
        align-items: center;
    }

        .additional-links a {
            font-size: 12px;
        }

    .ico-contact__shape-img .shape img,
    .ico-contact__shape .shape img {
        max-width: 50px;
    }

    .ico-contact__shape-img .shape--1 {
        top: -20px;
        right: -20px;
    }

    .ico-contact__shape-img .shape--2 {
        bottom: -20px;
        left: -20px;
    }

    .ico-contact__shape .shape--1 img,
    .ico-contact__shape .shape--2 img,
    .ico-contact__shape .shape--3 img {
        max-width: 50px;
    }
    /* Hide confetti on mobile for performance */
    .confetti {
        display: none;
    }
}

/* ===== EXTRA SMALL (below 320px) ===== */
@media (max-width: 359px) {
    .breadcrumb__title {
        font-size: 18px;
    }

    .ico-contact__wrap {
        padding: 20px 12px 18px;
    }

        .ico-contact__wrap .title {
            font-size: 17px;
        }

    .welcome-header .success-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .credential-item .value {
        font-size: 11px;
        padding: 2px 8px;
    }

    .thm-btn {
        font-size: 12px;
        padding: 10px 16px;
    }
}

/* ============================================================
       TRADING SECTION
       ============================================================ */
.trading-section {
    padding: 80px 0;
    background: var(--light);
    position: relative;
    overflow: hidden;
}

    .trading-section::before {
        content: '';
        position: absolute;
        top: -30%;
        right: -10%;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(30, 94, 255, 0.03) 0%, transparent 70%);
        border-radius: 50%;
    }

    .trading-section .section-header {
        text-align: center;
        margin-bottom: 50px;
    }

    .trading-section .section-badge {
        display: inline-block;
        padding: 6px 20px;
        background: rgba(214, 178, 94, 0.10);
        color: var(--gold);
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        border-radius: 30px;
        margin-bottom: 10px;
    }

        .trading-section .section-badge i {
            margin-right: 6px;
        }

    .trading-section .section-title {
        font-size: 40px;
        font-weight: 800;
        color: var(--midnight);
        margin-bottom: 8px;
    }

        .trading-section .section-title span {
            color: var(--gold);
        }

    .trading-section .section-subtitle {
        font-size: 17px;
        color: #8A9BB0;
        font-weight: 400;
        max-width: 500px;
        margin: 0 auto;
    }

/* ===== TRADING GRID ===== */
.trading-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

.trading-content {
    animation: slideUp 0.6s ease forwards;
}

.trading-text h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--midnight);
    margin-bottom: 12px;
}

    .trading-text h3 i {
        color: var(--gold);
        margin-right: 10px;
    }

.trading-text > p {
    font-size: 16px;
    color: #5A6A7E;
    line-height: 1.8;
    margin-bottom: 24px;
}

.trading-highlights {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 20px;
    background: var(--white);
    border-radius: 12px;
    border-left: 3px solid var(--gold);
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(7, 26, 47, 0.04);
}

    .highlight-item:hover {
        transform: translateX(6px);
        box-shadow: 0 8px 30px rgba(7, 26, 47, 0.08);
    }

.highlight-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(214, 178, 94, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--gold);
    flex-shrink: 0;
}

.highlight-item h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--midnight);
    margin-bottom: 2px;
}

.highlight-item p {
    font-size: 14px;
    color: #5A6A7E;
    margin-bottom: 0;
    line-height: 1.6;
}

/* ===== TRADING IMAGE ===== */
.trading-image {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    animation: slideUp 0.6s ease forwards;
    animation-delay: 0.2s;
}

    .trading-image img {
        width: 100%;
        height: 400px;
        object-fit: cover;
        transition: var(--transition);
    }

    .trading-image:hover img {
        transform: scale(1.03);
    }

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 30px;
    background: linear-gradient(0deg, rgba(7, 26, 47, 0.8) 0%, transparent 100%);
}

.overlay-stats {
    display: flex;
    justify-content: space-around;
}

    .overlay-stats .stat-item {
        text-align: center;
        color: var(--white);
    }

    .overlay-stats .stat-number {
        display: block;
        font-size: 24px;
        font-weight: 800;
        color: var(--gold);
    }

    .overlay-stats .stat-label {
        display: block;
        font-size: 12px;
        font-weight: 400;
        color: rgba(255, 255, 255, 0.6);
        margin-top: 2px;
    }

/* ===== TRADING TYPES ===== */
.trading-types {
    margin-top: 20px;
}

.types-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--midnight);
    text-align: center;
    margin-bottom: 30px;
}

    .types-title i {
        color: var(--gold);
        margin-right: 10px;
    }

.types-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.type-card {
    background: var(--white);
    padding: 30px 24px;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid rgba(7, 26, 47, 0.04);
    transition: var(--transition);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

    .type-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: var(--gradient-gold);
        opacity: 0;
        transition: var(--transition);
    }

    .type-card:hover::before {
        opacity: 1;
    }

    .type-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-lg);
    }

.type-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(214, 178, 94, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 24px;
    color: var(--gold);
    transition: var(--transition);
}

.type-card:hover .type-icon {
    background: var(--gradient-gold);
    color: var(--white);
}

.type-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--midnight);
    margin-bottom: 6px;
}

.type-card p {
    font-size: 14px;
    color: #5A6A7E;
    line-height: 1.7;
    margin-bottom: 12px;
}

.type-tag {
    display: inline-block;
    padding: 3px 14px;
    background: rgba(214, 178, 94, 0.08);
    color: var(--gold);
    font-size: 11px;
    font-weight: 600;
    border-radius: 30px;
    letter-spacing: 0.5px;
}

/* ===== RESPONSIVE - TRADING ===== */
@media (max-width: 1024px) {
    .types-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .trading-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .trading-image img {
        height: 300px;
    }

    .trading-section .section-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .trading-section {
        padding: 60px 0;
    }

    .types-grid {
        grid-template-columns: 1fr 1fr;
    }

    .trading-section .section-title {
        font-size: 28px;
    }

    .trading-text h3 {
        font-size: 22px;
    }

    .overlay-stats .stat-number {
        font-size: 18px;
    }
}
@media (max-width: 644px) {
    .hero-right {
        width: 400px;
    }
}
    @media (max-width: 576px) {
        .types-grid {
            grid-template-columns: 1fr;
        }

        .trading-image img {
            height: 220px;
        }

        .overlay-stats {
            flex-direction: column;
            gap: 8px;
        }

        .highlight-item {
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .trading-section .section-title {
            font-size: 24px;
        }

        .image-overlay {
            padding: 16px 20px;
        }

        .trading-text > p {
            font-size: 15px;
        }
    }
    /* ============================================================
       CONTACT SECTION
       ============================================================ */
    .contact-section {
        padding: 80px 0;
        background: var(--white);
        position: relative;
        overflow: hidden;
    }

        .contact-section::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(214, 178, 94, 0.03) 0%, transparent 70%);
            border-radius: 50%;
        }

        .contact-section .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .contact-section .section-badge {
            display: inline-block;
            padding: 6px 20px;
            background: rgba(214, 178, 94, 0.10);
            color: var(--gold);
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            border-radius: 30px;
            margin-bottom: 10px;
        }

            .contact-section .section-badge i {
                margin-right: 6px;
            }

        .contact-section .section-title {
            font-size: 40px;
            font-weight: 800;
            color: var(--midnight);
            margin-bottom: 8px;
        }

            .contact-section .section-title span {
                color: var(--gold);
            }

        .contact-section .section-subtitle {
            font-size: 17px;
            color: #8A9BB0;
            font-weight: 400;
        }

    /* ===== CONTACT GRID ===== */
    .contact-grid {
        display: grid;
        grid-template-columns: 1fr 1.5fr;
        gap: 40px;
        align-items: start;
    }

    /* ===== CONTACT INFO ===== */
    .contact-info {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .info-card {
        background: var(--light);
        padding: 24px 20px;
        border-radius: var(--radius-sm);
        text-align: center;
        border: 1px solid rgba(7, 26, 47, 0.04);
        transition: var(--transition);
    }

        .info-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow);
            border-color: rgba(214, 178, 94, 0.12);
        }

    .info-icon {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: rgba(214, 178, 94, 0.08);
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 12px;
        font-size: 20px;
        color: var(--gold);
        transition: var(--transition);
    }

    .info-card:hover .info-icon {
        background: var(--gradient-gold);
        color: var(--white);
    }

    .info-card h4 {
        font-size: 15px;
        font-weight: 700;
        color: var(--midnight);
        margin-bottom: 4px;
    }

    .info-card p {
        font-size: 14px;
        color: #5A6A7E;
        line-height: 1.6;
        margin-bottom: 0;
    }

    /* ===== CONTACT FORM ===== */
    .contact-form-wrapper {
        animation: slideUp 0.6s ease forwards;
        animation-delay: 0.2s;
    }

    .contact-form-box {
        background: var(--light);
        padding: 36px 34px;
        border-radius: var(--radius);
        border: 1px solid rgba(7, 26, 47, 0.04);
        box-shadow: var(--shadow);
    }

        .contact-form-box h3 {
            font-size: 22px;
            font-weight: 700;
            color: var(--midnight);
            margin-bottom: 4px;
        }

            .contact-form-box h3 i {
                color: var(--gold);
                margin-right: 10px;
            }

        .contact-form-box > p {
            font-size: 14px;
            color: #8A9BB0;
            margin-bottom: 20px;
        }

    .contact-form .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .contact-form .form-group {
        margin-bottom: 16px;
    }

        .contact-form .form-group label {
            display: block;
            font-size: 13px;
            font-weight: 600;
            color: var(--midnight);
            margin-bottom: 4px;
        }

            .contact-form .form-group label i {
                color: var(--gold);
                margin-right: 6px;
            }

    .contact-form .form-control {
        width: 100%;
        padding: 12px 16px;
        border: 2px solid #E8ECF2;
        border-radius: 12px;
        font-size: 14px;
        font-family: 'Manrope', sans-serif;
        font-weight: 500;
        color: var(--dark);
        background: var(--white);
        transition: var(--transition);
        outline: none;
    }

        .contact-form .form-control:focus {
            border-color: var(--royal);
            box-shadow: 0 0 0 4px rgba(30, 94, 255, 0.08);
        }

        .contact-form .form-control::placeholder {
            color: #9AA6B5;
            font-weight: 400;
            font-size: 13px;
        }

    .contact-form textarea.form-control {
        resize: vertical;
        min-height: 100px;
    }

    .btn-submit {
        width: 100%;
        padding: 14px 30px;
        background: var(--gradient-royal);
        color: var(--white);
        border: none;
        border-radius: 50px;
        font-size: 16px;
        font-weight: 700;
        font-family: 'Manrope', sans-serif;
        cursor: pointer;
        transition: var(--transition);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        box-shadow: 0 8px 30px rgba(30, 94, 255, 0.25);
    }

        .btn-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 40px rgba(30, 94, 255, 0.35);
        }

        .btn-submit i {
            font-size: 16px;
            transition: var(--transition);
        }

        .btn-submit:hover i {
            transform: translateX(4px);
        }

    /* ===== RESPONSIVE - CONTACT ===== */
    @media (max-width: 1024px) {
        .contact-grid {
            grid-template-columns: 1fr;
        }

        .contact-info {
            grid-template-columns: repeat(4, 1fr);
        }
    }

    @media (max-width: 992px) {
        .contact-section .section-title {
            font-size: 32px;
        }
    }

    @media (max-width: 768px) {
        .contact-section {
            padding: 60px 0;
        }

        .contact-info {
            grid-template-columns: 1fr 1fr;
        }

        .contact-form-box {
            padding: 28px 20px;
        }

        .contact-form .form-row {
            grid-template-columns: 1fr;
        }

        .contact-section .section-title {
            font-size: 28px;
        }
    }

    @media (max-width: 576px) {
        .contact-info {
            grid-template-columns: 1fr;
        }

        .contact-form-box h3 {
            font-size: 19px;
        }

        .contact-section .section-title {
            font-size: 24px;
        }

        .btn-submit {
            font-size: 14px;
            padding: 12px 20px;
        }
    }
    /* ===== NAVBAR ===== */
    .navbar {
        background: var(--midnight);
        padding: 16px 0;
        position: sticky;
        top: 0;
        z-index: 1000;
        border-bottom: 2px solid rgba(214, 178, 94, 0.15);
        backdrop-filter: blur(12px);
    }

        .navbar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

    .logo {
        display: flex;
        align-items: center;
        gap: 4px;
    }

    .logo-icon {
        font-size: 32px;
        font-weight: 800;
        color: var(--white);
        letter-spacing: -0.5px;
    }

        .logo-icon span {
            color: var(--gold);
        }

    .logo-sub {
        font-size: 9px;
        font-weight: 300;
        color: var(--gold);
        letter-spacing: 1.2px;
        text-transform: uppercase;
        display: block;
        margin-top: -4px;
    }

        .logo-sub i {
            color: var(--white);
            margin: 0 4px;
        }

    .nav-links {
        display: flex;
        align-items: center;
        gap: 28px;
        list-style: none;
        font-size: 14px;
        font-weight: 500;
        color: rgba(255,255,255,0.75);
    }

        .nav-links li a {
            transition: var(--transition);
            position: relative;
        }

            .nav-links li a::after {
                content: '';
                position: absolute;
                bottom: -4px;
                left: 0;
                width: 0;
                height: 2px;
                background: var(--gold);
                transition: var(--transition);
            }

            .nav-links li a:hover {
                color: var(--white);
            }

                .nav-links li a:hover::after {
                    width: 100%;
                }

            .nav-links li a.active {
                color: var(--gold);
            }

                .nav-links li a.active::after {
                    width: 100%;
                }

    .nav-buttons {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .btn-outline {
        padding: 8px 20px;
        border: 1.5px solid rgba(255,255,255,0.25);
        border-radius: 40px;
        color: var(--white);
        font-size: 13px;
        font-weight: 600;
        transition: var(--transition);
        background: transparent;
    }

        .btn-outline:hover {
            border-color: var(--gold);
            background: var(--gold);
            color: var(--dark);
        }

    .btn-gold {
        padding: 8px 24px;
        background: var(--gold);
        border: none;
        border-radius: 40px;
        color: var(--dark);
        font-size: 13px;
        font-weight: 700;
        transition: var(--transition);
        cursor: pointer;
    }

        .btn-gold:hover {
            background: var(--white);
            transform: scale(1.04);
        }

    .hamburger {
        display: none;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        background: none;
        border: none;
    }

        .hamburger span {
            width: 28px;
            height: 2.5px;
            background: var(--white);
            border-radius: 4px;
            transition: var(--transition);
        }
    /* ===== HERO SECTION ===== */
    .hero {
        background: var(--light);
        padding: 70px 0 60px;
        position: relative;
        overflow: hidden;
    }

        .hero::before {
            content: '';
            position: absolute;
            top: -40%;
            right: -10%;
            width: 700px;
            height: 700px;
            background: radial-gradient(circle, rgba(30,94,255,0.06) 0%, transparent 70%);
            border-radius: 50%;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(214,178,94,0.05) 0%, transparent 70%);
            border-radius: 50%;
        }

        .hero .container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

    .hero-content h5 {
        color: var(--gold);
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 3px;
        text-transform: uppercase;
        margin-bottom: 8px;
    }

    .hero-content h1 {
        font-size: 58px;
        font-weight: 800;
        color: var(--midnight);
        line-height: 1.1;
        margin-bottom: 8px;
    }

        .hero-content h1 .highlight {
            color: var(--royal);
            position: relative;
        }

        .hero-content h1 .highlight-gold {
            color: var(--gold);
        }

    .hero-content .tagline {
        font-size: 20px;
        font-weight: 300;
        color: var(--dark);
        margin-bottom: 16px;
        letter-spacing: 1px;
    }

    .hero-content p {
        font-size: 16px;
        color: #3a4a5e;
        max-width: 500px;
        margin-bottom: 28px;
        font-weight: 400;
        line-height: 1.8;
    }

    .hero-buttons {
        display: flex;
        gap: 16px;
        flex-wrap: wrap;
    }

    .btn-primary {
        padding: 14px 40px;
        background: var(--royal);
        color: var(--white);
        border: none;
        border-radius: 50px;
        font-size: 15px;
        font-weight: 700;
        transition: var(--transition);
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        box-shadow: 0 8px 30px rgba(30,94,255,0.35);
    }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 14px 40px rgba(30,94,255,0.45);
            background: #1a4fd9;
        }

    .btn-secondary {
        padding: 14px 36px;
        background: transparent;
        color: var(--midnight);
        border: 2px solid var(--gold);
        border-radius: 50px;
        font-size: 15px;
        font-weight: 700;
        transition: var(--transition);
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        gap: 10px;
    }

        .btn-secondary:hover {
            background: var(--gold);
            color: var(--dark);
            transform: translateY(-3px);
        }

    .hero-stats {
        display: flex;
        gap: 40px;
        margin-top: 32px;
        padding-top: 28px;
        border-top: 1.5px solid rgba(7,26,47,0.08);
    }

        .hero-stats .stat h3 {
            font-size: 28px;
            font-weight: 800;
            color: var(--midnight);
        }

            .hero-stats .stat h3 span {
                color: var(--gold);
            }

        .hero-stats .stat p {
            font-size: 13px;
            color: #5a6a7e;
            font-weight: 500;
        }
    /* ===== HERO RIGHT (WIDGETS) ===== */
    .hero-right {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .widget-card {
        background: var(--white);
        border-radius: var(--radius);
        padding: 20px;
        box-shadow: var(--shadow);
        border: 1px solid rgba(7,26,47,0.04);
        transition: var(--transition);
    }

        .widget-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 28px 70px rgba(7,26,47,0.14);
        }

    .widget-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 12px;
    }

        .widget-header h4 {
            font-size: 14px;
            font-weight: 700;
            color: var(--midnight);
        }

        .widget-header .badge {
            background: rgba(214,178,94,0.15);
            color: var(--gold);
            font-size: 10px;
            font-weight: 700;
            padding: 4px 12px;
            border-radius: 30px;
            letter-spacing: 0.5px;
        }

    .price-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 8px 0;
        border-bottom: 1px solid rgba(7,26,47,0.04);
    }

        .price-row:last-child {
            border-bottom: none;
        }

        .price-row .pair {
            font-weight: 600;
            font-size: 14px;
            color: var(--dark);
        }

        .price-row .price {
            font-weight: 700;
            font-size: 15px;
            color: var(--midnight);
        }

        .price-row .change {
            font-weight: 700;
            font-size: 13px;
        }

    .change.green {
        color: #0ECB81;
    }

    .change.red {
        color: #F6465D;
    }

    .widget-chart {
        display: flex;
        align-items: flex-end;
        gap: 5px;
        height: 50px;
        margin-top: 8px;
    }

        .widget-chart .bar {
            flex: 1;
            background: var(--royal);
            border-radius: 4px 4px 0 0;
            height: calc(20% + var(--h, 0%));
            min-height: 6px;
            transition: var(--transition);
            opacity: 0.7;
        }

            .widget-chart .bar:nth-child(1) {
                --h: 60%;
                background: var(--gold);
            }

            .widget-chart .bar:nth-child(2) {
                --h: 80%;
            }

            .widget-chart .bar:nth-child(3) {
                --h: 45%;
            }

            .widget-chart .bar:nth-child(4) {
                --h: 90%;
                background: var(--gold);
            }

            .widget-chart .bar:nth-child(5) {
                --h: 55%;
            }

            .widget-chart .bar:nth-child(6) {
                --h: 75%;
            }

            .widget-chart .bar:nth-child(7) {
                --h: 40%;
            }

            .widget-chart .bar:nth-child(8) {
                --h: 85%;
                background: var(--gold);
            }

            .widget-chart .bar:nth-child(9) {
                --h: 65%;
            }

            .widget-chart .bar:nth-child(10) {
                --h: 50%;
            }
    /* ===== TRADING TICKER ===== */
    .ticker {
        background: var(--midnight);
        padding: 12px 0;
        border-top: 1.5px solid rgba(214,178,94,0.2);
        border-bottom: 1.5px solid rgba(214,178,94,0.2);
        overflow: hidden;
        white-space: nowrap;
    }

    .ticker-track {
        display: inline-block;
        animation: tickerScroll 35s linear infinite;
        width: 100%;
        padding: 0px 20px;
    }

        .ticker-track span {
            display: inline-block;
            margin: 0 30px;
            color: rgba(255,255,255,0.8);
            font-size: 14px;
            font-weight: 500;
        }

            .ticker-track span i {
                color: var(--gold);
                margin-right: 6px;
            }

        .ticker-track .up {
            color: #0ECB81;
        }

        .ticker-track .down {
            color: #F6465D;
        }

    @keyframes tickerScroll {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-50%);
        }
    }
    /* ===== ABOUT SECTION ===== */
    .about {
        padding: 90px 0 70px;
        background: var(--white);
    }

    .section-title {
        text-align: center;
        margin-bottom: 50px;
    }

        .section-title h2 {
            font-size: 40px;
            font-weight: 800;
            color: var(--midnight);
        }

            .section-title h2 span {
                color: var(--gold);
            }

        .section-title p {
            color: #5a6a7e;
            font-size: 17px;
            max-width: 600px;
            margin: 6px auto 0;
            font-weight: 400;
        }

    .about-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .about-card {
        background: var(--light);
        padding: 36px 30px;
        border-radius: var(--radius);
        border-left: 4px solid var(--gold);
        transition: var(--transition);
    }

        .about-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow);
        }

        .about-card .icon {
            font-size: 36px;
            color: var(--royal);
            margin-bottom: 14px;
        }

        .about-card h4 {
            font-size: 20px;
            font-weight: 700;
            color: var(--midnight);
            margin-bottom: 8px;
        }

        .about-card p {
            font-size: 14px;
            color: #5a6a7e;
            line-height: 1.7;
        }
    /* ===== FEATURES ===== */
    .features {
        padding: 80px 0;
        background: var(--light);
    }

    .features-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }

    .feature-item {
        background: var(--white);
        padding: 30px 24px;
        border-radius: var(--radius);
        text-align: center;
        border: 1px solid rgba(7,26,47,0.04);
        transition: var(--transition);
    }

        .feature-item:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow);
            border-color: var(--gold);
        }

        .feature-item .icon {
            font-size: 32px;
            color: var(--royal);
            background: rgba(30,94,255,0.08);
            width: 64px;
            height: 64px;
            line-height: 64px;
            border-radius: 50%;
            margin: 0 auto 14px;
        }

        .feature-item h5 {
            font-size: 17px;
            font-weight: 700;
            color: var(--midnight);
            margin-bottom: 4px;
        }

        .feature-item p {
            font-size: 13px;
            color: #5a6a7e;
        }
    /* ===== ROADMAP ===== */
    .roadmap {
        padding: 80px 0;
        background: var(--white);
    }

    .roadmap-timeline {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        position: relative;
    }

        .roadmap-timeline::before {
            content: '';
            position: absolute;
            top: 28px;
            left: 10%;
            right: 10%;
            height: 2px;
            background: var(--gold);
            opacity: 0.3;
        }

    .roadmap-item {
        text-align: center;
        position: relative;
        padding-top: 30px;
    }

        .roadmap-item .dot {
            width: 18px;
            height: 18px;
            background: var(--gold);
            border-radius: 50%;
            margin: 0 auto 12px;
            border: 4px solid var(--white);
            box-shadow: 0 0 0 3px var(--gold);
            position: relative;
            z-index: 2;
        }

            .roadmap-item .dot.done {
                background: var(--royal);
                box-shadow: 0 0 0 3px var(--royal);
            }

        .roadmap-item h5 {
            font-size: 16px;
            font-weight: 700;
            color: var(--midnight);
        }

        .roadmap-item p {
            font-size: 13px;
            color: #5a6a7e;
        }

        .roadmap-item .phase {
            font-size: 11px;
            font-weight: 700;
            color: var(--gold);
            letter-spacing: 1px;
            text-transform: uppercase;
        }
    /* ===== FAQ ===== */
    .faq {
        padding: 80px 0;
        background: var(--light);
    }

    .faq-grid {
        max-width: 800px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .faq-item {
        background: var(--white);
        border-radius: 12px;
        padding: 20px 28px;
        border: 1px solid rgba(7,26,47,0.04);
        transition: var(--transition);
        cursor: pointer;
    }

        .faq-item:hover {
            border-color: var(--gold);
        }

        .faq-item .question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 700;
            color: var(--midnight);
            font-size: 16px;
        }

            .faq-item .question i {
                color: var(--gold);
                transition: var(--transition);
            }

        .faq-item .answer {
            max-height: 0;
            overflow: hidden;
            transition: var(--transition);
            color: #5a6a7e;
            font-size: 14px;
            line-height: 1.7;
        }

        .faq-item.active .answer {
            max-height: 150px;
            padding-top: 12px;
        }

        .faq-item.active .question i {
            transform: rotate(180deg);
        }
    /* ===== FOOTER ===== */
    .footer {
        background: var(--dark);
        padding: 50px 0 30px;
        color: #fff;
        border-top: 2px solid rgba(214,178,94,0.15);
    }

    .footer-grid {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 40px;
        margin-bottom: 30px;
    }

    .footer-brand .logo-icon {
        font-size: 28px;
    }

    .footer-brand .logo-sub {
        font-size: 10px;
        margin-top: 0;
    }

    .footer-brand p {
        font-size: 14px;
        margin-top: 12px;
        max-width: 280px;
        line-height: 1.7;
    }

    .footer h5 {
        color: var(--white);
        font-size: 16px;
        font-weight: 700;
        margin-bottom: 14px;
    }

    .footer ul {
        list-style: none;
    }

        .footer ul li {
            margin-bottom: 8px;
            font-size: 14px;
            transition: var(--transition);
            cursor: pointer;
        }

            .footer ul li:hover {
                color: var(--gold);
                transform: translateX(4px);
            }

    .footer-bottom {
        border-top: 1px solid rgba(255,255,255,0.06);
        padding-top: 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 13px;
        flex-wrap: wrap;
        gap: 10px;
    }

        .footer-bottom .socials {
            display: flex;
            gap: 16px;
        }

            .footer-bottom .socials a {
                color: rgba(255,255,255,0.4);
                transition: var(--transition);
                font-size: 18px;
            }

                .footer-bottom .socials a:hover {
                    color: var(--gold);
                    transform: translateY(-2px);
                }
    /* ===== RESPONSIVE ===== */
    @media (max-width: 1024px) {
        .hero .container {
            grid-template-columns: 1fr;
            text-align: center;
        }

        .hero-content p {
            margin: 0 auto 28px;
        }

        .hero-buttons {
            justify-content: center;
        }

        .hero-stats {
            justify-content: center;
        }

        .features-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .roadmap-timeline {
            grid-template-columns: repeat(2, 1fr);
        }

            .roadmap-timeline::before {
                display: none;
            }

        .footer-grid {
            grid-template-columns: 1fr 1fr;
        }
    }

    @media (max-width: 768px) {
        .nav-links {
            display: none;
            flex-direction: column;
            width: 100%;
            padding: 20px 0;
            gap: 16px;
            background: var(--midnight);
        }

            .nav-links.open {
                display: flex;
            }

        .hamburger {
            display: flex;
        }

        .nav-buttons {
            display: none;
        }

        .hero-content h1 {
            font-size: 36px;
        }

        .hero-stats {
            flex-wrap: wrap;
            gap: 20px;
        }

        .about-grid {
            grid-template-columns: 1fr;
        }

        .features-grid {
            grid-template-columns: 1fr;
        }

        .roadmap-timeline {
            grid-template-columns: 1fr;
        }

        .footer-grid {
            grid-template-columns: 1fr;
        }

        .footer-bottom {
            flex-direction: column;
            text-align: center;
        }
    }

    @media (max-width: 480px) {
        .hero-content h1 {
            font-size: 28px;
        }

        .btn-primary, .btn-secondary {
            padding: 12px 24px;
            font-size: 13px;
        }

        .widget-card {
            padding: 16px;
        }
    }
    /*# sourceMappingURL=main.css.map */
