/* Custom CSS for Valentours Landing Page */

:root {
    --valentours-primary: #0ec2d2;
    --valentours-primary-hover: #0cb3c2;
    --valentours-dark: #111111;
    --valentours-dark-light: #1A1A1A;
    --valentours-muted: #888888;
    --valentours-white: #ffffff;
    --valentours-card-bg: rgba(26, 26, 26, 0.8);
    --valentours-border: rgba(14, 194, 210, 0.15);
    --valentours-neon-glow: 0 0 20px rgba(14, 194, 210, 0.35);

    /* Template color overrides (Skin-3) */
    --primary: #0ec2d2 !important;
    --primary-hover: #0cb3c2 !important;
    --primary-dark: #0a9ea8 !important;
    --rgba-primary-1: rgba(14, 194, 210, 0.1) !important;
    --rgba-primary-2: rgba(14, 194, 210, 0.2) !important;
    --rgba-primary-3: rgba(14, 194, 210, 0.3) !important;
    --rgba-primary-4: rgba(14, 194, 210, 0.4) !important;
    --rgba-primary-5: rgba(14, 194, 210, 0.5) !important;
    --rgba-primary-6: rgba(14, 194, 210, 0.6) !important;
    --rgba-primary-7: rgba(14, 194, 210, 0.7) !important;
    --rgba-primary-8: rgba(14, 194, 210, 0.8) !important;
    --rgba-primary-9: rgba(14, 194, 210, 0.9) !important;
    --font-family-title: 'Poppins', sans-serif !important;
}

/* Force Oswald font classes to Poppins */
.Oswald, .Oswald * {
    font-family: 'Poppins', sans-serif !important;
}

/* Glassmorphism Styles */
.glass-panel {
    background: rgba(17, 17, 17, 0.75);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
}

.glass-panel-neon {
    background: rgba(17, 17, 17, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--valentours-border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.glass-panel-neon:hover {
    border-color: var(--valentours-primary);
    box-shadow: var(--valentours-neon-glow), 0 15px 40px rgba(0, 0, 0, 0.7);
}

/* Custom WhatsApp Buttons */
.btn-whatsapp {
    background-color: #25D366;
    color: #fff !important;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background-color: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.btn-whatsapp i {
    font-size: 20px;
}

/* Float WhatsApp Widget */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.whatsapp-float:hover {
    background-color: #20ba5a;
    transform: scale(1.1);
    color: #FFF;
}

/* Comparison Section (Block 2) */
.comparison-card {
    border-radius: 20px;
    padding: 40px;
    height: 100%;
    transition: all 0.3s ease;
}

.comparison-card.card-competitor {
    background-color: rgba(30, 30, 30, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-card.card-valentours {
    background-color: rgba(14, 194, 210, 0.04);
    border: 2px solid var(--valentours-primary);
    box-shadow: var(--valentours-neon-glow);
    position: relative;
    overflow: hidden;
}

.comparison-card.card-valentours::before {
    content: "RECOMENDADO";
    position: absolute;
    top: 25px; /* Moved down to avoid clipping by the rounded corner */
    right: -42px; /* Adjusted position */
    background: var(--valentours-primary);
    color: var(--valentours-dark);
    font-size: 8px; /* Slightly smaller for premium, clean fit */
    font-weight: 700;
    padding: 5px 40px;
    transform: rotate(45deg);
    letter-spacing: 1px;
}

/* Prevent FontAwesome icons from inheriting the Oswald font-family in titles */
.Oswald i, [class*="Oswald"] i {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
}

.comparison-list li {
    list-style: none;
    position: relative;
    padding-left: 30px;
    margin-bottom: 20px;
    font-size: 15px;
}

.comparison-list li i {
    position: absolute;
    left: 0;
    top: 3px;
    font-size: 18px;
}

.comparison-list.list-danger li i {
    color: #ff4d4d;
}

.comparison-list.list-success li i {
    color: var(--valentours-primary);
}

/* Testimonials Section */
.testimonial-section {
    background: #f7f8fa;
    padding: 80px 0;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.testimonial-section-title {
    font-size: 36px;
    font-weight: 800;
    color: #0ec2d2;
    margin-bottom: 10px;
    line-height: 1.2;
}

/* Desktop grid: 3 cards centered, with breathing room for shadows */
.testimonial-grid {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 24px;
    padding: 20px 0 30px; /* bottom padding so shadows aren't clipped */
}

.testimonial-grid-item {
    flex: 0 0 auto;
    width: 260px;
    transition: transform 0.3s ease;
}

.testimonial-grid-item:hover {
    transform: translateY(-6px);
}

/* Center card: same size as others */
.testimonial-grid-item--center {
    width: 260px;
    position: relative;
    z-index: 2;
}

.testimonial-grid-item--center:hover {
    transform: translateY(-6px);
}

/* Make card fill its container width */
.testimonial-grid-item .vertical-video-card,
.testimonial-grid-item--center .vertical-video-card {
    max-width: 100%;
    width: 100%;
}

/* Mobile carousel container */
.video-testimonial-container {
    max-width: 340px;
    margin: 0 auto;
    padding-bottom: 20px; /* room for shadow */
}


.vertical-video-card {
    position: relative;
    width: 100%;
    max-width: 280px;
    aspect-ratio: 9 / 16;
    border-radius: 20px;
    overflow: hidden;
    background-color: #000;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    margin: 0 auto;
}

.vertical-video-card:hover {
    transform: translateY(-5px);
    border-color: var(--valentours-primary);
    box-shadow: var(--valentours-neon-glow), 0 15px 30px rgba(0, 0, 0, 0.7);
}

.vertical-video-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.4) 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    z-index: 2;
    transition: opacity 0.3s ease;
}

.vertical-video-card:hover .video-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.3) 100%);
}

