﻿:root {
    --primary: #C8913F;
    --primary-light: #E6C28A;
    --primary-dark: #7A471F;
    --accent-cyan: #00D4FF;

    --bg-dark: #0A0A0F;
    --bg-dark-elevated: #12121A;
    --bg-dark-card: #1A1A2E;
    --bg-light: #F5F5F0;
    --bg-light-elevated: #FFFFFF;
    --bg-light-card: #FFFFFF;

    --text-dark-primary: #FFFFFF;
    --text-dark-secondary: #B0B0C0;
    --text-light-primary: #1A1A2E;
    --text-light-secondary: #5C5C6E;

    --border-dark: rgba(200, 145, 63, 0.3);
    --border-light: rgba(200, 145, 63, 0.2);

    --gradient-glow: radial-gradient(circle at 50% 50%, rgba(200, 145, 63, 0.15) 0%, transparent 70%);
}

[data-theme="light"] {
    --bg: var(--bg-light);
    --bg-elevated: var(--bg-light-elevated);
    --bg-card: var(--bg-light-card);
    --text-primary: var(--text-light-primary);
    --text-secondary: var(--text-light-secondary);
    --border: var(--border-light);
    --shadow: 0 8px 32px rgba(200, 145, 63, 0.12);
    --shadow-lg: 0 20px 60px rgba(200, 145, 63, 0.15);
    --grid-color: rgba(200, 145, 63, 0.08);
}

[data-theme="dark"] {
    --bg: var(--bg-dark);
    --bg-elevated: var(--bg-dark-elevated);
    --bg-card: var(--bg-dark-card);
    --text-primary: var(--text-dark-primary);
    --text-secondary: var(--text-dark-secondary);
    --border: var(--border-dark);
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.5);
    --grid-color: rgba(200, 145, 63, 0.1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text-primary);
    overflow-x: hidden;
    transition: background 0.5s ease, color 0.5s ease;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    letter-spacing: 0.02em;
}

section[id] {
    scroll-margin-top: 90px;
}

section {
    padding: 6rem 2rem;
    position: relative;
    z-index: 1;
}

/* ===== GRID BACKGROUND ===== */
.grid-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(var(--grid-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
}

.grid-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-glow);
    pointer-events: none;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    background: transparent;
    border-bottom: none;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    overflow: hidden;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.nav-links {
    display: flex;
    gap: 1.6rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-light);
}

.nav-links a:hover::after {
    width: 100%;
}

.theme-toggle {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    cursor: pointer;
    color: var(--text-primary);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.theme-toggle:hover {
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(200, 145, 63, 0.3);
}

.theme-toggle-mobile {
    display: none;
    width: 42px;
    height: 42px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--bg-card);
    color: var(--primary-light);
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: var(--shadow);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary);
    color: white;
    border-color: transparent;
}

/* ===== PARTICLES CANVAS ===== */
#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 8rem 2rem 4rem;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    z-index: 1;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 20px rgba(200, 145, 63, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(200, 145, 63, 0.6);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--primary);
    background: rgba(200, 145, 63, 0.1);
}

.section-alt {
    background: var(--bg-elevated);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-label {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(200, 145, 63, 0.15);
    border: 1px solid var(--border);
    border-radius: 50px;
    color: var(--primary-light);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
}

.filter-bar {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin: 0 auto 3rem;
    max-width: 1000px;
}

.filter-pill {
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    cursor: pointer;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.filter-pill i {
    font-size: 1rem;
}

.filter-pill.active,
.filter-pill:hover {
    background: var(--primary);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
}

.investments-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.investment-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.investment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    z-index: 3;
}

.investment-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(200, 145, 63, 0.5);
}

.investment-card:hover::before {
    transform: scaleX(1);
}

.investment-card.hidden {
    display: none;
}

.card-media {
    position: relative;
    height: 200px;
    margin: -2.5rem -2.5rem 1.5rem;
    overflow: hidden;
}

.card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.investment-card:hover .card-media img {
    transform: scale(1.1);
}

.card-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--bg-card) 0%, transparent 60%);
}

.card-media-icon {
    position: absolute;
    bottom: 1rem;
    left: 1.5rem;
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-light);
    z-index: 2;
    box-shadow: var(--shadow);
}

