﻿.moving-tips-hero {
    padding: 90px 20px 70px;
    background: #f8fafc;
    text-align: center;
}

.moving-tips-container {
    max-width: 1180px;
    margin: 0 auto;
}

.moving-tips-hero span {
    display: inline-block;
    color: #ff6b00;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.moving-tips-hero h1 {
    color: #071b4d;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.05;
    margin: 0 0 20px;
}

.moving-tips-hero p {
    color: #334155;
    font-size: 1.25rem;
    max-width: 760px;
    margin: 0 auto;
    line-height: 1.7;
}

.moving-tips-section {
    padding: 80px 20px;
    background: #ffffff;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.tip-card {
    background: #ffffff;
    border: 1px solid #e3eaf5;
    border-radius: 22px;
    padding: 34px 28px;
    box-shadow: 0 16px 40px rgba(7, 27, 77, 0.06);
    transition: 0.25s ease;
}

    .tip-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 22px 50px rgba(7, 27, 77, 0.1);
    }

.tip-icon {
    color: #ff6b00;
    margin-bottom: 22px;
}

    .tip-icon svg {
        width: 44px;
        height: 44px;
        stroke-width: 2.4;
    }

.tip-card h2 {
    color: #071b4d;
    font-size: 1.45rem;
    font-weight: 900;
    margin-bottom: 14px;
}

.tip-card p {
    color: #475569;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.moving-tips-cta {
    margin-top: 80px;
    padding: 55px 35px;
    border-radius: 28px;
    background: #071b4d;
    text-align: center;
    color: #ffffff;
}

    .moving-tips-cta h2 {
        font-size: clamp(2rem, 4vw, 3.5rem);
        font-weight: 900;
        margin-bottom: 16px;
    }

    .moving-tips-cta p {
        font-size: 1.15rem;
        margin-bottom: 28px;
        color: #dbeafe;
    }

.tips-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

    .tips-cta-buttons a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: #ff6b00;
        color: #ffffff;
        text-decoration: none;
        font-weight: 900;
        padding: 16px 28px;
        border-radius: 12px;
        transition: 0.25s ease;
    }

        .tips-cta-buttons a:hover {
            background: #ff7c1f;
            transform: translateY(-2px);
        }

@media (max-width: 992px) {
    .tips-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .moving-tips-hero {
        padding: 70px 18px 50px;
    }

    .moving-tips-section {
        padding: 60px 18px;
    }

    .tips-grid {
        grid-template-columns: 1fr;
    }

    .tip-card {
        padding: 30px 24px;
    }
}
