@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;600;700;800&display=swap');

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    scroll-behavior: smooth;
}

/* Custom Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

/* Swiper Styles */
.testimonialSwiper {
    padding-bottom: 50px !important;
}

.swiper-pagination-bullet-active {
    background: #ea580c !important;
}

/* Page Loader */
body.loading #page-transition {
    opacity: 1;
    pointer-events: all;
}

body.loading #transition-bar {
    width: 100%;
}

/* Utility */
.glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Form Styles */
input, textarea, select {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

input:focus, textarea:focus {
    border-color: #ea580c;
    outline: none;
    box-shadow: 0 0 0 4px rgba(234, 88, 12, 0.1);
}