:root {
    --primary-color: #FFD700;
    --secondary-color: #0f1729;
    --bg-dark: #050a18;
    --text-light: #ffffff;
    --text-muted: #a0aec0;
    --accent-blue: #1e3a8a;
    --transition: all 0.3s ease;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

section:not(.hero) {
    padding: 100px 0;
}


.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 15px;
    color: var(--text-light);
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 60px;
    font-size: 1.1rem;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    border: none;
}

.btn-primary {
    background-color: #008000;
    color: #e6c200;
}


.btn-primary:hover {
    background-color: #0d8a0d;
    transform: translateY(-2px);
}

.btn-primary:disabled {
    background-color: #1a3a1a;
    color: #7a6a00;
    cursor: not-allowed;
    transform: none;
    opacity: 0.6;
}

/* ===========================
   NAVIGATION
   =========================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(5, 10, 24, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: #FFD700;
}


.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    font-weight: 500;
    color: #FFD700;
    opacity: 0.89;
}

.nav-menu a.active {
    font-weight: 800;
    opacity: 1;
    position: relative;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 3px;
    background: #FFD700;
    border-radius: 2px;
}



.nav-menu a:hover {
    opacity: 1;
}


.nav-menu li { position: relative; }

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--card-bg);
    min-width: 220px;
    border-radius: 10px;
    padding: 10px 0;
    z-index: 999;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
}

.dropdown:hover .dropdown-menu {
    display: block;
}


/* .nav-menu a:hover {
    color: #ffffff;
} */


.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background-color: #FFD700; /* gold */
    transition: var(--transition);
}

/* ===========================
   HERO SECTION
   =========================== */
.hero {
    margin-top: 0px;
    position: relative;
    overflow: hidden;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    margin: auto;
}


/* .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
} */

.hero-content {
    text-align: center;
    color: white;
}

/* ===========================
   HOW IT WORKS SECTION
   =========================== */
.how-works {
    background-color: var(--bg-dark);
}

.steps-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.steps-row-1, .steps-row-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.steps-row-1 {
    grid-template-columns: 1.5fr 1fr;
}

