/* === Global Styles === */
:root {
    --primary-color: #2563eb; /* Modern blue */
    --secondary-color: #1e293b; /* Dark blue */
    --accent-color: #f59e0b; /* Amber for buttons/accents */
    --text-color: #334155;
    --light-text: #64748b;
    --white: #ffffff;
    --light-bg: #f8fafc;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', system-ui, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn:hover {
    background: #e58a08;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.btn:active {
    transform: translateY(0);
}

section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.section-title p {
    color: var(--light-text);
    max-width: 600px;
    margin: 0 auto;
}

/* === Header & Navigation === */
header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.logo span {
    color: var(--accent-color);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 10px;
}

nav ul li a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    padding: 10px 15px;
    transition: all 0.3s;
    border-radius: 4px;
}

nav ul li a:hover {
    color: var(--primary-color);
    background: #f8fafc;
}

/* === Hero Section === */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e40af 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

/* === Reviews Section === */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.review-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.review-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.review-card:hover .review-image img {
    transform: scale(1.05);
}

.review-content {
    padding: 25px;
}

.review-badge {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.review-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
    line-height: 1.3;
}

.review-excerpt {
    color: var(--light-text);
    margin-bottom: 20px;
    line-height: 1.5;
}

.review-excerpt a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.review-excerpt a:hover {
    text-decoration: underline;
}

.review-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.review-rating {
    color: var(--accent-color);
    font-weight: bold;
    font-size: 0.9rem;
}

/* === Page Header === */
.page-header {
    background: #f8fafc;
    padding: 3rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.page-header p {
    color: #6b7280;
    font-size: 1.1rem;
}

/* === About Content === */
.about-content {
    padding: 3rem 0;
    max-width: 800px;
    margin: 0 auto;
}

.about-content h2 {
    color: #1f2937;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 0.5rem;
}

.about-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.about-content li {
    margin-bottom: 0.5rem;
}

/* === Contact Content === */
.contact-content {
    padding: 3rem 0;
    max-width: 800px;
    margin: 0 auto;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-3px);
}

.contact-card h3 {
    color: #2563eb;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #374151;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.submit-btn {
    background: #2563eb;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.submit-btn:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
}

/* === Posts Grid === */
.posts-grid {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

.post-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.post-image {
    height: 200px;
    background: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-content {
    padding: 1.5rem 1.5rem 1.5rem 0;
}

.post-content h2 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    line-height: 1.3;
}

.post-content h2 a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

.post-content h2 a:hover {
    color: var(--primary-color);
}

.post-excerpt {
    color: #6b7280;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.read-more {
    display: inline-block;
    background: #2563eb;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.read-more:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
}

/* === Single Post Styles === */
.post-single {
    padding: 2rem 0;
}

.post-header {
    text-align: center;
    margin-bottom: 3rem;
}

.post-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1f2937;
    line-height: 1.2;
}

.post-meta {
    color: #6b7280;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.post-section {
    margin-bottom: 3rem;
}

.post-section h2 {
    color: #1f2937;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 0.5rem;
}

.post-section h3 {
    color: #374151;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.post-section p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.post-section ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.post-section li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

/* Ad Sections */
.ad-section {
    padding: 2rem 0;
}

.ad-placeholder {
    background: #e5e7eb;
    border: 2px dashed #9ca3af;
    padding: 3rem;
    text-align: center;
    color: #6b7280;
    border-radius: 8px;
    margin: 2rem 0;
    transition: all 0.3s;
    cursor: pointer;
}

.ad-placeholder:hover {
    background: #d1d5db;
}

/* Steps */
.steps {
    display: grid;
    gap: 1.5rem;
}

.step {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #2563eb;
    transition: transform 0.3s;
}

.step:hover {
    transform: translateX(5px);
}

/* Pros and Cons */
.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.pros, .cons {
    padding: 1.5rem;
    border-radius: 8px;
    transition: transform 0.3s;
}

.pros:hover, .cons:hover {
    transform: translateY(-3px);
}

.pros {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
}

.cons {
    background: #fef2f2;
    border: 1px solid #fecaca;
}

.pros h3, .cons h3 {
    margin-bottom: 1rem;
}

.pros ul, .cons ul {
    list-style: none;
    margin-left: 0;
}

.pros li, .cons li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.4;
}

.pros li:before {
    content: "✓";
    color: #16a34a;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.cons li:before {
    content: "✗";
    color: #dc2626;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #2563eb, #1e40af);
    color: white;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    margin: 3rem 0;
}

.cta-section h2 {
    margin-bottom: 1rem;
    font-size: 2rem;
}

.cta-button {
    display: inline-block;
    background: white;
    color: #2563eb;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    margin: 1rem 0;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.cta-button:hover {
    transform: scale(1.05);
    background: #f8fafc;
    border-color: #2563eb;
}

.cta-note {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Verdict Box */
.verdict-box {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
    transition: transform 0.3s;
}

.verdict-box:hover {
    transform: translateY(-3px);
}

.verdict-box h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.rating-breakdown {
    display: grid;
    gap: 0.5rem;
}

/* === CTA Section === */
.cta {
    background: var(--light-bg);
    text-align: center;
}

/* === Footer Styles - Unified Approach === */
footer, .footer {
    background: #1f2937;
    color: white;
    padding: 3rem 0 1rem;
    margin-top: auto;
}

.footer-content, footer .container > div:first-child {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer h3, footer h3 {
    margin-bottom: 1rem;
    color: #f9fafb;
    font-size: 1.2rem;
}

.footer-about p, .footer-column p {
    color: #d1d5db;
    line-height: 1.6;
}

.footer-column ul, footer ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li, footer ul li {
    margin-bottom: 10px;
}

.footer-column ul li a, footer ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s;
    padding: 2px 0;
    display: inline-block;
}

.footer-column ul li a:hover, footer ul li a:hover {
    color: var(--white);
    transform: translateX(3px);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: #d1d5db;
    text-decoration: none;
    transition: all 0.3s;
    padding: 8px;
    border-radius: 4px;
}

.social-links a:hover {
    color: #60a5fa;
    background: rgba(96, 165, 250, 0.1);
    transform: translateY(-2px);
}

.footer-bottom, .copyright {
    border-top: 1px solid #374151;
    padding-top: 1rem;
    text-align: center;
    color: #9ca3af;
    font-size: 0.9rem;
}

/* === Responsive Design === */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    nav ul {
        margin-top: 0;
        flex-wrap: wrap;
        justify-content: center;
        gap: 5px;
    }
    
    nav ul li a {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-content, footer .container > div:first-child {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .post-card {
        grid-template-columns: 1fr;
    }
    
    .post-content {
        padding: 1.5rem;
    }
    
    .post-header h1 {
        font-size: 2rem;
    }
    
    .post-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .pros-cons {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .cta-section {
        padding: 2rem 1rem;
        margin: 2rem 0;
    }
    
    .cta-section h2 {
        font-size: 1.5rem;
    }
    
    .section-title h2 {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 40px 0;
    }
    
    .hero h1 {
        font-size: 1.75rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .review-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .review-meta .btn {
        width: 100%;
        text-align: center;
    }
}