/* =================================================================
   LIMBOX TURISMO - COLORES ORIGINALES DE WORDPRESS
   ================================================================= */

/* Variables de colores originales extraídos del WordPress */
:root {
    /* Colores principales del sitio - BASADOS EN LA IMAGEN ORIGINAL */
    --limbox-magenta: #FF1B8D;         /* Rosa/Magenta principal del fondo */
    --limbox-pink: #FF69B4;            /* Rosa más claro */
    --primary-blue: #0693e3;           /* Azul principal */
    --secondary-gray: #aab4c1;         /* Gris secundario */
    --text-white: #ffffff;             /* Blanco para textos */
    --text-dark: #000000;              /* Negro para textos */
    --divider-color: #0c0d0e;          /* Color divisores */
    --whatsapp-green: #25d366;         /* Verde WhatsApp */
    --social-gray: #69727d;            /* Gris para iconos sociales */
    --button-gray: #32373c;            /* Gris para botones */
    --light-gray: #abb8c3;             /* Gris claro */
    --cyan-blue: #8ed1fc;              /* Azul cyan */
    --vivid-purple: #9b51e0;           /* Morado vívido */
    --orange: #ff6900;                 /* Naranja */
    --green-cyan: #00d084;             /* Verde cyan */
    --yellow: #fcb900;                 /* Amarillo */
    --red: #cf2e2e;                    /* Rojo */
    --pale-pink: #f78da7;              /* Rosa pálido */
    --light-green: #7bdcb5;            /* Verde claro */
    
    /* Gradientes originales */
    --gradient-magenta: linear-gradient(135deg, #FF1B8D 0%, #FF69B4 100%);
    --gradient-blue-purple: linear-gradient(135deg, rgba(6,147,227,1) 0%, rgb(155,81,224) 100%);
    --gradient-green: linear-gradient(135deg, rgb(122,220,180) 0%, rgb(0,208,130) 100%);
    --gradient-orange: linear-gradient(135deg, rgba(252,185,0,1) 0%, rgba(255,105,0,1) 100%);
    --gradient-red: linear-gradient(135deg, rgba(255,105,0,1) 0%, rgb(207,46,46) 100%);
    
    /* Sombras originales */
    --shadow-natural: 6px 6px 9px rgba(0, 0, 0, 0.2);
    --shadow-deep: 12px 12px 50px rgba(0, 0, 0, 0.4);
    --shadow-sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);
    --shadow-whatsapp: 0px 0px 11px rgba(0,0,0,.5);
}

/* Animaciones fade-in */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Clases de animación */
.fade-in-left {
    opacity: 0;
    animation: fadeInLeft 1s ease-out forwards;
}

.fade-in-right {
    opacity: 0;
    animation: fadeInRight 1s ease-out forwards;
}

/* Delays para animaciones escalonadas */
.fade-delay-1 { animation-delay: 0.2s; }
.fade-delay-2 { animation-delay: 0.4s; }
.fade-delay-3 { animation-delay: 0.6s; }

/* Reset y base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--text-white);
    padding: 0;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.site-header {
    background-color: var(--limbox-magenta);
    box-shadow: none;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 10px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo-section img {
    height: 50px;
    width: auto;
}

/* Navigation */
.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-white);
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 1rem;
}

.main-nav a:hover {
    color: #ffffff;
    opacity: 0.8;
}

/* Botón de contacto en header */
.header-contact-btn {
    background-color: var(--text-white);
    color: var(--limbox-magenta);
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-contact-btn:hover {
    background-color: #f0f0f0;
    transform: translateY(-1px);
}

/* Mobile menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-white);
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
    padding: 8px;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-white);
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--limbox-magenta);
    z-index: 999;
    display: none;
    padding-top: 80px;
}

.mobile-menu-overlay.active {
    display: block;
}

.mobile-nav-menu {
    list-style: none;
    padding: 2rem;
    margin: 0;
}

.mobile-nav-menu li {
    margin-bottom: 1.5rem;
}

.mobile-nav-menu a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    display: block;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

/* Hero Section */
.hero-section {
    background: var(--limbox-magenta);  /* Fondo magenta como en la imagen */
    color: var(--text-white);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 70vh;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    padding-right: 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
    text-align: left;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    text-align: left;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.btn-primary {
    background-color: var(--text-white);
    color: var(--limbox-magenta);
    box-shadow: var(--shadow-natural);
}

.btn-primary:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: var(--shadow-deep);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-white);
    border: 2px solid var(--text-white);
}

