/* Cancun Sail - Estilo exacto replicado de Boat Trips Punta Cana */

:root {
    --primary-color: #00b4d8;
    --secondary-color: #ff6b35;
    --accent-color: #ffd60a;
    --tropical-orange: #ff8500;
    --tropical-blue: #0077b6;
    --dark-color: #1a1a1a;
    --light-color: #f8f9fa;
    --white: #ffffff;
    --text-dark: #333333;
    --text-light: #666666;
    --border-color: #e0e0e0;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --gradient-primary: linear-gradient(135deg, #00b4d8, #0077b6);
    --gradient-secondary: linear-gradient(135deg, #ff8500, #ff6b35);
    --glass-light: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.18);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Header Styles */
.top-header {
    font-size: 0.9rem;
    border-bottom: 1px solid #444;
}

.top-header a {
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.top-header a:hover {
    opacity: 0.8;
}

/* Navigation Styles */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--border-color);
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 1.5rem;
    color: var(--primary-color) !important;
    text-decoration: none;
}

.navbar-brand .logo {
    height: 50px;
    margin-right: 10px;
}

.navbar-nav .nav-link {
    font-weight: 500;
    margin: 0 1rem;
    color: var(--text-dark) !important;
    transition: color 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.social-links a {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.2);
}

/* Hero Section */
.hero-section {
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    position: relative;
}

/* Video Background Styles */
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    pointer-events: none;
}

.video-background iframe {
    width: 100vw;
    height: 56.25vw;
    /* 16:9 aspect ratio */
    min-height: 100vh;
    min-width: 177.77vh;
    /* 16:9 aspect ratio */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

/* Fallback for older browsers */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Background manejado inline en HTML */
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 10;
    padding-top: 2rem;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
    margin-bottom: 2rem;
}

