/* CACHE BUST v2 */
/* VERSION: dd829952-bc24-40ef-b83c-cf911052f256 */
/*
Theme Name: Vinsdaddy
Author: Antigravity
Description: Ultra-Premium Light Mode Theme with Bright Accents and Glassmorphism
Version: 3.0.0
Text Domain: vinsdaddy
*/

html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

:root {
    /* Pure Light Backgrounds */
    --bg-base: #f0f4f8;
    /* Very soft, cool blue-grey for depth */
    --bg-surface: #ffffff;
    --bg-surface-light: #f8fafc;

    /* Milky Glass Effect for Light Theme */
    --glass-bg: rgba(255, 255, 255, 0.75);
    --glass-border: rgba(255, 255, 255, 1);
    --glass-border-hover: rgba(255, 255, 255, 1);

    /* Text Colors */
    --text-primary: #0f172a;
    --text-secondary: #475569;

    /* Highly Vibrant Accents */
    --accent-blue: #0ea5e9;
    /* Bright Sky Blue */
    --accent-blue-dark: #0284c7;
    --accent-purple: #8b5cf6;
    /* Vibrant Purple */
    --accent-pink: #f43f5e;
    /* Vibrant Pink/Red */
    --accent-gold: #f59e0b;
    /* Bright Amber/Gold */

    /* Glows adapted for light mode (used primarily on hover/shadows) */
    --accent-blue-glow: rgba(14, 165, 233, 0.4);
    --accent-gold-glow: rgba(245, 158, 11, 0.4);

    /* Ambient Glows for Background */
    --ambient-1: rgba(56, 189, 248, 0.4);
    /* Light cyan glow */
    --ambient-2: rgba(168, 85, 247, 0.3);
    /* Light purple glow */

    /* Gradients */
    --pkg-basic-gradient: linear-gradient(135deg, #0ea5e9, #3b82f6);
    --pkg-gold-gradient: linear-gradient(135deg, #f59e0b, #f97316);
    --pkg-premium-gradient: linear-gradient(135deg, #f43f5e, #e11d48);

    --font-main: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-base);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Light Mode Grid & Glowing Orbs Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -3;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background:
        radial-gradient(circle at 15% 30%, var(--ambient-1), transparent 50%),
        radial-gradient(circle at 85% 70%, var(--ambient-2), transparent 50%);
    z-index: -2;
    filter: blur(100px);
    animation: ambientShift 25s ease-in-out infinite alternate;
}

@keyframes ambientShift {
    0% {
        transform: scale(1) translate(0, 0);
    }

    50% {
        transform: scale(1.1) translate(3%, 3%);
    }

    100% {
        transform: scale(1) translate(-3%, -3%);
    }
}

/* Utilities */
.container {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-gradient {
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: var(--pkg-basic-gradient);
    display: inline-block;
}

.text-gradient.gold {
    background-image: var(--pkg-gold-gradient);
}

.text-gradient.premium {
    background-image: var(--pkg-premium-gradient);
}

/* Premium Light Glassmorphism */
.glass-box {
    background: var(--glass-bg);
    backdrop-filter: blur(40px) saturate(200%);
    -webkit-backdrop-filter: blur(40px) saturate(200%);
    border: 1.5px solid var(--glass-border);
    border-radius: 32px;
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.06),
        inset 0 0 0 1px rgba(255, 255, 255, 0.9),
        inset 0 2px 20px rgba(255, 255, 255, 0.5);
    /* Milkier inner shadow */
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.glass-box:hover {
    transform: translateY(-8px);
    background: #ffffff;
    box-shadow:
        0 40px 70px -15px rgba(0, 0, 0, 0.1),
        inset 0 0 0 1px rgba(255, 255, 255, 1),
        inset 0 4px 25px rgba(255, 255, 255, 0.8);
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes floatIcon {
    0% {
        transform: translateY(0px) scale(1);
    }

    50% {
        transform: translateY(-5px) scale(1.05);
    }

    100% {
        transform: translateY(0px) scale(1);
    }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-float-delayed {
    animation: float 6s ease-in-out infinite;
    animation-delay: 2s;
}

.animate-float-slow {
    animation: float 8s ease-in-out infinite;
    animation-delay: 1s;
}

.animate-icon {
    animation: floatIcon 4s ease-in-out infinite;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

h2 {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 4rem;
}

p {
    color: var(--text-secondary);
    font-size: 1.15rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.1rem 2.4rem;
    border-radius: 100px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-20deg);
    transition: var(--transition);
    z-index: 2;
}

.btn:hover::before {
    left: 150%;
    transition: left 0.7s ease-in-out;
}

.btn-primary {
    background: var(--pkg-basic-gradient);
    color: #ffffff;
    box-shadow: 0 10px 25px -5px var(--accent-blue-glow);
}

.btn-primary.gold {
    background: var(--pkg-gold-gradient);
    box-shadow: 0 10px 25px -5px var(--accent-gold-glow);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 35px -5px var(--accent-blue-glow);
}

.btn-primary.gold:hover {
    box-shadow: 0 20px 35px -5px var(--accent-gold-glow);
}

.btn-outline {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    color: var(--text-primary);
    border: 2px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.03);
}

.btn-outline:hover {
    background: #ffffff;
    border-color: var(--accent-blue);
    color: var(--accent-blue);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 35px -5px rgba(14, 165, 233, 0.15);
}

/* Premium Light Navigation Header */
.header {
    position: fixed;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1200px;
    z-index: 1000;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 1);
    border-radius: 100px;
    box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.08), inset 0 0 0 1px rgba(255, 255, 255, 0.8), inset 0 2px 10px rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

.header.scrolled {
    top: 1rem;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.12), inset 0 0 0 1px rgba(255, 255, 255, 1);
}



.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: -1px;
}

.logo span {
    background: var(--pkg-basic-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 0.2rem;
    align-items: center;
}

.nav-links a {
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.nav-links a:not(.btn):hover {
    color: var(--accent-blue-dark);
    background: rgba(14, 165, 233, 0.08);
}

.nav-links a.btn-primary {
    padding: 0.6rem 1.4rem;
    font-size: 0.9rem;
    margin-left: 0.5rem;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.8rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 6rem;
    position: relative;
    overflow: hidden;
}

.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1250px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-content {
    text-align: left;
}

/* Premium Tech Badge */
.badge-tech {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    border-radius: 100px;
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid rgba(14, 165, 233, 0.2);
    color: var(--accent-blue);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px var(--accent-blue-glow);
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero p {
    font-size: 1.35rem;
    margin-bottom: 3.5rem;
    max-width: 600px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-start;
}

/* Dashboard Floating Cards */
.dashboard-cards {
    position: relative;
    height: 600px;
    width: 100%;
}

.dashboard-card {
    position: absolute;
    background: var(--glass-bg);
    backdrop-filter: blur(40px) saturate(200%);
    -webkit-backdrop-filter: blur(40px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 24px;
    padding: 1.5rem;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.1), inset 0 2px 10px rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.dc-score {
    top: 10%;
    right: 5%;
    width: 280px;
    animation: float-y 8s ease-in-out infinite;
}

.dc-alert {
    top: 45%;
    left: 0;
    width: 320px;
    animation: float-y 9s ease-in-out infinite reverse;
}

.dc-value {
    bottom: 15%;
    right: 15%;
    width: 260px;
    animation: float-y 7s ease-in-out infinite 1s;
}

@keyframes float-y {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Responsive adjustments for split hero */
@media (max-width: 992px) {
    .hero-split {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        text-align: center;
    }

    .hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-btns {
        justify-content: center;
    }

    .dashboard-cards {
        display: none;
        /* Hide complex cards on small screens */
    }
}

/* Packages Section */
.packages {
    padding: 8rem 0;
    position: relative;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    align-items: center;
}

.package-card {
    padding: 3.5rem 2.5rem;
    text-align: center;
}

.package-card.basic {
    border-top: 5px solid var(--accent-blue);
}

.package-card.basic.featured {
    transform: scale(1.05);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.85));
    box-shadow:
        0 40px 80px -15px rgba(14, 165, 233, 0.25),
        inset 0 0 0 1px rgba(255, 255, 255, 1);
    z-index: 2;
    transition: var(--transition);
}

.package-card.basic.featured:hover {
    transform: scale(1.08) translateY(-10px);
    box-shadow:
        0 50px 100px -15px rgba(14, 165, 233, 0.35),
        inset 0 0 0 1px rgba(255, 255, 255, 1);
}

.package-card.gold {
    border-top: 5px solid var(--accent-gold);
    transform: scale(1.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.85));
    box-shadow:
        0 40px 80px -15px rgba(245, 158, 11, 0.25),
        inset 0 0 0 1px rgba(255, 255, 255, 1);
    z-index: 2;
}

.package-card.gold:hover {
    transform: scale(1.08) translateY(-10px);
    box-shadow:
        0 50px 100px -15px rgba(245, 158, 11, 0.35),
        inset 0 0 0 1px rgba(255, 255, 255, 1);
}

.package-card.premium {
    border-top: 5px solid var(--accent-pink);
}

.pkg-name {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.pkg-price {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.pkg-features {
    list-style: none;
    margin-bottom: 3rem;
    text-align: left;
}

.pkg-features li {
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.pkg-features li::before {
    content: '\2713';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(14, 165, 233, 0.15);
    color: var(--accent-blue);
    font-weight: bold;
    font-size: 1rem;
}

.package-card.gold .pkg-features li::before {
    background: rgba(245, 158, 11, 0.15);
    color: var(--accent-gold);
}

.package-card.premium .pkg-features li::before {
    background: rgba(244, 63, 94, 0.15);
    color: var(--accent-pink);
}

.pkg-btn {
    width: 100%;
}

/* Features Section */
.features {
    padding: 8rem 0;
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.feature-box {
    padding: 3rem 2.5rem;
    text-align: left;
}

.feature-icon {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: linear-gradient(135deg, #ffffff, #f1f5f9);
    box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.08), inset 0 2px 5px rgba(255, 255, 255, 1);
    transition: var(--transition);
}

.feature-box:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--pkg-basic-gradient);
    color: #000;
}

.feature-box h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

/* FAQ Section */
.faq {
    padding: 8rem 0;
    position: relative;
    z-index: 1;
}

.faq-list {
    max-width: 850px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1.5rem;
}

.faq-question {
    padding: 2rem;
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1.4rem;
    font-family: inherit;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--accent-blue-dark);
}

.faq-icon {
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(14, 165, 233, 0.1);
    color: var(--accent-blue);
    font-size: 1.5rem;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: var(--accent-blue);
    color: #fff;
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
    opacity: 0;
}

.faq-item.active .faq-answer {
    padding-bottom: 2rem;
    max-height: 300px;
    opacity: 1;
}

/* Footer */
footer {
    padding: 4rem 0 2rem;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.8));
    backdrop-filter: blur(10px);
    position: relative;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-col h4 {
    margin-bottom: 1.8rem;
    font-size: 1.4rem;
}

.footer-col p,
.footer-col a:not(.logo) {
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 1rem;
    display: block;
    transition: var(--transition);
    font-weight: 500;
}

.footer-col a:not(.logo):hover {
    color: var(--accent-blue);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    color: var(--text-secondary);
    padding-top: 2.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* Logo Bar */
.logo-bar {
    padding: 3rem 0;
    margin-bottom: 2rem;
}

.logo-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    opacity: 0.7;
}

.logo-item img {
    max-width: 140px;
    height: auto;
    transition: var(--transition);
    opacity: 0.6;
}

.logo-item img:hover {
    opacity: 0.9;
}

/* Testimonials */
.testimonials {
    padding: 8rem 0;
    position: relative;
}

.testimonial-card {
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    /* Ensure card fills the slide height */
}

.swiper-slide {
    height: auto;
    /* Allow Swiper to calculate height */
    display: flex;
}

.star-rating {
    margin-bottom: 1rem;
    color: #fbbf24;
    font-size: 0.9rem;
}

.testimonial-content {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    flex-grow: 1;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-blue);
}

.author-info h5 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
    font-weight: 700;
}

.author-info p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Swiper Styles */
.testimonials-swiper {
    padding-bottom: 4rem !important;
}

.swiper-pagination-bullet {
    background: var(--accent-blue) !important;
    opacity: 0.3 !important;
}

.swiper-pagination-bullet-active {
    opacity: 1 !important;
    width: 25px !important;
    border-radius: 10px !important;
}

/* Responsive */
@media (max-width: 1024px) {
    .packages-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .package-card.gold {
        transform: scale(1);
    }

    .package-card.gold:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 2.5rem 1.5rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        gap: 1.5rem;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        transform: translateY(-10px);
        opacity: 0;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        pointer-events: none;
    }

    .nav-links.active {
        display: flex;
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-links a {
        width: 100%;
        text-align: center;
        padding: 1rem;
        margin: 0 !important;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .hero p {
        font-size: 1.15rem;
    }

    .hero-btns {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .logo-grid {
        gap: 1.5rem;
    }

    .logo-item img {
        max-width: 100px;
    }
}