/* Mumbai Cab Booking Page Custom CSS */

/* --- General Section Styles --- */
.city-section-padding {
    padding: 60px 0;
}

.section-title h2 {
    font-weight: 700;
    margin-bottom: 20px;
    color: #222;
    text-transform: uppercase;
    font-size: 32px;
}

.section-title p {
    color: #777;
    margin-bottom: 40px;
}

/* --- Service Grid / Cards --- */
.city-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.city-service-card {
    background: #fff;
    border: 1px solid #eee;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.city-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: #f8b600;
}

.city-service-card i {
    font-size: 40px;
    color: #f8b600;
    margin-bottom: 20px;
}

.city-service-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #222;
}

.city-service-card p {
    color: #666;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.6;
    flex-grow: 1;
    /* Push buttons to bottom */
}

/* --- Keywords / Content Block --- */
.seo-content-block {
    background: #fdfdfd;
    padding: 50px 0;
    border-top: 1px solid #eee;
    text-align: center;
    /* Center align text */
}

.seo-content-block h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #222;
    margin-top: 30px;
}

.seo-content-block p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
    max-width: 900px;
    /* Limit width for readability */
    margin-left: auto;
    margin-right: auto;
}

.seo-content-block ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    display: inline-block;
    /* Allow centering of the list block */
    text-align: left;
    /* Keep list items left-aligned for readability */
}

.seo-content-block ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #555;
}

.seo-content-block ul li:before {
    content: "\f00c";
    /* FontAwesome check */
    font-family: FontAwesome;
    position: absolute;
    left: 0;
    top: 2px;
    color: #f8b600;
}

/* --- Call to Action Button in Cards --- */
.card-btn-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.btn-card-action {
    display: inline-block;
    padding: 8px 15px;
    background: #222;
    color: #fff;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    transition: 0.3s;
    min-width: 100px;
}

.btn-card-action:hover {
    background: #f8b600;
    color: #fff;
    border-color: #f8b600;
}

.btn-card-call {
    background: #f8b600;
    color: #fff;
}

.btn-card-call:hover {
    background: #222;
    color: #fff;
}

/* =============================================
   City Autocomplete Dropdown
   ============================================= */
.city-autocomplete-wrapper {
    position: relative;
    width: 100%;
}

.city-autocomplete-wrapper input {
    width: 100%;
}

.city-autocomplete-list {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    max-height: 220px;
    overflow-y: auto;
    z-index: 99999;
    list-style: none;
    margin: 0;
    padding: 4px 0;
    animation: acSlideIn 0.15s ease;
}

@keyframes acSlideIn {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

.city-autocomplete-list li {
    padding: 10px 16px;
    cursor: pointer;
    font-size: 14px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.15s;
    border-bottom: 1px solid #f5f5f5;
    margin: 0;
}

.city-autocomplete-list li:last-child {
    border-bottom: none;
}

.city-autocomplete-list li:before {
    content: none !important; /* override seo-content-block li bullet */
}

.city-autocomplete-list li .ac-icon {
    color: #f8b600;
    font-size: 13px;
    flex-shrink: 0;
}

.city-autocomplete-list li:hover,
.city-autocomplete-list li.ac-active {
    background: #fff8e6;
    color: #c8900a;
}

.city-autocomplete-list li strong {
    color: #f8b600;
}