/* Base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

.site-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Button styles */
.btn-primary {
    display: inline-block;
    padding: 12px 24px;
    background-color: #1a73e8;
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    text-decoration: none;
    text-align: center;
}

.btn-primary:hover {
    background-color: #0d65d9;
    transform: translateY(-2px);
}

.btn-primary:active {
    transform: translateY(0);
}

/* Hero section */
.hero {
    background-image: url('https://images.unsplash.com/photo-1590674899484-d5640e854abe?ixlib=rb-1.2.1&amp;auto=format&amp;fit=crop&amp;w=2000&amp;q=80');
    background-size: cover;
    background-position: center;
    height: 80vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: fadeInDown 1s ease;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.3s both;
}

.hero .btn-primary {
    animation: fadeIn 1s ease 0.6s both;
}

/* About section */
.about-section {
    padding: 4rem 0;
    background-color: white;
}

.about-card {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    overflow: hidden;
    padding: 2rem;
}

.about-content {
    flex: 1;
    min-width: 300px;
}

.about-image {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
}

.about-image img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: contain;
    animation: pulse 2s infinite ease-in-out;
}

.about-section h2 {
    font-size: 2.2rem;
    color: #1a73e8;
    margin-bottom: 1rem;
}

.features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.feature {
    background-color: #f0f7ff;
    padding: 0.75rem 1rem;
    border-radius: 50px;
    text-align: center;
}

/* Services section */
.services-section, 
.premium-services {
    padding: 4rem 0;
    background-color: #f9f9f9;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.services-grid {
    grid-template-columns: repeat(4, 1fr);
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
}

h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 1rem;
}

.transport-card,
.service-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.transport-card:hover,
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

.card-image {
    height: 200px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.card-image:hover img {
    transform: scale(1.1);
}

.card-content {
    padding: 1.5rem;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-top: 0.5rem;
    color: #333;
}

.features-list {
    margin-top: 1rem;
    padding-left: 1.5rem;
}

.features-list li {
    margin-bottom: 0.5rem;
    position: relative;
}

.features-list li::before {
    content: '✓';
    color: #1a73e8;
    position: absolute;
    left: -1.2rem;
}

/* Pricing section */
.pricing-section {
    padding: 4rem 0;
    background-color: white;
}

.pricing-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.pricing-card {
    background-color: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #e6e6e6;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

.pricing-card.premium {
    border: 2px solid #1a73e8;
    position: relative;
}

.pricing-card.premium::before {
    content: 'Recomendado';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #1a73e8;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-header {
    margin-bottom: 1.5rem;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a73e8;
    margin-bottom: 1rem;
}

.pricing-price span {
    font-size: 1rem;
    color: #666;
}

.pricing-custom {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a73e8;
    margin-bottom: 1rem;
}

.pricing-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.promo-text {
    display: block;
    color: #e74c3c;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.availability-info {
    margin-top: 3rem;
    padding: 1.5rem;
    background-color: #f0f7ff;
    border-radius: 12px;
    text-align: center;
    border-left: 4px solid #1a73e8;
}

.availability-info p {
    margin-bottom: 0.5rem;
}

.availability-info p:last-child {
    margin-bottom: 0;
}

.availability-info strong {
    color: #1a73e8;
}

.pricing-card .btn-primary {
    display: block;
    width: 100%;
    margin-top: 2rem;
}

/* Reviews section */
.reviews-section {
    padding: 4rem 0;
    background-color: #f9f9f9;
}

.reviews-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.review-card {
    background-color: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.reviewer-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.review-header h4 {
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
}

.review-header p {
    color: #666;
    font-size: 0.9rem;
}

.rating {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.review-text {
    font-style: italic;
    color: #555;
}

/* Contact Form Section */
.contact-form-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.contact-form-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
}

.contact-form-info {
    flex: 1;
    min-width: 300px;
}

.contact-form-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1a73e8;
}

.contact-method {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.contact-icon {
    font-size: 24px;
    margin-right: 15px;
    width: 50px;
    height: 50px;
    background-color: #e8f0fe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a73e8;
}

.contact-text h4 {
    margin: 0 0 5px 0;
    font-size: 18px;
}

.contact-text a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-text a:hover {
    color: #1a73e8;
}

/* Remove or comment out these styles */
/*
.contact-form {
    flex: 1;
    min-width: 300px;
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #1a73e8;
    outline: none;
}

.contact-form .btn-primary {
    margin-right: 15px;
}

.contact-form .btn-whatsapp {
    display: inline-block;
    background-color: #25D366;
    color: white;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.contact-form .btn-whatsapp:hover {
    background-color: #128C7E;
}

.form-group input,
.form-group textarea {
    transform: translateY(10px);
    opacity: 0;
    animation: fadeInUp 0.5s forwards;
}

.form-group:nth-child(1) input { animation-delay: 0.1s; }
.form-group:nth-child(2) input { animation-delay: 0.2s; }
.form-group:nth-child(3) input { animation-delay: 0.3s; }
.form-group:nth-child(4) textarea { animation-delay: 0.4s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
*/

/* You might want to ensure .contact-form-info is centered or styled as desired */
.contact-form-info {
    flex: 1; /* This will make it take full width if it's the only child */
    min-width: 300px;
    text-align: center; /* Optional: if you want the content centered */
}

.contact-form-info .btn-whatsapp { /* Style for the new WhatsApp button in contact info */
    display: inline-block;
    background-color: #25D366;
    color: white;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px; /* Added margin */
    transition: background-color 0.3s ease;
}

.contact-form-info .btn-whatsapp:hover {
    background-color: #128C7E;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-form-container {
        flex-direction: column;
    }
}

.contact-logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    background-color: white;
    padding: 5px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    transition: background-color 0.3s;
}

.social-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-item a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #63a4ff;
}

