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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    padding-top: 80px;
    background: white;
}

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

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(to right, #16a34a, #2563eb);
    color: white;
    padding: 96px 0 64px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    background-image: url('../../assets/best-time-to-move-hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.hero-content {
    margin: 80px 0;
    position: relative;
}

.hero-text {
    max-width: 850px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 32px;
    line-height: 1.8;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    padding: 12px 24px;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.badge i {
    font-size: 20px;
}

/* Seasonal Guide Section */
.seasonal-guide {
    padding: 80px 20px;
    background: #f9fafb;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 768px;
    margin: 0 auto;
}

.seasonal-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .seasonal-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .seasonal-cards {
        grid-template-columns: 1fr;
    }
}

.season-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 24px;
    transition: box-shadow 0.3s;
}

.season-card:hover {
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
}

.season-header {
    text-align: center;
    margin-bottom: 24px;
}

.season-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.season-icon.green { background: #dcfce7; color: #166534; }
.season-icon.orange { background: #fed7aa; color: #9a3412; }
.season-icon.yellow { background: #fef3c7; color: #854d0e; }
.season-icon.blue { background: #dbeafe; color: #1e40af; }

.season-icon i {
    font-size: 32px;
}

.season-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 4px;
}

.season-months {
    color: #6b7280;
    margin-bottom: 8px;
}

.season-rating {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 8px;
}

.season-rating i {
    font-size: 16px;
}

.season-rating i.filled {
    color: #fbbf24;
}

.season-rating i.empty {
    color: #d1d5db;
}

.season-details {
    margin-top: 16px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #f3f4f6;
}

.detail-label {
    color: #6b7280;
}

.detail-value {
    font-weight: 600;
}

.season-pros, .season-cons {
    margin-top: 16px;
}

.season-pros h4 {
    font-weight: 600;
    color: #15803d;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.season-cons h4 {
    font-weight: 600;
    color: #b91c1c;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.season-pros ul, .season-cons ul {
    list-style: none;
    padding: 0;
}

.season-pros li, .season-cons li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 4px;
}

.season-pros li i {
    color: #22c55e;
    font-size: 16px;
    margin-top: 2px;
}

.season-cons li i {
    color: #ef4444;
    font-size: 16px;
    margin-top: 2px;
}

/* Monthly Breakdown Section */
.monthly-breakdown {
    padding: 80px 20px;
    background: white;
}

.monthly-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.month-card {
    background: #f9fafb;
    border-radius: 12px;
    padding: 24px;
    transition: background 0.3s;
}

.month-card:hover {
    background: #f3f4f6;
}

.month-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.month-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
}

.month-rating {
    display: flex;
    gap: 2px;
}

.month-rating i {
    font-size: 12px;
}

.month-rating i.filled {
    color: #fbbf24;
}

.month-rating i.empty {
    color: #d1d5db;
}

.month-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.month-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.month-detail-label {
    color: #6b7280;
}

.demand-bar-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.demand-bar {
    width: 64px;
    height: 8px;
    background: #e5e7eb;
    border-radius: 9999px;
    overflow: hidden;
}

.demand-fill {
    height: 100%;
    border-radius: 9999px;
    transition: width 0.3s;
}

.demand-fill.low { background: #22c55e; }
.demand-fill.medium { background: #eab308; }
.demand-fill.high { background: #f97316; }
.demand-fill.peak { background: #ef4444; }

.demand-percent {
    font-size: 0.875rem;
    font-weight: 500;
}

.month-tip {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 8px;
    padding: 12px;
    margin-top: 16px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.month-tip i {
    color: #2563eb;
    font-size: 16px;
    margin-top: 2px;
}

.month-tip p {
    font-size: 0.875rem;
    color: #1e40af;
    margin: 0;
}

.best-months-box {
    max-width: 1200px;
    margin: 64px auto 0;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 16px;
    padding: 48px 32px;
    text-align: center;
}

.best-months-box i {
    font-size: 48px;
    color: #16a34a;
    margin-bottom: 16px;
}

.best-months-box h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 32px;
}

.best-months-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.best-month {
    text-align: center;
}

.month-season {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.month-season.winter { color: #16a34a; }
.month-season.spring { color: #2563eb; }
.month-season.fall { color: #ea580c; }

.month-range {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.best-month p {
    color: #374151;
}

/* Timing Tips Section */
.timing-tips {
    padding: 80px 20px;
    background: #f9fafb;
}

.timing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto 64px;
}

.timing-column h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 24px;
}

.timing-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.timing-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    border-radius: 8px;
    padding: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.timing-day {
    font-weight: 600;
    color: #111827;
}

.timing-label {
    font-size: 0.875rem;
    color: #6b7280;
}

.timing-rate {
    text-align: right;
}

.rate-status {
    font-weight: 700;
    margin-bottom: 4px;
}

.rate-status.best { color: #16a34a; }
.rate-status.moderate { color: #eab308; }
.rate-status.premium { color: #dc2626; }

.rate-savings {
    font-size: 0.875rem;
    color: #6b7280;
}

.strategy-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.strategy-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.strategy-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.strategy-icon.blue { background: #dbeafe; }
.strategy-icon.green { background: #dcfce7; }
.strategy-icon.orange { background: #fed7aa; }

.strategy-icon i {
    font-size: 24px;
}

.strategy-icon.blue i { color: #2563eb; }
.strategy-icon.green i { color: #16a34a; }
.strategy-icon.orange i { color: #ea580c; }

.strategy-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
}

.strategy-card p {
    color: #6b7280;
    line-height: 1.6;
}

.cta-section {
    text-align: center;
    margin-top: 64px;
}

.cta-button {
    display: inline-block;
    background: #16a34a;
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.125rem;
    text-decoration: none;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #15803d;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 80px 0 48px;
    }

    .hero-content {
        margin: 60px 0;
    }

    .hero-text {
        padding: 0 20px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-badges {
        padding: 0 20px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .timing-grid {
        grid-template-columns: 1fr;
    }

    .monthly-cards {
        grid-template-columns: 1fr;
    }

    .best-months-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0 40px;
    }

    .hero-content {
        margin: 40px 0;
    }

    .hero-text {
        padding: 0 15px;
    }

    .hero h1 {
        font-size: 1.75rem;
        margin-bottom: 16px;
    }

    .hero p {
        font-size: 0.95rem;
        margin-bottom: 24px;
    }

    .hero-badges {
        padding: 0 15px;
        gap: 12px;
    }

    .badge {
        font-size: 0.85rem;
        padding: 8px 16px;
    }
}

