/* Project Action Buttons Section */
.project-action-buttons {
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem;
}

.action-btn-primary,
.action-btn-secondary {
    padding: 12px 1rem;
    border: none;
    border-radius: 20px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    min-width: 100px;
    justify-content: center;
}

.action-btn-primary {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    color: #FFD700;
    border: 2px solid transparent;
}

.action-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 45px rgba(26, 26, 26, 0.5);
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
}

.action-btn-secondary {
    background: transparent;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
}

.action-btn-secondary:hover {
    background: #1a1a1a;
    color: #FFD700;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(26, 26, 26, 0.3);
}

/* Smart Features Section */
.smart-features {
    border-radius: 32px;
    padding: 3rem;
}

.features-header {
    text-align: center;
    margin-bottom: 3rem;
}

.features-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.features-subtitle {
    color: #64748b;
    font-size: 1.25rem;
    line-height: 1.6;
}

.feature-content {
    display: none;
}

.feature-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 1.5rem;
}

.feature-card {
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    border: 1px solid #e2e8f0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    display: grid;
    grid-template-columns: 60px 1fr;
    grid-template-rows: auto auto;
    column-gap: 1rem;
    row-gap: 0.5rem;
    align-items: center;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #6366f1, #8b5cf6);
    transform: scaleY(0);
    transition: transform 0.3s ease;
    transform-origin: bottom;
}

.feature-card:hover::before {
    transform: scaleY(1);
}

.feature-card:hover {
    transform: translateX(8px);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
    border-color: #c7d2fe;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: #F1C232;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 0;
    transition: transform 0.3s ease;
    grid-column: 1;
    grid-row: 1;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0;
    grid-column: 2;
    grid-row: 1;
    align-self: center;
}

.feature-description {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.95rem;
    grid-column: 1 / -1;
    grid-row: 2;
    margin-top: 0.25rem;
}

/* Pricing Grid Section */
.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 3rem 0;
    align-items: stretch;
}

.pricing-card {
    flex: 1;
    min-width: 268px;
    background: #f1f1f1;
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 2px;
    background: linear-gradient(135deg, #F1C232, #F1C232);
    border-radius: inherit;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(99, 102, 241, 0.2);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.pricing-subtitle {
    color: #64748b;
    font-size: 1.05rem;
}

.price-display {
    text-align: center;
    margin: 2rem 0;
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 900;
    color: #F1C232;
    display: inline-block;
    line-height: 1;
}

.price-period {
    color: #64748b;
    font-size: 1rem;
    margin-top: 0.5rem;
}

/* Currency Icon Styling */
.price-line {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}



.currency-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
    flex-shrink: 0;
}

.currency-symbol {
    font-size: 2.5rem;
    font-weight: 700;
    color: #F1C232;
    flex-shrink: 0;
}

/* Dual Price Display */
.dual-price {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.5rem;
}

.dual-price .price-line {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

.dual-price .price-amount {
    font-size: 2.5rem;
    font-weight: 900;
    color: #F1C232;
    display: inline-block;
}

.dual-price .price-period {
    font-size: 0.9rem;
    color: #64748b;
    margin-top: 0;
}

.pricing-features {
    list-style: none;
    margin: 2rem 0;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: #374151;
}

.pricing-features li::before {
    content: '✓';
    background: linear-gradient(135deg, #10b981, #10b981);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
    flex-shrink: 0;
}

.cta-button {
    width: 100%;
    background: linear-gradient(135deg, #F1C232, #F1C232);
    color: rgb(0, 0, 0);
    border: none;
    padding: 1rem 2rem;
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
}

/* Ensure pricing card buttons are always at the bottom */
.pricing-card .btn.flat-btn.color-btn {
    margin-top: auto;
    width: 100%;
}

.cta-button:hover {
    background: linear-gradient(135deg, #374151, #1a1a1a);
    transform: translateY(-2px);
}

/* Ensure header/price/features stack before the button consumes remaining space */
.pricing-header,
.price-display,
.pricing-features {
    flex: 0 0 auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .pricing-grid {
        flex-direction: column;
        gap: 1.5rem;
    }

    .pricing-card {
        min-width: auto;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .project-action-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
}

/* Custom Video Player */
.custom-video-player {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
}

/* Override showcase wrapper overflow for video player */
.show-case-wrapper .custom-video-player {
    overflow: visible;
}

.show-case-wrapper {
    overflow: visible !important;
}

.custom-video-player video::-webkit-media-controls {
    display: none !important;
}

.cvp-big-play {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 84px;
    height: 84px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, .55);
    color: #fff;
    font-size: 34px;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: transform .2s ease, background .2s ease;
}

.cvp-big-play:hover {
    transform: scale(1.05);
    background: rgba(0, 0, 0, .7);
}

.cvp-controls {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 20px;
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: .75rem 1rem;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .55) 35%, rgba(0, 0, 0, .8) 100%);
    color: #fff;
    z-index: 9999;
    opacity: 1;
    pointer-events: all;
    transition: opacity 0.3s ease;
}

.cvp-btn {
    background: rgba(255, 255, 255, .12);
    color: #fff;
    border: 0;
    padding: .6rem .8rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
}

.cvp-time {
    font-variant-numeric: tabular-nums;
    font-size: 16px;
    opacity: .9;
    font-weight: 500;
    min-width: 100px;
}

.cvp-progress {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, .25);
    border-radius: 999px;
    cursor: pointer;
    position: relative;
}

.cvp-progress-filled {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: #F1C232;
    border-radius: 999px;
}

.cvp-volume {
    width: 100px;
    height: 6px;
    cursor: pointer;
}
