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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #231F20;
    overflow-x: hidden;
}

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

/* Color Variables */
:root {
    --primary-gold: #C2A344;
    --primary-green: #8BC34A;
    --dark-gray: #231F20;
    --light-gray: #f8f9fa;
    --white: #ffffff;
    --orange: #f39c12;
    --orange-hover: #e67e22;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(35, 31, 32, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-logo .logo {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 10px 0;
}

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

/* Desktop Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu .nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 10px 0;
}

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

/* Desktop Free Report Button */
.nav-menu .nav-report {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%) !important;
    color: white !important;
    font-weight: 600 !important;
    border-radius: 25px !important;
    padding: 12px 24px !important;
    margin-left: 15px !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3) !important;
    transition: all 0.3s ease !important;
}

.nav-menu .nav-report:hover,
.nav-menu .nav-report:focus {
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.4) !important;
    color: white !important;
}

.back-button {
    background: var(--primary-gold);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.back-button:hover {
    background: #a08935;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #231F20 0%, #2c3e50 100%);
    padding: 120px 0 80px;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #bdc3c7;
    margin-bottom: 40px;
    font-weight: 300;
}

/* Preview Stats */
.preview-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 10px;
}

.stat-label {
    color: #bdc3c7;
    font-size: 1rem;
    font-weight: 500;
}

/* Portal Info */
.portal-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 60px 0;
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.info-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
}

.info-icon {
    font-size: 3rem;
    color: var(--orange);
    margin-bottom: 20px;
}

.info-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 15px;
}

.info-description {
    color: #bdc3c7;
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Form Section */
.form-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 60px 0;
    margin: 40px 0;
    border-radius: 20px;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.form-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.form-subtitle {
    color: #bdc3c7;
    margin-bottom: 40px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.form-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.feature {
    text-align: center;
}

.feature-icon {
    font-size: 2rem;
    color: var(--orange);
    margin-bottom: 15px;
}

.feature-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
}

.feature-description {
    color: #bdc3c7;
    font-size: 0.9rem;
}

/* Form Styles */
.report-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--white);
    font-weight: 500;
    font-size: 1rem;
}

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

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-gold);
    background: rgba(255, 255, 255, 0.15);
}

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

.email-note {
    font-size: 0.9rem;
    color: #e74c3c;
    margin-top: 5px;
    font-style: italic;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--orange), var(--orange-hover));
    color: var(--white);
    padding: 18px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.3);
}

.submit-btn.loading {
    background: #95a5a6;
    cursor: not-allowed;
    transform: none;
}

.form-disclaimer {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #bdc3c7;
    line-height: 1.5;
}

/* Form Messages */
.form-message {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 500;
    text-align: center;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* What's Included Section */
.whats-included {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary-gold);
    text-align: center;
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.feature-card .feature-icon {
    font-size: 3rem;
    color: var(--orange);
    margin-bottom: 25px;
}

.feature-card .feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 15px;
}

.feature-card .feature-description {
    color: #bdc3c7;
    line-height: 1.6;
}

/* Form Overlay */
.form-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.form-overlay.show {
    opacity: 1;
    visibility: visible;
}

.form-overlay-content {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    color: var(--dark-gray);
}

.form-overlay-content h3 {
    color: var(--primary-gold);
    font-size: 2rem;
    margin-bottom: 20px;
}

.form-overlay-content p {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.6;
}

/* Footer - FIXED STYLES FOR PROPER CONTRAST */
.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 40px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    align-items: center;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-info p {
    margin-bottom: 5px;
    color: #bdc3c7;
    font-size: 0.9rem;
}

/* FIXED: Footer Links with Proper Contrast */
.footer-links {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.footer-links a {
    color: var(--primary-gold) !important;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 5px;
    background: rgba(194, 163, 68, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(194, 163, 68, 0.3);
}

.footer-links a:hover {
    background: var(--primary-gold);
    color: var(--dark-gray) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(194, 163, 68, 0.3);
}

/* Download Button */
.download-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--orange);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    margin: 20px 0;
    transition: all 0.3s ease;
}

.download-button:hover {
    background: var(--orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.3);
}

.close-overlay {
    background: #95a5a6;
    color: var(--white);
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.close-overlay:hover {
    background: #7f8c8d;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .preview-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .portal-info {
        grid-template-columns: 1fr;
    }
    
    .form-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .nav-links {
        display: none;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }
    
    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .stat-card {
        padding: 20px 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .info-card {
        padding: 30px 20px;
    }
    
    .report-form {
        padding: 30px 20px;
    }
    
    .form-overlay-content {
        padding: 30px 20px;
        margin: 20px;
    }
}



/* Mobile Navigation - Vertical Stack */
@media (max-width: 768px) {
    .hamburger {
        display: none; /* Remove hamburger menu */
    }
    
    .nav-menu {
        position: static; /* Change from fixed positioning */
        left: auto;
        top: auto;
        flex-direction: column;
        background-color: rgba(35, 31, 32, 0.95);
        width: 100%;
        text-align: center;
        padding: 15px 0;
        display: flex; /* Always show on mobile */
        border-top: 1px solid rgba(194, 163, 68, 0.3);
    }
    
    .nav-menu.active {
        left: auto; /* Remove active state dependency */
    }
    
    .nav-link {
        padding: 12px 20px;
        display: block;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 0.9rem;
        font-weight: 500;
        transition: all 0.3s ease;
    }
    
    .nav-link:hover {
        background-color: rgba(194, 163, 68, 0.2);
        color: #C2A344;
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    /* Special styling for Free Report button */
    .nav-report {
        background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%) !important;
        color: white !important;
        font-weight: 600 !important;
        border-radius: 25px !important;
        padding: 10px 20px !important;
        margin-left: 15px !important;
        border: none !important;
        box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3) !important;
        transition: all 0.3s ease !important;
    }
    
    .nav-report:hover,
    .nav-report:focus {
        background: linear-gradient(135deg, #e67e22 0%, #d35400 100%) !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 6px 20px rgba(243, 156, 18, 0.4) !important;
        color: white !important;
    }
    
    /* Fix header cut-off - Add more top padding */
    .hero {
        padding-top: 140px; /* Add extra padding for mobile */
        padding-bottom: 80px;
    }
    
    .hero-title {
        font-size: 2.2rem; /* Slightly smaller but still prominent */
        margin-top: 20px; /* Extra margin to prevent cut-off */
    }
}

