/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    background: #ffffff;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    color: var(--text-gray);
    overflow-x: hidden;
    font-weight: 400;
    letter-spacing: -0.02em;
    background: #ffffff;
    min-height: 100vh;
}

:root {
    --primary-gold: #D4AF37;
    --secondary-gold: #F7E7CE;
    --dark-gold: #B8860B;
    --black: #000000;
    --dark-gray: #1a1a1a;
    --light-gray: #f8f9fa;
    --white: #ffffff;
    --text-gray: #333333;
    --light-text: #666666;
    --border-color: #e0e0e0;
    --shadow: rgba(0, 0, 0, 0.1);
    --gradient-gold: linear-gradient(135deg, #D4AF37, #F7E7CE);
    --gradient-dark: linear-gradient(135deg, #000000, #1a1a1a);
    --gradient-background-start: rgb(248, 249, 250);
    --gradient-background-end: rgb(255, 255, 255);
    --first-color: 212, 175, 55;
    --second-color: 247, 231, 206;
    --third-color: 184, 134, 11;
    --fourth-color: 240, 240, 240;
    --fifth-color: 255, 215, 0;
    --pointer-color: 212, 175, 55;
    --size: 80%;
    --blending-value: soft-light;
    --mobile-padding: clamp(16px, 4vw, 24px);
    --mobile-margin: clamp(1rem, 3vw, 2rem);
    --mobile-border-radius: clamp(8px, 2vw, 12px);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Modern Typography with Better Spacing */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    line-height: 1.3;
}

p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.1rem;
    color: var(--light-text);
    max-width: 65ch;
}

.lead-text {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.6;
    color: var(--text-gray);
}

/* Modern Buttons with Aceternity-style animations */
.btn-primary {
    background: var(--gradient-gold);
    color: var(--black);
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.25);
    position: relative;
    overflow: hidden;
    min-width: 160px;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.4);
    background: var(--dark-gold);
    color: var(--white);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--black);
    padding: 16px 32px;
    border: 2px solid var(--primary-gold);
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.btn-secondary:hover {
    background: var(--primary-gold);
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.3);
}

/* Modern Navigation with Glass Effect */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1.5rem 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

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

.nav-logo h2 {
    color: var(--black);
    margin: 0;
    font-size: 1.75rem;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Logo Image Styles */
.logo-image {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.logo-image:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(212, 175, 55, 0.3));
}

/* Navigation Banner Styles */
.nav-banner-image {
    height: 40px;
    width: auto;
    max-width: 250px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.nav-banner-image:hover {
    transform: scale(1.02);
    filter: drop-shadow(0 4px 8px rgba(212, 175, 55, 0.3));
}

/* Company Banner Styles */
.company-banner {
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    width: 100%;
    padding: 2rem 0;
}

.banner-image {
    max-width: 100%;
    height: auto;
    max-height: 120px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.1));
    animation: bannerFloat 6s ease-in-out infinite;
    margin: 0 auto;
    display: block;
}

.banner-image:hover {
    transform: scale(1.02);
    filter: drop-shadow(0 8px 30px rgba(212, 175, 55, 0.2));
}

@keyframes bannerFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: width 0.3s ease;
}

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

.nav-link:hover {
    color: var(--primary-gold);
}

.nav-link.cta-button {
    background: var(--gradient-gold);
    color: var(--black);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.nav-link.cta-button:hover {
    background: transparent;
    color: var(--primary-gold);
    border-color: var(--primary-gold);
    transform: translateY(-2px);
}

.nav-link.cta-button::after {
    display: none;
}

/* Modern Section Styles */
section {
    padding: 120px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    color: var(--black);
    margin-bottom: 1.5rem;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--light-text);
    margin: 0 auto;
    line-height: 1.6;
}

/* About Section with Modern Cards */
.about {
    background: var(--white);
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 6rem;
    align-items: start;
}

.about-text {
    padding-right: 2rem;
}

.about-text h3 {
    color: var(--black);
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.about-text p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
}

.founders {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.founder {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    overflow: hidden;
}

.founder::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.6s;
}

.founder:hover::before {
    left: 100%;
}

.founder:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.2);
}

.founder-image {
    width: 100px;
    height: 100px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
    position: relative;
    overflow: hidden;
}

.founder-image::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: rotate 15s linear infinite;
}

.founder-image i {
    font-size: 2.5rem;
    color: var(--black);
    position: relative;
    z-index: 2;
}

