/* ==============================================
   A7 Transport - Homepage Specific Styles
   Styles used only on index.html
   ============================================== */

/* Hero Stats */
.hero-cta {
    margin-top: 40px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-stats-row {
    margin-top: 60px;
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.hero-stat-item {
    text-align: left;
}

.hero-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--a7-orange-2);
    display: block;
}

.hero-stat-label {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
}

/* Features Section */
.features-pro {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.feature-card-pro {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.06);
    border: 1px solid #f0f4f8;
    transition: all 0.4s ease;
    height: 100%;
}

.feature-card-pro:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(30,64,175,0.12);
}

.feature-icon-pro {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--a7-blue) 0%, var(--a7-blue-2) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.feature-icon-pro i {
    font-size: 1.8rem;
    color: white;
}

.feature-title-pro {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--a7-navy);
    margin-bottom: 15px;
}

.feature-text-pro {
    color: var(--a7-slate-2);
    line-height: 1.7;
    margin: 0;
}

/* Fleet Gallery */
.fleet-section {
    padding: 100px 0;
    background: var(--a7-navy);
    position: relative;
    overflow: hidden;
}

.fleet-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.fleet-title {
    color: #ffffff;
}

.fleet-desc {
    color: #94a3b8;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.fleet-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.fleet-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.fleet-item:hover img {
    transform: scale(1.1);
}

.fleet-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
}

.fleet-item-title {
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0;
}

.fleet-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

/* About Section */
.about-pro {
    padding: 100px 0;
    background: #ffffff;
}

.about-image-wrapper {
    position: relative;
}

.about-image-pro {
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    width: 100%;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: linear-gradient(135deg, var(--a7-orange) 0%, var(--a7-orange-2) 100%);
    color: white;
    padding: 25px 35px;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(255,107,53,0.3);
}

.about-badge-number {
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
}

.about-badge-text {
    font-size: 0.9rem;
    opacity: 0.9;
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.about-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--a7-slate);
    font-size: 1.05rem;
}

.about-list-icon {
    width: 24px;
    height: 24px;
    background: #dcfce7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.about-list-icon svg {
    width: 14px;
    height: 14px;
    color: #16a34a;
}

/* Services Section */
.services-pro {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.service-card-pro {
    background: #ffffff;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.06);
    border: 1px solid #f0f4f8;
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    gap: 20px;
}

.service-card-pro:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(30,64,175,0.1);
}

.service-icon-pro {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--a7-blue) 0%, var(--a7-blue-2) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-icon-pro svg {
    width: 28px;
    height: 28px;
    color: white;
}

.service-title-pro {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--a7-navy);
    margin-bottom: 10px;
}

.service-text-pro {
    color: var(--a7-slate-2);
    line-height: 1.7;
    margin: 0;
    font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--a7-navy) 0%, var(--a7-blue) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,107,53,0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.cta-text {
    color: #94a3b8;
    font-size: 1.15rem;
}

/* Contact Section */
.contact-pro {
    padding: 100px 0;
    background: #ffffff;
}

.contact-card {
    background: #f8fafc;
    border-radius: 20px;
    padding: 40px;
    height: 100%;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px 0;
    border-bottom: 1px solid #e2e8f0;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-icon-pro {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--a7-blue) 0%, var(--a7-blue-2) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
}

.contact-label-pro {
    font-weight: 700;
    color: var(--a7-navy);
    margin-bottom: 5px;
}

.contact-value-pro {
    color: var(--a7-slate-2);
    margin: 0;
    font-size: 1.05rem;
}

.contact-value-pro a {
    color: var(--a7-blue);
    text-decoration: none;
}

.contact-value-pro a:hover {
    text-decoration: underline;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    min-height: 400px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive */
@media (max-width: 768px) {
    .fleet-grid {
        grid-template-columns: 1fr;
    }
    
    .fleet-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .hero-stats-row {
        gap: 30px;
    }
}
