/* Estilos para la página de traslados */
:root {
    --primary-color: #175C84;
    --secondary-color: #f8f8f8;
    --text-color: #1a1a1a;
    --white: #ffffff;
    --gray-light: #f5f5f5;
    --gray-dark: #6c757d;
    --success-color: #4CAF50;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
}

/* Hero de página */
.page-hero {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.page-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Estilos para la sección de contacto */
.contact-section {
    background: linear-gradient(135deg, var(--primary-color), #1a5276);
    color: var(--white);
    padding: 60px 0;
    border-radius: 8px;
    margin: 50px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/pattern.png');
    opacity: 0.1;
    z-index: 1;
}

.contact-section .container {
    position: relative;
    z-index: 2;
}

.contact-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.contact-section p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 25px;
    line-height: 1.6;
    opacity: 0.9;
}

.contact-section .btn-primary {
    background-color: var(--white);
    color: var(--primary-color);
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-section .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    background-color: #f8f9fa;
}

.contact-section .btn-primary:active {
    transform: translateY(1px);
}

/* Sección informativa */
.transfers-info {
    padding: 60px 0;
    background-color: var(--gray-light);
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.info-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.info-image img {
    width: 100%;
    height: auto;
    display: block;
}

.info-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.info-content p {
    margin-bottom: 30px;
    line-height: 1.7;
}

.benefits {
    display: grid;
    gap: 20px;
}

.benefit {
    display: flex;
    gap: 15px;
}

.benefit-icon {
    color: var(--success-color);
    font-size: 1.5rem;
    margin-top: 3px;
}

.benefit-text h4 {
    font-weight: 600;
    margin-bottom: 5px;
}

.benefit-text p {
    margin-bottom: 0;
    line-height: 1.5;
    color: var(--gray-dark);
}

/* Rutas populares */
.transfer-routes {
    padding: 60px 0;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
}

.routes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.route-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

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

.route-image {
    height: 180px;
    position: relative;
}

.route-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--warning-color);
    color: var(--text-color);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    z-index: 2;
}

.route-content {
    padding: 20px;
}

.route-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
}

.route-info {
    margin-bottom: 10px;
}

.route-places {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-dark);
    font-size: 0.9rem;
}

.route-distance, 
.route-duration {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-dark);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.route-price {
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.route-price span {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #124a6a;
    transform: translateY(-2px);
}

.btn-sm {
    padding: 8px 15px;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 12px 25px;
    font-size: 1.1rem;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
    background-color: var(--gray-light);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.faq-item {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.toggle-icon {
    color: var(--primary-color);
    transition: transform 0.3s;
}

.faq-item.active .toggle-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px 20px;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    margin: 0;
    line-height: 1.6;
    color: var(--gray-dark);
}

/* No routes message */
.no-routes {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.no-routes p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--gray-dark);
}

/* Responsive */
@media (max-width: 1200px) {
    .routes-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .routes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2.5rem;
    }
    
    .routes-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-section {
        padding: 40px 20px;
    }
    
    .contact-section h2 {
        font-size: 2rem;
    }
    
    .contact-section p {
        font-size: 1rem;
    }
}