/* =====================================================
   HOMEPAGE STYLES
   ===================================================== */

/* Hero Section */
.vc-hero {
    position: relative;
    padding: var(--vc-space-16) 0;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .vc-hero {
        padding: var(--vc-space-20) 0;
    }
}

.vc-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.vc-hero-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 20%, var(--vc-primary-alpha) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, hsla(160, 84%, 39%, 0.1) 0%, transparent 50%);
}

.vc-hero-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.vc-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
}

.vc-shape-1 {
    width: 400px;
    height: 400px;
    background: var(--vc-primary);
    top: -100px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}

.vc-shape-2 {
    width: 300px;
    height: 300px;
    background: var(--vc-secondary);
    bottom: -50px;
    left: -50px;
    animation: float 10s ease-in-out infinite reverse;
}

.vc-shape-3 {
    width: 200px;
    height: 200px;
    background: var(--vc-accent);
    top: 50%;
    left: 50%;
    animation: float 12s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(30px, -30px) scale(1.1);
    }
}

.vc-hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--vc-space-12);
    align-items: center;
}

@media (min-width: 1024px) {
    .vc-hero-content {
        grid-template-columns: 1fr 1fr;
        gap: var(--vc-space-16);
    }
}

/* Hero Text */
.vc-hero-text {
    position: relative;
    z-index: 1;
}

.vc-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--vc-space-2);
    padding: var(--vc-space-2) var(--vc-space-4);
    background: var(--vc-surface);
    border: 1px solid var(--vc-border-light);
    border-radius: var(--vc-radius-full);
    font-size: var(--vc-text-sm);
    font-weight: var(--vc-font-medium);
    color: var(--vc-text-secondary);
    margin-bottom: var(--vc-space-6);
    box-shadow: var(--vc-shadow-sm);
}

.vc-hero-title {
    font-size: var(--vc-text-4xl);
    line-height: 1.1;
    margin-bottom: var(--vc-space-6);
}

@media (min-width: 768px) {
    .vc-hero-title {
        font-size: var(--vc-text-5xl);
    }
}

.vc-text-gradient {
    background: linear-gradient(135deg, var(--vc-primary), var(--vc-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vc-hero-description {
    font-size: var(--vc-text-lg);
    color: var(--vc-text-secondary);
    line-height: var(--vc-leading-relaxed);
    margin-bottom: var(--vc-space-8);
    max-width: 540px;
}

.vc-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--vc-space-4);
    margin-bottom: var(--vc-space-10);
}

/* Trust Indicators */
.vc-hero-trust {
    display: flex;
    align-items: center;
    gap: var(--vc-space-6);
    flex-wrap: wrap;
}

.vc-trust-item {
    text-align: center;
}

.vc-trust-number {
    display: block;
    font-family: var(--vc-font-heading);
    font-size: var(--vc-text-2xl);
    font-weight: var(--vc-font-bold);
    color: var(--vc-text-primary);
    line-height: 1;
    margin-bottom: var(--vc-space-1);
}

.vc-trust-label {
    font-size: var(--vc-text-sm);
    color: var(--vc-text-tertiary);
}

.vc-trust-divider {
    width: 1px;
    height: 40px;
    background: var(--vc-border-light);
}

/* Hero Visual */
.vc-hero-visual {
    position: relative;
    display: none;
}

@media (min-width: 1024px) {
    .vc-hero-visual {
        display: block;
    }
}

.vc-hero-image-wrapper {
    position: relative;
}

.vc-hero-image-frame {
    position: relative;
    aspect-ratio: 4/5;
    border-radius: var(--vc-radius-2xl);
    overflow: hidden;
    background: var(--vc-bg-tertiary);
    box-shadow: var(--vc-shadow-2xl);
}

.vc-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vc-hero-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: var(--vc-text-tertiary);
    background: linear-gradient(135deg, var(--vc-bg-secondary), var(--vc-bg-tertiary));
}

