/* Site-Integrated Listing Styles for ATL Airports Limo */

/* Generic version of the 'Why Choose Us' card style from the home page */
.atl-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.atl-feature-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    padding: 35px 25px;
    border-radius: 5px;
    text-align: center;
    transition: .3s cubic-bezier(.4, 0, .2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.atl-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .1);
    border-color: #e8b46f;
}

.atl-feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #e8b46f 0, #e8b46f 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: .3s;
    color: #fff;
    font-size: 24px;
}

.atl-feature-card:hover .atl-feature-icon {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(232, 180, 112, 0.3);
}

.atl-feature-card h4 {
    color: #1a1a1a;
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 800;
}

.atl-feature-card p {
    color: #777;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 0;
    padding-bottom: 0;
}

/* Comparison Section - Using site's light-blue background and flat style */
.atl-compare-section {
    background: #f4fcfc;
    border-radius: 5px;
    padding: 40px;
    margin: 40px 0;
    border: 1px solid #e1eeee;
}

.atl-compare-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    font-family: Raleway, sans-serif;
}

.atl-compare-title i {
    font-size: 22px;
}

.atl-compare-title.negative { color: #cc0000; }
.atl-compare-title.positive { color: #e8b470; }

.atl-list {
    list-style: none !important;
    padding-left: 0 !important;
}

.atl-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #444;
    line-height: 1.6;
}

.atl-list li::before {
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 18px;
}

.atl-list.check li::before {
    content: "\F26E"; /* check-circle */
    color: #e8b470;
}

.atl-list.x li::before {
    content: "\F622"; /* x-circle */
    color: #cc0000;
}

/* Fleet Cards - Simplified to match site's flat aesthetic */
.atl-fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.atl-fleet-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 5px;
    padding: 25px;
    text-align: center;
    transition: 0.3s;
    height: 100%;
}

.atl-fleet-card:hover {
    border-color: #e8b470;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.atl-fleet-card h4 {
    color: #e8b470;
    font-size: 15px;
    margin-bottom: 10px;
    text-transform: uppercase !important;
    font-weight: 800;
}

.atl-fleet-card p {
    font-size: 13px;
    color: #666;
    margin-bottom: 0;
}

/* Schedule Table */
.atl-schedule-table {
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid #eee;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.atl-schedule-table thead th {
    background-color: #e8b470 !important;
    color: #fff !important;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 12px;
    padding: 15px !important;
    border: none !important;
}

.atl-schedule-table tbody td {
    padding: 12px 15px !important;
    font-size: 13.5px;
    border-bottom: 1px solid #f0f0f0 !important;
}

@media (max-width: 768px) {
    .atl-feature-grid, .atl-fleet-grid {
        grid-template-columns: 1fr;
    }
    .atl-compare-section {
        padding: 25px 20px;
    }
}
