/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: white;
    margin-top: 0;
    padding-top: 2rem;
}

.about-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    align-items: start;
}

.about-text h3 {
    color: var(--text-heading);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.about-text h3:first-child {
    margin-top: 0;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-body);
    line-height: 1.7;
}

.about-text ul {
    list-style: none;
    padding-left: 0;
}

.about-text li {
    padding: 0.5rem 0;
    color: var(--text-body);
    position: relative;
    padding-left: 1.5rem;
}

.about-text li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--brand-red);
    font-weight: bold;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: #f8fafc;
    margin-top: 0;
    padding-top: 2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08), 0 2px 10px rgba(245, 41, 42, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15), 0 8px 20px rgba(245, 41, 42, 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--brand-red), var(--brand-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.service-card h3 {
    color: var(--text-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--brand-red);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    margin-top: auto;
}

.service-link:hover {
    color: var(--brand-red-dark);
    transform: translateX(5px);
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(3px);
}

/* Fleet Section */
.fleet {
    padding: 6rem 0;
    background: white;
    margin-top: 0;
    padding-top: 2rem;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.fleet-card {
    background: #f8fafc;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08), 0 2px 10px rgba(245, 41, 42, 0.1);
    transition: all 0.3s ease;
}

.fleet-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(245, 41, 42, 0.15), 0 5px 15px rgba(245, 41, 42, 0.1);
}

.fleet-image {
    width: 80px;
    height: 80px;
    background: var(--brand-red);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 2rem;
}

.fleet-card h3 {
    color: var(--text-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.fleet-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.fleet-card ul {
    list-style: none;
    padding-left: 0;
}

.fleet-card li {
    padding: 0.5rem 0;
    color: var(--text-body);
    border-bottom: 1px solid rgba(245, 41, 42, 0.1);
    transition: all 0.3s ease;
}

.fleet-card li:last-child {
    border-bottom: none;
}

/* Stats Section */
.stats {
    padding: 4rem 0;
    background: #f5f5f5;
    margin-top: 0;
    padding-top: 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.stat-icon {
    margin-bottom: 1rem;
}

.stat-icon i {
    font-size: 3rem;
    color: var(--brand-red-dark);
    display: block;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--brand-red-dark);
    margin: 0 0 0.5rem;
    line-height: 1;
}

.stat-description {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
    margin: 0;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: #f8fafc;
    margin-top: 0;
    padding-top: 2rem;
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-map {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1), 0 5px 15px rgba(245, 41, 42, 0.1);
    transition: all 0.3s ease;
}

.contact-map iframe {
    border-radius: 15px;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-item a {
    color: inherit; /* Inherit color from parent element */
    text-decoration: none; /* Remove the underline */
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08), 0 2px 10px rgba(245, 41, 42, 0.1);
    transition: all 0.3s ease;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--brand-red);
    width: 40px;
    text-align: center;
}

.contact-item h3 {
    color: var(--text-heading);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--text-muted);
    margin: 0;
}

.contact-map {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1), 0 5px 15px rgba(245, 41, 42, 0.1);
    overflow: hidden;
    height: 100%;
    min-height: 500px;
    transition: all 0.3s ease;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 18px;
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1), 0 5px 15px rgba(245, 41, 42, 0.1);
    height: fit-content;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 18px;
    border: 2px solid rgba(245, 41, 42, 0.2);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--brand-red);
    box-shadow: 0 0 0 3px rgba(245, 41, 42, 0.1), 0 4px 12px rgba(245, 41, 42, 0.15);
    transform: translateY(-1px);
    background: white;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

