/**
 * Styling for individual service pages
 * Using CSS variables generated from config.php
 */

/* Service Pages Styles */

/* Service Banner Styling */
.service-banner {
    position: relative;
    padding: 120px 0;
    background-size: cover;
    background-position: center;
    color: white;
    z-index: 1;
}

.service-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, var(--hero-overlay-start), var(--hero-overlay-end));
    z-index: -1;
}

.service-banner h1 {
    font-size: calc(var(--h1-size) * 1.2);
    font-family: var(--heading-font-family);
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.9);
    color: white;
}

.service-banner .lead {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
    color: white;
}

.service-banner .btn {
    font-size: 1.2rem;
    padding: 15px 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.service-banner .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

/* Service Details Section */
.service-details {
    padding: 80px 0;
    background-color: var(--background-color);
}

.service-content h2 {
    color: var(--secondary-color);
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.service-content .lead {
    color: var(--text-color);
    font-size: 1.4rem;
    margin-bottom: 30px;
    font-weight: 300;
}

.service-content p {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Feature Cards */
.service-features .row,
.service-process .row {
    margin-bottom: 30px; /* Add space between rows */
}

/* More explicit row spacing for feature cards */
.service-details .row > [class*="col-"] {
    margin-bottom: 30px;
}

/* Add a gutter class for better spacing */
.row.card-row {
    margin-bottom: 20px;
    row-gap: 30px; /* Modern browsers spacing between rows */
}

@keyframes fadeIn {
    from { opacity: 0.01; }
    to { opacity: 1; }
}

.feature-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin-bottom: 30px;
    height: 100%;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.feature-card .feature-icon {
    text-align: center;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100px;
    background: none !important;
    border-radius: 0 !important;
    line-height: normal !important;
}

.feature-card .feature-icon i {
    font-size: 2.2rem;
    color: var(--primary-color);
    width: 80px;
    height: 80px;
    background-color: rgba(255, 193, 7, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon i {
    background-color: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.feature-card h4 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 1.3rem;
    text-align: center;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 0;
}

/* Removed duplicate .feature-icon styling - using .feature-card .feature-icon instead */

.feature-card h4 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

/* Service Features Card Container */
.service-features-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.service-features-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.service-features-card h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.service-features-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features-card ul li {
    padding: 8px 0;
    color: #555;
    line-height: 1.6;
    display: flex;
    align-items: center;
}

.service-features-card ul li i {
    color: var(--primary-color);
    margin-right: 12px;
    font-size: 1rem;
    width: 16px;
    text-align: center;
}

/* Equipment List Styling */
.equipment-list ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.equipment-list ul li {
    padding: 8px 0 8px 25px;
    position: relative;
    color: #555;
    line-height: 1.6;
}

.equipment-list ul li:before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 10px;
    font-size: 0.9rem;
}

.equipment-list h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin: 25px 0 15px 0;
    padding: 15px 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}





/* Service Features List */
.service-features {
    list-style: none !important;
    list-style-type: none !important;
    padding: 0;
    margin-bottom: 30px;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 15px 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--primary-color);
    list-style: none !important;
    list-style-type: none !important;
    transition: all 0.3s ease;
}

.service-features li:hover {
    transform: translateX(5px);
}

.service-features li:before {
    display: none !important;
}

.service-features i {
    color: var(--primary-color);
    margin-right: 15px;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Feature Items */
.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 25px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.feature-item .feature-icon {
    margin-right: 20px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
}

.feature-item .feature-icon i {
    font-size: 2rem;
    color: white;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon i {
    background-color: var(--secondary-color);
    color: white;
    transform: scale(1.05);
}

.feature-item .feature-content {
    flex: 1;
}

.feature-item .feature-content h4 {
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 1.2rem;
}

.feature-item .feature-content p {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Service Areas */
.service-areas {
    padding: 30px;
    margin: 30px 0;
}

.service-areas h4 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.service-areas ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
}

.service-areas li {
    padding: 8px 0;
    color: var(--text-color);
    display: flex;
    align-items: center;
}

.service-areas li:before {
    content: "\f3c5";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--primary-color);
    margin-right: 10px;
}

/* Emergency Contact Section */
.emergency-contact {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    margin: 40px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.emergency-contact h3 {
    color: white;
    margin-bottom: 15px;
    font-weight: 700;
}

.emergency-contact p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.emergency-contact .btn {
    background-color: white;
    color: var(--primary-color);
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 1.2rem;
}

.emergency-contact .btn:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Emergency Number Styling */
.emergency-number {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: white;
    color: var(--primary-color);
    padding: 25px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-align: center;
    border: 2px solid var(--primary-color);
    margin: 0 auto;
    max-width: 250px;
}

.emergency-number i {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.emergency-number div {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.emergency-number span {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 5px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.emergency-number a {
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.emergency-number a:hover {
    color: var(--secondary-color);
    text-decoration: none;
    transform: scale(1.05);
}

.emergency-number:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    border-color: var(--secondary-color);
}

/* Vertically center emergency number within its column */
.emergency-contact .col-md-4 {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Service Benefits List */
.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    display: flex;
    margin-bottom: 1.5rem;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.benefits-list li:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.benefits-list i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 1rem;
    flex-shrink: 0;
    margin-top: 5px;
}

.benefits-list h4 {
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

/* Process Steps */
.process-steps {
    counter-reset: step-counter;
    list-style: none;
    padding: 0;
}

.process-steps li {
    position: relative;
    padding: 20px 20px 20px 70px;
    margin-bottom: 1.5rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.process-steps li:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.step-number {
    position: absolute;
    left: 20px;
    top: 20px;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Ensure proper positioning for step containers */
.step-item,
.process-step {
    position: relative;
}

.step-item {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 25px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.step-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.process-steps h4 {
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

/* Service Sidebar */
.service-sidebar {
    position: sticky;
    top: 100px;
    /* Fix the loading order issue */
    animation-delay: 0.5s;
    -webkit-animation-delay: 0.5s;
}

.contact-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin-bottom: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-card .btn {
    padding: 12px 20px;
    width: 100%;
}

.contact-card .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.other-services {
    padding: 20px;
    margin-bottom: 30px;
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 5px;
}

.other-services h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 1.2rem;
    border-bottom: 2px solid #f1f3f4;
    padding-bottom: 8px;
}

.other-services ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.other-services ul li {
    margin-bottom: 8px;
    border-bottom: 1px solid #f1f3f4;
    padding-bottom: 8px;
}

.other-services ul li:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.other-services ul li a {
    color: var(--text-dark);
    text-decoration: none;
    display: block;
    padding: 8px 0;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.other-services ul li a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 15px;
}

.service-list li:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.service-list a {
    color: var(--text-color);
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
}

.service-list a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.service-list i {
    color: var(--primary-color);
    margin-right: 10px;
}

.testimonial-card {
    padding: 30px;
    position: relative;
    border-top: 4px solid var(--testimonial-border-color);
}

.quote-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2.5rem;
    color: var(--testimonial-quote-color);
    opacity: 0.5;
}

.testimonial-card blockquote {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 600;
    color: var(--secondary-color);
}

/* Service Types & Capabilities */
.service-capabilities {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

.service-capabilities li {
    flex: 0 0 50%;
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.service-capabilities i {
    color: var(--primary-color);
    margin-right: 10px;
}

/* Animation Classes - Disabled to prevent loading issues */
.animate-on-scroll,
.animated,
.delay-1,
.delay-2,
.delay-3 {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.delay-3 {
    transition-delay: 0.6s;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .service-banner {
        padding: 80px 0;
    }
    
    .service-banner h1 {
        font-size: 2.5rem;
    }
    
    .service-sidebar {
        position: static;
        margin-top: 50px;
    }
}

@media (max-width: 767px) {
    .service-banner {
        padding: 60px 0;
    }
    
    .service-banner h1 {
        font-size: 2rem;
    }
    
    .service-capabilities li {
        flex: 0 0 100%;
    }
    
    /* Mobile card adjustments */
    .feature-card,
    .contact-card,
    .step-item {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .feature-item {
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }
    
    .feature-item .feature-icon {
        margin-right: 0;
        margin-bottom: 15px;
        width: 50px;
        height: 50px;
    }
    
    .feature-item .feature-icon i {
        font-size: 1.5rem;
        width: 40px;
        height: 40px;
    }
    
    .feature-card .feature-icon i {
        font-size: 1.8rem;
        width: 60px;
        height: 60px;
    }
    
    .benefits-list li {
        padding: 15px;
        flex-direction: column;
        text-align: center;
    }
    
    .benefits-list i {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .service-features-card {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .service-features-card h3 {
        font-size: 1.3rem;
    }
    
    .equipment-list h4 {
        font-size: 1.1rem;
        padding: 12px 15px;
    }
    
    .process-steps li {
        padding: 15px 15px 15px 60px;
    }
    
    .step-number {
        left: 15px;
        top: 15px;
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .service-features li {
        padding: 12px 15px;
        flex-direction: column;
        text-align: center;
    }
    
    .service-features li i {
        margin-right: 0;
        margin-bottom: 8px;
    }
}

/* Service Features List Styles */
.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    display: block !important;
    margin-bottom: 20px;
    padding: 15px;
    background: #ffffff;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.service-features li i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 1.1rem;
}

.service-features li strong {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
}

/* Service Description Styles */
.service-features li .service-description {
    display: block !important;
    margin: 10px 0 0 25px;
    padding: 0;
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-muted);
    clear: both;
}

/* Mobile adjustments for service descriptions */
@media (max-width: 767px) {
    .service-features li {
        padding: 12px;
        margin-bottom: 15px;
    }
    
    .service-features li .service-description {
        margin-left: 20px;
        margin-top: 8px;
    }
}

/* Service Area Map Styles */
.service-area-map {
    margin: 25px 0;
    padding: 0;
    background: transparent;
}

.service-area-map h4 {
    color: var(--secondary-color);
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 1.2rem;
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 6px;
}

.service-area-map p {
    color: var(--text-muted);
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.5;
}

#service-area-map {
    border: 1px solid #ddd;
    box-shadow: none;
}

/* Mobile adjustments for map */
@media (max-width: 767px) {
    .service-area-map {
        padding: 20px;
        margin: 20px 0;
    }
    
    #service-area-map {
        height: 300px !important;
    }
    
    .service-area-map h4 {
        font-size: 1.2rem;
    }
}

/* Emergency Towing Page Specific Styles */
.emergency-situations {
    list-style: none;
    padding: 0;
}

.emergency-situations li {
    padding: 15px 20px;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 0;
    transition: background-color 0.2s ease;
    display: flex;
    align-items: flex-start;
}

.emergency-situations li:hover {
    background-color: #f8f9fa;
}

.emergency-situations li:last-child {
    border-bottom: none;
}



/* Long Distance Towing Services Table - Specific styling */
.emergency-situations .row {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    padding: 0;
    margin: 0;
    overflow: hidden;
}

/* Only apply enhanced styling to long distance towing services with .row structure */
.emergency-situations .row .col-md-6 ul li {
    padding: 20px 25px;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 0;
    transition: all 0.2s ease;
    display: block;
    background: white;
    overflow: hidden;
    line-height: 1.6;
}

.emergency-situations .row .col-md-6 ul li:hover {
    background-color: #f8f9fa;
}

.emergency-situations .row .col-md-6 ul li:last-child {
    border-bottom: none;
}

.emergency-situations .row .col-md-6 ul li strong {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 8px;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 5px;
    width: fit-content;
}

.emergency-situations .row .col-md-6 ul li::before {
    content: '🚛';
    font-size: 1.2rem;
    margin-right: 12px;
    float: left;
    margin-top: 2px;
}

/* General emergency-situations styling for other pages */
.emergency-situations li strong {
    color: var(--primary-color);
    font-weight: 600;
    min-width: 140px;
    margin-right: 10px;
    display: inline-block;
}

.emergency-situations li::before {
    content: '⚠️';
    margin-right: 10px;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.vehicle-category {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #e9ecef;
}

.vehicle-category h4 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.vehicle-category i {
    margin-right: 8px;
    color: var(--primary-color);
}

.vehicle-category ul {
    margin: 0;
    padding-left: 20px;
}

.vehicle-category li {
    margin-bottom: 5px;
    color: var(--text-muted);
}

.pricing-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    text-align: center;
}

.pricing-card h4 {
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.price-range {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.pricing-card ul {
    text-align: left;
    margin: 0;
    padding-left: 20px;
}

.pricing-card li {
    margin-bottom: 5px;
    color: var(--text-muted);
}

.pricing-note {
    font-style: italic;
    color: var(--text-muted);
    margin-top: 15px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 5px;
}

.safety-item {
    text-align: center;
    padding: 20px;
    margin-bottom: 20px;
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.safety-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.safety-item h5 {
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.safety-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.tip-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #e9ecef;
}

.customer-tips {
    margin-bottom: 10px !important;
}

.customer-tips .tips-grid {
    margin-bottom: 0;
}

.tip-item h5 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.tip-item i {
    margin-right: 8px;
    color: var(--primary-color);
}

.tip-item ul {
    margin: 0;
    padding-left: 20px;
}

.tip-item li {
    margin-bottom: 5px;
    color: var(--text-muted);
}

.service-details {
    padding: 40px 0 !important;
}

.service-content {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.service-area {
    background: transparent !important;
    margin-top: 0;
}

.service-area-map {
    margin-top: 10px;
}

.coverage-areas {
    margin-top: 10px;
}

.coverage-areas .col-md-6 {
    margin-bottom: 20px;
}

.coverage-areas .col-md-6 > div {
    background: white;
    padding: 20px;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.coverage-areas h5 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 600;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 5px;
}

.coverage-areas ul {
    padding-left: 20px;
    margin-bottom: 0;
}

.coverage-areas li {
    margin-bottom: 8px;
    color: var(--text-muted);
}

/* Mobile responsiveness for new sections */
@media (max-width: 768px) {
    .vehicle-category,
    .pricing-card,
    .tip-item {
        margin-bottom: 15px;
    }
    
    .safety-item {
        padding: 15px;
    }
    
    .safety-item i {
        font-size: 2rem;
    }
    
    .price-range {
        font-size: 1.3rem;
    }
}

/* Junk Car Removal Process Steps */
.step {
    background: white;
    padding: 25px;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 25px;
    position: relative;
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.step-number {
    position: absolute;
    left: 25px;
    top: 25px;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
}

.step-content {
    margin-left: 60px;
}

.step-content h4 {
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 1.2rem;
}

.step-content p {
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.6;
}

/* Mobile responsiveness for steps */
@media (max-width: 768px) {
    .step {
        padding: 20px;
    }
    
    .step-number {
        left: 20px;
        top: 20px;
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .step-content {
        margin-left: 50px;
    }
    
    .step-content h4 {
        font-size: 1.1rem;
    }
}