.step-card {
    background: linear-gradient(135deg, #0f1729 0%, #050a18 100%);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid #1a1a2e;
    text-align: center;
    transition: var(--transition);
}

.step-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.step-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.step-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.step-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.how-works .btn {
    width: fit-content;
    margin: 60px auto 0;
}

/* ===========================
   STRATEGY SECTION
   =========================== */
.strategy {
    background-color: var(--bg-dark);
}

.strategy-card {
    background: linear-gradient(135deg, #0f1729 0%, #050a18 100%);
    padding: 50px;
    border-radius: 24px;
    border: 1px solid #1a1a2e;
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.strategy-icon {
    font-size: 4rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.strategy-content h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

/* ===========================
   PERFORMANCE SECTION (MODIFIED)
   =========================== */
.performance {
    background-color: #050a18;
}

.performance-layout {
    display: flex;
    flex-direction: column;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.performance-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: center;
}

.performance-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid #1a1a2e;
}

.performance-year {
    background-color: #0f1729;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #1a1a2e;
}

.performance-year h3 {
    text-align: center;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
}

.performance-year li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #1a1a2e;
    font-weight: 500;
}

.performance-year li:last-child {
    border-bottom: none;
}

.positive-return {
    color: #28a745;
    font-weight: 600;
}

/* ===========================
   IMAGE LIGHTBOX
   =========================== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
}

.lightbox.active {
    display: flex;
}

.lightbox-img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    color: white;
    font-size: 40px;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close:hover {
    color: var(--primary-color);
}

/* ===========================
   MOBILE GALLERY SECTION
   =========================== */
.mobile-gallery {
    background-color: #050a18;
    padding: 100px 0;
}

.slider-wrapper {
    position: relative;
    margin-bottom: 40px;
}

.slider-container {
    width: 100%;
    overflow: hidden;
    border-radius: 15px;
    background-color: #0f1729;
    border: 1px solid #1a1a2e;
}

.slider-track {
    display: flex;
    gap: 15px;
    padding: 15px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) #0f1729;
}

.slider-track::-webkit-scrollbar {
    height: 6px;
}

.slider-track::-webkit-scrollbar-track {
    background: #0f1729;
    border-radius: 10px;
}

.slider-track::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.slider-track::-webkit-scrollbar-thumb:hover {
    background: #e6c200;
}

.slider-item {
    flex: 0 0 calc(25% - 11.25px);
    min-width: 220px;
}

/* ===========================
   FAQ SECTION
   =========================== */
.faq {
    background-color: #000000;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: #0f1729;
    border: 1px solid #1a1a2e;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-item.active {
    border-color: var(--primary-color);
}

.faq-question {
    padding: 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
}

.faq-toggle {
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer p {
    padding: 0 25px 25px;
    margin: 0;
    color: var(--text-muted);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
    background-color: #050a18;
    color: var(--text-muted);
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-section h4 {
    margin-bottom: 25px;
    color: var(--text-light);
    font-size: 1.2rem;
}

.footer-section ul li {
    margin-bottom: 15px;
}

.footer-bottom {
    border-top: 1px solid #1a1a2e;
    padding-top: 40px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 30px;
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */
@media (max-width: 992px) {
    .steps-row-1, .steps-row-2 {
        grid-template-columns: 1fr;
    }
    .strategy-card {
        flex-direction: column;
        text-align: center;
    }
    .performance-row {
        grid-template-columns: 1fr;
    }
    .slider-item {
        flex: 0 0 calc(33.333% - 10px);
        min-width: 150px;
    }
}

@media (max-width: 768px) {

    .nav-menu, .nav-btn {
        display: none;
    }
    
    .hamburger {
        display: flex;
        margin-right: 20px;
    }

    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--bg-dark);
        padding: 30px;
        gap: 20px;
        text-align: center;
        border-bottom: 1px solid #1a1a2e;
    }

    .nav-btn.active {
        display: block;
        width: 100%;
        margin-top: 10px;
    }

    .hamburger.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

    .section-title { font-size: 2rem; }
    .hero { height: 50vh; }
    
    .slider-item {
        flex: 0 0 calc(50% - 7.5px);
        min-width: 120px;
    }
    
    .slider-prev, .slider-next {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .slider-prev {
        left: -20px;
    }

    .slider-next {
        right: -20px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 40px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .slider-item {
        flex: 0 0 calc(100% - 15px);
        min-width: 100%;
    }
    
    .slider-prev, .slider-next {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .slider-prev {
        left: -17.5px;
    }

    .slider-next {
        right: -17.5px;
    }
    
    .performance-row {
        gap: 20px;
    }
    
    .strategy-card {
        padding: 30px;
        gap: 20px;
    }
    
    .strategy-icon {
        font-size: 2.5rem;
    }
}




/* ===========================
   INVESTMENT PROJECTION CALCULATOR
   =========================== */
.projection-calculator {
    background-color: var(--bg-dark);
}

.calculator-container {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, #0f1729 0%, #050a18 100%);
    padding: 50px;
    border-radius: 24px;
    border: 1px solid #1a1a2e;
}

.calculator-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.input-group {
    margin-bottom: 30px;
}

.input-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text-light);
}

.input-wrapper {
    position: relative;
}

.input-wrapper input[type="number"] {
    width: 100%;
    padding: 15px;
    background: #050a18;
    border: 1px solid #1a1a2e;
    border-radius: 8px;
    color: var(--text-light);
    font-size: 1.1rem;
    font-family: inherit;
}

.input-wrapper input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.summary-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.summary-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.summary-label {
    color: var(--text-muted);
}

.summary-value {
    font-weight: 700;
}

.highlight-green {
    color: #00ff00;
    font-size: 1.4rem;
}

.risk-area {
    margin-top: 30px;
}

.risk-slider-container {
    margin-bottom: 20px;
}

input[type="range"] {
    width: 100%;
    height: 6px;
    background: #1a1a2e;
    border-radius: 5px;
    outline: none;
    -webkit-appearance: none;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.risk-display {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 0.9rem;
}

.risk-warning {
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.2);
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    display: none;
}

.toggle-container {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.disclaimer {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 30px;
    line-height: 1.4;
}

.cta-full {
    width: 100%;
    margin-top: 30px;
}

.request-section {
    background-color: var(--bg-dark);
    min-height: 600px;
    display: flex;
    align-items: center;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: linear-gradient(135deg, #0f1729 0%, #050a18 100%);
    padding: 50px;
    border-radius: 24px;
    border: 1px solid #1a1a2e;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text-light);
    text-align: left;
}

.form-group input {
    width: 100%;
    padding: 15px;
    background-color: #1a1a2e;
    border: 1px solid #2d3748;
    border-radius: 8px;
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.1);
}

.submit-btn {
    width: 100%;
    padding: 18px;
    font-size: 1.1rem;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .form-container {
        padding: 30px 20px;
    }
}

/* ===========================
   PROFESSIONAL FORM STYLES
   =========================== */
.form-group select {
    width: 100%;
    padding: 15px;
    background-color: #1a1a2e;
    border: 1px solid #2d3748;
    border-radius: 8px;
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23FFD700' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 18px;
}

.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.1);
}

.radio-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 10px;
}

@media (max-width: 480px) {
    .radio-group {
        grid-template-columns: 1fr;
    }
}

.radio-container {
    display: block;
    position: relative;
    padding: 15px 15px 15px 45px;
    margin-bottom: 0;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--text-muted);
    user-select: none;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid #2d3748;
    border-radius: 8px;
}

.radio-container:hover {
    color: var(--text-light);
    border-color: var(--primary-color);
    background: rgba(255, 215, 0, 0.05);
}

.radio-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    height: 20px;
    width: 20px;
    background-color: #1a1a2e;
    border: 1px solid #2d3748;
    border-radius: 50%;
}

.radio-container:hover input ~ .checkmark {
    border-color: var(--primary-color);
}

.radio-container input:checked ~ .checkmark {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Highlight for selected option */
.radio-container:has(input:checked) {
    border-color: var(--primary-color);
    color: var(--text-light);
    background: rgba(255, 215, 0, 0.1);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.1);
}

.checkbox-group {
    margin-top: 30px;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 0.95rem;
    color: #cfcfcf;
    user-select: none;
    line-height: 1.6;
}

/* Hide native checkbox */
.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* ✅ Smaller square checkbox */
.checkbox-mark {
    width: 18px;
    height: 18px;
    display: inline-block;
    background: transparent;
    border: 2px solid #ffffff;
    border-radius: 4px;
    flex-shrink: 0;
    position: relative;
    margin-right: 18px;
    transition: all 0.2s ease;
}

/* Hover effect */
.checkbox-container:hover .checkbox-mark {
    border-color: var(--primary-color);
}

/* Checked state */
.checkbox-container input:checked + .checkbox-mark {
    border-color: var(--primary-color);
}

/* ✅ Smaller tick */
.checkbox-mark::after {
    content: "";
    position: absolute;
    display: none;
    left: 4px;
    top: 1px;
    width: 5px;
    height: 9px;
    border: solid var(--primary-color);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Show tick */
.checkbox-container input:checked + .checkbox-mark::after {
    display: block;
}

/* Text */
.checkbox-text {
    color: #bfbfbf;
}
