/* Partners Page Specific Styles */

/* Fix header layout */
.header-lt {
    position: sticky !important;
    top: 0 !important;
    z-index: 1000 !important;
    background: #1e3a5f !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
}

.header-content-lt {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
}

/* Fix logo wrapping */
.logo-lt {
    white-space: nowrap !important;
    display: inline-flex !important;
    align-items: center !important;
    flex-shrink: 0 !important;
}

/* Fix navigation layout */
.nav-lt {
    display: flex !important;
    align-items: center !important;
    gap: 2rem !important;
}

.nav-dropdown-lt {
    position: relative !important;
}

/* Trust bar text visibility */
.trust-stat-lt .stat-number-lt {
    color: #ffffff !important;
    font-weight: 700 !important;
    font-size: 1.25rem !important;
    white-space: nowrap !important;
}

.trust-stat-lt .stat-label-lt {
    color: #e5e7eb !important;
    font-size: 0.95rem !important;
    white-space: nowrap !important;
}

/* Style dropdown selects to match input fields */
select#industry,
select#monthlyBudget,
select#salesReps {
    width: 100% !important;
    padding: 1rem !important;
    font-size: 1rem !important;
    border: 2px solid #e5e7eb !important;
    border-radius: 12px !important;
    background: white !important;
    color: #1f2937 !important;
    font-family: inherit !important;
    margin-bottom: 1rem !important;
    appearance: none !important;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%236b7280" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>') !important;
    background-repeat: no-repeat !important;
    background-position: right 1rem center !important;
    background-size: 20px !important;
    cursor: pointer !important;
}

select#industry:focus,
select#monthlyBudget:focus,
select#salesReps:focus {
    outline: none !important;
    border-color: #10b981 !important;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1) !important;
}

/* Button styling to match homepage */
.btn-submit-lt {
    width: 100% !important;
    padding: 16px !important;
    background: linear-gradient(135deg, #10b981, #14b8a6) !important;
    color: white !important;
    border: none !important;
    border-radius: 8px !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: transform 0.3s, box-shadow 0.3s !important;
}

.btn-submit-lt:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3) !important;
}

/* Ensure responsive layout for mobile */
@media (max-width: 768px) {
    .trust-stats-lt {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 2rem !important;
    }
    
    .logo-lt {
        font-size: 1.25rem !important;
        display: inline-flex !important;
        align-items: center !important;
        gap: 0.5rem !important;
    }
    
    /* FIX: Ensure logo image is same size as homepage */
    .logo-img-lt {
        height: 32px !important;
        width: auto !important;
        max-height: 32px !important;
        max-width: 32px !important;
    }
    
    .logo-text-lt {
        font-size: 1.5rem !important;
        display: inline !important;
    }
    
    .header-content-lt {
        padding: 0.75rem 0 !important;
    }
}