.video-badge {
    align-self: flex-start;
    background: rgba(14, 194, 210, 0.2);
    backdrop-filter: blur(5px);
    border: 1px solid var(--valentours-primary);
    color: var(--valentours-primary);
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.video-play-btn {
    align-self: center;
    width: 50px;
    height: 50px;
    background-color: var(--valentours-primary);
    color: var(--valentours-dark);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(14, 194, 210, 0.4);
}

.vertical-video-card:hover .video-play-btn {
    transform: scale(1.15);
}

.video-info {
    color: #fff;
}

.video-info h5 {
    margin-bottom: 2px;
    font-weight: 600;
    font-size: 16px;
}

.video-info p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

/* Floating Controls when video is playing */
.vertical-video-card.playing .video-play-btn {
    opacity: 0;
}
.vertical-video-card.playing:hover .video-play-btn {
    opacity: 1;
    background-color: rgba(0,0,0,0.6);
    color: #fff;
}

/* Service Cards (Block 4) */
.service-card-custom {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 460px;
    display: flex;
    align-items: flex-end;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    background-size: cover;
    background-position: center;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-card-custom::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(17, 17, 17, 0.95) 0%, rgba(17, 17, 17, 0.3) 50%, rgba(17, 17, 17, 0.1) 100%);
    z-index: 1;
    transition: all 0.5s ease;
}