/* Floating Cards */
.vc-hero-float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: var(--vc-space-3);
    padding: var(--vc-space-3) var(--vc-space-4);
    border-radius: var(--vc-radius-xl);
    animation: floatCard 4s ease-in-out infinite;
}

.vc-float-card-1 {
    top: 10%;
    left: -20%;
}

.vc-float-card-2 {
    top: 50%;
    right: -15%;
    animation-delay: 1s;
}

.vc-float-card-3 {
    bottom: 15%;
    left: -10%;
    flex-direction: column;
    animation-delay: 2s;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.vc-float-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--vc-radius-lg);
}

.vc-float-icon-success {
    background: hsla(142, 76%, 36%, 0.15);
    color: var(--vc-success);
}

.vc-float-icon-primary {
    background: var(--vc-primary-alpha);
    color: var(--vc-primary);
}

.vc-float-content {
    display: flex;
    flex-direction: column;
}

.vc-float-title {
    font-size: var(--vc-text-sm);
    font-weight: var(--vc-font-semibold);
    color: var(--vc-text-primary);
}

.vc-float-subtitle {
    font-size: var(--vc-text-xs);
    color: var(--vc-text-tertiary);
}

.vc-float-rating {
    display: flex;
    gap: 2px;
    color: #fbbf24;
    margin-bottom: var(--vc-space-1);
}

.vc-float-rating-text {
    font-size: var(--vc-text-sm);
    color: var(--vc-text-primary);
    font-weight: var(--vc-font-medium);
}

/* Stats Section */
.vc-stats-section {
    background: linear-gradient(135deg, var(--vc-primary), var(--vc-primary-dark));
    color: white;
}

.vc-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--vc-space-8);
}

@media (min-width: 768px) {
    .vc-stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.vc-stat-item {
    text-align: center;
}

.vc-stat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--vc-radius-xl);
    margin-bottom: var(--vc-space-4);
}

.vc-stat-number {
    display: block;
    font-family: var(--vc-font-heading);
    font-size: var(--vc-text-4xl);
    font-weight: var(--vc-font-extrabold);
    line-height: 1;
    margin-bottom: var(--vc-space-2);
}

.vc-stat-label {
    font-size: var(--vc-text-sm);
    opacity: 0.9;
}

/* Section CTA */
.vc-section-cta {
    text-align: center;
    margin-top: var(--vc-space-12);
}

/* Testimonials Section */
.vc-testimonials-section {
    background: var(--vc-bg-secondary);
}

.vc-testimonials-slider {
    overflow: hidden;
}

.vc-testimonials-track {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--vc-space-6);
}

@media (min-width: 768px) {
    .vc-testimonials-track {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* CTA Section */
.vc-cta-section {
    padding: var(--vc-space-8) 0;
}

.vc-cta-card {
    position: relative;
    padding: var(--vc-space-12);
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--vc-primary), var(--vc-primary-dark));
    border-radius: var(--vc-radius-2xl);
    color: white;
}

.vc-cta-content {
    position: relative;
    z-index: 1;
}

.vc-cta-title {
    font-size: var(--vc-text-3xl);
    color: white;
    margin-bottom: var(--vc-space-4);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.vc-cta-text {
    font-size: var(--vc-text-lg);
    opacity: 0.9;
    max-width: 500px;
    margin: 0 auto var(--vc-space-8);
    color: white;
}

.vc-cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--vc-space-4);
}

.vc-cta-actions .vc-btn-primary {
    background: white;
    color: var(--vc-primary);
}

.vc-cta-actions .vc-btn-primary:hover {
    background: var(--vc-bg-primary);
}

.vc-cta-actions .vc-btn-outline {
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
}

.vc-cta-actions .vc-btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: white;
}

.vc-cta-decoration {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.vc-cta-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.vc-cta-circle-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
}

.vc-cta-circle-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -50px;
}