/* Single Vehicle Transfer Page Styles */
.single-vehicle-transfer-page {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Hero Section */
.transfer-hero {
    background: black;
    color: white;
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
    color: #fff;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #64b5f6;
    margin-bottom: 10px;
    font-weight: 600;
}

.hero-tagline {
    font-size: 1.1rem;
    color: #bbbbbb;
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-price {
    background: transparent;
    padding: 25px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    margin-bottom: 30px;
    border: 1px solid white;
}

.price-label {
    display: block;
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 5px;
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: #4CAF50;
    line-height: 1;
}

.price-currency {
    font-size: 1.8rem;
    color: #888;
    margin-left: 5px;
}

.price-note {
    display: block;
    margin-top: 10px;
    color: #ccc;
    font-size: 0.95rem;
}

.hero-cta .cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
    color: white;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.hero-cta .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

.hero-cta .cta-button small {
    display: block;
    font-size: 0.85rem;
    opacity: 0.9;
    margin-top: 5px;
    font-weight: normal;
}

.hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Benefits Section */
.benefits-section {
    padding: 30px 20px;
    background: black;
}

.benefits-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #1a1a2e;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background: transparent;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.benefit-card h3 {
    color: #1a1a2e;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.benefit-card p {
    color: #ffac00;
    font-size: 0.95rem;
    font-family:monospace;
}

/* Vehicle Details */
.vehicle-details {
    padding: 50px 20px;
    background: black;
}

.vehicle-header {
    text-align: center;
    margin-bottom: 50px;
}

.vehicle-header h2 {
    font-size: 2.5rem;
    color: #1a1a2e;
    margin-bottom: 15px;
}
.vehicle-type {
    background: transparent;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 2rem;
    margin-left: 10px;
    border: 3px solid white;
}

.vehicle-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.meta-item {
    background:transparent;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 1.15rem;
    color:white;
}

.vehicle-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.vehicle-description p {
    font-size: 1.4rem;
    line-height: 1.8;
    color: white;
    text-shadow: 1px 1px #990808;
    margin-bottom: 30px;
    font-family: monospace;
    font-weight: 900;
}

.vehicle-features h4 {
    color: #1a1a2e;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.vehicle-features ul {
    list-style: none;
    padding: 0;
}

.vehicle-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: white;
    font-family:monospace;
}

.vehicle-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
}

.vehicle-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Route Info */
.route-info-section {
    padding: 20px 20px;
    background: black;
}

.route-info-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #1a1a2e;
}

.route-details {
    max-width: 800px;
    margin: 0 auto;
}

.route-card {
    background: transparent;
    border:2px solid white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 30px;
}

.route-icon {
    font-size: 3rem;
    background: #e3f2fd;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.route-content h3 {
    font-size: 1.8rem;
    color: #1a1a2e;
    margin-bottom: 20px;
}

.route-metrics {
    display: flex;
    gap: 40px;
    margin-bottom: 20px;
}

.metric-label {
    display: block;
    color: white;
    font-size: 0.9rem;
    margin-bottom: 5px;
}
.metric-value {
    font-size: 1.3rem;
    font-weight: 900;
    background: white;
    color: black;
    border: 1px solid white;
    border-radius: 2px;
}

.route-note {
    color: white;
    font-size: 1rem;
    line-height: 1.6;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

/* Services Section */
.services-section {
    padding: 50px 20px;
    background: black;
}

.services-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #1a1a2e;
}

.services-grid {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    color:white;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: transparent;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.service-item:hover {
    background: #e9ecef;
}

.service-icon {
    color: #4CAF50;
    font-weight: bold;
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.service-text {
    color: white;
    font-size: 1rem;
    font-family:monospace;
}

/* Audience Section */
.audience-section {
    padding: 40px 20px;
    background: black;
}

.audience-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #1a1a2e;
}

.audience-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 50px;
    color:white;
}

.audience-card {
    background: transparent;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.audience-card h3 {
    color: #1a1a2e;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.audience-card p {
    color: white;
    font-size: 1rem;
}

.audience-summary {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.1rem;
    color: white;
    line-height: 1.8;
    padding: 25px;
    background: transparent;
    border-radius: 12px;
    border-left: 4px solid #4CAF50;
}

/* CTA Footer */
.cta-footer {
    padding: 40px 20px;
    background: black;
    color: white;
    text-align: center;
}

.cta-footer h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #fff;
}

.cta-footer p {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cta-primary {
    background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
    color: white;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

.cta-secondary {
    background: transparent;
    color: white;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.cta-guarantees {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.guarantee {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #ccc;
}

/* Trust Section */
.trust-section {
    padding: 80px 20px;
    background: black;
}

.trust-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #1a1a2e;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-card {
    text-align: center;
    padding: 20px;
}

.trust-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.trust-card h3 {
    color: #1a1a2e;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.trust-card p {
    color: white;
    font-size: 1rem;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    background:black;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .vehicle-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .route-card {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .route-metrics {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .price-amount {
        font-size: 2.8rem;
    }
    
    .benefits-grid,
    .audience-content,
    .trust-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-primary,
    .cta-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .vehicle-gallery {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .price-amount {
        font-size: 2.2rem;
    }
    
    .cta-guarantees {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .vehicle-meta {
        flex-direction: column;
        gap: 15px;
    }
}