/* Cruise Include/Exclude Widget Styles */

.cruise-include-exclude-wrapper {
    position: relative;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.cruise-include-exclude-wrapper .container {
    max-width: 1400px;
    width: 100%;
    position: relative;
    z-index: 2;
}

/* Section Title */
.cruise-include-exclude-wrapper .section-title {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cruise-include-exclude-wrapper .section-title h2 {
    font-size: 3.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    letter-spacing: 2px;
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(102, 126, 234, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 40px rgba(118, 75, 162, 0.8));
    }
}

/* Cards Wrapper */
.cruise-include-exclude-wrapper .cards-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    position: relative;
    z-index: 1;
}

/* Card - REMOVED 3D perspective */
.cruise-include-exclude-wrapper .card {
    position: relative;
    min-height: 600px;
    height: auto;
}

/* Card Inner - REMOVED 3D transform effects */
.cruise-include-exclude-wrapper .card-inner {
    position: relative;
    width: 100%;
    height: 100%;
}

/* REMOVED hover 3D transform */
.cruise-include-exclude-wrapper .card:hover .card-inner {
    transform: translateY(-10px);
    transition: transform 0.4s ease;
}

.cruise-include-exclude-wrapper .card-content {
    position: relative;
    width: 100%;
    min-height: 100%;
    backdrop-filter: blur(20px);
    border-style: solid;
    overflow: visible;
    transition: all 0.4s ease;
}

/* Include Card Styles */
.cruise-include-exclude-wrapper .include-card .card-content {
    box-shadow: 0 20px 60px rgba(16, 185, 129, 0.3);
}

.cruise-include-exclude-wrapper .include-card:hover .card-content {
    box-shadow: 0 30px 80px rgba(16, 185, 129, 0.5);
    border-color: rgba(16, 185, 129, 0.4);
}

/* Exclude Card Styles */
.cruise-include-exclude-wrapper .exclude-card .card-content {
    box-shadow: 0 20px 60px rgba(239, 68, 68, 0.3);
}

.cruise-include-exclude-wrapper .exclude-card:hover .card-content {
    box-shadow: 0 30px 80px rgba(239, 68, 68, 0.5);
    border-color: rgba(239, 68, 68, 0.4);
}

/* Animated Blob Backgrounds */
.cruise-include-exclude-wrapper .blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.6;
    animation: blobAnimation 8s ease-in-out infinite;
    pointer-events: none;
}

.cruise-include-exclude-wrapper .blob-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.cruise-include-exclude-wrapper .blob-2 {
    width: 250px;
    height: 250px;
    bottom: -80px;
    left: -80px;
    animation-delay: 2s;
}

.cruise-include-exclude-wrapper .blob-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 4s;
}

@keyframes blobAnimation {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

/* Card Header */
.cruise-include-exclude-wrapper .card-header {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cruise-include-exclude-wrapper .icon-wrapper {
    margin: 0 auto 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cruise-include-exclude-wrapper .icon-circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: iconPulse 2s ease-in-out infinite;
}

.cruise-include-exclude-wrapper .include-card .icon-circle {
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.4);
}

.cruise-include-exclude-wrapper .exclude-card .icon-circle {
    box-shadow: 0 10px 40px rgba(239, 68, 68, 0.4);
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.cruise-include-exclude-wrapper .icon-circle svg {
    width: 50px;
    height: 50px;
    stroke: white;
    stroke-width: 3;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.cruise-include-exclude-wrapper .animated-check {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: drawCheck 1s ease-out forwards;
}

.cruise-include-exclude-wrapper .animated-cross {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: drawCross 1s ease-out forwards;
}

@keyframes drawCheck {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes drawCross {
    to {
        stroke-dashoffset: 0;
    }
}

.cruise-include-exclude-wrapper .card-header h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.cruise-include-exclude-wrapper .include-card .card-header h3 {
    text-shadow: 0 0 20px rgba(16, 185, 129, 0.5);
}

.cruise-include-exclude-wrapper .exclude-card .card-header h3 {
    text-shadow: 0 0 20px rgba(239, 68, 68, 0.5);
}

.cruise-include-exclude-wrapper .card-header p {
    font-size: 1rem;
    font-weight: 500;
}

/* Items List */
.cruise-include-exclude-wrapper .items-list {
    list-style: none;
    position: relative;
    z-index: 2;
    padding: 0;
    margin: 0;
}

.cruise-include-exclude-wrapper .list-item {
    display: flex;
    align-items: center;
    border: 1px solid;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-30px);
    animation: slideIn 0.6s ease forwards;
    position: relative;
    overflow: hidden;
}

.cruise-include-exclude-wrapper .list-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    transition: width 0.3s ease;
}

.cruise-include-exclude-wrapper .include-card .list-item::before {
    background: linear-gradient(180deg, #10b981, #059669);
}

.cruise-include-exclude-wrapper .include-card .list-item:hover {
    transform: translateX(10px);
}

.cruise-include-exclude-wrapper .include-card .list-item:hover::before {
    width: 100%;
    opacity: 0.1;
}

.cruise-include-exclude-wrapper .exclude-card .list-item::before {
    background: linear-gradient(180deg, #ef4444, #dc2626);
}

.cruise-include-exclude-wrapper .exclude-card .list-item:hover {
    transform: translateX(10px);
}

.cruise-include-exclude-wrapper .exclude-card .list-item:hover::before {
    width: 100%;
    opacity: 0.1;
}

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

.cruise-include-exclude-wrapper .item-icon {
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.cruise-include-exclude-wrapper .include-card .item-icon {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.cruise-include-exclude-wrapper .exclude-card .item-icon {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

.cruise-include-exclude-wrapper .list-item:hover .item-icon {
    transform: rotate(360deg) scale(1.1);
}

.cruise-include-exclude-wrapper .item-icon svg {
    width: 16px;
    height: 16px;
    stroke: white;
    stroke-width: 3;
    fill: none;
    stroke-linecap: round;
}

.cruise-include-exclude-wrapper .item-text {
    font-size: 1.05rem;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

/* Particles Effect */
.cruise-include-exclude-wrapper .particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.cruise-include-exclude-wrapper .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: float 15s infinite ease-in-out;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(50px);
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .cruise-include-exclude-wrapper .cards-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .cruise-include-exclude-wrapper .section-title h2 {
        font-size: 2.5rem;
    }

    .cruise-include-exclude-wrapper .card {
        height: auto;
        min-height: auto;
    }

    .cruise-include-exclude-wrapper .card-header h3 {
        font-size: 2rem;
    }

    .cruise-include-exclude-wrapper .icon-wrapper {
        width: 80px !important;
        height: 80px !important;
    }

    .cruise-include-exclude-wrapper .icon-circle svg {
        width: 40px;
        height: 40px;
    }

    .cruise-include-exclude-wrapper .item-text {
        font-size: 0.95rem;
    }
}