.phone-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-left: 8px;
    font-style: italic;
}

.hours {
    margin-top: 2rem;
}

.hours h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.map {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.directions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.coordinates {
    color: #63a4ff;
    font-weight: 600;
}

.location-code {
    color: #aaa;
    font-size: 0.9rem;
}

.btn-directions {
    background-color: #1a73e8;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background-color 0.3s;
}

.btn-directions:hover {
    background-color: #0d65d9;
}

/* Footer */
footer {
    background-color: #101828;
    color: #aaa;
    padding: 2rem 0;
    text-align: center;
    margin-top: auto;
}

.footer-links {
    margin-top: 1rem;
}

.footer-links a {
    color: #63a4ff;
    text-decoration: none;
    margin: 0 0.5rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Animation on scroll styles */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animations for cards */
.card-grid > *:nth-child(1) { transition-delay: 0.1s; }
.card-grid > *:nth-child(2) { transition-delay: 0.2s; }
.card-grid > *:nth-child(3) { transition-delay: 0.3s; }
.card-grid > *:nth-child(4) { transition-delay: 0.4s; }

/* Media query for disabling animations on small devices */
@media (prefers-reduced-motion: reduce) {
    .animate-on-scroll {
        opacity: 1;
        transform: translateY(0);
        transition: none;
    }
    
    .hero h1,
    .hero p,
    .hero .btn-primary {
        animation: none;
    }
    
    .about-image img {
        animation: none;
    }
}

/* Responsive styles */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .about-card, 
    .contact-grid {
        flex-direction: column;
    }
    
    .about-image {
        margin-top: 2rem;
    }
    
    .card-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .container {
        padding: 1.5rem;
    }
    
    .feature {
        width: 100%;
    }
}

/* Enhanced Contact Section */
.contact-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.contact-section .section-title {
    text-align: center;
    margin-bottom: 10px;
    color: #333;
}

.contact-section .section-subtitle {
    text-align: center;
    margin-bottom: 50px;
    color: #666;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}

.contact-info, .contact-details, .map-container {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-logo {
    max-width: 150px;
    margin-bottom: 20px;
}

.social-links {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.social-link {
    color: #1a73e8;
    text-decoration: none;
    transition: color 0.3s;
}

.social-link:hover {
    color: #0d47a1;
    text-decoration: underline;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-method {
    display: flex;
    align-items: center;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background-color: #e8f0fe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 18px;
    color: #1a73e8;
}

.contact-text a {
    color: #1a73e8;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.contact-text a:hover {
    color: #0d47a1;
}

.phone-label {
    color: #666;
    font-size: 14px;
    margin-left: 5px;
}

.hours h3 {
    margin-bottom: 15px;
    color: #333;
}

.hours p {
    margin: 5px 0;
    color: #666;
}

.map {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
}

.directions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.coordinates, .location-code {
    margin: 0;
    font-size: 14px;
    color: #666;
}

.btn-directions {
    display: inline-block;
    background-color: #1a73e8;
    color: white;
    padding: 8px 15px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.3s;
}

.btn-directions:hover {
    background-color: #0d47a1;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .map-container {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .map-container {
        grid-column: span 1;
    }
}

/* WhatsApp Button Section */
.whatsapp-section {
    background-color: #f8f9fa;
    padding: 40px 0;
    text-align: center;
}

.btn-whatsapp-blue {
    display: inline-block;
    background-color: #1a73e8; /* Blue color */
    color: white;
    padding: 15px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 0 auto 30px auto; /* Added bottom margin */
    display: block; /* Make it a block element */
    max-width: 250px; /* Limit width */
}

.btn-whatsapp-blue:hover {
    background-color: #0d47a1; /* Darker blue on hover */
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}