/* ============================================
   MODERN WELCOME SECTION - GLASSMORPHISM DESIGN
   ============================================ */

/* Main Section Styling */
.modern-welcome-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
    position: relative;
    overflow: hidden;
}

/* Animated Background Shapes */
.welcome-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.welcome-bg-shapes .shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 20s ease-in-out infinite;
}

.welcome-bg-shapes .shape-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-color, #f09c1c) 0%, var(--secondary-color, #2c2c2c) 100%);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.welcome-bg-shapes .shape-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #4ecdc4 0%, #44a08d 100%);
    bottom: -50px;
    right: 10%;
    animation-delay: 5s;
}

.welcome-bg-shapes .shape-3 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    top: 50%;
    right: -50px;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(30px, -30px) rotate(90deg);
    }
    50% {
        transform: translate(-20px, 20px) rotate(180deg);
    }
    75% {
        transform: translate(20px, 30px) rotate(270deg);
    }
}

/* Content Glass Card */
.welcome-content-glass {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 50px 40px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1),
                0 0 0 1px rgba(255, 255, 255, 0.5) inset;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.welcome-content-glass:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15),
                0 0 0 1px rgba(255, 255, 255, 0.6) inset;
}

.welcome-content-glass::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color, #f09c1c) 0%, var(--secondary-color, #2c2c2c) 50%, var(--primary-color, #f09c1c) 100%);
    border-radius: 24px 24px 0 0;
}

