.hero-last {
    background: url('../images/last_hero.jpg') center/cover no-repeat;
    padding: calc(var(--header-height) + 4rem) 0 4rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content-last {
    color: #fff;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.hero-content-last h1 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1.2rem;
    color: #fff;
}

.hero-content-last p {
    font-size: 1.2rem;
    max-width: 750px;
    margin-bottom: 2rem;
}

/* Emergency Scenarios Section */
.emergency-scenarios {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.scenarios-timeline {
    position: relative;
    max-width: 1200px;
    margin: 60px auto 0;
}

.scenarios-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    width: 2px;
    height: calc(100% - 100px);
    background: linear-gradient(to bottom, 
        var(--primary-color) 0%,
        var(--secondary-color) 100%);
    transform: translateX(-50%);
    top: 50px;
}

.scenario-card {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
    position: relative;
    width: calc(50% - 30px);
}

.scenario-card:nth-child(odd) {
    margin-left: auto;
    flex-direction: row-reverse;
}

.scenario-card:nth-child(even) {
    flex-direction: row;
}

.scenario-icon {
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.scenario-card:nth-child(odd) .scenario-icon {
    margin-left: -40px;
}

.scenario-card:nth-child(even) .scenario-icon {
    margin-right: -40px;
}

.scenario-icon i {
    font-size: 32px;
    color: var(--primary-color);
}

.scenario-content {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    flex-grow: 1;
    position: relative;
    transition: transform 0.3s ease;
}

.scenario-content:hover {
    transform: translateY(-5px);
}

.scenario-card:nth-child(odd) .scenario-content {
    margin-right: 30px;
}

.scenario-card:nth-child(even) .scenario-content {
    margin-left: 30px;
}

.scenario-content h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.4em;
}

.scenario-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Add unique accent colors for each scenario */
.scenario-card:nth-child(1) .scenario-icon i { color: #4CAF50; }
.scenario-card:nth-child(2) .scenario-icon i { color: #2196F3; }
.scenario-card:nth-child(3) .scenario-icon i { color: #E91E63; }
.scenario-card:nth-child(4) .scenario-icon i { color: #FF9800; }
.scenario-card:nth-child(5) .scenario-icon i { color: #f44336; }

/*The Benefits of Hiring Last-Minute Movers*/
.last-intro {
    text-align: center;
    padding-bottom: 10px;
    color: white !important;
}

/* Last Minute carousel wider styles */
.why-choose-section .carousel {
    max-width: 800px;
}
.why-choose-section .carousel-card {
    max-width: 750px;
}

.why-choose-section.section-primary .carousel-arrow:hover {
    background-color: var(--accent-color);
}

/* Emergency Services Section */
.emergency-services {
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.emergency-services .service-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid var(--secondary-color);
}

.emergency-services .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.emergency-services .service-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: inline-block;
}

.emergency-services .service-content h3 {
    font-size: 1.5em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.emergency-services .service-content p {
    color: #666;
    line-height: 1.7;
    margin: 0;
}


/* Why Choose Us Section - Alternative Design */
.why-choose-us-section {
    padding: 80px 0;
}

.why-choose-us-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    align-items: stretch;
}

.why-choose-us-section .feature-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, background-color 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.why-choose-us-section .feature-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
}

.why-choose-us-section .feature-item:nth-child(1) {
    grid-column: 1 / span 3;
}
.why-choose-us-section .feature-item:nth-child(2) {
    grid-column: 4 / span 3;
}
.why-choose-us-section .feature-item:nth-child(3) {
    grid-column: 1 / span 2;
}
.why-choose-us-section .feature-item:nth-child(4) {
    grid-column: 3 / span 2;
}
.why-choose-us-section .feature-item:nth-child(5) {
    grid-column: 5 / span 2;
}

.why-choose-us-section .feature-icon {
    font-size: 48px;
    color: var(--accent-color);
    margin-bottom: 25px;
    display: inline-block;
}

.why-choose-us-section .feature-text h3 {
    color: #fff;
    font-size: 1.4em;
    margin-bottom: 15px;
}

.why-choose-us-section .feature-text p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.7;
}
