/* Premium Home Page - Global CSS Enhancements */

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

/* Section Spacing Utilities */
.py-120 {
    padding-top: 120px;
    padding-bottom: 120px;
}

.py-100 {
    padding-top: 100px;
    padding-bottom: 100px;
}

.py-80 {
    padding-top: 80px;
    padding-bottom: 80px;
}

.py-60 {
    padding-top: 60px;
    padding-bottom: 60px;
}

.pt-120 {
    padding-top: 120px;
}

.pb-120 {
    padding-bottom: 120px;
}

.pt-100 {
    padding-top: 100px;
}

.pb-140 {
    padding-bottom: 140px;
}

.mb-100 {
    margin-bottom: 100px;
}

.mb-80 {
    margin-bottom: 80px;
}

/* Global Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Text Gradients */
.text-gradient {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Premium Button */
.btn-premium {
    background: var(--primary-gradient);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(79, 70, 229, 0.3);
    text-decoration: none;
    display: inline-block;
}

.btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(79, 70, 229, 0.4);
    color: white;
}

/* Background Variants */
.bg-primary-gradient {
    background: var(--primary-gradient);
}

/* Section Headers */
.section-header-modern {
    position: relative;
}

.section-header-modern .text-gradient {
    font-size: 0.875rem;
}

/* Responsive Padding */
@media (max-width: 991px) {
    .py-120 {
        padding: 80px 0;
    }

    .py-100 {
        padding: 70px 0;
    }

    .pt-100 {
        padding-top: 70px;
    }

    .pb-140 {
        padding-bottom: 80px;
    }
}

@media (max-width: 767px) {
    .py-120 {
        padding: 60px 0;
    }

    .py-100 {
        padding: 50px 0;
    }

    .pt-100 {
        padding-top: 50px;
    }

    .pb-140 {
        padding-bottom: 60px;
    }
}

/* Utility Classes */
.transition-base {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.rounded-4-premium {
    border-radius: 28px !important;
}

.shadow-lg-premium {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08), 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Lead Text */
.lead-sm {
    font-size: 1.125rem;
    line-height: 1.7;
}

/* Letter Spacing */
.ls-1 {
    letter-spacing: 1px;
}

.ls-2 {
    letter-spacing: 2px;
}