/* Independence Day Offer Popup Styles */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: none;
    animation: fadeIn 0.3s ease-in-out;
}

.popup-overlay.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-container {
    position: relative;
    background: #ffffff;
    border-radius: 16px;
    padding: 50px 40px 40px;
    max-width: 480px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    animation: slideIn 0.4s ease-out;
    border: 1px solid #e5e7eb;
}

.popup-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #9ca3af;
    color: white;
    border: none;
    border-radius: 20px;
    width: 44px;
    height: 26px;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    line-height: 1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.popup-close:hover {
    background: #6b7280;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.popup-title {
    font-size: 32px;
    font-weight: 800;
    color: #1f2937;
    margin: 0 0 8px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.1;
}

.popup-subtitle {
    font-size: 18px;
    color: #ea580c;
    margin: 0 0 25px 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.popup-price-container {
    margin: 20px 0 18px 0;
}

.popup-price-label {
    font-size: 20px;
    color: #6b7280;
    margin: 0 0 12px 0;
    font-weight: 500;
}

.popup-price {
    font-size: 110px;
    font-weight: 900;
    color: #ea580c;
    margin: 0;
    line-height: 0.9;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.popup-validity {
    font-size: 16px;
    color: #9ca3af;
    margin: 18px 0 30px 0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.popup-buttons {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 25px;
}

.popup-btn {
    padding: 14px 32px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s ease;
    min-width: 140px;
    letter-spacing: 0.5px;
}

.popup-btn-call {
    background: #22c55e;
    color: white;
}

.popup-btn-call:hover {
    background: #16a34a;
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(34, 197, 94, 0.3);
}

.popup-btn-book {
    background: #ea580c;
    color: white;
}

.popup-btn-book:hover {
    background: #dc2626;
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(234, 88, 12, 0.3);
}

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

@keyframes slideIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(-50px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .popup-container {
        margin: 20px;
        padding: 40px 30px 30px;
        max-width: 400px;
    }
    
    .popup-title {
        font-size: 28px;
        letter-spacing: 1.8px;
    }
    
    .popup-subtitle {
        font-size: 16px;
    }
    
    .popup-price {
        font-size: 88px;
    }
    
    .popup-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .popup-btn {
        width: 100%;
        min-width: auto;
        padding: 12px 24px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .popup-container {
        max-width: 350px;
        padding: 35px 25px 25px;
    }
    
    .popup-title {
        font-size: 24px;
    }
    
    .popup-price {
        font-size: 80px;
    }
    
    .popup-validity {
        font-size: 14px;
    }
} 