.kora-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.kora-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(176, 0, 0, 0.1);
    color: #B00000;
    border-radius: 50px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.kora-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #6D0000;
    margin-bottom: 30px;
    line-height: 1.1;
}

.kora-intro-text {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 40px;
}

.kora-stat-card {
    background: #fff;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 15px 45px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.03);
}

.kora-stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(176, 0, 0, 0.1);
    border-color: #FFC107;
}

.kora-stat-icon {
    font-size: 2.5rem;
    color: #B00000;
    margin-bottom: 20px;
}

.kora-stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #6D0000;
    margin-bottom: 5px;
}

.kora-stat-label {
    font-size: 0.9rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.kora-highlight-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.kora-highlight-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #B00000, #6D0000);
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.kora-highlight-text {
    font-weight: 700;
    color: #6D0000;
    font-size: 1.1rem;
}

.kora-gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 30px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.kora-gallery-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform: scale(1.1);
}

.kora-gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(109, 0, 0, 0.9));
    opacity: 1;
    transition: all 0.4s ease;
    display: flex;
    align-items: flex-end;
    padding: 30px;
}

.kora-gallery-item:hover .kora-gallery-img {
    transform: scale(1.15);
}

.kora-gallery-item:hover .kora-gallery-overlay {
    background: linear-gradient(to bottom, transparent, rgba(176, 0, 0, 0.95));
}

.kora-gallery-caption {
    color: #fff;
    transform: translateY(0);
    transition: all 0.4s ease;
}

/* LUXURY ENHANCEMENTS */
.kora-luxury-section {
    position: relative;
    background: #f8fafc;
    overflow: hidden;
}

.kora-luxury-glow-1 {
    position: absolute;
    top: -15%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(176, 0, 0, 0.08) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
    animation: luxuryPulse 10s infinite alternate;
}

.kora-luxury-glow-2 {
    position: absolute;
    bottom: -15%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(218, 165, 32, 0.06) 0%, transparent 70%);
    filter: blur(60px);
    z-index: 0;
    pointer-events: none;
    animation: luxuryPulse 12s infinite alternate-reverse;
}

@keyframes luxuryPulse {
    0% { transform: scale(1) translate(0, 0); opacity: 0.5; }
    100% { transform: scale(1.2) translate(50px, 30px); opacity: 0.8; }
}

.kora-glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

.kora-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: skewX(-25deg);
    transition: none;
    pointer-events: none;
}

.kora-gallery-item:hover .kora-shimmer {
    animation: shimmerEffect 1.5s infinite;
}

@keyframes shimmerEffect {
    0% { left: -100%; }
    100% { left: 200%; }
}

@media (max-width: 991px) {
    .kora-title {
        font-size: 2.5rem;
    }
    .kora-section {
        padding: 60px 0;
    }
}