.service-card-content {
    position: relative;
    z-index: 2;
    padding: 25px;
    width: 100%;
    /* Only hide the text and button below the fold, not the title */
    transform: translateY(115px);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-card-content h4 {
    min-height: 54px;
    display: flex;
    align-items: flex-end;
    margin-bottom: 0;
    line-height: 1.25;
}

.service-card-content p {
    opacity: 0 !important;
    transition: opacity 0.4s ease;
    margin-bottom: 0;
}

.service-card-icon {
    font-size: 34px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    min-height: 40px;
    transition: all 0.3s ease;
}

.service-card-custom:hover {
    transform: translateY(-8px);
    border-color: var(--valentours-primary);
    box-shadow: var(--valentours-neon-glow);
}

.service-card-custom:hover::before {
    background: linear-gradient(to top, rgba(17, 17, 17, 0.98) 0%, rgba(17, 17, 17, 0.5) 60%, rgba(17, 17, 17, 0.2) 100%);
}

.service-card-custom:hover .service-card-content {
    transform: translateY(0);
}

.service-card-custom:hover .service-card-content p {
    opacity: 0.9 !important;
}

.service-card-custom:hover .service-card-icon {
    transform: scale(1.1);
}

.service-card-btn {
    opacity: 0;
    transition: opacity 0.4s ease;
    margin-top: 20px;
}

.service-card-custom:hover .service-card-btn {
    opacity: 1;
}

/* Mobile swiper wrapper */
.services-swiper-wrapper {
    padding: 0 4px 24px;
}

/* On mobile cards: always show content (no hover magic) */
.service-card-content-mobile {
    transform: translateY(0) !important;
}

.service-card-content-mobile p {
    opacity: 0.85 !important;
}

.service-card-btn-mobile {
    opacity: 1 !important;
}

.service-card-mobile {
    height: 380px;
    width: 100%;
}

/* Custom Accordion (Block 6) */
.faq-accordion .accordion-item {
    background-color: #f7f8fa;
    border: 1px solid rgba(0, 0, 0, 0.06) !important;
    border-radius: 12px !important;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-accordion .accordion-button {
    background-color: transparent;
    color: #111111;
    font-weight: 500;
    padding: 22px 25px;
    box-shadow: none;
    font-size: 16px;
}

.faq-accordion .accordion-button:not(.collapsed) {
    color: #0ec2d2;
    background-color: rgba(14, 194, 210, 0.04);
}

.faq-accordion .accordion-button::after {
    filter: brightness(0.2); /* Dark arrow by default */
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    filter: invert(56%) sepia(85%) saturate(1500%) hue-rotate(150deg) brightness(92%) contrast(92%); /* Cyan arrow when open */
}

.faq-accordion .accordion-body {
    background-color: transparent;
    color: #333333;
    padding: 5px 25px 25px;
    line-height: 1.6;
}

/* Custom Form Styles (Block 7) */
.form-control-custom {
    background-color: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    color: #fff !important;
    padding: 14px 20px !important;
    border-radius: 8px !important;
    font-size: 14px;
    transition: all 0.3s ease !important;
}

.form-control-custom:focus {
    background-color: rgba(255, 255, 255, 0.06) !important;
    border-color: var(--valentours-primary) !important;
    box-shadow: 0 0 10px rgba(200, 243, 29, 0.2) !important;
}

select.form-control-custom {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23ffffff' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 20px center !important;
    background-size: 14px !important;
    padding-right: 40px !important;
}

select.form-control-custom option {
    background-color: #1c1d21 !important;
    color: #ffffff !important;
}

.form-control-custom::placeholder {
    color: rgba(255, 255, 255, 0.4) !important;
}

/* Header style tweaks & Solid White Menu */
.site-header {
    background-color: #ffffff !important;
    position: relative;
    z-index: 999;
    border-bottom: 1px solid #eaeaea !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.site-header.header-transparent {
    position: relative !important;
    background-color: #ffffff !important;
}

/* Header Top Bar */
.header-top-label {
    background-color: #f8f9fa !important;
    border-bottom: 1px solid #eeeeee !important;
    padding: 8px 0;
    font-size: 13px;
    color: #444444 !important;
    font-weight: 500;
}

.header-top-label span {
    margin-right: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #444444 !important;
}

.header-top-label span i {
    color: var(--valentours-primary) !important; /* #0ec2d2 */
}

.text-header-top-link {
    color: #222222 !important;
    transition: color 0.3s ease;
}

.text-header-top-link:hover {
    color: var(--valentours-primary) !important;
}

/* Main Header Navigation Bar */
.main-bar-wraper {
    background-color: #ffffff !important;
}

.main-bar {
    background-color: #ffffff !important;
}

.main-bar.is-fixed {
    background-color: #ffffff !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
}

/* Logo Sizing */
.logo-dark img, .logo-light img {
    height: 48px !important;
    width: auto !important;
}

/* Navigation Pill Container Bar (Blue Pill) */
@media only screen and (min-width: 992px) {
    .header-nav .navbar-nav {
        background-color: var(--valentours-primary) !important; /* #0ec2d2 */
        border-radius: 50px !important;
        padding: 5px 12px !important; /* Slimmer vertically, sleek pill bar */
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 4px !important;
        box-shadow: 0 4px 15px rgba(14, 194, 210, 0.25) !important;
    }

    .header-nav .nav > li {
        margin: 0 !important;
        padding: 0 !important;
    }

    .header-nav .nav > li > a {
        color: #ffffff !important;
        font-size: 15px !important;
        font-weight: 600 !important;
        padding: 8px 24px !important; /* Wider horizontally, slimmer vertically */
        border-radius: 50px !important;
        transition: all 0.25s ease-in-out !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-decoration: none !important;
        background-color: transparent !important;
        line-height: 1.2 !important;
    }

    .header-nav .nav > li > a span {
        color: #ffffff !important;
        transition: color 0.25s ease-in-out !important;
    }

    /* Active & Hover state: Solid white pill with cyan blue text (#0ec2d2) */
    .header-nav .nav > li.active > a,
    .header-nav .nav > li:hover > a {
        background-color: #ffffff !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
    }

    .header-nav .nav > li.active > a span,
    .header-nav .nav > li:hover > a span,
    .header-nav .nav > li.active > a,
    .header-nav .nav > li:hover > a {
        color: var(--valentours-primary) !important; /* #0ec2d2 */
    }

    /* Hide default template underline indicator */
    .header-nav .nav > li > a::after,
    .header-nav .nav > li.active > a::after,
    .header-nav .nav > li:hover > a::after {
        display: none !important;
        content: none !important;
    }
}

/* Header WhatsApp CTA Button in Cyan (#0ec2d2) */
.btn-cyan-header,
.btn-electric-green {
    background-color: var(--valentours-primary) !important; /* #0ec2d2 */
    border-color: var(--valentours-primary) !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    border-radius: 50px !important;
    padding: 10px 24px !important;
    box-shadow: 0 4px 15px rgba(14, 194, 210, 0.35) !important;
    transition: all 0.3s ease !important;
}

.btn-cyan-header:hover,
.btn-electric-green:hover {
    background-color: var(--valentours-primary-hover) !important; /* #0cb3c2 */
    border-color: var(--valentours-primary-hover) !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14, 194, 210, 0.5) !important;
}

.btn-cyan-header i,
.btn-electric-green i {
    color: #ffffff !important;
}

/* Mobile Hamburger Toggle Button */
.navicon span {
    background-color: #1a1a1a !important;
}

/* Mobile Navigation Drawer */
@media only screen and (max-width: 991px) {
    .header-nav {
        background-color: #ffffff !important;
    }
    .header-nav .nav > li > a {
        color: #1a1a1a !important;
        padding: 12px 20px !important;
        border-radius: 8px !important;
    }
    .header-nav .nav > li.active > a,
    .header-nav .nav > li:hover > a {
        color: #ffffff !important;
        background-color: var(--valentours-primary) !important;
    }
    .header-nav .nav > li.active > a span,
    .header-nav .nav > li:hover > a span {
        color: #ffffff !important;
    }
}

/* Text glow */
.text-neon {
    color: var(--valentours-primary) !important;
}

/* Swiper slider adjustments for vertical testimonials */
.swiper-testimonials-vertical .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Custom Success Modal */
.custom-modal-content {
    background: #151515;
    border: 1px solid var(--valentours-primary);
    box-shadow: var(--valentours-neon-glow);
    border-radius: 20px;
    color: #fff;
}

.custom-modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.custom-modal-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Form Section Accent Override to Theme Cyan */
#bloque7 .btn-primary {
    background-color: var(--valentours-primary) !important;
    border-color: var(--valentours-primary) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(14, 194, 210, 0.35) !important;
}

#bloque7 .btn-primary:hover {
    background-color: var(--valentours-primary-hover) !important;
    border-color: var(--valentours-primary-hover) !important;
    color: #ffffff !important;
    box-shadow: 0 6px 20px rgba(14, 194, 210, 0.5) !important;
}

#bloque7 .text-neon {
    color: var(--valentours-primary) !important;
}

#bloque7 .glass-panel-neon {
    border-color: rgba(14, 194, 210, 0.2) !important;
}

