/* Custom styles for PHP version */
.text-gradient {
    background: linear-gradient(to right, #f59e0b, #f97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Gallery hover effects */
.gallery-item {
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-8px);
}

/* Modal styles */
.modal-overlay {
    backdrop-filter: blur(4px);
}

/* Button hover effects */
.btn-primary {
    background: linear-gradient(to right, #f59e0b, #f97316);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(to right, #d97706, #ea580c);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* WhatsApp button pulse animation */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

#whatsapp-btn {
    animation: pulse 2s infinite;
}

/* Responsive improvements */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
}

/* Loading states */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Form styles */
.form-input:focus {
    outline: none;
    border-color: #f59e0b;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

/* Countdown styles */
.countdown-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Gallery modal improvements */
#gallery-modal {
    backdrop-filter: blur(8px);
}

#gallery-modal img {
    max-height: 85vh;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

/* Pricing card enhancements */
.pricing-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 2px solid #f59e0b;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Feature cards */
.feature-card {
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.feature-card:hover {
    border-color: #f59e0b;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

/* Statistics section */
.stats-section {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
}

/* Contact section improvements */
.contact-form {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Footer enhancements */
.footer-section {
    background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
}

/* Mobile menu improvements */
#mobile-menu {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-top: 1px solid #e5e7eb;
}

/* Accessibility improvements */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Print styles */
@media print {
    .no-print {
        display: none !important;
    }
}