:root {
    --bg-color: #001236;
    --primary-gold: #E2B755;
    --text-dark: #000330;
    --white: #ffffff;
    --gradient-gold: linear-gradient(-90deg, #D6A94C 17%, #f7ECAD 53%, #CE9F46 98%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1460px;
    margin: 0 auto;
    padding: 0 7%;
}


/* Hero Section */
.hero-section {
    padding: 140px 0% 60px;
}

.hero-title {
    background: var(--gradient-gold);
    /* FIXED: Changed from color to background */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 58px;
    font-weight: 650;
    margin-bottom: 50px;
    line-height: 130%;
    max-width: 800px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 60px;
}

/* Form Elements */
.input-row {
    display: flex;
    gap: 20px;
}

.input-group {
    margin-bottom: 25px;
    flex: 1;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    opacity: 0.8;
}

.input-group input,
.input-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--primary-gold);
    border-radius: 8px;
    padding: 15px;
    color: white;
    outline: none;
    transition: 0.3s;
}

.input-group input:focus {
    background: rgba(255, 255, 255, 0.08);
}



.btn-submit {
    background: var(--gradient-gold);
    color: var(--text-dark);
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    font-size: 1.1rem;
}

/* Contact Items */
.info-header h2 {
    color: var(--primary-gold);
    font-size: 2.2rem;
    margin-bottom: 5px;
}

.info-header p {
    margin-bottom: 35px;
    opacity: 0.7;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.icon-box {
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-dark);
    font-size: 20px;
}

.text-box h3 {
    color: var(--primary-gold);
    font-size: 1rem;
    margin-bottom: 2px;
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 80px;
    }
   
}

@media (max-width: 600px) {
    .input-row {
        flex-direction: column;
    }

    .hero-section {
      padding: 140px 0% 60px;      
    }


    .hero-title {
        text-align: left;
        font-size: 35px;
    }

}








/* --- SUCCESS SECTION STYLES --- */
.success-section {
    padding: 60px 8%;
    background-color: var(--bg-color); /* Deep Navy #001236 */
    display: flex;
    justify-content: center;
}

.success-container {
    width: 100%;
    max-width: 1200px;
}

.success-card {
    background: var(--gradient-gold); /* Using your 3-tone gold gradient */
    color: var(--text-dark); /* Deep Navy text for contrast #000330 */
    padding: 80px 60px;
    border-radius: 60px; /* Large rounded corners from design */
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.success-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
}

.success-desc {
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto 40px;
    font-weight: 500;
}

