/* ===================================
   CashMax Landing Page Styles
   =================================== */

/* Color Variables */
:root {
    --primary-green: #4CAF50;
    --bright-green: #00AD40;
    --dark-green: #0F5132;
    --darker-green: #0A3622;
    --yellow-accent: #FFD700;
    --light-bg: #F8F9FA;
    --dark-footer: #2D2D2D;
    --text-dark: #333333;
    --text-muted: #666666;
    --border-radius: 8px;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

/* Logo Section */
.logo-section {
    background-color: white;
    padding: 2rem 0 1.5rem;
}

.logo-container {
    display: inline-block;
}

.logo-text {
    font-family: Impact, 'Arial Black', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: 2px;
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.logo-cash {
    color: var(--bright-green);
}

.logo-max {
    color: var(--yellow-accent);
}

.logo-subtitle {
    font-family: Impact, 'Arial Black', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    background-color: var(--text-dark);
    padding: 0.25rem 1rem;
    margin-top: -0.5rem;
    letter-spacing: 1px;
    font-style: italic;
    transform: skewX(-5deg);
    display: inline-block;
}

/* Main Content */
.main-content {
    background-color: var(--primary-green);
    padding: 3rem 0 4rem;
    min-height: 60vh;
}

.main-heading {
    font-family: 'Inter', sans-serif;
    font-size: 2.75rem;
    font-weight: 700;
    color: black;
    line-height: 1.2;
    margin-bottom: 2.5rem;
}

/* Form Card */
.form-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 850px;
    margin: 0 auto;
}

.form-card-header {
    background-color: #104601;
    color: white;
    padding: 1.75rem 2rem;
    text-align: left;
}

.benefit-text {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.4;
}

.form-card-body {
    padding: 2.5rem 2rem 2rem;
}

.form-card-body-2 {
    padding: 2.5rem 2rem 2rem;
    margin-bottom: -19rem;
}

.form-heading {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

/* Form Styles */
.form-label {
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-control {
    border: 2px solid #333;
    border-radius: 6px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: var(--bright-green);
    box-shadow: 0 0 0 0.2rem rgba(0, 173, 64, 0.25);
}

.helper-text {
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-top: 0.5rem;
}

.form-divider {
    border: 0;
    border-top: 3px solid var(--text-dark);
    opacity: 1;
    margin: 2rem 0;
}

/* Submit Button */
.btn-submit {
    background-color: var(--dark-green);
    border: none;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
    padding: 0.875rem 3rem;
    border-radius: 6px;
    text-transform: capitalize;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.btn-submit:hover {
    background-color: var(--darker-green);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-submit:active {
    transform: translateY(0);
}

/* Footer */
.site-footer {
    background-color: var(--dark-footer);
    color: white;
    padding: 2rem 0;
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-copyright {
    font-weight: 500;
}

.footer-links {
    margin: 0.75rem 0;
}

.footer-link {
    color: var(--bright-green);
    text-decoration: none;
    margin: 0 0.25rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--yellow-accent);
    text-decoration: underline;
}

.footer-link-green {
    color: var(--bright-green);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link-green:hover {
    color: var(--yellow-accent);
    text-decoration: underline;
}

.footer-consent,
.footer-disclaimer {
    font-size: 0.85rem;
    color: #CCCCCC;
    line-height: 1.6;
}

.logo {
    width: 18rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo {
        width: 9rem;
    }

    .logo-subtitle {
        font-size: 1.1rem;
        padding: 0.2rem 0.75rem;
    }

    .main-heading {
        font-size: 2rem;
        line-height: 1.3;
    }

    .benefit-text {
        font-size: 1.25rem;
    }

    .form-card-body {
        padding: 2rem 1.5rem 1.5rem;
    }

    .form-card-body-2 {
        padding: 2rem 1.5rem 1.5rem;
        margin-bottom: -5rem;
    }

    .form-heading {
        font-size: 1.25rem;
    }

    .btn-submit {
        font-size: 1.1rem;
        padding: 0.75rem 2.5rem;
        width: 100%;
        max-width: 300px;
    }

    .site-footer {
        font-size: 0.85rem;
        text-align: center;
    }

    .footer-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }
}

@media (max-width: 576px) {
    .logo-text {
        font-size: 2rem;
    }

    .logo-subtitle {
        font-size: 0.95rem;
    }

    .main-heading {
        font-size: 1.75rem;
    }

    .main-content {
        padding: 2rem 0 3rem;
    }
}

/* Print Styles */
@media print {
    .site-footer {
        page-break-inside: avoid;
    }
}
