.rental-section {
        background-color: #f9f9f9;
        position: relative;
        overflow: hidden;
    }

    .rental-header {
        text-align: center;
        max-width: 800px;
        margin: 0 auto 60px;
    }

    .rental-header h2 {
        font-size: 36px;
        color: #006272;
        margin-bottom: 20px;
        font-weight: 700;
    }

    .rental-header p {
        color: #666;
        font-size: 18px;
    }

    /* Pricing Cards */
    .pricing-card {
        background: #fff;
        border-radius: 15px;
        padding: 40px 30px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
        height: 100%;
        border-top: 5px solid #006272;
        display: flex;
        flex-direction: column;
    }

    .pricing-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    }

    .pricing-card.featured {
        border-top-color: #E35205;
        position: relative;
    }

    .pricing-card.featured::before {
        content: "Popular";
        position: absolute;
        top: -12px;
        left: 50%;
        transform: translateX(-50%);
        background: #E35205;
        color: #fff;
        padding: 4px 12px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
    }

    .pricing-title {
        font-size: 24px;
        font-weight: 700;
        color: #333;
        margin-bottom: 10px;
        text-align: center;
    }

    .pricing-specs {
        text-align: center;
        color: #888;
        font-size: 14px;
        margin-bottom: 25px;
        padding-bottom: 20px;
        border-bottom: 1px solid #eee;
    }

    .pricing-specs i {
        margin: 0 5px;
        color: #006272;
    }

    .price-row {
        margin-bottom: 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .price-label {
        color: #555;
        font-weight: 600;
        font-size: 14px;
    }

    .price-value {
        color: #006272;
        font-weight: 700;
        font-size: 18px;
    }

    .pack-box {
        background: #f0fdf4;
        border: 1px solid #dcfce7;
        border-radius: 8px;
        padding: 15px;
        margin-top: auto;
    }

    .pack-title {
        color: #166534;
        font-weight: 700;
        font-size: 14px;
        margin-bottom: 8px;
        text-align: center;
        text-transform: uppercase;
    }

    .pack-prices {
        display: flex;
        justify-content: space-between;
        font-size: 13px;
    }

    /* Equipment Section - Flexbox Layout for Center Alignment */
    .equipment-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        /* Centra los elementos huérfanos */
        gap: 30px;
        margin-top: 20px;
    }

    .equipment-item {
        /* Mobile: 1 por fila */
        flex: 0 0 100%;
        max-width: 450px;

        background: #fff;
        padding: 30px;
        border-radius: 16px;
        border: 1px solid rgba(0, 0, 0, 0.06);
        box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.03);
        /* FIX: Solo animar efectos visuales, nunca el layout (width/flex) */
        transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
            box-shadow 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
            border-color 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    @media (min-width: 768px) {
        .equipment-item {
            /* Tablet: 2 por fila */
            flex: 0 0 calc(50% - 15px);
            /* Restando mitad del gap */
            max-width: none;
        }
    }

    @media (min-width: 1200px) {
        .equipment-item {
            /* Desktop: 3 por fila */
            flex: 0 0 calc(33.333% - 20px);
            /* 3 columnas exactas respetando el gap */
        }
    }

    .equipment-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px -5px rgba(0, 98, 114, 0.1);
        border-color: rgba(0, 98, 114, 0.15);
    }

    /* Decorative top line on hover */
    .equipment-item::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, #006272, #00B0B9);
        opacity: 0;
        transition: opacity 0.3s;
    }

    .equipment-item:hover::after {
        opacity: 1;
    }

    .equipment-title {
        font-weight: 800;
        color: #1e293b;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        gap: 15px;
        font-size: 1.15rem;
        letter-spacing: -0.5px;
    }

    .equipment-title i {
        color: #fff;
        background: linear-gradient(135deg, #E35205, #FF7E3F);
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 12px;
        font-size: 1.2rem;
        box-shadow: 0 4px 12px rgba(227, 82, 5, 0.2);
        transition: transform 0.3s ease;
    }

    .equipment-item:hover .equipment-title i {
        transform: scale(1.1) rotate(-5deg);
    }

    .equipment-list {
        font-size: 0.95rem;
        color: #64748b;
        margin: 0;
        list-style: none;
        padding: 0;
        line-height: 1.6;
    }

    .equipment-list li {
        margin-bottom: 8px;
        display: flex;
        align-items: flex-start;
    }

    .equipment-list li::before {
        content: "✓";
        color: #006272;
        margin-right: 10px;
        font-weight: 900;
        font-size: 1rem;
        line-height: 1.5;
    }

    /* Watermark Icon Styling */
    .equipment-watermark {
        position: absolute;
        bottom: -20px;
        right: -20px;
        font-size: 7rem;
        color: rgba(0, 0, 0, 0.03);
        transform: rotate(-15deg);
        pointer-events: none;
        z-index: 0;
        transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .equipment-item:hover .equipment-watermark {
        transform: rotate(0deg) scale(1.1) translateY(-10px);
        color: rgba(227, 82, 5, 0.08);
        /* Color naranja sutil al hover */
    }

    .equipment-item {
        /* Asegurar que el contenido (texto) esté por encima de la marca de agua */
        z-index: 1;
    }

    .equipment-item>div,
    .equipment-item>ul {
        position: relative;
        z-index: 2;
    }

    .cta-rental {
        background: linear-gradient(135deg, #006272, #004b57);
        border-radius: 20px;
        padding: 50px;
        text-align: center;
        color: #fff;
        margin-top: 80px;
        position: relative;
        overflow: hidden;
    }

    .cta-rental h3 {
        color: #fff;
        font-size: 28px;
        margin-bottom: 15px;
    }

    .cta-rental p {
        color: rgba(255, 255, 255, 0.9);
        font-size: 18px;
        margin-bottom: 30px;
    }

    .btn-rental {
        background: #E35205;
        color: #fff;
        padding: 15px 40px;
        border-radius: 50px;
        font-weight: 700;
        text-decoration: none;
        transition: all 0.3s;
        display: inline-flex;
        align-items: center;
        gap: 10px;
    }

    .btn-info-rental {
        width: 100%;
        padding: 12px;
        background: transparent;
        border: 2px solid #006272;
        color: #006272;
        border-radius: 8px;
        font-weight: 700;
        margin-top: 20px;
        transition: all 0.3s;
    }

    .btn-info-rental:hover {
        background: #006272;
        color: #fff;
    }

    .modal-rental-img {
        height: 250px;
        object-fit: cover;
        border-radius: 10px;
        width: 100%;
        margin-bottom: 15px;
    }

    .btn-rental:hover {
        background: #c94600;
        color: #fff;
        transform: translateY(-2px);
    }

    /* ===== RESPONSIVE MOBILE OPTIMIZATION ===== */
    @media (max-width: 768px) {

        /* Header Section */
        .rental-header h2 {
            font-size: 28px;
            margin-bottom: 15px;
        }

        .rental-header p {
            font-size: 16px;
        }

        /* Carousel Split View Fix */
        /* Carousel Split View Fix */
        .rental-split-container {
            height: 300px;
        }

        /* Carousel adjustments */
        .carousel-inner img {
            height: 100% !important;
            object-fit: cover;
        }

        .carousel-caption {
            padding: 20px 15px !important;
        }

        .carousel-caption h3 {
            font-size: 20px !important;
            margin-bottom: 3px !important;
        }

        /* Modal Mobile Optimization */
        .modal-body p {
            line-height: 1.6 !important;
            /* Ajustado a un nivel medio */
            margin-bottom: 20px !important;
            color: #555;
        }

        .modal-body h4,
        .modal-body h5 {
            margin-top: 20px;
            margin-bottom: 12px;
        }

        .modal-body ul li {
            margin-bottom: 5px;
            line-height: 1.4;
        }

        /* Fix columns stacking in modal */
        .modal-body .row .col-md-6 {
            margin-bottom: 20px;
        }

        .carousel-caption p {
            font-size: 13px !important;
        }

        .carousel-caption span {
            font-size: 10px !important;
            padding: 3px 10px !important;
        }

        /* Pricing Cards */
        .pricing-card {
            padding: 25px 20px;
            margin-bottom: 20px;
        }

        .pricing-title {
            font-size: 20px;
        }

        .pricing-specs {
            font-size: 13px;
            margin-bottom: 20px;
        }

        .price-label {
            font-size: 12px;
        }

        .price-value {
            font-size: 16px;
        }

        .pack-box {
            padding: 12px;
        }

        .pack-title {
            font-size: 12px;
        }

        .pack-prices {
            font-size: 11px;
        }

        /* Equipment Grid */
        .equipment-grid {
            grid-template-columns: 1fr;
            gap: 15px;
        }

        .equipment-item {
            padding: 15px;
        }

        .equipment-title {
            font-size: 14px;
        }

        /* CTA Section */
        .cta-rental h3 {
            font-size: 24px !important;
            margin-bottom: 15px !important;
        }

        .cta-rental p {
            font-size: 16px !important;
            margin-bottom: 30px !important;
        }

        .btn-rental {
            padding: 14px 30px !important;
            font-size: 16px !important;
        }
    }

    @media (max-width: 480px) {

        /* Extra small phones */
        .rental-header h2 {
            font-size: 24px;
        }

        .rental-split-container {
            height: 250px;
        }

        .carousel-inner img {
            height: 250px !important;
        }

        /* Modal Carousel Images - Fixed Aspect Ratio */
        .modal-carousel-item img {
            width: 100%;
            height: auto !important;
            aspect-ratio: 16/9;
            /* Fuerza panorámico */
            object-fit: cover;
            /* Recorta si sobra */
            border-radius: 8px;
            /* Un poco de borde para que no sea tan duro */
        }

        @media (min-width: 992px) {
            /* Desktop: el ancho del modal controlará el tamaño de la imagen */
        }

        .pricing-card {
            padding: 20px 15px;
        }

        .cta-rental h3 {
            font-size: 20px !important;
        }

        .cta-rental p {
            font-size: 14px !important;
        }
    }