.follow-us {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.follow-us span {
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: capitalize;
}

.social-icons {
    display: flex;
    gap: 20px;
}
.fa-brands {
    color: var(--bg-color);
}

.social-icons a {
    color: var(--text-dark);
    font-size: 1.8rem;
    transition: 0.3s;
}

.social-icons a:hover {
    transform: translateY(-5px);
    opacity: 0.8;
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 992px) {
    .success-card {
        padding: 60px 40px;
        border-radius: 40px;
    }
    .success-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .success-section {
        padding: 40px 5%;
    }
    .success-card {
        padding: 40px 20px;
        border-radius: 30px;
    }
    .success-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    .success-desc {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 30px;
    }
    .social-icons a {
        font-size: 1.5rem;
    }
    .success-section h2,.success-section p{
        text-align: left;
    }
}




/*==================================================
Footer
===================================================*/




/* Footer Section Base with Split Background */
.main-footer {
    /* Top 50% is Navy, Bottom 50% is Gold */
    background: linear-gradient(to bottom, #001236 50%, #E2B755 50%);
    padding: 0 5% 20px;
    width: 100%;
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
}

/* The Navy Inner Card */
.footer-inner-card {
    background-color: #001236;
    border: 1.5px solid rgba(255, 255, 255, 0.8);
    border-radius: 40px;
    padding: 60px 50px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    /* Ensure it sits nicely in the middle of the split */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Brand Section */
.footer-brand {
    flex: 1;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 25px;
}

.social-icons {
    display: flex;
    gap: 15px;
    
}

.social-icons a {
    background: var(--gradient-gold);
     -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 25px;
    opacity: 0.8;
    transition: 0.3s;
}

.social-icons a:hover {
    opacity: 1;
    color: #E2B755;
}

/* Links Columns */
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
}

/* Newsletter */
.footer-newsletter {
    flex: 1.2;
    max-width: 350px;
}

.footer-newsletter p {
    color: #ffffff;
   font-size: 14px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.subscribe-field {
    display: flex;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    padding: 2px;
}

.subscribe-field input {
    background: transparent;
    border: none;
    padding: 12px;
    color: #ffffff;
    width: 100%;
    outline: none;
}

.subscribe-field button {
    background: transparent;
    border: none;
    padding: 0 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

/* Copyright Text on Gold Background */
.footer-bottom-text {
    padding-top: 30px;
    color: #000330;
    font-size: 15px;
    font-weight: 600;
    font-style: italic;
    text-align: left;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 992px) {
    .footer-inner-card {
        padding: 40px;
        flex-wrap: wrap;
    }

    .footer-newsletter {
        min-width: 100%;
    }
}

@media (max-width: 768px) {
    .main-footer {
        /* On mobile, usually a 50/50 split looks better shifted */
        background: linear-gradient(to bottom, #001236 30%, #E2B755 30%);
    }

    .footer-inner-card {
        flex-direction: column;
        gap: 40px;
        border-radius: 30px;
        text-align: center;
    }

    .footer-brand,
    .social-icons {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .social-icons {
        flex-direction: row;
    }

    .footer-links {
        width: 100%;
    }

    .subscribe-field {
        max-width: 100%;
    }
}



/* --- SCROLL REVEAL ANIMATIONS --- */
.reveal {
    opacity: 0;
    transition: all 0.9s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform, opacity;
}

/* Directions */
.reveal-up { transform: translateY(40px); }
.reveal-left { transform: translateX(-60px); }
.reveal-right { transform: translateX(60px); }
.reveal-scale { transform: scale(0.9); }

/* Trigger State */
.reveal.active {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

/* Staggered Delays for Contact Items */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* Ensure form interaction stays smooth */
#contactForm input, #contactForm textarea {
    transition: background 0.3s, border-color 0.3s, transform 0.2s;
}


/* --- ULTIMATE FIXED BOTTOM TICKER --- */
.tradingview-widget-wrapper {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    top: auto !important;   /* This kills the 37rem issue */
    width: 100% !important;
    height: 46px !important;
    z-index: 9999 !important; /* Higher than everything else */
    background-color: #001236 !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 0; /* Removes weird spacing */
}

/* Ensure the widget inside is visible */
.tradingview-widget-container {
    width: 100% !important;
    height: 46px !important;
}

/* Fix for Mobile: ensuring it doesn't jump */
@media (max-width: 768px) {
    .tradingview-widget-wrapper {
        bottom: 1.5rem !important;
        position: fixed !important;
    }
}

/* Floating Icon */
#wa-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 62px;
    height: 62px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 34px;
    color: white;
    cursor: pointer;
    z-index: 9899999;
    box-shadow: 0 10px 30px rgba(0,0,0,.35);
}
#wa-float a {
    text-decoration: none;
    color: white;
    display: flex;
}













.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    margin: 0 15px;
    font-size: 1rem;
    transition: 0.3s;
}

.nav-links a.active,
.nav-links a:hover {
    color: var(--primary-gold);
}

.btn-join {
    background: var(--gradient-gold);
    color: var(--text-dark);
    padding: 10px 25px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: 0.3s;
}

/* Hamburger Menu Icon */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    z-index: 1001;
}

.menu-toggle .bar {
    width: 30px;
    height: 3px;
    background-color: var(--white);
    transition: 0.3s;
    border-radius: 2px;
}

/* ==========================================
Responsive Breakpoints
=========================================== */

/* Tablet Adjustment */
@media (max-width: 1024px) {
    .navbar {
        padding: 20px 4%;
    }

}

/* Mobile Menu (768px and down) */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-desktop-btn {
        display: none;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        /* Hidden by default */
        height: 100vh;
        width: 100%;
        background-color: var(--bg-color);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
    }

    .nav-links.active {
        right: 0;
        /* Slides in */
    }

    .nav-links a {
        margin: 15px 0;
        font-size: 1.5rem;
        display: block;
        width: auto;
    }

    .mobile-only {
        display: inline-block !important;
        margin-top: 20px;
    }

    /* Hamburger Animation */
    .menu-toggle.is-active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .menu-toggle.is-active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.is-active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}

/* 1. Desktop Button: Show by default, hide on mobile */
.nav-desktop-btn {
    display: inline-block; /* Show on desktop */
}

/* 2. Mobile-only elements: ALWAYS hide by default (Desktop) */
.mobile-only {
    display: none !important;
}

/* 3. Media Query for Mobile (768px and below) */
@media (max-width: 768px) {
    /* Hide the desktop version of the button */
    .nav-desktop-btn {
        display: none !important;
    }

    /* Show the mobile version of the button inside the menu */
    .nav-links .mobile-only {
        display: inline-block !important;
        width: auto;
        margin-top: 25px;
        text-align: center;
        color: #001236;
    }
}