/* OfferChecklist.com - Green Theme with Single-Column List Layout */

/* Import base styles */
@import url('base-styles.css');

/* CSS Custom Properties for OfferChecklist Branding */
:root {
    --primary-color: #059669;
    --primary-dark: #047857;
    --primary-light: #10b981;
    --secondary-color: #6b7280;
    --accent-color: #34d399;
    --text-color: #1f2937;
    --text-light: #6b7280;
    --bg-color: #ffffff;
    --bg-light: #f0fdf4;
    --border-color: #d1d5db;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Typography - Softer, Rounded */
body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--bg-color);
}

/* Disclosure Banner */
.disclosure-banner {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-bottom: 3px solid #f59e0b;
    padding: 1.5rem 0;
    font-size: 1rem;
    color: #92400e;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.disclosure-banner p {
    margin: 0;
    text-align: center;
    font-weight: 500;
}

.disclosure-footer {
    font-size: 0.75rem;
    color: #6b7280;
    margin-top: 0.5rem;
}

/* Header Styles */
.header {
    background: white;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 3px solid var(--primary-color);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 0;
}

.logo {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.025em;
}

.logo:hover {
    text-decoration: none;
    color: var(--primary-dark);
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: var(--text-color);
    font-weight: 500;
    padding: 0.75rem 1rem;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 8px;
    font-size: 0.95rem;
}

.nav-link:hover {
    color: var(--primary-color);
    text-decoration: none;
    background-color: var(--bg-light);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

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

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-color);
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    box-shadow: var(--shadow-lg);
    padding: 1.5rem;
    border-radius: 0 0 16px 16px;
}

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

.mobile-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav-item {
    margin-bottom: 0.75rem;
}

.mobile-nav-link {
    display: block;
    padding: 1rem 0;
    color: var(--text-color);
    font-weight: 500;
    border-bottom: 1px solid var(--border-color);
    border-radius: 8px;
    padding-left: 1rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="2" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.75rem;
    margin-bottom: 2rem;
    font-weight: 800;
    letter-spacing: -0.025em;
}

.hero-content p {
    font-size: 1.375rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

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

/* Reviews Section - Single Column List Layout */
/* Branded Banner */
.branded-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    padding: 3rem 2rem;
    text-align: center;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.banner-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.banner-content p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin: 0;
}

.reviews-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title {
    font-size: 3rem;
    color: var(--text-color);
    margin-bottom: 2rem;
    font-weight: 700;
    letter-spacing: -0.025em;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
}

/* Single Column List for Reviews */
.reviews-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.review-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: row;
    align-items: center;
    border: 1px solid var(--border-color);
    padding: 0;
}

.review-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.review-card-image {
    width: 300px;
    height: 200px;
    object-fit: cover;
    background: var(--bg-light);
    flex-shrink: 0;
}

.review-card-content {
    padding: 2.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.review-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
    line-height: 1.3;
    letter-spacing: -0.025em;
}

.review-card-meta {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.review-methodology {
    margin-bottom: 0.5rem;
}

.review-methodology small {
    color: #6b7280;
    font-size: 0.75rem;
    font-style: italic;
}

.review-excerpt {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
    flex-grow: 1;
    font-size: 1.05rem;
}

.review-card-footer {
    margin-top: auto;
}

.read-more {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    background: var(--bg-light);
    border-radius: 12px;
    border: 2px solid transparent;
}

.read-more:hover {
    color: var(--primary-dark);
    text-decoration: none;
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.read-more::after {
    content: '→';
    transition: transform 0.3s ease;
}

.read-more:hover::after {
    transform: translateX(4px);
}

/* Page Content */
.page-content {
    padding: 6rem 0;
}

.content-header {
    text-align: center;
    margin-bottom: 5rem;
}

.content-title {
    font-size: 3rem;
    color: var(--text-color);
    margin-bottom: 2rem;
    font-weight: 700;
    letter-spacing: -0.025em;
}

.content-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
}

/* Contact Form */
.contact-form {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 4rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

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

.form-label {
    display: block;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--text-color);
    font-size: 1rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 1.25rem 1.5rem;
    border: 2px solid var(--border-color);
    border-radius: 16px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    font-family: inherit;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(5, 150, 105, 0.1);
    transform: translateY(-2px);
}

.form-input.error,
.form-textarea.error {
    border-color: #dc2626;
}

.form-error {
    color: #dc2626;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    font-weight: 500;
}

/* About Page Content */
.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-section {
    margin-bottom: 4rem;
}

.about-section h2 {
    font-size: 1.75rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
    border-bottom: 3px solid var(--primary-color);
    padding-bottom: 0.5rem;
}

.about-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.about-section ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.about-section li {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 0.75rem;
}

.about-section strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Card Styles */
.card {
    background: var(--bg-light);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.card-body {
    padding: 2rem;
}

.card-body h3 {
    font-size: 1.25rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.card-body p {
    margin-bottom: 0.5rem;
    color: var(--text-color);
    line-height: 1.6;
}

.card-body ul {
    margin: 1rem 0;
    padding-left: 2rem;
    list-style: disc;
}

.card-body li {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

/* Alert Messages */
.alert {
    padding: 1.5rem 2rem;
    border-radius: 16px;
    margin-bottom: 2rem;
    border: 1px solid transparent;
    font-weight: 500;
}

.alert-success {
    background-color: #f0fdf4;
    border-color: #bbf7d0;
    color: #166534;
}

/* Footer */
.footer {
    background: var(--text-color);
    color: white;
    padding: 5rem 0 3rem;
    margin-top: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-section h3 {
    color: white;
    margin-bottom: 2rem;
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

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

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 400;
}

.footer-links a:hover {
    color: white;
    text-decoration: none;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 3rem;
    text-align: center;
    color: #9ca3af;
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .review-card {
        flex-direction: column;
    }
    
    .review-card-image {
        width: 100%;
        height: 250px;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-content p {
        font-size: 1.25rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title,
    .content-title {
        font-size: 2.5rem;
    }
    
    .contact-form {
        margin: 0 1rem;
        padding: 3rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 4rem 0;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .reviews-section,
    .page-content {
        padding: 4rem 0;
    }
    
    .review-card-content {
        padding: 2rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .hero,
    .btn {
        display: none !important;
    }
    
    .page-content {
        padding: 0;
    }
    
    .review-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
}

/* Loading Animation */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.loaded .review-card {
    animation: slideInUp 0.8s ease forwards;
}

.loaded .review-card:nth-child(1) { animation-delay: 0.1s; }
.loaded .review-card:nth-child(2) { animation-delay: 0.2s; }
.loaded .review-card:nth-child(3) { animation-delay: 0.3s; }
.loaded .review-card:nth-child(4) { animation-delay: 0.4s; }
.loaded .review-card:nth-child(5) { animation-delay: 0.5s; }
.loaded .review-card:nth-child(6) { animation-delay: 0.6s; }