/* Hero Section Styles */
.hero-section {
    background: var(--bg-white);
    padding: var(--section-padding);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, 
        var(--secondary-pink-100) 0%, 
        var(--primary-purple-100) 100%);
    border-radius: 50% 0 0 50%;
    z-index: 1;
}

/* Floating Instagram Icons */
.floating-instagram-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.floating-icon {
    position: absolute;
    opacity: 0.06;
    transition: var(--transition-normal);
}

/* Individual Icon Positioning and Sizes */
.icon-1 {
    top: 10%;
    left: 15%;
    width: 40px;
    height: 40px;
    animation: float1 8s ease-in-out infinite;
}

.icon-2 {
    top: 20%;
    right: 20%;
    width: 35px;
    height: 35px;
    animation: float2 12s ease-in-out infinite 1s;
}

.icon-3 {
    top: 35%;
    left: 8%;
    width: 30px;
    height: 30px;
    animation: float3 10s ease-in-out infinite 2s;
}

.icon-4 {
    top: 50%;
    right: 15%;
    width: 45px;
    height: 45px;
    animation: float4 9s ease-in-out infinite 1.5s;
}

.icon-5 {
    top: 65%;
    left: 25%;
    width: 28px;
    height: 28px;
    animation: float5 11s ease-in-out infinite 3s;
}

.icon-6 {
    top: 80%;
    right: 30%;
    width: 38px;
    height: 38px;
    animation: float6 7s ease-in-out infinite 0.5s;
}

.icon-7 {
    top: 25%;
    left: 60%;
    width: 25px;
    height: 25px;
    animation: float7 13s ease-in-out infinite 2.5s;
}

.icon-8 {
    top: 40%;
    right: 8%;
    width: 42px;
    height: 42px;
    animation: float8 6s ease-in-out infinite 1.8s;
}

.icon-9 {
    top: 55%;
    left: 50%;
    width: 32px;
    height: 32px;
    animation: float9 14s ease-in-out infinite 3.2s;
}

.icon-10 {
    top: 75%;
    right: 45%;
    width: 26px;
    height: 26px;
    animation: float10 9s ease-in-out infinite 2.8s;
}

.icon-11 {
    top: 12%;
    left: 40%;
    width: 22px;
    height: 22px;
    animation: float11 15s ease-in-out infinite 4s;
}

.icon-12 {
    top: 85%;
    left: 12%;
    width: 36px;
    height: 36px;
    animation: float12 8s ease-in-out infinite 1.2s;
}

/* Float Animation Keyframes */
@keyframes float1 {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.06; }
    25% { transform: translateY(-20px) rotate(5deg); opacity: 0.1; }
    50% { transform: translateY(-15px) rotate(-3deg); opacity: 0.08; }
    75% { transform: translateY(-25px) rotate(2deg); opacity: 0.09; }
}

@keyframes float2 {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.05; }
    33% { transform: translateY(-18px) rotate(-4deg); opacity: 0.09; }
    66% { transform: translateY(-12px) rotate(6deg); opacity: 0.07; }
}

@keyframes float3 {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.07; }
    50% { transform: translateY(-22px) rotate(-5deg); opacity: 0.11; }
}

@keyframes float4 {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.06; }
    25% { transform: translateY(-16px) rotate(3deg); opacity: 0.1; }
    75% { transform: translateY(-20px) rotate(-2deg); opacity: 0.08; }
}

@keyframes float5 {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.05; }
    40% { transform: translateY(-14px) rotate(4deg); opacity: 0.09; }
    80% { transform: translateY(-18px) rotate(-3deg); opacity: 0.07; }
}

@keyframes float6 {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.06; }
    30% { transform: translateY(-24px) rotate(-6deg); opacity: 0.1; }
    70% { transform: translateY(-10px) rotate(4deg); opacity: 0.08; }
}

@keyframes float7 {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.04; }
    50% { transform: translateY(-19px) rotate(5deg); opacity: 0.08; }
}

@keyframes float8 {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.07; }
    25% { transform: translateY(-21px) rotate(-4deg); opacity: 0.11; }
    75% { transform: translateY(-13px) rotate(3deg); opacity: 0.09; }
}

@keyframes float9 {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.05; }
    33% { transform: translateY(-17px) rotate(6deg); opacity: 0.09; }
    66% { transform: translateY(-26px) rotate(-2deg); opacity: 0.07; }
}

@keyframes float10 {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.06; }
    50% { transform: translateY(-15px) rotate(-5deg); opacity: 0.1; }
}

@keyframes float11 {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.04; }
    20% { transform: translateY(-12px) rotate(3deg); opacity: 0.08; }
    60% { transform: translateY(-23px) rotate(-4deg); opacity: 0.06; }
}

@keyframes float12 {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.07; }
    40% { transform: translateY(-20px) rotate(5deg); opacity: 0.1; }
    80% { transform: translateY(-16px) rotate(-3deg); opacity: 0.08; }
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 600px;
    text-align: center;
    margin: 0 auto;
}

.hero-title {
    font-size: var(--font-size-h1);
    font-weight: 700;
    line-height: var(--line-height-heading);
    margin-bottom: 24px;
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-medium);
    margin-bottom: 40px;
    line-height: 1.5;
}

.hero-content .cta-button {
    font-size: 20px;
    padding: 20px 40px;
    margin-top: 8px;
}

/* Floating Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.hero-content .cta-button:hover {
    animation: float 2s ease-in-out infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        min-height: 80vh;
        padding: var(--mobile-padding);
    }
    
    /* Reduce number of floating icons on mobile */
    .icon-7, .icon-8, .icon-9, .icon-10, .icon-11, .icon-12 {
        display: none;
    }
    
    /* Make remaining icons smaller */
    .floating-icon {
        opacity: 0.04;
    }
    
    .icon-1, .icon-2, .icon-3, .icon-4, .icon-5, .icon-6 {
        width: 20px !important;
        height: 20px !important;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-content .cta-button {
        font-size: 18px;
        padding: 16px 32px;
    }
    
    .hero-section::before {
        width: 70%;
    }
}

@media (max-width: 480px) {
    /* Hide floating icons on very small screens */
    .floating-instagram-icons {
        display: none;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-content .cta-button {
        font-size: 16px;
        padding: 14px 28px;
    }
}

/* Performance optimization for reduced motion */
@media (prefers-reduced-motion: reduce) {
    .floating-icon {
        animation: none;
    }
} 

/* Hero Trust Indicators */
.hero-trust-indicators {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin: 24px 0;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-xl);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(10px);
}

.trust-item i {
    font-size: 16px;
}

/* Enhanced CTA Section */
.hero-cta-section {
    text-align: center;
    margin-top: 32px;
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--state-error), #ff7575);
    color: var(--text-white);
    border: none;
    padding: 16px 32px;
    border-radius: var(--radius-full);
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-normal);
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
    text-transform: none;
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4);
}

.cta-subtext {
    font-size: 12px;
    color: var(--text-medium);
    margin-top: 8px;
    opacity: 0.9;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-trust-indicators {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .trust-item {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .cta-button.primary {
        padding: 14px 28px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .hero-trust-indicators {
        margin: 16px 0;
    }
    
    .trust-item {
        font-size: 11px;
        padding: 5px 10px;
    }
    
    .cta-button.primary {
        padding: 12px 24px;
        font-size: 15px;
    }
    
    .cta-subtext {
        font-size: 10px;
    }
} 