/* 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;
}

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

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.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;
}

/* Hero Section */
.tips-hero {
    position: relative;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: white;
    padding: 96px 0 64px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    background-image: url('../../assets/moving-tips-hero.jpg');
    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;
    text-align: center;
}

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

.hero-content p {
    font-size: 1.25rem;
    color: #bfdbfe;
    max-width: 768px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Tips Grid Section */
.tips-grid-section {
    padding: 80px 0;
    background: #f9fafb;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

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

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

.tip-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}

.tip-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 1.25rem;
}

.tip-icon.blue { background: #dbeafe; color: #2563eb; border: 1px solid #bfdbfe; }
.tip-icon.green { background: #d1fae5; color: #059669; border: 1px solid #a7f3d0; }
.tip-icon.orange { background: #fed7aa; color: #ea580c; border: 1px solid #fdba74; }
.tip-icon.purple { background: #e9d5ff; color: #9333ea; border: 1px solid #d8b4fe; }
.tip-icon.emerald { background: #d1fae5; color: #10b981; border: 1px solid #a7f3d0; }
.tip-icon.red { background: #fee2e2; color: #dc2626; border: 1px solid #fecaca; }

.tip-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-left: 16px;
}

.tip-list {
    list-style: none;
}

.tip-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
}

.tip-bullet {
    width: 8px;
    height: 8px;
    background: #3b82f6;
    border-radius: 50%;
    margin-top: 8px;
    margin-right: 12px;
    flex-shrink: 0;
}

.tip-list li span {
    color: #374151;
    font-size: 0.875rem;
    line-height: 1.6;
}

/* Checklist Section */
.checklist-section {
    padding: 80px 0;
    background: #f9fafb;
}

.checklist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
    margin-bottom: 64px;
}

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

.checklist-header {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}

.timeline-bar {
    width: 16px;
    height: 64px;
    border-radius: 8px;
    margin-right: 16px;
}

.timeline-bar.blue { background: #3b82f6; }
.timeline-bar.green { background: #10b981; }
.timeline-bar.orange { background: #f97316; }
.timeline-bar.purple { background: #a855f7; }
.timeline-bar.red { background: #ef4444; }
.timeline-bar.emerald { background: #10b981; }

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

.checklist-tasks {
    list-style: none;
}

.checklist-tasks li {
    margin-bottom: 16px;
}

.checklist-tasks label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
}

.checklist-tasks input[type="checkbox"] {
    margin-top: 4px;
    margin-right: 12px;
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.checklist-tasks span {
    color: #374151;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.checklist-tasks input[type="checkbox"]:checked + span {
    text-decoration: line-through;
    color: #9ca3af;
}

.download-cta {
    background: #2563eb;
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    color: white;
}

.download-cta h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.download-cta p {
    font-size: 1.125rem;
    margin-bottom: 24px;
    max-width: 672px;
    margin-left: auto;
    margin-right: auto;
}

.download-btn {
    display: inline-block;
    background: white;
    color: #2563eb;
    padding: 12px 32px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    text-decoration: none;
}

.download-btn:hover {
    background: #dbeafe;
}

.download-btn i {
    margin-right: 8px;
}

/* Packing Guide Section */
.packing-guide-section {
    padding: 80px 0;
    background: white;
}

.packing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 32px;
    margin-bottom: 64px;
}

.packing-card {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-radius: 12px;
    padding: 32px;
}

/* Seasonal Tips Section */
.seasonal-section {
    padding: 80px 0;
    background: white;
}

.season-tabs {
    display: flex;
    justify-content: center;
    background: #f3f4f6;
    border-radius: 16px;
    padding: 8px;
    margin-bottom: 48px;
    flex-wrap: wrap;
    gap: 8px;
}

.season-tab {
    display: flex;
    align-items: center;
    padding: 12px 24px;
    border: none;
    background: transparent;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 500;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.season-tab:hover {
    color: #111827;
}

.season-tab.active {
    background: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    color: #111827;
}

.season-tab i {
    margin-right: 8px;
    font-size: 1.25rem;
}

.season-tab.active[data-season="spring"] i { color: #10b981; }
.season-tab.active[data-season="summer"] i { color: #f97316; }
.season-tab.active[data-season="fall"] i { color: #f59e0b; }
.season-tab.active[data-season="winter"] i { color: #3b82f6; }

.season-content {
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 64px;
    padding: 48px;
}

.season-content.spring { background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%); }
.season-content.summer { background: linear-gradient(135deg, #fed7aa 0%, #fef3c7 100%); }
.season-content.fall { background: linear-gradient(135deg, #fef3c7 0%, #fed7aa 100%); }
.season-content.winter { background: linear-gradient(135deg, #dbeafe 0%, #e0e7ff 100%); }

.season-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.season-info-header {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}

.season-icon-box {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 12px;
    margin-right: 16px;
}

.season-icon-box i {
    font-size: 1.5rem;
}

.season-icon-box.spring i { color: #10b981; }
.season-icon-box.summer i { color: #f97316; }
.season-icon-box.fall i { color: #f59e0b; }
.season-icon-box.winter i { color: #3b82f6; }

.season-title-text h3 {
    font-size: 1.875rem;
    font-weight: 700;
    color: #111827;
}

.season-title-text p {
    color: #6b7280;
}

.season-tips-list {
    list-style: none;
}

.season-tip-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 24px;
}

.season-tip-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 8px;
    margin-right: 16px;
    flex-shrink: 0;
}

.season-tip-icon i {
    color: #6b7280;
}

.season-tip-content h4 {
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
}

.season-tip-content p {
    color: #374151;
    line-height: 1.6;
}

.season-image-container {
    padding-left: 32px;
}

.season-image {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.season-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-bottom: 64px;
}

.stat-card {
    text-align: center;
    padding: 24px;
    background: #f9fafb;
    border-radius: 16px;
}

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

.stat-icon.blue { background: #dbeafe; }
.stat-icon.green { background: #d1fae5; }
.stat-icon.orange { background: #fed7aa; }
.stat-icon.purple { background: #e9d5ff; }

.stat-icon i {
    font-size: 1.5rem;
}

.stat-icon.blue i { color: #2563eb; }
.stat-icon.green i { color: #10b981; }
.stat-icon.orange i { color: #f97316; }
.stat-icon.purple i { color: #a855f7; }

.stat-card h4 {
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
}

.stat-card p {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .season-layout {
        grid-template-columns: 1fr;
    }

    .season-image-container {
        padding-left: 0;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

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

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

    .section-header p {
        font-size: 1rem;
    }

    .tips-grid,
    .checklist-grid,
    .packing-grid,
    .stories-grid {
        grid-template-columns: 1fr;
    }

    .season-tabs {
        flex-direction: column;
    }

    .season-tab {
        width: 100%;
        justify-content: center;
    }

    .season-content {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 70px;
    }

    .tips-hero {
        padding: 64px 0 48px;
    }

    .hero-content h1 {
        font-size: 1.75rem;
    }

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

    .download-cta,
    .pro-tip {
        padding: 24px;
    }
}

.packing-header {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}

.step-number {
    width: 48px;
    height: 48px;
    background: #3b82f6;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
}

.packing-header-text {
    margin-left: 16px;
}

.packing-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
}

.packing-header p {
    color: #6b7280;
    margin-top: 4px;
}

.packing-list {
    list-style: none;
}

.packing-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
}

.packing-list i {
    color: #10b981;
    font-size: 1.25rem;
    margin-right: 8px;
    flex-shrink: 0;
}

.packing-list span {
    color: #374151;
}

.pro-tip {
    background: linear-gradient(135deg, #f97316 0%, #dc2626 100%);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    color: white;
}

.pro-tip h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.pro-tip p {
    font-size: 1.125rem;
    line-height: 1.8;
    max-width: 768px;
    margin: 0 auto;
}

/* Customer Stories Section */
.stories-section {
    padding: 80px 0;
    background: #f9fafb;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

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

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

.story-rating {
    display: flex;
    margin-bottom: 16px;
}

.story-rating i {
    color: #fbbf24;
    font-size: 1.125rem;
}

.story-text {
    color: #374151;
    margin-bottom: 24px;
    font-style: italic;
    line-height: 1.8;
}

.story-author {
    border-top: 1px solid #e5e7eb;
    padding-top: 16px;
}

.story-author h4 {
    font-weight: 600;
    color: #111827;
}

.story-author p {
    font-size: 0.875rem;
    color: #6b7280;
}

