/* Split Experience Widget Styles */
.se-wrapper {
    width: 100%;
    padding: 100px 2%;
    background: transparent;
}

.se-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.se-header-icon {
    margin-bottom: 20px;
}

.se-header-title {
    font-family: serif;
    font-size: 80px;
    line-height: 1.1;
    margin-bottom: 25px;
}

.se-title-dark {
    color: #000;
}

.se-title-amber {
    color: #E87722;
}

.se-header-subtitle {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.6);
    max-width: 600px;
    margin: 0 auto;
}

/* CARDS */
.se-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 0 auto;
}

.se-card {
    position: relative;
    height: 500px;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 60px;
    cursor: pointer;
}

.se-card-parallax {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.se-card-bg {
    position: absolute;
    top: -10%;
    left: 0;
    width: 100%;
    height: 120%;
    background-size: cover;
    background-position: center;
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
    will-change: transform;
}

.se-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.4) 40%, transparent 100%);
    z-index: 2;
    transition: opacity 0.5s ease;
}

.se-card-content {
    position: relative;
    z-index: 10;
    width: 100%;
}

.se-card-title-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 25px;
}

.se-card-title-line {
    width: 40px;
    height: 2px;
    background: #E87722;
}

.se-card-title {
    font-family: serif;
    font-size: 38px;
    color: #fff;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.se-card-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 35px;
    max-width: 400px;
}

.se-btn {
    position: relative;
    z-index: 20;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    border: 1px solid rgba(232, 119, 34, 0.6);
    color: #E87722;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: all 0.4s ease;
    opacity: 1 !important;
    /* Ensure visibility regardless of entrance animations */
}

.se-btn span {
    transition: transform 0.4s ease;
}

/* HOVER EFFECTS */
.se-card:hover .se-card-bg {
    transform: scale(1.08);
    /* Smoother, subtler zoom */
}

.se-card:hover::after {
    opacity: 0.8;
}

.se-card:hover .se-btn {
    background: #E87722;
    color: #fff !important;
    border-color: #E87722;
    box-shadow: 0 0 20px rgba(232, 119, 34, 0.4);
}

.se-card:hover .se-btn span {
    color: #fff !important;
    transform: translateX(5px);
}

.se-btn:hover {
    background: #E87722;
    color: #fff !important;
    border-color: #E87722;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .se-header-title {
        font-size: 60px;
    }

    .se-card {
        height: 500px;
        padding: 40px;
    }

    .se-card-title {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .se-header-title {
        font-size: 40px;
    }

    .se-cards {
        grid-template-columns: 1fr;
    }

    .se-card {
        height: 450px;
    }
}