#bloque7 .glass-panel-neon:hover {
    border-color: var(--valentours-primary) !important;
    box-shadow: 0 0 20px rgba(14, 194, 210, 0.35), 0 15px 40px rgba(0, 0, 0, 0.7) !important;
}

/* Custom Form Controls for Bloque 7 */
.form-control-custom,
select.form-control-custom,
.form-select.form-control-custom {
    background-color: rgba(255, 255, 255, 0.07) !important;
    border: 1px solid rgba(255, 255, 255, 0.16) !important;
    color: #ffffff !important;
    border-radius: 14px !important;
    padding: 14px 24px !important;
    font-size: 15px !important;
    margin-top: 8px !important;
    transition: all 0.3s ease;
}

select.form-control-custom,
.form-select.form-control-custom {
    padding-left: 24px !important;
    padding-right: 44px !important;
    cursor: pointer;
}

.form-control-custom:focus,
select.form-control-custom:focus {
    background-color: rgba(255, 255, 255, 0.12) !important;
    border-color: #0ec2d2 !important;
    box-shadow: 0 0 14px rgba(14, 194, 210, 0.35) !important;
    color: #ffffff !important;
}

.form-control-custom option {
    background-color: #1c1d21 !important;
    color: #ffffff !important;
    padding: 14px 20px !important;
}

/* White Footer Styling (High Contrast & Readability) */
.site-footer {
    background-color: #ffffff !important;
    color: #333333 !important;
    border-top: 1px solid rgba(0, 0, 0, 0.08) !important;
}

.site-footer .footer-top {
    background-color: #ffffff !important;
    padding-top: 80px;
    padding-bottom: 40px;
}

.site-footer .widget_about p,
.site-footer .widget_getintuch span,
.site-footer .widget_getintuch a,
.site-footer .widget_services a,
.site-footer .copyright-text,
.site-footer p {
    color: #333333 !important;
}

.site-footer .widget_services a:hover,
.site-footer .widget_getintuch a:hover {
    color: #0ec2d2 !important;
}

.site-footer h5,
.site-footer .widget-title,
.site-footer h5.Oswald {
    color: #0ec2d2 !important;
    font-family: 'Poppins', sans-serif !important;
    font-weight: 600 !important;
}

.site-footer i {
    color: #0ec2d2 !important;
}

.site-footer .social-icon a {
    border-color: #0ec2d2 !important;
    color: #0ec2d2 !important;
    background-color: transparent !important;
}

.site-footer .social-icon a:hover {
    background-color: #0ec2d2 !important;
    color: #ffffff !important;
}

.site-footer .footer-bottom {
    background-color: #f9f9f9 !important;
    border-top: 1px solid rgba(0, 0, 0, 0.05) !important;
    padding: 20px 0 !important;
}

.site-footer .footer-bottom p {
    color: #666666 !important;
}

.site-footer .footer-bottom a {
    color: #0ec2d2 !important;
}

.site-footer .current-year {
    color: #0ec2d2 !important;
}

/* Force white text inside video overlays (even inside light sections) */
.video-info h5 {
    color: #ffffff !important;
}

.video-info p {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Bloque 5 Free Consultation Vibrant Cyan Contrast Redesign */
#bloque5 {
    background: linear-gradient(135deg, #0ec2d2 0%, #09aab8 100%);
    padding: 85px 0;
    position: relative;
}

#bloque5::before {
    display: none;
}

.consultation-card-light {
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 28px;
    padding: 55px 35px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.14);
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.consultation-card-light::before {
    content: "";
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(14, 194, 210, 0.08) 0%, rgba(255, 255, 255, 0) 75%);
    pointer-events: none;
}

.consultation-title {
    font-size: 34px;
    font-weight: 800;
    color: #111827;
    line-height: 1.25;
}

.consultation-subtitle {
    font-size: 15px;
    color: #4b5563;
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.6;
}

.btn-comp-cta-lg {
    font-size: 15px;
    padding: 14px 32px;
    border-radius: 50px;
}

/* ==========================================================================
   RESPONSIVE DESIGN OPTIMIZATIONS
   ========================================================================== */

/* Max Width Utility */
.max-w-md {
    max-width: 800px !important;
}

/* Typography fluid sizing for Mobile & Tablet */
@media only screen and (max-width: 767px) {
    h1, .h1 {
        font-size: 32px !important;
        line-height: 1.25 !important;
    }
    h2, .h2 {
        font-size: 26px !important;
        line-height: 1.3 !important;
    }
    h3, .h3 {
        font-size: 20px !important;
        line-height: 1.35 !important;
    }
    h4, .h4 {
        font-size: 18px !important;
    }
    .display-2 {
        font-size: 36px !important;
        line-height: 1.2 !important;
    }
    .display-4 {
        font-size: 28px !important;
        line-height: 1.25 !important;
    }
    
    /* Section Head spacing */
    .section-head {
        margin-bottom: 30px !important;
    }
    .section-head p {
        font-size: 15px !important;
    }
}

/* Comparison Section (Block 2) mobile adjustments */
@media only screen and (max-width: 767px) {
    .comparison-card {
        padding: 25px 20px !important;
    }
    .comparison-list li {
        font-size: 14px !important;
        margin-bottom: 15px !important;
        padding-left: 25px !important;
    }
    .comparison-list li i {
        font-size: 16px !important;
        top: 2px !important;
    }
    .comparison-card.card-valentours::before {
        font-size: 8px !important;
        padding: 4px 30px !important;
        right: -30px !important;
        top: 15px !important;
    }
}

