/* Adi Kailash Yatra Video Section - Light Premium Theme */

.ak-video-section {
    background-color: #ffffff;
    background-image: 
        radial-gradient(rgba(203, 213, 225, 0.4) 1.5px, transparent 1.5px), 
        radial-gradient(circle at 10% 20%, rgba(253, 80, 86, 0.04) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(191, 149, 63, 0.06) 0%, transparent 45%),
        radial-gradient(circle at 50% 50%, rgba(91, 141, 239, 0.03) 0%, transparent 35%),
        linear-gradient(180deg, #ffffff 0%, #fcfdfe 100%);
    background-size: 32px 32px, 100% 100%, 100% 100%, 100% 100%, 100% 100%;
    padding: 80px 0;
    color: #2d3748;
    position: relative;
    border-top: 1px solid #edf2f7;
    border-bottom: 1px solid #edf2f7;
    overflow: hidden;
}

/* Floating soft light glowing circles (orbs) for premium SaaS depth */
.ak-bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 1;
    pointer-events: none;
    opacity: 0.85;
}

.ak-glow-1 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(253, 80, 86, 0.15) 0%, rgba(253, 80, 86, 0) 70%);
    top: -50px;
    left: -50px;
}

.ak-glow-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(184, 134, 11, 0.12) 0%, rgba(184, 134, 11, 0) 70%);
    bottom: -100px;
    right: -100px;
}

.ak-glow-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(91, 141, 239, 0.08) 0%, rgba(91, 141, 239, 0) 70%);
    top: 40%;
    left: 45%;
}

.ak-video-container {
    position: relative;
    z-index: 2;
}

.ak-video-title {
    font-size: 2.75rem;
    font-weight: 850;
    line-height: 1.15;
    color: #1a202c;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.ak-video-subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fd5056;
    margin-bottom: 24px;
    line-height: 1.4;
}

.ak-video-description {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #4a5568;
    margin-bottom: 35px;
}

.ak-video-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 35px;
}

.ak-video-feat-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #ffffff;
    padding: 20px;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.ak-video-feat-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background-color: rgba(253, 80, 86, 0.08); /* Brand coral soft tint */
    color: #fd5056; /* Brand coral color */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.ak-video-feat-text {
    font-size: 0.92rem;
    color: #4a5568;
    font-weight: 500;
    line-height: 1.5;
}

.ak-video-feat-text strong {
    display: block;
    color: #1a202c;
    font-size: 1.05rem;
    margin-bottom: 5px;
    font-weight: 700;
    letter-spacing: -0.1px;
}

.ak-video-card-container {
    position: relative;
    padding: 24px;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(184, 134, 11, 0.06);
    border: 1px solid rgba(191, 149, 63, 0.35); /* 1st Gold Layer */
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: visible;
}

/* 2nd Gold Layer - Animated Shimmering Inner Border */
.ak-video-card-container::before {
    content: '';
    position: absolute;
    inset: 6px;
    border-radius: 18px;
    padding: 2px; /* border thickness */
    background: linear-gradient(90deg, #bf953f, #fcf6ba, #b38728, #fcf6ba, #bf953f);
    background-size: 300% 100%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: 1;
    animation: goldShimmer 10s linear infinite;
    opacity: 0.85;
}

@keyframes goldShimmer {
    0% { background-position: 0% 50%; }
    100% { background-position: 300% 50%; }
}

.ak-video-card-container:hover {
    box-shadow: 0 30px 70px rgba(184, 134, 11, 0.12), 0 0 30px rgba(212, 175, 55, 0.2);
    transform: translateY(-4px);
    border-color: rgba(191, 149, 63, 0.6);
}

/* Royal Ornate SVG Corner Brackets */
.ak-frame-corner {
    position: absolute;
    width: 65px;
    height: 65px;
    z-index: 3;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.08));
}

.ak-frame-corner svg {
    width: 100%;
    height: 100%;
    display: block;
}

.ak-corner-tl {
    top: -6px;
    left: -6px;
}

.ak-corner-tr {
    top: -6px;
    right: -6px;
    transform: scaleX(-1);
}

.ak-corner-bl {
    bottom: -6px;
    left: -6px;
    transform: scaleY(-1);
}

.ak-corner-br {
    bottom: -6px;
    right: -6px;
    transform: scale(-1);
}

/* Floating Corner Hover States */
.ak-video-card-container:hover .ak-frame-corner {
    filter: drop-shadow(0 4px 12px rgba(212, 175, 55, 0.5));
}

.ak-video-card-container:hover .ak-corner-tl {
    top: -12px;
    left: -12px;
}

.ak-video-card-container:hover .ak-corner-tr {
    top: -12px;
    right: -12px;
}

.ak-video-card-container:hover .ak-corner-bl {
    bottom: -12px;
    left: -12px;
}