.btn-secondary:hover {
    background-color: var(--text-white);
    color: var(--limbox-magenta);
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
}

.hero-image::before {
    content: '';
    position: absolute;
    width: 450px;
    height: 450px;
    background: white;
    border-radius: 50%;
    z-index: 0;
    top: 50%;
    left: 45%;
    transform: translate(-50%, -50%);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.bus-image {
    position: relative;
    z-index: 2;
    max-width: 140%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    transform: translateX(15px);
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
    font-weight: 700;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--text-white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow-natural);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-deep);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-card p {
    color: var(--social-gray);
    line-height: 1.6;
}

/* Destinations Section */
.destinations-section {
    padding: 80px 0;
    background-color: var(--text-white);
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.destination-card {
    background: var(--text-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-natural);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-deep);
}

.destination-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.destination-info {
    padding: 1.5rem;
}

.destination-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.destination-info p {
    color: var(--social-gray);
    margin-bottom: 1rem;
}

.price {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--whatsapp-green);
}

/* Reviews Section - TrustIndex Style */
.reviews-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.trustindex-reviews-slider {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.swiper-container {
    padding-bottom: 50px;
    overflow: hidden;
}

.swiper-wrapper {
    display: flex;
    align-items: stretch;
}

.swiper-slide {
    height: auto;
    display: flex;
}

.trustindex-review-item {
    background: var(--text-white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-natural);
    margin: 1rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid #e1e5e9;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.reviewer-info {
    flex: 1;
}

.reviewer-name {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.review-stars {
    color: #ffd700;
    font-size: 1.2rem;
    line-height: 1;
}

.google-logo {
    font-weight: 600;
    color: var(--primary-blue);
    font-size: 0.9rem;
    background-color: #f0f0f0;
    padding: 4px 8px;
    border-radius: 4px;
}

.review-content {
    flex: 1;
    margin-bottom: 1rem;
}

.review-content p {
    color: var(--social-gray);
    line-height: 1.6;
    margin: 0;
    font-style: italic;
    font-size: 0.95rem;
}

.review-date {
    color: var(--light-gray);
    font-size: 0.85rem;
    margin-top: auto;
}

/* Swiper Customization */
.swiper-pagination {
    position: relative !important;
    margin-top: 2rem;
}

.swiper-pagination-bullet {
    background-color: var(--light-gray);
    opacity: 0.5;
    width: 12px;
    height: 12px;
    margin: 0 4px;
}

.swiper-pagination-bullet-active {
    background-color: var(--limbox-magenta);
    opacity: 1;
    transform: scale(1.2);
}

/* Autoplay indicator */
.trustindex-reviews-slider::before {
    content: "Google Reviews";
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 10;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background-color: var(--text-white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.about-text p {
    color: var(--social-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.features-list {
    list-style: none;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.feature-item i {
    color: var(--whatsapp-green);
    margin-right: 1rem;
    font-size: 1.2rem;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow-natural);
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.contact-item i {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-right: 1rem;
    width: 60px;
}

.contact-item h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--social-gray);
}

/* Form styles */
.contact-form {
    background: var(--text-white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-natural);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e1e5e9;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.submit-btn {
    background: var(--gradient-blue-purple);
    color: var(--text-white);
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: var(--shadow-natural);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-deep);
}

/* Footer */
.site-footer {
    background-color: var(--text-dark);
    color: var(--text-white);
    padding: 40px 0;
    text-align: center;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--text-white);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--light-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-blue);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--social-gray);
    color: var(--text-white);
    border-radius: 50%;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-blue);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid var(--social-gray);
    padding-top: 2rem;
    color: var(--light-gray);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: var(--whatsapp-green);
    color: var(--text-white);
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.8rem;
    box-shadow: var(--shadow-whatsapp);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.whatsapp-float a:hover {
    background-color: #22c162;
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .main-nav {
        display: none;
    }
    
    .header-actions {
        order: -1;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-text {
        padding-right: 0;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .hero-content p {
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image::before {
        width: 250px;
        height: 250px;
        left: 15%;
    }
    
    .bus-image {
        max-height: 320px;
        max-width: 130%;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .destinations-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .trustindex-review-item {
        margin: 0.5rem;
        padding: 1.5rem;
    }
    
    .swiper-container {
        padding-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .service-card,
    .trustindex-review-item {
        padding: 1.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mb-3 {
    margin-bottom: 3rem;
}

.hidden {
    display: none;
}

.visible {
    display: block;
}