/* Video Testimonials (Block 3) mobile scaling */
@media only screen and (max-width: 767px) {
    .video-overlay {
        padding: 12px !important;
    }
    .video-info h5 {
        font-size: 13px !important;
    }
    .video-info p {
        font-size: 10px !important;
    }
    .video-category {
        font-size: 9px !important;
        padding: 3px 8px !important;
    }
    .video-play-btn {
        font-size: 36px !important;
    }
}

/* Service Cards (Block 4) mobile height and hover slide */
@media only screen and (max-width: 575px) {
    .service-card-custom {
        height: 420px; /* Slightly shorter cards on tiny screens */
    }
    .service-card-content {
        transform: translateY(155px); /* Adjusted matching slide height */
        padding: 20px;
    }
    .service-card-content p {
        font-size: 14px !important;
    }
    .service-card-icon {
        font-size: 32px !important;
        margin-bottom: 10px !important;
    }
}

/* FAQ Accordion (Block 6) padding for small screens */
@media only screen and (max-width: 575px) {
    .faq-accordion .accordion-button {
        padding: 16px 18px !important;
        font-size: 14px !important;
    }
    .faq-accordion .accordion-body {
        padding: 5px 18px 18px !important;
        font-size: 13px !important;
    }
}

.footer-bottom p {
    font-size: 13px !important;
    color: #6b7280 !important;
}

.footer-bottom a {
    transition: color 0.2s ease;
}

.footer-bottom a:hover {
    color: #0ec2d2 !important;
}

/* Form and Footer general responsive adjustments */
@media only screen and (max-width: 767px) {
    .footer-top {
        padding-top: 50px !important;
        padding-bottom: 20px !important;
    }
    .site-footer .widget {
        margin-bottom: 30px !important;
    }
    .footer-bottom {
        padding: 15px 0 !important;
    }
}

/* ==========================================================================
   PHOTO GALLERY CAROUSEL & LIGHTBOX STYLES
   ========================================================================== */

.gallery-section-title,
.faq-section-title,
.services-section-title {
    font-size: 36px;
    font-weight: 800;
    color: #0ec2d2;
    margin-bottom: 10px;
    line-height: 1.2;
}

.gallery-swiper {
    padding: 10px 0 30px !important;
}

.gallery-img-box {
    width: 100%;
    height: 380px;
    border-radius: 15px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.gallery-img-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(14, 194, 210, 0.25);
    border: 1px solid #0ec2d2;
}

/* Navigation arrows customization */
.gallery-swiper-prev,
.gallery-swiper-next {
    width: 44px;
    height: 44px;
    background-color: #ffffff;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.gallery-swiper-prev:hover,
.gallery-swiper-next:hover {
    background-color: #0ec2d2;
    color: #ffffff !important;
    box-shadow: 0 6px 15px rgba(14, 194, 210, 0.3);
}

.gallery-swiper-prev::after,
.gallery-swiper-next::after {
    font-size: 16px !important;
    font-weight: bold;
}

/* Pagination dots customization */
.gallery-swiper-pagination .swiper-pagination-bullet {
    background: #cccccc;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.gallery-swiper-pagination .swiper-pagination-bullet-active {
    background: #0ec2d2 !important;
    width: 20px;
    border-radius: 4px;
    opacity: 1;
}

/* Testimonial Cards link reset */
.vertical-video-card.popup-youtube {
    text-decoration: none !important;
    display: block;
}

.vertical-video-card.popup-youtube:hover .video-play-btn {
    transform: scale(1.1);
    background-color: #0ec2d2 !important;
    color: #ffffff !important;
}

@media only screen and (max-width: 575px) {
    .gallery-img-box {
        height: 200px;
    }
    .gallery-swiper-prev,
    .gallery-swiper-next {
        display: none !important; /* Hide arrows on very small screens for touch swipe */
    }
    .gallery-swiper-container {
        padding: 0 !important;
    }
}

/* ==========================================================================
   TESTIMONIAL SWIPER CAROUSEL STYLES
   ========================================================================== */

.testimonial-swiper {
    padding: 10px 0 40px !important;
}

.testimonial-swiper-pagination .swiper-pagination-bullet {
    background: #cccccc;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.testimonial-swiper-pagination .swiper-pagination-bullet-active {
    background: #0ec2d2 !important;
    width: 20px;
    border-radius: 4px;
    opacity: 1;
}

/* Hide Swiper dots on desktop since all slides are shown side-by-side */
@media only screen and (min-width: 992px) {
    .testimonial-swiper-pagination {
        display: none !important;
    }
    .testimonial-swiper {
        padding: 10px 0 10px !important;
    }
}

/* ==========================================================================
   MOBILE LAYOUT OVERRIDES (HERO BANNER, BACKGROUND & TITLES)
   ========================================================================== */

/* Slider de fondo oculto por defecto (en desktop) */
.hero-bg-swiper {
    display: none !important;
}

/* Descapitalizar títulos de sección que tengan clase .title o específicamente en comparativa */
#bloque2 .title {
    text-transform: none !important;
}

