/* Personal Media Packages Section Styles */
.personal-media-packages {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.media-tabs {
    margin-top: 40px;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.media-package-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.media-package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.media-package-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
    z-index: 1;
}

.media-package-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.package-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.media-package-card:hover .package-image img {
    transform: scale(1.1);
}

.package-badge {
    position: absolute;
    background-color: var(--primary-color);
    color: #fff;
    padding: 5px 15px;
    font-size: 14px;
    font-weight: 600;
}

.package-content {
    padding: 25px;
}

.package-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--heading-color);
}

.package-price {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.price-amount {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
}

.package-
.package-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
}

.package-features li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    color: var(--text-color);
}

.package-features li i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 14px;
}

.package-footer {
    text-align: center;
}

.custom-package-cta {
    margin-top: 50px;
    background-color: #fff;
    border-radius: 10px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.custom-package-cta h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--heading-color);
}

.custom-package-cta p {
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Video Examples Section */
.video-examples {
    margin-top: 60px;
}

.video-examples h3 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 24px;
    color: var(--heading-color);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.video-item {
    text-align: center;
}

.video-thumbnail {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.video-thumbnail img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-item:hover .video-thumbnail img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(var(--primary-color-rgb), 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    transition: all 0.3s ease;
}

.play-button:hover {
    background-color: var(--primary-color);
    width: 65px;
    height: 65px;
}

.video-item h4 {
    font-size: 18px;
    color: var(--heading-color);
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
    position: relative;
    margin: 5% auto;
    width: 80%;
    max-width: 900px;
}

.close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .packages-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
    
    .media-package-card.featured {
        transform: scale(1);
    }
    
    .media-package-card.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .custom-package-cta {
        padding: 30px 20px;
    }
    
    .modal-content {
        width: 95%;
    }
}