.founder h4 {
    color: var(--black);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.founder-title {
    color: var(--primary-gold);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Why Us Section with Modern Grid */
.why-us {
    background: linear-gradient(135deg, var(--light-gray) 0%, rgba(248, 249, 250, 0.5) 100%);
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
}

.feature {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature:hover::before {
    transform: scaleX(1);
}

.feature:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 2rem;
    position: relative;
    overflow: hidden;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: rotate 20s linear infinite;
}

.feature-icon i {
    font-size: 2.5rem;
    color: var(--black);
    position: relative;
    z-index: 2;
}

.feature h3 {
    color: var(--black);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.feature p {
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.7;
}

/* Services Section with Modern Cards */
.services {
    background: var(--white);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.service-card:hover {
    transform: translateY(-20px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.service-card.featured {
    background: var(--gradient-dark);
    color: var(--white);
    transform: scale(1.05);
    border: 2px solid var(--primary-gold);
}

.service-card.featured:hover {
    transform: scale(1.07) translateY(-20px);
    box-shadow: 0 40px 100px rgba(212, 175, 55, 0.3);
}

.service-card.featured .service-header h3,
.service-card.featured .service-content h4 {
    color: var(--primary-gold);
}

.service-badge {
    background: var(--gradient-gold);
    color: var(--black);
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 700;
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    border-radius: 25px;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.service-header {
    padding: 3rem;
    text-align: center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
}

.service-card.featured .service-header {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.service-header i {
    font-size: 4rem;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    display: block;
}

.service-header h3 {
    color: var(--black);
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.service-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-gold);
    margin: 0;
}

.service-content {
    padding: 3rem;
}

.service-content p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.service-features {
    list-style: none;
    margin: 2rem 0;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.75rem 0;
    font-size: 1rem;
}

.service-features i {
    color: var(--primary-gold);
    margin-right: 1rem;
    font-size: 1.1rem;
    font-weight: bold;
}

/* Trading Den & Hedge Fund Sections */
.trading-den {
    background: linear-gradient(135deg, var(--light-gray) 0%, rgba(248, 249, 250, 0.5) 100%);
    position: relative;
}

.hedge-fund {
    background: var(--white);
    position: relative;
}

.trading-den-content,
.hedge-fund-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 6rem;
    align-items: center;
}

.subtitle {
    font-size: 1.3rem;
    color: var(--primary-gold);
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.benefits,
.fund-details {
    margin-top: 3rem;
}

.benefit,
.detail {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

.benefit:hover,
.detail:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.benefit i {
    color: var(--primary-gold);
    font-size: 2rem;
    margin-right: 1.5rem;
    margin-top: 0.25rem;
    min-width: 2rem;
}

.benefit h4,
.detail h4 {
    color: var(--black);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.benefit p,
.detail p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

.trading-den-stats,
.fund-performance {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-card,
.performance-card {
    background: var(--gradient-gold);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    color: var(--black);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before,
.performance-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.stat-card:hover::before,
.performance-card:hover::before {
    left: 100%;
}

.stat-card:hover,
.performance-card:hover {
    transform: translateY(-5px) scale(1.02);
}

.stat-card h3,
.performance-card h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-card p,
.performance-card p {
    font-weight: 600;
    font-size: 1rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Modern Testimonials Section */
.testimonials {
    background: linear-gradient(135deg, var(--light-gray) 0%, rgba(248, 249, 250, 0.5) 100%);
    position: relative;
}

.testimonials-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-slider {
    overflow: hidden;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-height: 400px;
    display: flex;
    align-items: center;
}

.testimonial {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    padding: 4rem;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 6rem;
    color: var(--primary-gold);
    opacity: 0.3;
    font-family: serif;
    line-height: 1;
}

.testimonial-content p {
    font-size: 1.4rem;
    font-style: italic;
    color: var(--text-gray);
    margin-bottom: 3rem;
    line-height: 1.7;
    font-weight: 400;
}

.testimonial-author h4 {
    color: var(--black);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.testimonial-author p {
    color: var(--primary-gold);
    font-weight: 600;
    margin: 0;
    font-size: 1rem;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.nav-btn {
    background: var(--gradient-gold);
    color: var(--black);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.nav-btn:hover {
    background: var(--dark-gold);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.testimonial-placeholder {
    margin-top: 3rem;
    text-align: center;
    padding: 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

/* Modern Contact Section */
.contact {
    background: var(--gradient-dark);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(184, 134, 11, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
    position: relative;
    z-index: 2;
}

.contact-info h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 3rem;
}

.contact-info > p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    font-size: 1.2rem;
}

.contact-options {
    margin-top: 3rem;
}

.contact-option {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.contact-option:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.contact-option i {
    color: var(--primary-gold);
    font-size: 1.8rem;
    margin-right: 1.5rem;
    width: 50px;
    text-align: center;
}

.contact-option h4 {
    color: var(--white);
    margin-bottom: 0.25rem;
    font-size: 1.2rem;
}

.contact-option p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 1rem;
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 24px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.form-group select option {
    background: var(--black);
    color: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Enhanced Disclaimer and Footer */
.disclaimer {
    background: var(--light-gray);
    padding: 4rem 0;
}

.disclaimer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.disclaimer-content h3 {
    color: var(--black);
    margin-bottom: 2rem;
    font-size: 2rem;
}

.disclaimer-content p {
    font-size: 1rem;
    color: var(--light-text);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    max-width: none;
}

/* Legal Protection Section Styles */
.legal-protection {
    background: var(--gradient-dark);
    color: var(--white);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.legal-protection::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(184, 134, 11, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.legal-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.legal-content h2 {
    color: var(--primary-gold);
    text-align: center;
    margin-bottom: 3rem;
    font-size: clamp(2rem, 4vw, 3rem);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.legal-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.legal-section {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.legal-section:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.legal-section h3 {
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.legal-section p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1rem;
}

.legal-section ul {
    color: rgba(255, 255, 255, 0.85);
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.legal-section ul li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.legal-section ul ul {
    margin-top: 0.5rem;
    margin-left: 1rem;
}

.legal-section ul ul li {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.legal-footer {
    background: rgba(255, 68, 68, 0.15);
    border: 2px solid rgba(255, 68, 68, 0.3);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    margin-top: 2rem;
}

.legal-footer p {
    color: #ffdddd;
    font-weight: 600;
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Enhanced Footer Styles */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 5rem 0 3rem;
    position: relative;
}

/* Footer Banner Styles */
.footer-banner {
    text-align: center;
    margin-bottom: 4rem;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-banner-image {
    max-width: 100%;
    height: auto;
    max-height: 80px;
    opacity: 0.9;
    transition: all 0.3s ease;
    filter: brightness(0) invert(1) drop-shadow(0 2px 10px rgba(212, 175, 55, 0.2));
}

.footer-banner-image:hover {
    opacity: 1;
    transform: scale(1.02);
    filter: brightness(0) invert(1) drop-shadow(0 4px 20px rgba(212, 175, 55, 0.3));
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    text-align: center;
    justify-items: center;
}

.footer-section {
    text-align: center;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.footer-section h3,
.footer-section h4 {
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    text-align: center;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    text-align: center;
    max-width: 100%;
}

.footer-section ul {
    list-style: none;
    text-align: center;
    width: 100%;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
    text-align: center;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1rem;
    display: inline-block;
}

.footer-section ul li a:hover {
    color: var(--primary-gold);
}

/* Compliance Statement - Enhanced Centering */
.compliance-statement {
    background: rgba(212, 175, 55, 0.1);
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1.5rem;
    border-left: 3px solid var(--primary-gold);
    text-align: center;
}

.compliance-statement p {
    margin: 0;
    font-style: italic;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
}

/* Social Links - Properly Centered */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    justify-content: center;
    align-items: center;
}

.social-links a {
    background: var(--gradient-gold);
    color: var(--black);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-links a:hover {
    background: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

/* Enhanced Footer Bottom - Perfect Centering */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
    align-items: center;
}

.copyright-statement p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 500;
    text-align: center;
    max-width: 100%;
}

.legal-warnings {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid rgba(255, 68, 68, 0.3);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    max-width: 100%;
}

.legal-warnings p {
    color: #ffcccc;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
    font-weight: 500;
    text-align: center;
}

/* Mobile Responsive Styles for Legal Sections */
@media (max-width: 768px) {
    .legal-protection {
        padding: 3rem 0;
    }
    
    .legal-sections {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .legal-section {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }
    
    .legal-section h3 {
        font-size: 1.2rem;
        flex-direction: column;
        text-align: center;
        gap: 0.25rem;
    }
    
    .copyright-notice {
        padding: 1.5rem;
        margin: 0 0.5rem 2rem;
        text-align: center;
    }
    
    .copyright-main h3 {
        font-size: 1.4rem;
        flex-direction: column;
        gap: 0.25rem;
        justify-content: center;
        text-align: center;
    }
    
    .copyright-main p {
        text-align: center;
        font-size: 1.1rem;
    }
    
    .copyright-details p {
        text-align: center;
        font-size: 0.95rem;
    }
    
    .legal-badges {
        justify-content: center;
        margin: 1rem 0;
        text-align: center;
        gap: 0.5rem;
    }
    
    .legal-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-section h3,
    .footer-section h4 {
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .footer-section p {
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .footer-section ul {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
        align-items: center;
        margin: 1rem auto;
        text-align: center;
    }
    
    .footer-bottom-content {
        gap: 1rem;
        text-align: center;
        align-items: center;
        padding: 0 1rem;
    }
    
    .copyright-statement {
        text-align: center;
    }
    
    .copyright-statement p {
        text-align: center;
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .legal-warnings {
        padding: 1rem;
        text-align: center;
        margin: 0 auto;
        max-width: 95%;
    }
    
    .legal-warnings p {
        font-size: 0.85rem;
        text-align: center;
        line-height: 1.4;
    }
    
    .compliance-statement {
        padding: 0.75rem;
        margin-top: 1rem;
        text-align: center;
    }
    
    .compliance-statement p {
        text-align: center;
        font-size: 0.85rem;
    }
}

/* Essential Hero Section Base Styles */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, 
        var(--gradient-background-start) 0%, 
        var(--gradient-background-end) 100%);
    padding: 140px 0 100px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(184, 134, 11, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    color: var(--black);
    line-height: 1.1;
    margin-bottom: 2rem;
    position: relative;
}

.highlight {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--light-text);
    margin-bottom: 3rem;
    line-height: 1.6;
    font-weight: 400;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin: 3rem 0;
    padding: 2rem 0;
}

.stat {
    text-align: center;
    position: relative;
}

.stat::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

.stat h3 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat p {
    color: var(--text-gray);
    font-weight: 600;
    font-size: 0.95rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* Footer Banner Styles */
.footer-banner {
    text-align: center;
    margin-bottom: 4rem;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-banner-image {
    max-width: 100%;
    height: auto;
    max-height: 80px;
    opacity: 0.9;
    transition: all 0.3s ease;
    filter: brightness(0) invert(1) drop-shadow(0 2px 10px rgba(212, 175, 55, 0.2));
}

.footer-banner-image:hover {
    opacity: 1;
    transform: scale(1.02);
    filter: brightness(0) invert(1) drop-shadow(0 4px 20px rgba(212, 175, 55, 0.3));
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    text-align: center;
    justify-items: center;
}

.footer-section {
    text-align: center;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.footer-section h3,
.footer-section h4 {
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    text-align: center;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    text-align: center;
    max-width: 100%;
}

.footer-section ul {
    list-style: none;
    text-align: center;
    width: 100%;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
    text-align: center;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1rem;
    display: inline-block;
}

.footer-section ul li a:hover {
    color: var(--primary-gold);
}

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

.social-links a {
    background: var(--gradient-gold);
    color: var(--black);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-links a:hover {
    background: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 0.95rem;
}

/* Enhanced Responsive Design */
@media (max-width: 1200px) {
    .container {
        max-width: 1200px;
        padding: 0 20px;
    }
    
    .hero-container,
    .about-content,
    .trading-den-content,
    .hedge-fund-content,
    .contact-content {
        gap: 4rem;
    }
}

/* Mobile Hamburger Menu Styles */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.hamburger:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background: var(--black);
    margin: 3px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background: var(--primary-gold);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
    transform: translateX(20px);
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
    background: var(--primary-gold);
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        padding: 2rem 0;
        z-index: 999;
        border-top: 1px solid rgba(212, 175, 55, 0.2);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu .nav-link {
        padding: 1.25rem 2rem;
        display: block;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
        font-size: 1.1rem;
        font-weight: 500;
        min-height: 44px; /* Touch target minimum */
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .nav-menu .nav-link:hover {
        background: rgba(212, 175, 55, 0.1);
        transform: translateX(10px);
        color: var(--primary-gold);
    }
    
    .nav-menu .nav-link:last-child {
        border-bottom: none;
    }
    
    .nav-menu .nav-link.cta-button {
        margin: 1rem 2rem;
        border-radius: 12px;
        background: var(--gradient-gold);
        color: var(--black);
        border-bottom: none;
        min-height: 48px; /* Larger touch target for CTA */
    }
    
    .nav-menu .nav-link.cta-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    }
    
    /* Navigation banner responsive adjustments */
    .nav-banner-image {
        height: 32px;
        max-width: 200px;
    }
    
    /* FIXED: Hero section mobile optimization */
    .hero {
        min-height: calc(100vh - 70px); /* Account for navbar height */
        padding: 90px 0 60px; /* Reduced padding for mobile */
        display: flex;
        align-items: center;
        justify-content: center;
        overflow-x: hidden !important; /* Force prevent horizontal overflow */
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
        padding: 1rem; /* FIXED: Added consistent padding */
        min-height: auto; /* Remove min-height constraint */
        max-width: 100%;
        overflow-x: hidden; /* Prevent horizontal overflow */
        width: 100%; /* FIXED: Ensure full width usage */
        box-sizing: border-box; /* FIXED: Ensure proper box sizing */
    }
    
    .hero-content {
        max-width: 100%;
        padding: 0; /* FIXED: Remove all padding to maximize space */
        width: 100%;
        box-sizing: border-box; /* FIXED: Ensure proper box sizing */
        overflow-x: hidden; /* FIXED: Prevent content overflow */
    }
    
    .hero-title {
        font-size: clamp(1.6rem, 5.5vw, 2.6rem) !important; /* FIXED: Even more aggressive mobile sizing */
        line-height: 1.2 !important;
        margin-bottom: 1.5rem;
        word-wrap: break-word !important; /* Force word wrapping */
        hyphens: auto !important; /* FIXED: Enable hyphenation for long words */
        max-width: 100% !important; /* FIXED: Ensure title doesn't exceed container */
        padding: 0 !important; /* FIXED: Remove all padding that could cause overflow */
        box-sizing: border-box !important;
        overflow-wrap: break-word !important; /* FIXED: Force breaking of long words */
        width: 100% !important; /* FIXED: Ensure full width constraint */
        white-space: normal !important; /* FIXED: Allow text wrapping */
        text-align: center !important;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        line-height: 1.5;
        margin-bottom: 2rem;
        padding: 0 1rem; /* FIXED: Increased padding for better readability */
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin: 2rem 0;
        padding: 1rem 0;
        width: 100%;
    }
    
    .stat {
        padding: 1.5rem;
        min-height: 120px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        background: rgba(255, 255, 255, 0.8);
        border-radius: 12px;
        backdrop-filter: blur(10px);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        margin: 0 1rem; /* FIXED: Add margin to prevent edge touching */
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        padding: 1rem;
        width: 100%;
    }
    
    .hero-cta .btn-primary,
    .hero-cta .btn-secondary {
        width: 100%;
        max-width: 300px;
        min-height: 48px; /* Touch-friendly */
        justify-content: center;
    }
    
    /* FIXED: Contact section mobile optimization */
    .contact {
        background: var(--gradient-dark);
        color: var(--white);
        position: relative;
        overflow: hidden;
        padding: 80px 0; /* Ensure adequate padding */
    }
    
    .contact::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(184, 134, 11, 0.1) 0%, transparent 50%);
        pointer-events: none;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        position: relative;
        z-index: 2;
    }
    
    .contact-info h2 {
        color: var(--white) !important; /* Force white color */
        margin-bottom: 1.5rem;
        font-size: clamp(2rem, 6vw, 3rem);
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); /* Add text shadow for better visibility */
        font-weight: 700;
    }
    
    .contact-info > p {
        color: rgba(255, 255, 255, 0.9) !important; /* Force light color */
        margin-bottom: 2rem;
        font-size: 1.1rem;
        line-height: 1.6;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    }
    
    .contact-option h4 {
        color: var(--white) !important;
        margin-bottom: 0.5rem;
        font-size: 1.1rem;
        font-weight: 600;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    }
    
    .contact-option p {
        color: rgba(255, 255, 255, 0.8) !important;
        margin: 0;
        font-size: 0.95rem;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    }
    
    .contact-form {
        background: rgba(255, 255, 255, 0.15);
        padding: 2rem 1.5rem;
        border-radius: 20px;
        backdrop-filter: blur(20px);
        border: 2px solid rgba(255, 255, 255, 0.2);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    }
    
    .about-content,
    .trading-den-content,
    .hedge-fund-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .services-grid,
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        transform: none !important;
        margin-bottom: 1rem;
    }
    
    .service-card.featured {
        transform: none;
        order: -1; /* Show featured service first on mobile */
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .trading-den-stats,
    .fund-performance {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .stat-card {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    section {
        padding: 60px 0;
        overflow-x: hidden; /* Prevent horizontal overflow */
    }
    
    .section-header {
        margin-bottom: 3rem;
        text-align: center;
        padding: 0 1rem;
    }
    
    .section-header h2 {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
    }
    
    /* Touch-friendly buttons */
    .btn-primary,
    .btn-secondary {
        min-height: 48px;
        font-size: 1rem;
        padding: 16px 24px;
        touch-action: manipulation; /* Prevent double-tap zoom */
    }
    
    /* Mobile-optimized forms */
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        min-height: 48px;
        font-size: 16px; /* Prevent zoom on iOS */
        padding: 12px 16px;
    }
    
    /* FIXED: Mobile testimonials with better image visibility */
    .testimonial {
        padding: 2rem 1rem; /* FIXED: Increased padding for better spacing */
        margin: 0 0.5rem;
        width: calc(100% - 1rem); /* FIXED: Ensure proper width calculation */
        box-sizing: border-box;
    }
    
    .testimonial-image {
        padding: 1rem; /* FIXED: Consistent padding */
        width: 100%;
        box-sizing: border-box;
    }
    
    .testimonial-screenshot {
        max-height: 60vh; /* FIXED: Adjusted for very small screens while maintaining visibility */
        min-height: 250px; /* FIXED: Maintained good minimum height */
        border-radius: 8px;
        border-width: 2px;
        width: 100%;
        height: auto;
        display: block;
        margin: 0 auto;
        object-fit: contain;
        object-position: center;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12); /* FIXED: Adjusted shadow for small screens */
    }
    
    /* FIXED: Improve testimonial container for very small screens */
    .testimonials-container {
        padding: 0 0.5rem; /* FIXED: Reduced padding */
        width: 100%;
        box-sizing: border-box;
    }
    
    .testimonial-slider {
        border-radius: 12px; /* FIXED: Smaller border radius */
        background: rgba(255, 255, 255, 0.98); /* FIXED: More opaque for better contrast */
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 14px 20px;
        font-size: 0.95rem;
        width: 100%;
        max-width: 280px;
    }
    
    .footer-banner-image {
        max-height: 45px;
    }
    
    /* Enhanced touch targets for very small screens */
    .nav-menu .nav-link {
        padding: 1.5rem 1rem;
        min-height: 48px;
        font-size: 1rem;
    }
    
    .nav-menu .nav-link.cta-button {
        margin: 1rem;
        min-height: 52px;
    }
    
    /* Improved spacing for readability */
    section {
        padding: 40px 0;
        overflow-x: hidden;
    }
    
    .section-header {
        margin-bottom: 2rem;
        padding: 0 0.5rem;
    }
    
    .section-header h2 {
        font-size: clamp(1.5rem, 6vw, 2rem);
        margin-bottom: 1rem;
    }
    
    .section-header p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    /* Optimized animations for mobile performance */
    .feature:hover,
    .service-card:hover,
    .benefit:hover {
        transform: translateY(-2px); /* Reduced animation for mobile */
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    /* Extra small screen optimizations */
    .nav-banner-image {
        height: 28px;
        max-width: 150px;
    }
    
    .company-banner {
        margin-bottom: 1.5rem;
    }
    
    /* FIXED: Hero mobile optimizations for very small screens */
    .hero {
        min-height: calc(100vh - 70px); /* Account for navbar height */
        padding: 90px 0 60px; /* Reduced padding for mobile */
        display: flex;
        align-items: center;
        justify-content: center;
        overflow-x: hidden !important; /* Force prevent horizontal overflow */
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
        padding: 1rem; /* FIXED: Added consistent padding */
        min-height: auto; /* Remove min-height constraint */
        max-width: 100%;
        overflow-x: hidden; /* Prevent horizontal overflow */
        width: 100%; /* FIXED: Ensure full width usage */
        box-sizing: border-box; /* FIXED: Ensure proper box sizing */
    }
    
    .hero-content {
        max-width: 100%;
        padding: 0; /* FIXED: Remove all padding to maximize space */
        width: 100%;
        box-sizing: border-box; /* FIXED: Ensure proper box sizing */
        overflow-x: hidden; /* FIXED: Prevent content overflow */
    }
    
    .hero-title {
        font-size: clamp(1.6rem, 5.5vw, 2.6rem) !important; /* FIXED: Even more aggressive mobile sizing */
        line-height: 1.2 !important;
        margin-bottom: 1.5rem;
        word-wrap: break-word !important; /* Force word wrapping */
        hyphens: auto !important; /* FIXED: Enable hyphenation for long words */
        max-width: 100% !important; /* FIXED: Ensure title doesn't exceed container */
        padding: 0 !important; /* FIXED: Remove all padding that could cause overflow */
        box-sizing: border-box !important;
        overflow-wrap: break-word !important; /* FIXED: Force breaking of long words */
        width: 100% !important; /* FIXED: Ensure full width constraint */
        white-space: normal !important; /* FIXED: Allow text wrapping */
        text-align: center !important;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        line-height: 1.5;
        margin-bottom: 2rem;
        padding: 0 0.5rem; /* FIXED: Adjusted padding */
        box-sizing: border-box;
    }
    
    .hero-stats {
        gap: 1rem;
        margin: 1.5rem 0;
        width: 100%;
    }
    
    .stat {
        padding: 1rem;
        min-height: 100px;
        margin: 0 0.5rem; /* FIXED: Reduced margin for very small screens */
    }
    
    .stat h3 {
        font-size: 2rem;
    }
    
    /* FIXED: Contact section for very small screens */
    .contact {
        padding: 60px 0;
    }
    
    .contact-info h2 {
        font-size: clamp(1.75rem, 7vw, 2.5rem);
        margin-bottom: 1rem;
        line-height: 1.2;
    }
    
    .contact-info > p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }
    
    .contact-option {
        padding: 1rem;
        margin-bottom: 1rem;
        flex-direction: column;
        text-align: center;
        border-radius: 12px;
    }
    
    .contact-option i {
        margin-right: 0;
        margin-bottom: 0.5rem;
        font-size: 1.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
        border-radius: 16px;
    }
    
    .benefits,
    .fund-details {
        margin-top: 2rem;
    }
    
    .benefit,
    .detail {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem;
        min-height: auto;
    }
    
    .benefit i {
        margin-right: 0;
        margin-bottom: 1rem;
        font-size: 2.5rem;
    }
    
    .feature {
        padding: 1.5rem;
        text-align: center;
    }
    
    .feature-icon {
        margin-bottom: 1rem;
    }
    
    .feature-icon i {
        font-size: 2.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-header h3 {
        font-size: 1.3rem;
    }
    
    .trading-visual {
        width: 250px;
        height: 250px;
        margin: 2rem auto;
    }
    
    .trading-visual i {
        font-size: 5rem;
    }
    
    /* FIXED: Testimonial images for very small screens */
    .testimonial {
        padding: 1.5rem 0.75rem; /* FIXED: Optimized padding for very small screens */
        margin: 0 0.25rem;
        width: calc(100% - 0.5rem); /* FIXED: Adjusted width calculation */
        box-sizing: border-box;
    }
    
    .testimonial-image {
        padding: 0.75rem; /* FIXED: Reduced padding for very small screens */
        width: 100%;
        box-sizing: border-box;
    }
    
    .testimonial-screenshot {
        max-height: 60vh; /* FIXED: Adjusted for very small screens while maintaining visibility */
        min-height: 250px; /* FIXED: Maintained good minimum height */
        border-radius: 8px;
        border-width: 2px;
        width: 100%;
        height: auto;
        display: block;
        margin: 0 auto;
        object-fit: contain;
        object-position: center;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12); /* FIXED: Adjusted shadow for small screens */
    }
    
    /* FIXED: Improve testimonial container for very small screens */
    .testimonials-container {
        padding: 0 0.5rem; /* FIXED: Reduced padding */
        width: 100%;
        box-sizing: border-box;
    }
    
    .testimonial-slider {
        border-radius: 12px; /* FIXED: Smaller border radius */
        background: rgba(255, 255, 255, 0.98); /* FIXED: More opaque for better contrast */
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 14px 20px;
        font-size: 0.95rem;
        width: 100%;
        max-width: 280px;
    }
    
    .footer-banner-image {
        max-height: 45px;
    }
    
    /* Enhanced touch targets for very small screens */
    .nav-menu .nav-link {
        padding: 1.5rem 1rem;
        min-height: 48px;
        font-size: 1rem;
    }
    
    .nav-menu .nav-link.cta-button {
        margin: 1rem;
        min-height: 52px;
    }
    
    /* Improved spacing for readability */
    section {
        padding: 40px 0;
        overflow-x: hidden;
    }
    
    .section-header {
        margin-bottom: 2rem;
        padding: 0 0.5rem;
    }
    
    .section-header h2 {
        font-size: clamp(1.5rem, 6vw, 2rem);
        margin-bottom: 1rem;
    }
    
    .section-header p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    /* Optimized animations for mobile performance */
    .feature:hover,
    .service-card:hover,
    .benefit:hover {
        transform: translateY(-2px); /* Reduced animation for mobile */
    }
}

/* Mobile-first improvements for touch devices */
@media (hover: none) and (pointer: coarse) {
    /* Touch device specific optimizations */
    .btn-primary:hover,
    .btn-secondary:hover,
    .nav-link:hover,
    .service-card:hover,
    .btn-primary:hover,
    .btn-secondary:hover {
        transform: none; /* Disable hover transforms on touch devices */
    }
    
    .btn-primary:active,
    .btn-secondary:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
    
    /* Increase touch targets */
    .nav-link,
    .btn-primary,
    .btn-secondary,
    .nav-btn {
        min-height: 44px;
        min-width: 44px;
    }
}

/* Additional Mobile Optimization Rules */

/* Global mobile viewport fixes */
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        max-width: 100vw;
        position: relative;
    }
    
    .container {
        max-width: 100%;
        overflow-x: hidden;
    }
    
    /* Enhanced mobile focus states */
    *:focus {
        outline: 2px solid var(--primary-gold);
        outline-offset: 2px;
    }
    
    .btn-primary:focus,
    .btn-secondary:focus {
        box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.3);
    }
    
    /* Mobile-optimized text selection */
    ::selection {
        background: rgba(212, 175, 55, 0.3);
        color: var(--black);
    }
    
    /* Enhanced mobile scrollbar */
    ::-webkit-scrollbar {
        width: 4px;
    }
    
    ::-webkit-scrollbar-track {
        background: transparent;
    }
    
    ::-webkit-scrollbar-thumb {
        background: var(--primary-gold);
        border-radius: 2px;
    }
    
    /* Mobile navigation improvements */
    .nav-menu.active {
        animation: slideInFromLeft 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    @keyframes slideInFromLeft {
        from {
            transform: translateX(-100%);
            opacity: 0;
        }
        to {
            transform: translateX(0);
            opacity: 1;
        }
    }
    
    /* Mobile-optimized grid layouts */
    .services-grid,
    .features-grid {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .service-card,
    .feature {
        width: 100%;
        max-width: none;
    }
    
    /* Mobile testimonial improvements */
    .testimonial-slider {
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    
    .testimonial {
        scroll-snap-align: center;
        flex-shrink: 0;
    }
    
    /* Mobile footer optimizations */
    .footer {
        padding-bottom: max(2rem, env(safe-area-inset-bottom));
    }
}

/* Mobile landscape optimizations */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-container {
        min-height: 100vh;
        padding: 1rem 0;
    }
    
    .hero-title {
        font-size: clamp(1.5rem, 4vw, 2rem);
        margin-bottom: 1rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        margin: 1rem 0;
    }
    
    .stat {
        padding: 0.75rem;
        min-height: 60px;
    }
    
    .stat h3 {
        font-size: 1.5rem;
    }
    
    .stat p {
        font-size: 0.8rem;
    }
}

/* Performance optimizations for older mobile devices */
@media (max-width: 480px) {
    * {
        will-change: auto;
    }
    
    .hero::before,
    .feature::before,
    .service-card::before {
        display: none; /* Remove complex pseudo-elements on small screens */
    }
    
    /* Simplified animations for better performance */
    .feature:hover,
    .service-card:hover {
        transform: none;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
    
    /* Reduced motion for low-powered devices */
    @media (prefers-reduced-motion: reduce) {
        *,
        *::before,
        *::after {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
            scroll-behavior: auto !important;
        }
    }
}

/* Mobile-specific utilities */
.mobile-hidden {
    display: block;
}

.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .mobile-hidden {
        display: none !important;
    }
    
    .mobile-only {
        display: block;
    }
}

/* Enhanced mobile scrolling */
.hero,
.about,
.services,
.testimonials,
.contact {
    scroll-margin-top: 80px; /* Account for fixed navbar */
}

/* Mobile iOS safe area support */
@supports (padding: max(0px)) {
    html {
        padding-top: env(safe-area-inset-top);
        background: #ffffff;
    }
    
    body {
        background: #ffffff;
        padding-top: 0;
    }
    
    .navbar {
        padding-left: max(24px, env(safe-area-inset-left));
        padding-right: max(24px, env(safe-area-inset-right));
        padding-top: max(1.5rem, env(safe-area-inset-top));
    }
    
    .container {
        padding-left: max(16px, env(safe-area-inset-left));
        padding-right: max(16px, env(safe-area-inset-right));
    }
    
    .hero {
        padding-bottom: max(60px, env(safe-area-inset-bottom));
    }
    
    .nav-menu {
        padding-bottom: max(2rem, env(safe-area-inset-bottom));
    }
}

/* Testimonial Image Styles - Base Desktop Styles Only */
.testimonial-image {
    padding: 2rem;
}

.testimonial-image .testimonial-content {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.testimonial-screenshot {
    max-width: 100%;
    height: auto;
    max-height: 500px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid rgba(212, 175, 55, 0.2);
    object-fit: contain;
}

.testimonial-screenshot:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
    border-color: rgba(212, 175, 55, 0.4);
}

/* Hedge Fund Conditional Fields Styling */
.hedge-fund-fields {
    margin-top: 1rem;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(-10px);
}

.hedge-fund-fields.show {
    opacity: 1;
    max-height: 300px;
    transform: translateY(0);
    margin-bottom: 1rem;
}

.hedge-fund-fields .form-group {
    margin-bottom: 1.5rem;
    animation: slideInUp 0.3s ease-out forwards;
    opacity: 0;
}

.hedge-fund-fields.show .form-group:nth-child(1) {
    animation-delay: 0.1s;
}

.hedge-fund-fields.show .form-group:nth-child(2) {
    animation-delay: 0.2s;
}

.hedge-fund-fields.show .form-group:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hedge-fund-fields select {
    width: 100%;
    padding: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    backdrop-filter: blur(10px);
}

.hedge-fund-fields select:focus {
    outline: none;
    border-color: var(--primary-gold);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.hedge-fund-fields select option {
    background: var(--black);
    color: var(--white);
    padding: 0.5rem;
}

/* Mobile responsiveness for hedge fund fields */
@media (max-width: 768px) {
    .hedge-fund-fields {
        margin-top: 0.75rem;
    }
    
    .hedge-fund-fields.show {
        max-height: 350px;
    }
    
    .hedge-fund-fields select {
        padding: 1rem;
        font-size: 0.95rem;
    }
    
    .hedge-fund-fields .form-group {
        margin-bottom: 1rem;
    }
}

/* Hedge Fund CTA Button Layout */
.hedge-fund-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.hedge-fund-cta .btn-primary,
.hedge-fund-cta .btn-secondary {
    flex: 1;
    min-width: 200px;
    max-width: 280px;
    text-align: center;
    white-space: nowrap;
}

/* Mobile responsiveness for hedge fund CTA */
@media (max-width: 768px) {
    .hedge-fund-cta {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .hedge-fund-cta .btn-primary,
    .hedge-fund-cta .btn-secondary {
        width: 100%;
        max-width: none;
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .hedge-fund-cta {
        gap: 0.75rem;
    }
    
    .hedge-fund-cta .btn-primary,
    .hedge-fund-cta .btn-secondary {
        padding: 14px 20px;
        font-size: 0.95rem;
    }
} 