/* BILKLAR Custom Styles */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: #ff3600;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #cc2b00;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.5s ease-out forwards;
}

.animate-spin {
    animation: spin 1s linear infinite;
}

/* Glassmorphism Effect */
.glass {
    background: rgba(17, 24, 39, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* Custom Orange Color */
.gradient-orange {
    background: linear-gradient(to right, #ff3600, #cc2b00);
}

.shadow-orange {
    box-shadow: 0 10px 15px -3px rgba(255, 54, 0, 0.5);
}

/* Package Cards */
.package-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.package-card:hover {
    transform: scale(1.05);
    border-color: #ff3600 !important;
    box-shadow: 0 20px 25px -5px rgba(255, 54, 0, 0.3);
}

.package-card.selected {
    border-color: #ff3600 !important;
    box-shadow: 0 20px 25px -5px rgba(255, 54, 0, 0.4);
}

/* Buttons */
.btn-primary {
    background: linear-gradient(to right, #ff3600, #cc2b00);
    box-shadow: 0 10px 15px -3px rgba(255, 54, 0, 0.5);
}

.btn-primary:hover {
    opacity: 0.9;
}

.btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Input Focus */
input:focus, 
select:focus {
    outline: none !important;
    border-color: #ff3600 !important;
}

/* Extra Service Cards */
.extra-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.extra-card:hover {
    border-color: rgba(255, 54, 0, 0.7) !important;
}

.extra-card.selected {
    background-color: rgba(255, 54, 0, 0.2) !important;
    border-color: #ff3600 !important;
    box-shadow: 0 10px 15px -3px rgba(255, 54, 0, 0.2);
}

/* Modal */
#confirmation-modal.show {
    display: flex !important;
}

/* Date Input Custom Style */
input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
    .text-4xl {
        font-size: 2rem;
    }
    
    .text-2xl {
        font-size: 1.5rem;
    }

    .package-card:hover {
        transform: scale(1.02);
    }
}

/* Loading State */
.loading {
    opacity: 0.6;
    pointer-events: none;
}