/* 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, #9333ea, #ec4899);
    color: white;
    padding: 96px 0 64px;
    overflow: hidden;
}

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

.hero-text {
    max-width: 768px;
    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;
    justify-content: center;
}

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

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

/* Pet Preparation Section */
.pet-preparation {
    padding: 80px 20px;
    background: #f9fafb;
}

.preparation-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.preparation-step {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 32px;
}

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

.step-icon {
    width: 64px;
    height: 64px;
    background: #f3e8ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 24px;
    flex-shrink: 0;
}

.step-icon i {
    font-size: 32px;
    color: #9333ea;
}

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

.step-info p {
    color: #6b7280;
}

.step-tasks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.task-item {
    display: flex;
    align-items: flex-start;
    padding: 16px;
    background: #f9fafb;
    border-radius: 8px;
}

.task-item i {
    color: #16a34a;
    font-size: 20px;
    margin-right: 12px;
    margin-top: 2px;
    flex-shrink: 0;
}

.task-item span {
    color: #374151;
}

/* Pet Safety Section */
.pet-safety {
    padding: 80px 20px;
    background: white;
}

.safety-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 64px;
}

.safety-category {
    background: #f9fafb;
    border-radius: 12px;
    padding: 24px;
}

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

.category-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    flex-shrink: 0;
}

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

.category-icon.blue { background: #dbeafe; color: #1e40af; }
.category-icon.orange { background: #fed7aa; color: #9a3412; }
.category-icon.green { background: #dcfce7; color: #166534; }
.category-icon.purple { background: #f3e8ff; color: #7e22ce; }

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

.safety-tips {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.safety-tip {
    display: flex;
    align-items: flex-start;
}

.safety-tip i {
    color: #16a34a;
    font-size: 20px;
    margin-right: 12px;
    margin-top: 2px;
    flex-shrink: 0;
}

.safety-tip span {
    color: #374151;
}

.safety-warnings {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 16px;
    padding: 48px 32px;
    text-align: center;
}

.safety-warnings > i {
    font-size: 48px;
    color: #dc2626;
    margin-bottom: 16px;
}

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

.warnings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

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

.warning-item {
    display: flex;
    align-items: flex-start;
}

.warning-item i {
    color: #dc2626;
    font-size: 20px;
    margin-right: 12px;
    margin-top: 2px;
    flex-shrink: 0;
}

.warning-item span {
    color: #374151;
}

/* Pet Guides Section */
.pet-guides {
    padding: 80px 20px;
    background: #f9fafb;
}

.pet-guides-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 64px;
}

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

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

.guide-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    flex-shrink: 0;
}

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

.guide-icon.amber { background: #fef3c7; color: #92400e; }
.guide-icon.indigo { background: #e0e7ff; color: #3730a3; }
.guide-icon.emerald { background: #d1fae5; color: #065f46; }
.guide-icon.rose { background: #ffe4e6; color: #9f1239; }

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

.guide-sections {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.guide-section h4 {
    font-weight: 600;
    color: #111827;
    margin-bottom: 12px;
}

.guide-tips {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.guide-tip {
    display: flex;
    align-items: flex-start;
}

.guide-tip i {
    font-size: 16px;
    margin-right: 12px;
    margin-top: 2px;
    flex-shrink: 0;
}

.guide-tip.special i {
    color: #9333ea;
}

.guide-tip.travel i {
    color: #2563eb;
}

.guide-tip span {
    color: #374151;
    font-size: 0.875rem;
}

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

.cta-button {
    display: inline-block;
    background: #9333ea;
    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: #7e22ce;
}

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

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

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

    .step-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .step-icon {
        margin-bottom: 16px;
    }

    .step-tasks {
        grid-template-columns: 1fr;
    }

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

    .safety-categories {
        grid-template-columns: 1fr;
    }

    .pet-guides-grid {
        grid-template-columns: 1fr;
    }
}