/* Welcome Badge */
.welcome-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, color-mix(in srgb, var(--primary-color, #f09c1c) 15%, transparent) 0%, color-mix(in srgb, var(--primary-color, #f09c1c) 5%, transparent) 100%);
    border: 1px solid color-mix(in srgb, var(--primary-color, #f09c1c) 30%, transparent);
    padding: 8px 20px;
    border-radius: 50px;
    color: var(--primary-color, #f09c1c);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    animation: badgePulse 2s ease-in-out infinite;
}

.welcome-badge i {
    font-size: 16px;
    animation: starRotate 3s linear infinite;
}

@keyframes badgePulse {
    0%, 100% {
        box-shadow: 0 0 0 0 color-mix(in srgb, var(--primary-color, #f09c1c) 40%, transparent);
    }
    50% {
        box-shadow: 0 0 0 8px transparent;
    }
}

@keyframes starRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Welcome Heading */
.welcome-heading {
    font-size: 42px;
    font-weight: 800;
    color: var(--secondary-color, #2c3e50);
    line-height: 1.2;
    margin-bottom: 20px;
}

/* Description Content */
.welcome-description {
    color: #555;
    font-size: 16px;
    line-height: 1.8;
}

.description-content p {
    margin-bottom: 15px;
}

.description-content ul,
.description-content ol {
    margin: 15px 0;
    padding-left: 25px;
}

.description-content li {
    margin-bottom: 10px;
    color: #555;
}

/* Read More Button */
.welcome-read-more-btn {
    background: linear-gradient(135deg, color-mix(in srgb, var(--primary-color, #f09c1c) 10%, transparent) 0%, color-mix(in srgb, var(--primary-color, #f09c1c) 5%, transparent) 100%);
    border: 2px solid var(--primary-color, #f09c1c);
    color: var(--primary-color, #f09c1c);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.welcome-read-more-btn:hover {
    background: var(--primary-color, #f09c1c);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px color-mix(in srgb, var(--primary-color, #f09c1c) 30%, transparent);
}

.welcome-read-more-btn i {
    transition: transform 0.3s ease;
}

.welcome-read-more-btn:hover i {
    transform: translateY(3px);
}

.welcome-read-more-btn[aria-expanded="true"] .read-more-text i {
    transform: rotate(180deg);
}

/* CTA Button */
.welcome-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-color, #f09c1c);
    color: #fff;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px color-mix(in srgb, var(--primary-color, #f09c1c) 30%, transparent);
    position: relative;
    overflow: hidden;
}

.welcome-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.welcome-cta-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px color-mix(in srgb, var(--primary-color, #f09c1c) 40%, transparent);
    color: #fff;
}

.welcome-cta-btn:hover::before {
    left: 100%;
}

.welcome-cta-btn i {
    transition: transform 0.3s ease;
}

.welcome-cta-btn:hover i {
    transform: translateX(5px);
}

/* Media Wrapper */
.welcome-media-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

/* Video Glass Card */
.welcome-video-glass {
    position: relative;
    min-height: 450px;
    background-size: cover;
    background-position: center;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
}

.welcome-video-glass:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

/* Modern Video Play Button */
.modern-video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.play-icon-wrapper {
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    transition: all 0.4s ease;
}

.play-icon-wrapper::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    animation: ripple 2s ease-out infinite;
}

.play-icon-wrapper i {
    font-size: 32px;
    color: var(--primary-color, #f09c1c);
    margin-left: 5px;
    transition: all 0.3s ease;
}

.modern-video-play:hover .play-icon-wrapper {
    transform: scale(1.1);
    background: var(--primary-color, #f09c1c);
    box-shadow: 0 15px 50px color-mix(in srgb, var(--primary-color, #f09c1c) 50%, transparent);
}

.modern-video-play:hover .play-icon-wrapper i {
    color: #fff;
}

.play-text {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.modern-video-play:hover .play-text {
    opacity: 1;
    transform: translateY(0);
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Image Glass Card */
.welcome-image-glass {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

.welcome-image-glass img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.welcome-image-glass:hover img {
    transform: scale(1.08);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, color-mix(in srgb, var(--primary-color, #f09c1c) 10%, transparent) 0%, color-mix(in srgb, var(--primary-color, #f09c1c) 5%, transparent) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.welcome-image-glass:hover .image-overlay {
    opacity: 1;
}

/* Media Decorations */
.media-decoration {
    position: absolute;
    border-radius: 50%;
    z-index: -1;
    opacity: 0.6;
}

.media-decoration.decoration-1 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, color-mix(in srgb, var(--primary-color, #f09c1c) 30%, transparent) 0%, color-mix(in srgb, var(--secondary-color, #2c2c2c) 30%, transparent) 100%);
    top: -30px;
    right: -30px;
    filter: blur(40px);
}

.media-decoration.decoration-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.3) 0%, rgba(68, 160, 141, 0.3) 100%);
    bottom: -50px;
    left: -50px;
    filter: blur(50px);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablets */
@media (max-width: 991px) {
    .welcome-content-glass {
        padding: 40px 30px;
    }
    
    .welcome-heading {
        font-size: 36px;
    }
    
    .welcome-video-glass,
    .welcome-image-glass img {
        min-height: 350px;
        height: 350px;
    }
    
    .play-icon-wrapper {
        width: 75px;
        height: 75px;
    }
    
    .play-icon-wrapper i {
        font-size: 28px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .modern-welcome-section {
        padding-top: 50px !important;
        padding-bottom: 50px !important;
    }
    
    .welcome-content-glass {
        padding: 30px 25px;
        margin-bottom: 30px;
    }
    
    .welcome-heading {
        font-size: 28px;
    }
    
    .welcome-badge {
        font-size: 13px;
        padding: 6px 16px;
    }
    
    .welcome-description {
        font-size: 15px;
    }
    
    .welcome-cta-btn {
        padding: 14px 30px;
        font-size: 15px;
    }
    
    .welcome-video-glass,
    .welcome-image-glass img {
        min-height: 280px;
        height: 280px;
    }
    
    .play-icon-wrapper {
        width: 65px;
        height: 65px;
    }
    
    .play-icon-wrapper i {
        font-size: 24px;
    }
    
    .welcome-bg-shapes .shape-1 {
        width: 250px;
        height: 250px;
    }
    
    .welcome-bg-shapes .shape-2 {
        width: 200px;
        height: 200px;
    }
    
    .welcome-bg-shapes .shape-3 {
        width: 150px;
        height: 150px;
    }
}

/* Small Mobile */
@media (max-width: 575px) {
    .welcome-content-glass {
        padding: 25px 20px;
    }
    
    .welcome-heading {
        font-size: 24px;
    }
    
    .welcome-cta-btn {
        padding: 12px 24px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
    }
    
    .welcome-read-more-btn {
        width: 100%;
        justify-content: center;
    }
}
