/* Chicago Landing Page Styles */

/* --- Hero Section --- */
.chicago-hero {
    background-color: #0d0d0d;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.chicago-hero-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.chicago-hero-text {
    flex: 1;
    z-index: 2;
}

.chicago-hero-image {
    flex: 1.2;
    position: relative;
    z-index: 1;
}

.chicago-hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(197, 160, 89, 0.2);
}

.chicago-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #fff;
}

.chicago-title span {
    color: var(--color-gold);
}

.chicago-subtitle {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 30px;
    max-width: 500px;
    line-height: 1.6;
}

.chicago-btns {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.btn-gold {
    background: linear-gradient(135deg, #D4B06A, #B38B3F);
    color: #000;
    padding: 14px 35px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 176, 106, 0.4);
}

.btn-outline-gold {
    background: transparent;
    color: var(--color-gold);
    border: 1px solid var(--color-gold);
    padding: 12px 35px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline-gold:hover {
    background: rgba(212, 176, 106, 0.1);
    color: #fff;
}

.chicago-trust {
    display: flex;
    gap: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 0.85rem;
}

.trust-icon {
    color: var(--color-gold);
    font-size: 1.5rem;
    filter: drop-shadow(0 0 5px rgba(212, 176, 106, 0.6));
    transition: all 0.3s ease;
}

.trust-badge:hover .trust-icon {
    transform: translateY(-3px) scale(1.1);
    filter: drop-shadow(0 0 12px rgba(212, 176, 106, 0.9));
}

/* --- Services Grid --- */
.chicago-section {
    padding: 80px 0;
    background: #111;
}

.section-title-center {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #fff;
    position: relative;
    padding-bottom: 20px;
}

.section-title-center::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    border-radius: 2px;
}

.services-grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
}

.service-box {
    background: linear-gradient(145deg, #1a1a1a 0%, #141414 100%);
    border: 1px solid rgba(212, 176, 106, 0.15);
    padding: 40px 25px 35px;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(212, 176, 106, 0.08) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.service-box:hover {
    border-color: rgba(212, 176, 106, 0.5);
    transform: translateY(-8px);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(212, 176, 106, 0.1);
}

.service-box:hover::before {
    opacity: 1;
}

.service-box:hover::after {
    opacity: 1;
}

/* --- Gold Glow Animation --- */
@keyframes gold-pulse {
    0% {
        filter: drop-shadow(0 0 5px rgba(212, 176, 106, 0.4));
        transform: scale(1);
    }
    50% {
        filter: drop-shadow(0 0 12px rgba(212, 176, 106, 0.8));
        transform: scale(1.05);
    }
    100% {
        filter: drop-shadow(0 0 5px rgba(212, 176, 106, 0.4));
        transform: scale(1);
    }
}

.sb-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212, 176, 106, 0.15) 0%, rgba(212, 176, 106, 0.05) 100%);
    border: 1px solid rgba(212, 176, 106, 0.25);
    border-radius: 50%;
    color: var(--color-gold);
    transition: all 0.4s ease;
    position: relative;
}

.sb-icon::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212, 176, 106, 0.3) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.sb-icon svg {
    width: 32px;
    height: 32px;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 6px rgba(212, 176, 106, 0.4));
}

.service-box:hover .sb-icon {
    background: linear-gradient(135deg, rgba(212, 176, 106, 0.25) 0%, rgba(212, 176, 106, 0.1) 100%);
    border-color: rgba(212, 176, 106, 0.5);
    transform: scale(1.08);
    box-shadow: 0 0 25px rgba(212, 176, 106, 0.3);
}

.service-box:hover .sb-icon::before {
    opacity: 1;
}

.service-box:hover .sb-icon svg {
    filter: drop-shadow(0 0 10px rgba(212, 176, 106, 0.7));
}

.sb-title {
    color: #fff;
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
}

.service-box:hover .sb-title {
    color: var(--color-gold);
}

.sb-desc {
    color: #999;
    font-size: 0.9rem;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.service-box:hover .sb-desc {
    color: #bbb;
}

/* --- Features Grid (Why Choose Us) --- */
.features-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.fc-icon {
    color: var(--color-gold);
    margin-bottom: 20px;
    transition: all 0.3s ease;
    /* Base glow */
    filter: drop-shadow(0 0 4px rgba(212, 176, 106, 0.3));
    display: flex;
    justify-content: center;
    align-items: center;
}

.fc-icon svg {
    width: 48px;
    height: 48px;
}

.feature-card:hover .fc-icon {
    animation: gold-pulse 2s infinite ease-in-out;
    color: #ffd700;
}

.fc-title {
    color: #fff;
    font-size: 1.15rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.fc-desc {
    color: #aaa;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* --- Fleet Preview --- */
.fleet-preview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.fleet-thumb {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.fleet-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.fleet-thumb:hover img {
    transform: scale(1.1);
}

.fleet-label {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    text-align: center;
    padding: 8px;
    font-size: 0.9rem;
}

/* --- FAQ Section --- */
.faq-item {
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.02);
}

.faq-answer {
    display: none;
    padding-top: 10px;
}

.faq-item.active .faq-answer {
    display: block;
    animation: fadeIn 0.3s ease;
}

.faq-item.active .faq-question {
    color: var(--color-gold) !important;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .chicago-hero-container {
        flex-direction: column-reverse;
        text-align: center;
        gap: 40px;
    }

    .chicago-hero-text {
        padding: 0 20px;
    }

    .chicago-btns {
        justify-content: center;
    }

    .chicago-trust {
        justify-content: center;
    }

    .services-grid-5 {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .service-box {
        padding: 30px 20px 25px;
    }

    .sb-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }

    .sb-icon svg {
        width: 28px;
        height: 28px;
    }

    .features-grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .fleet-preview-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .chicago-title {
        font-size: 2.2rem;
    }

    .chicago-hero {
        padding-top: 100px;
    }

    .feature-card {
        padding: 30px 20px;
    }

    .fc-icon svg {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 576px) {
    .services-grid-5 {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .features-grid-4 {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .fleet-preview-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}