.investment-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
}

.investment-card > p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.card-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.card-features li {
    padding: 0.4rem 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.card-features li i {
    color: var(--primary-light);
}

.card-btn {
    width: 100%;
    padding: 0.9rem;
    border-radius: 12px;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-primary);
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
}

.card-btn:hover {
    background: var(--primary);
    border-color: transparent;
    color: white;
}

.about-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-media {
    position: relative;
    margin-bottom: 3rem;
}

.about-media img.main {
    width: 100%;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

.about-media img.sub {
    position: absolute;
    bottom: -3rem;
    right: -2rem;
    width: 45%;
    border-radius: 20px;
    border: 6px solid var(--bg);
    box-shadow: var(--shadow-lg);
}

.about-media .exp-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1rem 1.4rem;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.about-media .exp-badge i {
    font-size: 2rem;
    color: var(--primary-light);
}

.about-media .exp-badge .exp-value {
    font-family: 'Orbitron', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--text-primary);
}

.about-media .exp-badge .exp-label {
    font-size: 0.7rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.about-content h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    margin-bottom: 1.2rem;
    color: var(--text-primary);
}

.about-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-points {
    list-style: none;
    margin: 1.5rem 0 2rem;
}

.about-points li {
    display: flex;
    gap: 0.8rem;
    padding: 0.5rem 0;
    color: var(--text-secondary);
    align-items: center;
}

.about-points li i {
    color: var(--primary-light);
    font-size: 1.2rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
    margin-top: 2rem;
}

.about-stat {
    text-align: center;
    padding: 1.2rem 0.6rem;
    border-radius: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
}

.about-stat .value {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-light);
}

.about-stat .label {
    font-size: 0.7rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.3rem;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-box {
    padding: 2rem;
    border-radius: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.service-box .icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.2rem;
    border-radius: 16px;
    background: rgba(200, 145, 63, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary-light);
}

.service-box h4 {
    margin-bottom: 0.8rem;
    color: var(--text-primary);
}

.service-box p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-box a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1rem;
    color: var(--primary-light);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: gap 0.3s ease;
}

.service-box a:hover {
    gap: 0.8rem;
}

.steps-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    position: relative;
}

.step {
    text-align: center;
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    position: relative;
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.step-num {
    position: absolute;
    top: 1rem;
    right: 1.2rem;
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 2.4rem;
    color: rgba(200, 145, 63, 0.25);
}

.step-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: rgba(200, 145, 63, 0.15);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary-light);
    margin: 0 auto 1.5rem;
}

.step h4 {
    margin-bottom: 0.8rem;
    color: var(--text-primary);
}

.step p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

.features-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-box {
    padding: 2rem;
    border-radius: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.feature-box .icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    border-radius: 16px;
    background: rgba(200, 145, 63, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary-light);
}

.feature-box h4 {
    margin-bottom: 0.8rem;
    color: var(--text-primary);
}

.feature-box p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.testimonials-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.testimonial {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.testimonial .quote-icon {
    font-size: 2.5rem;
    color: var(--primary);
    opacity: 0.5;
}

.testimonial .stars {
    color: var(--primary-light);
    margin: 1rem 0;
    font-size: 1.1rem;
    display: flex;
    gap: 0.2rem;
}

.testimonial p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author h5 {
    font-size: 0.95rem;
    color: var(--text-primary);
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.cta-section {
    text-align: center;
    padding: 8rem 2rem;
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(10, 10, 15, 0.9) 0%, rgba(10, 10, 15, 0.8) 50%, rgba(10, 10, 15, 0.9) 100%),
        url('https://images.unsplash.com/photo-1542744173-8e7e53415bb0?q=80&w=1920&auto=format&fit=crop') center/cover no-repeat;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.cta-section p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.newsletter-card {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 28px;
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
}

.newsletter-media {
    position: relative;
    min-height: 320px;
}

.newsletter-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.newsletter-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, var(--bg-card) 100%);
}

.newsletter-content {
    padding: 3rem;
}

.newsletter-content h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.newsletter-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.newsletter-form {
    display: flex;
    gap: 0.8rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.9rem 1.2rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: var(--bg);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: border-color 0.3s ease;
}