@media only screen and (max-width: 767px) {
    /* Ocultar video de YouTube en móviles para evitar controles nativos e interactividad bloqueada */
    .hero-video-bg {
        display: none !important;
    }
    
    /* Mostrar slider de fondo en móviles */
    .hero-bg-swiper {
        display: block !important;
    }
    
    /* Aumentar la opacidad del overlay oscuro en móviles para lectura impecable */
    .hero-overlay {
        background: linear-gradient(0deg, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.65) 50%, rgba(10,10,10,0.85) 100%) !important;
    }
    
    /* Altura más baja para el banner principal en móvil */
    .main-banner-2 {
        min-height: 60vh !important;
        padding-top: 140px !important;
        padding-bottom: 50px !important;
    }
}

/* Arreglar disposición distorsionada del título en móviles (anulando flex del template) */
@media only screen and (max-width: 575px) {
    .section-head.style-1 .title {
        display: block !important;
        text-align: center !important;
        font-size: 26px !important;
        line-height: 1.3 !important;
        width: 100% !important;
    }
    
    .section-head.style-1 .title br {
        display: none !important;
    }
    
    .section-head.style-1 p {
        display: block !important;
        text-align: center !important;
        margin: 10px auto 0 !important;
        font-size: 14px !important;
        width: 100% !important;
    }
}

/* ==========================================================================
   MINIMALIST LIGHT COMPARISON TABLE – BLOQUE 2
   ========================================================================== */

.comparison-section-light {
    background-color: #f7f8fa;
    padding: 80px 0;
}

/* Section Header */
.comp-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #0ec2d2;
    background: rgba(14, 194, 210, 0.08);
    border: 1px solid rgba(14, 194, 210, 0.3);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.comp-title {
    font-size: 36px;
    font-weight: 800;
    color: #111827;
    line-height: 1.25;
    margin-bottom: 16px;
}

