/* 
 * [THEME SYSTEM] GLOBAL HEADING STYLES
 * Use these classes to map to Elementor Global Settings.
 * This ensures strict consistency when converting to WordPress.
 */
.theme-h1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.025em;
    /* Tailwind equivalent: text-5xl md:text-7xl */
}

.theme-h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: #0f172a;
    /* text-slate-900/primary */
    /* Tailwind equivalent: text-4xl md:text-5xl */
}

.theme-h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.025em;
    color: #0f172a;
    /* Tailwind equivalent: text-2xl md:text-3xl */
}

body {
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow-x: hidden;
}

/* Scoped Grid Pattern for specific sections */
.bg-grid-pattern {
    background-image:
        linear-gradient(to right, rgba(61, 75, 244, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(61, 75, 244, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}

/* Nike-style Soft Shadow */
.shadow-nike {
    box-shadow: 0 20px 40px -4px rgba(61, 75, 244, 0.06), 0 8px 16px -6px rgba(61, 75, 244, 0.04);
}

h1,
h2,
h3,
h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    letter-spacing: -0.03em;
    /* Tight tracking for modern tech feel */
}

/* Standard Card Utility */
.card-clean {
    background: white;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.card-clean:hover {
    border-color: #3d4bf4;
    box-shadow: 0 10px 15px -3px rgba(61, 75, 244, 0.1);
    transform: translateY(-2px);
}

/* Hover Lift Effect */
.hover-lift {
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.hover-lift:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px -10px rgba(61, 75, 244, 0.15);
}

/* FAQ details styling - Clean Accordion */
details>summary {
    list-style: none;
    cursor: pointer;
}

details>summary::-webkit-details-marker {
    display: none;
}

/* User Override for Footer Gap */
@media (min-width: 1024px) {
    .lg\:pb-32 {
        padding-bottom: 0rem !important;
    }
}

/* Border Glow Animation */
@keyframes border-rotate {
    0% {
        border-color: rgb(219, 234, 254);
    }

    50% {
        border-color: rgb(59, 130, 246);
        box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
    }

    100% {
        border-color: rgb(219, 234, 254);
    }
}

.group:hover .animate-border-glow {
    animation: border-rotate 2s infinite;
}

/* Hide scrollbar for Chrome/Safari/Opera */
.hide-scrollbar::-webkit-scrollbar {
    display: none !important;
}

/* Hide scrollbar for IE, Edge and Firefox */
.hide-scrollbar {
    -ms-overflow-style: none !important;
    /* IE and Edge */
    scrollbar-width: none !important;
    /* Firefox */
}

/* Magnetic Button Transition */
.btn-magnetic {
    transition: transform 0.1s ease-out;
}

/* Mobile Menu Smoothness */
.mobile-menu-transition {
    transition: transform 0.3s cubic-bezier(0.4, 0.0, 0.2, 1), opacity 0.3s ease;
    transform-origin: top;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Infinite Scroll Animation */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.animate-scroll {
    animation: scroll 40s linear infinite;
}

.animate-scroll:hover {
    animation-play-state: paused;
}


/* Initial reveal state */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Clean images */
img {
    display: block;
    max-width: 100%;
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* [THEME SYSTEM] Standardized Sub-heading Badge */
.theme-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    background-color: #eff1fe;
    /* blue-50 */
    border: 1px solid #e0e4fd;
    /* blue-100 */
    color: #3d4bf4;
    /* blue-600 */
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.025em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    animation: fadeInBadge 0.5s ease-out backwards;
}

.theme-badge-dot-container {
    position: relative;
    display: flex;
    height: 0.5rem;
    width: 0.5rem;
}

.theme-badge-ping {
    animation: pingBadge 1s cubic-bezier(0, 0, 0.2, 1) infinite;
    position: absolute;
    display: inline-flex;
    height: 100%;
    width: 100%;
    border-radius: 9999px;
    background-color: #8592f7;
    /* blue-400 */
    opacity: 0.75;
}

.theme-badge-dot {
    position: relative;
    display: inline-flex;
    border-radius: 9999px;
    height: 0.5rem;
    width: 0.5rem;
    background-color: #6676f5;
    /* blue-500 */
}

@keyframes pingBadge {

    75%,
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

@keyframes fadeInBadge {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Breadcrumb Navigation - Integrated into Hero */
.breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: #64748b;
    padding: 0;
    margin: 0;
    list-style: none;
}

.breadcrumb a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb a:hover {
    color: #3d4bf4;
}

.breadcrumb-separator {
    color: #94a3b8;
    font-size: 0.625rem;
}

.breadcrumb-current {
    color: #475569;
    font-weight: 500;
}