.newsletter-form input:focus {
    border-color: var(--primary);
}

.newsletter-note {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.newsletter-note i {
    color: var(--primary-light);
}

.contact-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-media {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: 2rem;
}

.contact-media img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.contact-info-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.contact-card {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.4rem;
    border-radius: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.contact-card .icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(200, 145, 63, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-card h5 {
    font-size: 0.9rem;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
}

.contact-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.contact-form {
    display: grid;
    gap: 1.2rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: var(--shadow);
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: var(--bg);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: var(--primary);
}

.contact-form textarea {
    min-height: 130px;
    resize: vertical;
}

footer {
    border-top: 1px solid var(--border);
    padding: 4rem 2rem 2rem;
    background: var(--bg-elevated);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand .logo {
    margin-bottom: 1rem;
    display: inline-flex;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-brand .footer-contact {
    margin-top: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-brand .footer-contact a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.footer-brand .footer-contact a:hover {
    color: var(--primary-light);
}

.footer-brand .footer-contact i {
    color: var(--primary-light);
}

.footer-links h5 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: var(--primary-light);
}

.footer-links a i {
    font-size: 0.9rem;
    opacity: 0.6;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-links a:hover {
    border-color: var(--primary);
    color: var(--primary-light);
    background: rgba(200, 145, 63, 0.1);
    transform: translateY(-3px);
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 900px) {
    .about-grid,
    .contact-grid,
    .newsletter-card {
        grid-template-columns: 1fr;
    }

    .about-media img.sub {
        right: 1rem;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
    }

    .newsletter-media {
        min-height: 240px;
    }

    .newsletter-media::after {
        background: linear-gradient(180deg, transparent 0%, var(--bg-card) 100%);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-elevated);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        border-bottom: 1px solid var(--border);
        backdrop-filter: blur(20px);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

    .theme-toggle-mobile {
        display: flex;
    }

    .nav-links .theme-toggle {
        display: none;
    }

    .hero {
        padding: 7rem 1.5rem 3rem;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    section {
        padding: 4rem 1.5rem;
    }

    .investments-grid {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .investment-card {
        padding: 1.8rem;
    }

    .card-media {
        margin: -1.8rem -1.8rem 1.5rem;
    }

    .btn {
        padding: 0.8rem 1.8rem;
        font-size: 0.8rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .contact-info-cards {
        grid-template-columns: 1fr;
    }
}

/* ===== SCROLL PROGRESS ===== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    z-index: 1002;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    box-shadow: 0 0 12px rgba(212, 165, 116, 0.7);
    transition: width 0.1s linear;
}

/* ===== NAVBAR SHRINK ===== */
.navbar {
    transition: padding 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}

.navbar.scrolled {
    padding: 0.7rem 2rem;
    background: var(--bg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}

/* ===== FLOATING ORBS ===== */
.orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.45;
    z-index: 0;
    pointer-events: none;
    will-change: transform;
}

.orb-1 {
    width: 420px;
    height: 420px;
    top: -120px;
    right: -100px;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.55), transparent 70%);
}

.orb-2 {
    width: 380px;
    height: 380px;
    bottom: 10%;
    left: -140px;
    background: radial-gradient(circle, rgba(200, 145, 63, 0.5), transparent 70%);
}

.orb-3 {
    width: 300px;
    height: 300px;
    top: 45%;
    right: 15%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.18), transparent 70%);
}

/* ===== HERO TITLE GLOW PULSE ===== */
.hero h1 {
    transition: text-shadow 1s ease;
}

.hero h1.glow-pulse {
    text-shadow: 0 0 20px rgba(212, 165, 116, 0.35), 0 0 60px rgba(212, 165, 116, 0.18);
}

/* ===== TILT ENABLE ===== */
.investment-card {
    transition: transform 0.25s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    transform-style: preserve-3d;
    will-change: transform;
}

.investment-card:hover {
    box-shadow: 0 24px 60px rgba(200, 145, 63, 0.28);
    border-color: rgba(212, 165, 116, 0.5);
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    .orb,
    .scroll-progress,
    .investment-card {
        transition: none;
        animation: none;
    }
}