.comp-highlight { color: #0ec2d2; }

.comp-subtitle {
    font-size: 16px;
    color: #6b7280;
    max-width: 780px;
    margin: 0 auto;
    line-height: 1.65;
}

/* Table Card Container */
.comp-table-card {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

/* Grid Layout: 3 columns */
.comp-table-header,
.comp-table-row,
.comp-table-footer {
    display: grid;
    grid-template-columns: 1.1fr 1.4fr 1.4fr;
    align-items: stretch;
}

/* Header */
.comp-table-header {
    border-bottom: 2px solid #e5e7eb;
    background: #fafafa;
}

.comp-table-header .comp-col-feature { padding: 20px 24px; }

.comp-table-header .comp-col-bad,
.comp-table-header .comp-col-good {
    padding: 20px 24px;
    display: flex;
    align-items: center;
    position: relative;
}

.comp-table-header .comp-col-bad { border-left: 1px solid #e5e7eb; }

.comp-table-header .comp-col-good {
    border-left: 1px solid #e5e7eb;
    background: rgba(14, 194, 210, 0.04);
    justify-content: space-between;
}

.comp-col-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 14px;
}

.comp-col-label.bad { color: #ef4444; }
.comp-col-label.bad i { font-size: 16px; }
.comp-col-label.good { color: #0ec2d2; }
.comp-col-label.good i { font-size: 16px; }

.comp-recommended-badge {
    background: #0ec2d2;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 50px;
}

/* Rows */
.comp-table-row {
    border-bottom: 1px solid #e5e7eb;
    transition: background 0.18s ease;
}
.comp-table-row:hover { background: #f9fafb; }
.comp-table-row.last { border-bottom: none; }

.comp-col-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 24px;
}

.comp-feature-icon {
    color: #0ec2d2;
    font-size: 15px;
    width: 18px;
    text-align: center;
    flex-shrink: 0;
}

.comp-feature-label {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
}

.comp-col-bad,
.comp-col-good {
    padding: 18px 24px;
    display: flex;
    align-items: center;
}

.comp-col-bad { border-left: 1px solid #e5e7eb; }

.comp-col-good {
    border-left: 1px solid #e5e7eb;
    background: rgba(14, 194, 210, 0.03);
}

/* Cells */
.comp-cell {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.5;
}
.comp-cell i { margin-top: 2px; flex-shrink: 0; font-size: 13px; }
.comp-cell.bad { color: #6b7280; }
.comp-cell.bad i { color: #f87171; }
.comp-cell.good { color: #374151; font-weight: 500; }
.comp-cell.good i { color: #0ec2d2; }

/* Footer */
.comp-table-footer {
    border-top: 2px solid #e5e7eb;
    background: #fafafa;
}
.comp-table-footer .comp-col-feature { padding: 20px 24px; }
.comp-table-footer .comp-col-bad { border-left: 1px solid #e5e7eb; }
.comp-table-footer .comp-col-good {
    border-left: 1px solid #e5e7eb;
    background: rgba(14, 194, 210, 0.04);
    padding: 20px 24px;
    display: flex;
    align-items: center;
}

.comp-footer-note {
    font-size: 13px;
    color: #9ca3af;
    margin: 0;
}

.btn-comp-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #0ec2d2;
    color: #ffffff !important;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 16px rgba(14, 194, 210, 0.3);
}
.btn-comp-cta:hover {
    background: #09aab8;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(14, 194, 210, 0.35);
    color: #fff !important;
}

/* Outline variant for the "Por tu cuenta" column CTA */
.btn-comp-cta.btn-comp-cta-outline {
    background: transparent;
    color: #0ec2d2 !important;
    border: 2px solid #0ec2d2;
    box-shadow: none;
}
.btn-comp-cta.btn-comp-cta-outline:hover {
    background: #0ec2d2;
    color: #fff !important;
    box-shadow: 0 6px 18px rgba(14, 194, 210, 0.25);
}


/* Responsive – Comparison Table */
@media (max-width: 768px) {

    /* Hide feature column, keep bad + good side by side */
    .comp-table-header,
    .comp-table-row,
    .comp-table-footer {
        grid-template-columns: 1fr 1fr;
    }

    /* Feature column hidden on mobile */
    .comp-col-feature,
    .comp-table-header .comp-col-feature,
    .comp-table-footer .comp-col-feature {
        display: none;
    }

    /* Remove left border from bad col since it's now the first visible col */
    .comp-col-bad,
    .comp-table-header .comp-col-bad,
    .comp-table-footer .comp-col-bad {
        border-left: none;
    }

    /* Smaller text and tighter padding on mobile cells */
    .comp-col-bad,
    .comp-col-good {
        padding: 14px 12px;
    }

    .comp-cell {
        font-size: 12px;
        gap: 6px;
    }

    .comp-col-label {
        font-size: 12px;
        gap: 5px;
    }

    .comp-table-header .comp-col-bad,
    .comp-table-header .comp-col-good {
        padding: 14px 12px;
    }

    .comp-table-footer .comp-col-bad,
    .comp-table-footer .comp-col-good {
        padding: 16px 10px;
        justify-content: center;
    }

    /* Make CTA buttons full-width, centered, with proper icon spacing */
    .btn-comp-cta {
        font-size: 12px;
        padding: 10px 14px;
        width: 100%;
        justify-content: center;
        gap: 6px;
        text-align: center;
        white-space: nowrap;
    }

    .comp-title,
    .testimonial-section-title,
    .gallery-section-title,
    .faq-section-title { font-size: 24px; }

    /* Remove recommended badge on very small screens to save space */
    .comp-recommended-badge { display: none; }

    /* Consultation Card Mobile */
    .consultation-card-light {
        padding: 35px 20px;
        border-radius: 20px;
    }
    .consultation-title {
        font-size: 24px;
    }
    .btn-comp-cta-lg {
        font-size: 13px;
        padding: 12px 20px;
        width: 100%;
    }
}

/* ==========================================================================
   HERO CARD CONTAINER WITH CAROUSEL & OVERLAPPING SEARCH BAR
   ========================================================================== */

.hero-section-outer {
    background-color: #ffffff;
    padding-bottom: 60px !important;
}

.hero-card-banner {
    position: relative;
    border-radius: 28px;
    min-height: 620px; /* Taller height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 24px 100px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.hero-main-swiper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 28px;
    z-index: 1;
    overflow: hidden;
}

.hero-main-swiper .swiper-slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Light translucent overlay so photos stay bright & vivid */
.hero-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.22) 0%, rgba(0, 0, 0, 0.12) 50%, rgba(0, 0, 0, 0.32) 100%);
    z-index: 2;
}

.hero-card-content {
    position: relative;
    z-index: 3;
    max-width: 920px;
    margin: 0 auto;
}

.hero-badge {
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid var(--valentours-primary);
    color: #ffffff;
    font-size: 13px;
    letter-spacing: 1.5px;
    padding: 8px 20px;
    border-radius: 50px;
    backdrop-filter: blur(8px);
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
}

.hero-title {
    font-size: 50px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: 0.5px;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.65);
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.6;
    max-width: 780px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

/* Overlapping Floating Search Card */
.hero-card-banner .hero-search-wrapper {
    position: absolute;
    bottom: -32px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 820px;
    z-index: 10;
}

.hero-search-form {
    background: #ffffff;
    border-radius: 50px;
    padding: 6px 8px 6px 24px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    border: 2px solid rgba(14, 194, 210, 0.25);
    transition: all 0.3s ease;
}

.hero-search-form:focus-within {
    border-color: var(--valentours-primary);
    box-shadow: 0 15px 45px rgba(14, 194, 210, 0.45);
}

.hero-search-input-wrap input {
    box-shadow: none !important;
    outline: none !important;
    color: #111111 !important;
    font-weight: 500;
}

.hero-search-input-wrap input::placeholder {
    color: #777777 !important;
    font-size: 16px;
    font-weight: 400;
}

.btn-hero-search {
    background-color: var(--valentours-primary) !important; /* #0ec2d2 */
    color: #ffffff !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    padding: 12px 30px !important;
    border-radius: 50px !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(14, 194, 210, 0.4) !important;
    transition: all 0.3s ease !important;
    white-space: nowrap;
}

.btn-hero-search:hover {
    background-color: var(--valentours-primary-hover) !important; /* #0cb3c2 */
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14, 194, 210, 0.6) !important;
}

.btn-hero-search i {
    color: #ffffff !important;
}

/* Responsive Overrides */
@media only screen and (max-width: 991px) {
    .hero-title {
        font-size: 34px;
    }
    .hero-card-banner {
        min-height: 440px;
        padding: 50px 20px 80px;
    }
}

@media only screen and (max-width: 767px) {
    .hero-search-form {
        flex-direction: column !important;
        border-radius: 24px !important;
        padding: 12px !important;
        gap: 10px;
    }
    .hero-search-input-wrap {
        width: 100%;
        padding: 6px 10px !important;
    }
    .btn-hero-search {
        width: 100%;
        border-radius: 16px !important;
        padding: 12px 20px !important;
    }
    .hero-card-banner .hero-search-wrapper {
        bottom: -65px;
        width: 94%;
    }
    .hero-section-outer {
        padding-bottom: 90px !important;
    }
}

@media only screen and (max-width: 575px) {
    .hero-title {
        font-size: 24px;
    }
    .hero-subtitle {
        font-size: 13px;
    }
}

/* ==========================================================================
   MOBILE YOUTUBE MODAL
   ========================================================================== */
.mobile-yt-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.mobile-yt-modal.is-open {
    display: flex;
}

.mobile-yt-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    cursor: pointer;
}

.mobile-yt-container {
    position: relative;
    z-index: 1;
    width: 92vw;
    max-width: 480px;
    border-radius: 16px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7);
}

.mobile-yt-close {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    border: none;
    color: #fff;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(4px);
    transition: background 0.2s ease;
}

.mobile-yt-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* 9:16 aspect ratio for vertical videos */
.mobile-yt-frame-wrap {
    position: relative;
    width: 100%;
    padding-bottom: 177.78%;
    height: 0;
}

.mobile-yt-frame-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ==========================================================================
   MOBILE MENU & TOP BAR STYLES
   ========================================================================== */

/* Top Bar Mobile Compact 1-line */
.header-top-label {
    background-color: #f7f8fa !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
    padding: 6px 0 !important;
    font-size: 13px !important;
    color: #4b5563 !important;
}

.header-top-label span,
.header-top-label a {
    color: #4b5563 !important;
    font-size: 13px !important;
}

/* Hide Mobile Toggler Button on Desktop (992px and above) */
@media (min-width: 992px) {
    .xmenu-toggler,
    .navicon,
    button.xmenu-toggler,
    .site-header .xmenu-toggler,
    .site-header .navicon {
        display: none !important;
    }
}

/* Mobile Toggler Button (.xmenu-toggler / .navicon) — Mobile & Tablet Only (< 992px) */
@media (max-width: 991px) {
    .xmenu-toggler,
    .navicon {
        background: #ffffff !important;
        border: 1.5px solid #0ec2d2 !important;
        border-radius: 10px !important;
        width: 44px !important;
        height: 44px !important;
        display: inline-flex !important;
        justify-content: center !important;
        align-items: center !important;
        padding: 0 !important;
        box-shadow: 0 4px 12px rgba(14, 194, 210, 0.15) !important;
        cursor: pointer !important;
        position: relative !important;
    }

    /* Hide legacy spans/pseudo elements that draw broken template arrow */
    .xmenu-toggler span,
    .navicon span,
    .xmenu-toggler::before,
    .xmenu-toggler::after,
    .navicon::before,
    .navicon::after {
        display: none !important;
    }

    .xmenu-toggler .open-icon {
        font-size: 20px !important;
        color: #0ec2d2 !important;
        display: block !important;
    }

    .xmenu-toggler .close-icon {
        font-size: 22px !important;
        color: #0ec2d2 !important;
        display: none !important;
    }

    .xmenu-toggler.open .open-icon {
        display: none !important;
    }

    .xmenu-toggler.open .close-icon {
        display: block !important;
    }
}

/* Mobile Menu Drawer (#xMenuNav / .header-nav) */
@media (max-width: 991px) {
    .header-nav.xmenu {
        position: fixed !important;
        top: 0 !important;
        left: -320px !important;
        width: 290px !important;
        height: 100vh !important;
        background-color: #ffffff !important;
        z-index: 999999 !important;
        box-shadow: 10px 0 40px rgba(0, 0, 0, 0.15) !important;
        transition: left 0.35s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
        display: flex !important;
        flex-direction: column !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .header-nav.xmenu.show {
        left: 0 !important;
    }

    .header-nav .logo-header {
        background: #ffffff !important;
        padding: 18px 20px !important;
        border-bottom: 1px solid #e5e7eb !important;
    }

    .header-nav .navbar-nav {
        padding: 10px 0 !important;
        margin: 0 !important;
        list-style: none !important;
    }

    .header-nav .navbar-nav li {
        width: 100% !important;
        margin: 0 !important;
    }

    .header-nav .navbar-nav li a,
    .header-nav .navbar-nav li a span {
        color: #111827 !important;
        font-size: 16px !important;
        font-weight: 600 !important;
        text-decoration: none !important;
    }

    .header-nav .navbar-nav li a {
        padding: 14px 24px !important;
        display: block !important;
        border-bottom: 1px solid #f3f4f6 !important;
        transition: all 0.2s ease !important;
    }

    .header-nav .navbar-nav li a:hover,
    .header-nav .navbar-nav li a:hover span,
    .header-nav .navbar-nav li.active a,
    .header-nav .navbar-nav li.active a span {
        color: #0ec2d2 !important;
        background-color: rgba(14, 194, 210, 0.08) !important;
    }

    .menu-close.fade-overlay.show {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        background: rgba(0, 0, 0, 0.5) !important;
        backdrop-filter: blur(3px) !important;
        z-index: 999998 !important;
        display: block !important;
    }
}

/* ==========================================================================
   GLOBAL SWIPER CAROUSEL CORPORATE CYAN OVERRIDES (#0ec2d2)
   ========================================================================== */
:root {
    --swiper-theme-color: #0ec2d2 !important;
    --swiper-pagination-color: #0ec2d2 !important;
}

.swiper-pagination-bullet {
    background-color: #0ec2d2 !important;
    opacity: 0.35;
}

.swiper-pagination-bullet-active {
    background-color: #0ec2d2 !important;
    opacity: 1 !important;
    width: 24px !important;
    border-radius: 10px !important;
    transition: all 0.3s ease !important;
}

.swiper-button-next,
.swiper-button-prev {
    color: #0ec2d2 !important;
}
