/* ===================================
   LUXURY ONE INVESTMENT PLAYBOOK
   Premium Black & Gold Design System
   =================================== */

/* ===================================
   1. GLOBAL STYLES & RESET
   =================================== */
* {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
    background: #000000;
    color: #ffffff;
}

/* ===================================
   2. CUSTOM ANIMATIONS
   =================================== */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

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

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

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }

    100% {
        background-position: 1000px 0;
    }
}

@keyframes bounce-slow {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* ===================================
   3. ANIMATION UTILITY CLASSES
   =================================== */
.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-gradient {
    background-size: 200% 200%;
    animation: gradient 15s ease infinite;
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-bounce-slow {
    animation: bounce-slow 2s ease-in-out infinite;
}

/* ===================================
   4. LUXURY GLASSMORPHISM EFFECTS
   =================================== */
.glass {
    background: rgba(20, 20, 20, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.glass-dark {
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.15);
}

/* ===================================
   5. GRADIENT BACKGROUNDS
   =================================== */
.gradient-bg {
    background: #000000;
}

/* Dot pattern overlay */
.dot-pattern {
    background-image: radial-gradient(circle, rgba(212, 175, 55, 0.15) 1px, transparent 1px);
    background-size: 20px 20px;
}

/* ===================================
   6. CUSTOM SCROLLBAR - GOLD THEME
   =================================== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #000000;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #d4af37, #c9a961);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #d4af37;
}

/* ===================================
   7. HOVER EFFECTS - LUXURY GOLD GLOW
   =================================== */
.hover-lift {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.3);
}

/* ===================================
   8. FORM STYLING - GOLD ACCENTS
   =================================== */
input,
select {
    transition: all 0.3s ease;
    background: rgba(20, 20, 20, 0.8);
    color: #ffffff;
}

input:focus,
select:focus {
    outline: none;
    border-color: #d4af37 !important;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

/* ===================================
   9. BUTTON GLOW EFFECT - GOLD
   =================================== */
.btn-download-glow {
    position: relative;
    overflow: hidden;
}

.btn-download-glow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-download-glow:hover::before {
    width: 300px;
    height: 300px;
}

/* ===================================
   10. GOLD SHIMMER EFFECT
   =================================== */
.gold-shimmer {
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.4), transparent);
    background-size: 200px 100%;
    animation: shimmer 3s infinite;
}

/* ===================================
   11. LUXURY TEXT GRADIENT - GOLD
   =================================== */
.luxury-gradient {
    background: linear-gradient(135deg, #d4af37 0%, #f4e4c1 50%, #d4af37 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ===================================
   12. DECORATIVE ELEMENTS
   =================================== */
.gold-line {
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

.gold-line-solid {
    height: 1px;
    background: #d4af37;
}

/* ===================================
   13. LOGO SIGNATURE STYLE
   =================================== */
.logo-signature {
    font-family: 'Brush Script MT', cursive;
    color: #d4af37;
    font-size: 2rem;
}

/* ===================================
   14. SECTION DIVIDERS
   =================================== */
.section-divider {
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    margin: 4rem 0;
}

/* ===================================
   15. INTERNATIONAL PHONE INPUT
   =================================== */
.iti {
    width: 100%;
}

.iti__search-input {
    background: #1a1a1a;
    color: #ffffff;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.iti .iti__dropdown-content {
    background-color: #1a1a1a;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.iti .iti__country {
    color: #ffffff;
}

.iti .iti__country.iti__highlight {
    background-color: rgba(212, 175, 55, 0.2);
}

.iti .iti__country:hover {
    background-color: rgba(212, 175, 55, 0.1);
}

/* ===================================
   16. RESPONSIVE ADJUSTMENTS
   =================================== */
@media (max-width: 768px) {
    .logo-signature {
        font-size: 1.5rem;
    }
}

/* ===================================
   17. Button Download
   =================================== */
.btn-download {
    width: 100%;
    height: 50px;
    border: none;
    border-radius: 30px;
    background: linear-gradient(to right, #77530a, #ffd277, #77530a, #77530a, #ffd277, #77530a);
    background-size: 250%;
    background-position: left;
    color: #ffd277;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition-duration: 1s;
    overflow: hidden;
}

.btn-download::before {
    position: absolute;
    content: "Download Your Free Playbook";
    color: #ffd277;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 99%;
    height: 90%;
    border-radius: 30px;
    transition-duration: 1s;
    background-color: rgba(0, 0, 0, 0.842);
    background-size: 200%;
}

.btn-download:hover {
    background-position: right;
    transition-duration: 1s;
}

.btn-download:hover::before {
    background-position: right;
    transition-duration: 1s;
}

.btn-download:active {
    transform: scale(0.95);
}