/* ============================================
   ULTRA MODERN SPECTACULAR DESIGN SYSTEM
   Grey Design - Modern Shared Styles
   ============================================ */

/* GOOGLE FONTS */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* BASE RESETS & TYPOGRAPHY */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    background: #f0f0f0;
    color: #1B1B33;
}

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

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

@keyframes section-appear {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* SCROLL FADE ANIMATION */
.scroll-fade {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-fade.visible {
    opacity: 1;
    transform: translateY(0);
}

/* SECTION HEADERS - COMMON */
.section-header-ultra {
    text-align: center;
    margin-bottom: 100px;
    animation: section-appear 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.section-tag-ultra {
    display: inline-block;
    padding: 10px 30px;
    background: linear-gradient(135deg, rgba(191, 140, 96, 0.2), rgba(212, 175, 55, 0.2));
    border: 2px solid rgba(191, 140, 96, 0.3);
    color: #BF8C60;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(191, 140, 96, 0.2);
}

.section-title-ultra {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1B1B33;
    text-shadow: 0 2px 20px rgba(27, 27, 51, 0.1);
}

.section-desc-ultra {
    font-size: 1.2rem;
    color: rgba(27, 27, 51, 0.7);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* BUTTONS - COMMON */
.ultra-btn {
    position: relative;
    padding: 20px 50px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ultra-btn-primary {
    background: #ffffff;
    color: #1B1B33;
    border: 2px solid #1B1B33;
    box-shadow:
        0 15px 50px rgba(27, 27, 51, 0.2),
        0 5px 20px rgba(27, 27, 51, 0.15);
}

.ultra-btn-primary::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent,
            rgba(255, 255, 255, 0.3),
            transparent);
    transform: rotate(45deg);
    transition: all 0.5s;
}

.ultra-btn-primary:hover::before {
    animation: shine 1s forwards;
}

@keyframes shine {
    0% {
        left: -50%;
    }

    100% {
        left: 150%;
    }
}

.ultra-btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow:
        0 20px 60px rgba(191, 140, 96, 0.7),
        0 10px 30px rgba(212, 175, 55, 0.5),
        0 0 40px rgba(191, 140, 96, 0.5);
}

.ultra-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 2px solid rgba(191, 140, 96, 0.5);
    backdrop-filter: blur(10px);
}

.ultra-btn-secondary:hover {
    background: rgba(191, 140, 96, 0.2);
    border-color: #BF8C60;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(191, 140, 96, 0.4);
}

/* UTILITY SPACING */
.space-5 {
    height: 5px;
}

.space-10 {
    height: 10px;
}

.space-20 {
    height: 20px;
}

.space-30 {
    height: 30px;
}

.space-40 {
    height: 40px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .section-header-ultra {
        margin-bottom: 60px;
    }

    .ultra-btn {
        padding: 16px 40px;
        font-size: 1rem;
    }
}

/* HEADER FIX */
.site-header {
    z-index: 9999 !important;
}