/* Promotional Modal Styles */
.promo-modal {
    display: flex;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease-in;
}

.promo-modal.hidden {
    display: none;
}

.promo-modal-content {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    max-width: 700px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.4s ease-out;
}

.promo-modal-close {
    position: absolute;
    right: 20px;
    top: 15px;
    background: none;
    border: none;
    font-size: 32px;
    font-weight: bold;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
    z-index: 10000;
}

.promo-modal-close:hover {
    color: #333;
}

.promo-modal-body {
    padding: 40px 30px;
    color: #333;
    font-family: 'Poppins', sans-serif;
}

.promo-modal-body h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.3;
}

.promo-modal-body h3 {
    font-size: 18px;
    font-weight: 600;
    color: #2c2c2c;
    margin-top: 25px;
    margin-bottom: 12px;
}

.promo-modal-body h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.promo-modal-body p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

.promo-offers {
    background-color: #f8f9fa;
    border-left: 4px solid #d4af37;
    padding: 20px;
    margin: 20px 0;
    border-radius: 6px;
}

.offer-item {
    margin-bottom: 20px;
}

.offer-item:last-child {
    margin-bottom: 0;
}

.offer-item h4 {
    color: #d4af37;
    margin-bottom: 8px;
}

.offer-item p {
    margin-bottom: 0;
    font-size: 14px;
}

.promo-features {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.promo-features li {
    padding-left: 25px;
    margin-bottom: 10px;
    position: relative;
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

.promo-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #d4af37;
    font-weight: bold;
    font-size: 16px;
}

.promo-contact {
    background-color: #f0f0f0;
    padding: 20px;
    border-radius: 6px;
    margin: 15px 0;
}

.promo-contact p {
    margin-bottom: 10px;
    font-size: 14px;
}

.promo-contact p:last-child {
    margin-bottom: 0;
}

.promo-tagline {
    font-size: 16px;
    font-weight: 600;
    color: #d4af37;
    text-align: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .promo-modal-content {
        width: 95%;
        max-height: 90vh;
    }

    .promo-modal-body {
        padding: 30px 20px;
    }

    .promo-modal-body h2 {
        font-size: 24px;
    }

    .promo-modal-body h3 {
        font-size: 16px;
    }

    .promo-modal-close {
        right: 15px;
        top: 10px;
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .promo-modal-body {
        padding: 25px 15px;
    }

    .promo-modal-body h2 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .promo-modal-body h3 {
        font-size: 15px;
        margin-top: 20px;
    }

    .promo-modal-body p {
        font-size: 14px;
    }

    .promo-offers {
        padding: 15px;
    }

    .promo-contact {
        padding: 15px;
    }
}

/* Video Modal Styles */
.video-modal {
    display: flex;
    position: fixed;
    z-index: 9998;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease-in;
}

.video-modal.hidden {
    display: none;
}

.video-modal-content {
    background-color: #000;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    max-width: 90vw;
    width: 100%;
    max-height: 90vh;
    position: relative;
    animation: slideUp 0.4s ease-out;
    overflow: hidden;
}

.video-modal-close {
    position: absolute;
    right: 15px;
    top: 10px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    font-size: 32px;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    z-index: 10001;
    border-radius: 4px;
}

.video-modal-close:hover {
    background-color: rgba(255, 255, 255, 0.4);
}

.video-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
}

.video-container video {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}

/* Video Button Styling */
.vid-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
    display: inline-block;
}

.vid-btn:hover {
    transform: scale(1.15);
}

.vid-butn {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.4);
    transition: all 0.3s ease;
    position: relative;
}

.vid-btn:hover .vid-butn {
    width: 130px;
    height: 130px;
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.6);
    transform: translateY(-5px);
}

.vid-butn .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: #fff;
    transition: all 0.3s ease;
}

.vid-btn:hover .vid-butn .icon {
    font-size: 52px;
}

/* Pulse animation for play button */
@keyframes pulse {
    0% {
        box-shadow: 0 10px 40px rgba(212, 175, 55, 0.4);
    }
    50% {
        box-shadow: 0 10px 60px rgba(212, 175, 55, 0.6);
    }
    100% {
        box-shadow: 0 10px 40px rgba(212, 175, 55, 0.4);
    }
}

.vid-butn {
    animation: pulse 2s infinite;
}

/* Responsive Video Modal */
@media (max-width: 768px) {
    .video-modal-content {
        max-width: 95vw;
        max-height: 85vh;
    }

    .video-modal-close {
        right: 10px;
        top: 8px;
        font-size: 28px;
    }

    .vid-butn {
        width: 100px;
        height: 100px;
    }

    .vid-btn:hover .vid-butn {
        width: 110px;
        height: 110px;
    }

    .vid-butn .icon {
        font-size: 40px;
    }

    .vid-btn:hover .vid-butn .icon {
        font-size: 44px;
    }
}

@media (max-width: 480px) {
    .video-modal-content {
        max-width: 98vw;
        max-height: 80vh;
        border-radius: 4px;
    }

    .video-modal-close {
        right: 8px;
        top: 6px;
        font-size: 24px;
        width: 36px;
        height: 36px;
    }

    .vid-butn {
        width: 80px;
        height: 80px;
    }

    .vid-btn:hover .vid-butn {
        width: 90px;
        height: 90px;
    }

    .vid-butn .icon {
        font-size: 32px;
    }

    .vid-btn:hover .vid-butn .icon {
        font-size: 36px;
    }
}