.ak-video-card-container:hover .ak-corner-br {
    bottom: -12px;
    right: -12px;
}

.ak-video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    background-color: #f7fafc;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: inset 0 0 80px rgba(0,0,0,0.15), 0 0 0 1px rgba(191, 149, 63, 0.25); /* 3rd Gold Layer */
    z-index: 2;
}

.ak-video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
}

.ak-video-wrapper:hover .ak-video-thumbnail {
    transform: scale(1.05);
}

.ak-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25);
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, opacity 0.5s ease;
}

.ak-video-wrapper:hover .ak-video-overlay {
    background: rgba(0, 0, 0, 0.15);
}

.ak-video-play-btn {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: #ffffff;
    color: #fd5056;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.ak-video-play-btn i {
    margin-left: 4px;
}

.ak-video-wrapper:hover .ak-video-play-btn {
    background: #fd5056;
    color: #ffffff;
    transform: scale(1.08);
    box-shadow: 0 15px 35px rgba(253, 80, 86, 0.3);
}

.ak-video-play-btn::before {
    content: '';
    position: absolute;
    inset: -12px;
    border-radius: 50%;
    border: 2px solid rgba(253, 80, 86, 0.4);
    animation: ak-pulse 2.2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
    pointer-events: none;
}

@keyframes ak-pulse {
    0% {
        transform: scale(0.95);
        opacity: 0.9;
    }
    100% {
        transform: scale(1.35);
        opacity: 0;
    }
}

.ak-video-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    z-index: 3;
    background-color: #000000;
}

.ak-video-caption {
    text-align: center;
    font-size: 0.8rem;
    color: #718096;
    margin-top: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.ak-video-caption i {
    color: #4a5568;
}

.ak-sponsor-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff8f8;
    border: 1px solid rgba(253, 80, 86, 0.1);
    border-left: 4px solid #fd5056;
    padding: 18px 24px;
    border-radius: 12px;
    margin-top: 30px;
    box-shadow: 0 4px 12px rgba(253, 80, 86, 0.02);
}

.ak-sponsor-icon {
    font-size: 2rem;
    color: #fd5056;
}

.ak-sponsor-info h5 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 4px;
}

.ak-sponsor-info p {
    font-size: 0.88rem;
    color: #4a5568;
    margin: 0;
    line-height: 1.45;
}

@media (max-width: 991px) {
    .ak-video-section {
        padding: 60px 0;
    }
    .ak-video-title {
        font-size: 2.25rem;
    }
    .ak-video-subtitle {
        font-size: 1.15rem;
    }
    .ak-video-card-container {
        margin-top: 40px;
        padding: 10px;
    }
}

@media (max-width: 575px) {
    .ak-video-section {
        padding: 50px 0;
    }
    .ak-glow-1 {
        width: 250px;
        height: 250px;
    }
    .ak-glow-2 {
        width: 280px;
        height: 280px;
    }
    .ak-glow-3 {
        width: 200px;
        height: 200px;
    }
    .ak-video-title {
        font-size: 1.75rem;
        margin-bottom: 8px;
    }
    .ak-video-subtitle {
        font-size: 1rem;
        margin-bottom: 18px;
    }
    .ak-video-description {
        font-size: 0.95rem;
        margin-bottom: 25px;
        line-height: 1.65;
    }
    .ak-video-features {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 25px;
    }
    .ak-video-feat-item {
        padding: 12px 14px;
    }
    .ak-video-card-container {
        padding: 12px;
        border-radius: 16px;
        box-shadow: 0 15px 30px rgba(184, 134, 11, 0.05);
    }
    .ak-video-card-container::before {
        inset: 4px;
        border-radius: 12px;
    }
    .ak-frame-corner {
        width: 42px;
        height: 42px;
    }
    .ak-corner-tl { top: -4px; left: -4px; }
    .ak-corner-tr { top: -4px; right: -4px; }
    .ak-corner-bl { bottom: -4px; left: -4px; }
    .ak-corner-br { bottom: -4px; right: -4px; }
    
    .ak-video-card-container:hover .ak-corner-tl { top: -6px; left: -6px; }
    .ak-video-card-container:hover .ak-corner-tr { top: -6px; right: -6px; }
    .ak-video-card-container:hover .ak-corner-bl { bottom: -6px; left: -6px; }
    .ak-video-card-container:hover .ak-corner-br { bottom: -6px; right: -6px; }

    .ak-video-play-btn {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    .ak-video-play-btn i {
        margin-left: 3px;
    }
    .ak-video-play-btn::before {
        inset: -8px;
    }
    .ak-sponsor-card {
        padding: 14px 18px;
        margin-top: 25px;
        gap: 12px;
    }
    .ak-sponsor-icon {
        font-size: 1.6rem;
    }
}