/* Hero Features List */
.hero-features-list {
    list-style: none;
    padding: 0;
    font-size: 1.2rem;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-features-list li {
    margin-bottom: 0.8rem;
}

/* Google Rating Card */
.google-rating-card {
    background: rgba(23, 162, 184, 0.9) !important;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

/* Search Sidebar - Estilo transparente como boattripspuntacana.com */
.search-sidebar {
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    border-radius: 16px !important;
}

.search-sidebar .form-select {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 8px;
    padding: 12px 16px;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.search-sidebar .form-select option {
    background: rgba(0, 0, 0, 0.9) !important;
    color: white !important;
}

.search-sidebar .form-select:focus {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: var(--tropical-orange) !important;
    box-shadow: 0 0 0 3px rgba(255, 133, 0, 0.3) !important;
    color: white !important;
    outline: none;
}

/* Estilos para formulario móvil */
.search-sidebar .form-label {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .search-sidebar {
        background: rgb(255 255 255 / 9%) !important;
        color: #00000016 !important;
        padding: 1.5rem !important;
    }
}

/* Facebook Card */
.facebook-card {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Partners Section */
.partners-section {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.partner-logo {
    opacity: 0.7;
    transition: all 0.3s ease;
    margin: 0 15px;
    filter: grayscale(100%);
}

.partner-logo:hover {
    opacity: 1;
    transform: scale(1.05);
    filter: grayscale(0%);
}

/* Language flags */
.flag {
    cursor: pointer;
    transition: transform 0.2s ease;
    border-radius: 2px;
}

.flag:hover {
    transform: scale(1.1);
}

.feature-item {
    padding: 1.5rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    margin: 0 1rem;
}

.feature-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.2);
}

.feature-item i {
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.hero-rating {
    font-size: 1.2rem;
}

.stars i {
    font-size: 1.5rem;
    margin-right: 0.2rem;
}

/* Search Section */
.search-section {
    position: relative;
    margin-top: -50px;
    z-index: 100;
}

.search-form {
    border: 1px solid var(--border-color);
}

.search-form label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-select,
.form-control {
    border: 1px solid var(--border-color);
    padding: 0.75rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.form-select:focus,
.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(0, 102, 204, 0.25);
}

/* Offers Section */
.offers-section {
    padding: 5rem 0;
}

.offers-section h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.location-badge {
    display: inline-flex;
    align-items: center;
    background: var(--light-color);
    padding: 1rem 2rem;
    border-radius: 25px;
    border: 1px solid var(--border-color);
    font-weight: 500;
}

/* Tour Cards - Estilo mejorado inspirado en boattripspuntacana.com */
.tour-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.tour-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 180, 216, 0.15);
    border-color: var(--primary-color);
}

.tour-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(45deg, var(--tropical-orange), #ff6b35);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(255, 133, 0, 0.3);
}

.tour-image {
    height: 260px;
    overflow: hidden;
    position: relative;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tour-card:hover .tour-image img {
    transform: scale(1.08);
}

.tour-content {
    padding: 24px;
}

.tour-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.3;
}

.tour-details {
    margin: 1.5rem 0;
}

.detail-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.detail-item i {
    width: 20px;
    margin-right: 1rem;
    color: var(--primary-color);
}

.tour-price {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.current-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.original-price {
    font-size: 1.2rem;
    color: var(--text-light);
    text-decoration: line-through;
}

.tour-features {
    margin: 1.5rem 0;
}

.feature {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    padding: 0.5rem;
    background: var(--light-color);
    border-radius: 10px;
    font-size: 0.9rem;
}

.feature i {
    width: 20px;
    margin-right: 1rem;
    color: var(--primary-color);
}

.tour-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

/* Buttons */
.btn {
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    border: 2px solid transparent;
}

.btn-primary:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.4);
}

.btn-outline-primary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-warning {
    background: var(--gradient-secondary);
    color: var(--white);
    border: 2px solid transparent;
}

.btn-warning:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.btn-lg {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

/* Shared Tours Section */
.shared-tours-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Stats Section */
.stats-section {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 4rem 0;
}

.stat-item {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.stat-label {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Responsive Design - Mejorado para móvil como boattripspuntacana.com */
@media (max-width: 768px) {
    body {
        font-size: 14px;
    }

    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero-title {
        font-size: 2.2rem !important;
        text-align: center;
        margin-bottom: 24px;
        line-height: 1.2;
        font-weight: 800;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }

    .hero-features {
        flex-direction: column;
        gap: 12px;
    }

    .feature-item {
        margin: 8px 0;
        font-size: 0.95rem;
    }

    .tour-actions {
        flex-direction: column;
        gap: 12px;
    }

    .tour-card {
        margin-bottom: 24px;
        border-radius: 16px;
    }

    .tour-content {
        padding: 20px;
    }

    .tour-title {
        font-size: 1.15rem;
        margin-bottom: 12px;
    }

    .search-form .row>div {
        margin-bottom: 16px;
    }

    .search-form-mobile {
        margin-top: 16px;
        margin-bottom: 24px;
    }

    .btn-cta-hero {
        padding: 16px 32px;
        font-size: 1rem;
        width: 100%;
        margin-bottom: 16px;
    }

    .btn-search {
        padding: 14px 24px;
        font-size: 0.95rem;
    }

    .partners-section {
        display: none;
        /* Ocultar en móvil como en la referencia */
    }

    /* Ocultar elementos del header superior en móvil para coincidir con boattripspuntacana.com */
    .top-header .col-lg-6:last-child .d-flex span:not(.ms-3) {
        display: none !important;
    }

    /* Mantener solo redes sociales en móvil */
    .top-header .col-lg-6:last-child .ms-3 {
        margin-left: 0 !important;
    }

    /* Mejorar header móvil */
    .top-header .row {
        justify-content: space-between;
    }

    .top-header {
        padding: 0.5rem 0;
    }

    .top-header .contact-info {
        font-size: 0.8rem;
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
        width: 100%;
    }

    .top-header .contact-info span {
        margin-right: 0 !important;
        justify-self: start;
    }

    /* Reorganizar redes sociales en grid para móvil */
    .top-header .col-lg-6:last-child .ms-3 {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
        margin-left: 0 !important;
        justify-items: center;
    }
}

/* Floating Icons para móvil (como boattripspuntacana.com) */
.floating-icons {
    position: fixed;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.floating-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.floating-icon:nth-child(1) {
    background: #25d366;
    /* WhatsApp green */
}

.floating-icon:nth-child(2) {
    background: #1e90ff;
    /* Email blue */
}

.floating-icon:nth-child(3) {
    background: #ff6b35;
    /* Calendar orange */
}

.floating-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .hero-content {
        width: 95%;
        padding: 1rem;
    }

    /* Header móvil para pantallas muy pequeñas */
    .top-header .contact-info {
        font-size: 0.7rem;
        grid-template-columns: 1fr;
        gap: 0.3rem;
    }

    .top-header .contact-info span {
        margin-right: 0 !important;
        margin-bottom: 0.2rem;
        text-align: center;
    }

    /* Redes sociales en línea para pantallas muy pequeñas */
    .top-header .col-lg-6:last-child .ms-3 {
        grid-template-columns: repeat(6, 1fr);
        gap: 0.2rem;
    }
}

.navbar-nav {
    text-align: center;
    margin-top: 1rem;
}

.navbar-actions {
    margin-top: 1rem;
    justify-content: center;
}

.social-links {
    margin-right: 0 !important;
    margin-bottom: 1rem;
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tour-card {
    animation: fadeInUp 0.6s ease-out;
}

.tour-card:nth-child(1) {
    animation-delay: 0.1s;
}

.tour-card:nth-child(2) {
    animation-delay: 0.2s;
}

.tour-card:nth-child(3) {
    animation-delay: 0.3s;
}

/* Utility Classes */
.object-cover {
    object-fit: cover;
}

.text-shadow {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.backdrop-blur {
    backdrop-filter: blur(10px);
}

/* Scroll Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-left {
    animation: slideInLeft 0.8s ease-out;
}

.slide-in-right {
    animation: slideInRight 0.8s ease-out;
}

/* Button Styles - Inspirados en boattripspuntacana.com */
.btn-cta-hero {
    background: linear-gradient(45deg, var(--tropical-orange), #ff6b35);
    border: none;
    color: white;
    padding: 18px 40px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(255, 133, 0, 0.4);
    border-radius: 50px;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
}

.btn-cta-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-cta-hero:hover::before {
    left: 100%;
}

.btn-cta-hero:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 133, 0, 0.5);
    color: white;
}

.btn-search {
    background: linear-gradient(45deg, var(--tropical-orange), #ff6b35);
    border: none;
    color: white !important;
    padding: 14px 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(255, 133, 0, 0.3);
    border-radius: 12px;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn-search::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.4s;
}

.btn-search:hover::before {
    left: 100%;
}

.btn-search:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 133, 0, 0.4);
    color: white !important;
}

/* Mobile Features List */
.mobile-features {
    padding: 1.5rem 0 1rem;
}

.feature-mobile-item {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    opacity: 0.95;
    animation: fadeInUp 0.6s ease-out;
    margin-bottom: 0.75rem;
}

.feature-mobile-item:last-of-type {
    margin-bottom: 1.5rem;
}

.feature-mobile-item i {
    font-size: 1.1rem;
    width: 24px;
    text-align: center;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Video Background Responsive Styles */
@media (max-width: 768px) {
    .video-background iframe {
        width: 100vw;
        height: 177.78vw;
        /* Mobile aspect ratio adjustment */
        min-height: 100vh;
        min-width: 56.25vh;
    }

    .hero-overlay {
        background: linear-gradient(135deg, rgba(30, 144, 255, 0.8) 0%, rgba(0, 123, 255, 0.6) 100%);
    }
}

@media (max-width: 480px) {
    .video-background iframe {
        height: 200vw;
        /* Extra tall for small screens */
    }

    .search-sidebar {
        margin: 0 12px;
        padding: 16px !important;
        background: rgba(255, 255, 255, 0.03) !important;
        backdrop-filter: blur(12px) saturate(150%);
        -webkit-backdrop-filter: blur(12px) saturate(150%);
    }

    .search-sidebar .form-select-sm {
        background: rgba(255, 255, 255, 0.03) !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        font-size: 0.85rem;
        padding: 10px 14px;
    }

    .hero-title {
        font-size: 1.8rem !important;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
    }

    .btn-cta-hero {
        padding: 14px 28px;
        font-size: 0.95rem;
    }

    /* Asegurar que el overlay no interfiera con la transparencia */
    .hero-overlay {
        background: linear-gradient(135deg, rgba(0, 180, 216, 0.25) 0%, rgba(0, 119, 182, 0.3) 50%, rgba(255, 133, 0, 0.25) 100%) !important;
    }

    /* Móviles pequeños - estilos adicionales para transparencia ultra */
    .search-sidebar .form-label {
        color: white !important;
        font-size: 0.85rem;
        font-weight: 700;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6) !important;
        margin-bottom: 8px;
    }

    .search-sidebar .form-select-sm {
        color: white !important;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6) !important;
    }

    .search-sidebar .form-select-sm option {
        background: rgba(0, 0, 0, 0.95) !important;
        color: white !important;
    }

    .search-sidebar .form-select-sm:focus {
        background: rgba(255, 255, 255, 0.08) !important;
        border-color: rgba(255, 133, 0, 0.5) !important;
        color: white !important;
    }
}

.mobile-features .feature-mobile-item {
    background: rgba(255, 255, 255, 0.08);
    padding: 12px 16px;
    border-radius: 12px;
    margin-bottom: 12px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.3s ease;
}

/* Iconos con colores tropicales */
.feature-mobile-item i.text-warning {
    color: var(--accent-color) !important;
}

.feature-mobile-item i.text-info {
    color: var(--primary-color) !important;
}

.feature-mobile-item i.text-success {
    color: #28a745 !important;
}

.feature-mobile-item i.text-primary {
    color: var(--tropical-blue) !important;
}

.feature-mobile-item i.text-danger {
    color: var(--tropical-orange) !important;
}

/* Placeholder styling para form inputs transparentes */
.search-sidebar .form-select::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Fixes específicos para móvil transparente como boattripspuntacana.com */
@media (max-width: 768px) {

    /* Overlay del hero más sutil para mejor transparencia */
    .hero-overlay {
        background: linear-gradient(135deg, rgba(0, 180, 216, 0.2) 0%, rgba(0, 119, 182, 0.25) 50%, rgba(255, 133, 0, 0.2) 100%) !important;
    }

    /* Asegurar texto blanco visible en filtros */
    .search-sidebar .form-select-sm,
    .search-sidebar .form-select-sm:focus,
    .search-sidebar .form-select-sm:active {
        color: white !important;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6) !important;
        -webkit-text-fill-color: white !important;
        -moz-appearance: none;
        -webkit-appearance: none;
        appearance: none;
    }

    /* Safari specific fixes para dropdowns */
    .search-sidebar .form-select-sm::-webkit-input-placeholder {
        color: rgba(255, 255, 255, 0.8) !important;
    }

    /* Firefox specific fixes */
    .search-sidebar .form-select-sm option {
        background-color: rgba(0, 0, 0, 0.95) !important;
        color: white !important;
    }

    /* Mejorar el contraste del texto en los labels */
    .search-sidebar .form-label {
        text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8) !important;
        font-weight: 800 !important;
    }
}