/**
 * Hero Section Styles
 * 
 * Design based on Agnos creative agency hero
 * Primary Orange: #FF6321
 */

/* ===== Hero Section ===== */
.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 140px 20px 80px;
    background: #F5F5F6;
    overflow: hidden;
    text-align: center;
}

/* Concentric Circles Background */
.hero-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 900px;
    height: 900px;
    background:
        radial-gradient(circle, transparent 18%, transparent 18.3%, rgba(0, 0, 0, 0.03) 18.3%, rgba(0, 0, 0, 0.03) 18.5%, transparent 18.5%),
        radial-gradient(circle, transparent 32%, transparent 32.3%, rgba(0, 0, 0, 0.03) 32.3%, rgba(0, 0, 0, 0.03) 32.5%, transparent 32.5%),
        radial-gradient(circle, transparent 46%, transparent 46.3%, rgba(0, 0, 0, 0.03) 46.3%, rgba(0, 0, 0, 0.03) 46.5%, transparent 46.5%),
        radial-gradient(circle, transparent 60%, transparent 60.3%, rgba(0, 0, 0, 0.03) 60.3%, rgba(0, 0, 0, 0.03) 60.5%, transparent 60.5%),
        radial-gradient(circle, transparent 74%, transparent 74.3%, rgba(0, 0, 0, 0.03) 74.3%, rgba(0, 0, 0, 0.03) 74.5%, transparent 74.5%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

/* Digital Agency Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 4px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #69686E;
    margin-bottom: 32px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.hero-badge::before,
.hero-badge::after {
    content: '›';
    color: #FF6321;
    font-weight: 600;
}

.hero-badge::before {
    transform: scaleX(-1);
}

/* Main Headline */
.hero-headline {
    font-size: 64px;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -2px;
    color: #060612;
    margin-bottom: 24px;
}

.hero-headline .highlight {
    color: #FF6321;
    font-style: italic;
}

/* Subtitle */
.hero-subtitle {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #69686E;
    max-width: 480px;
    margin: 0 auto 40px;
}

/* CTA Buttons Group */
.hero-cta-group {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: #FF6321;
    color: white;
    font-weight: 500;
    font-size: 14px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.btn-primary:hover {
    background: #E85A1D;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 99, 33, 0.3);
    color: white;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: #060612;
    color: white;
    font-weight: 500;
    font-size: 14px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.btn-secondary:hover {
    background: #1a1a2e;
    transform: translateY(-2px);
    color: white;
}

/* Schedule Text with Curved Arrow */
.hero-schedule-text {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    margin-top: 20px;
    margin-left: -80px;
}

.schedule-arrow {
    position: absolute;
    top: -45px;
    left: 60px;
    transform: scaleX(-1);
}

.schedule-label {
    font-size: 14px;
    color: #FF6321;
    font-style: italic;
}

/* Trusted By Section */
.hero-trusted {
    margin-top: 60px;
    text-align: center;
}

.hero-trusted-label {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #69686E;
    font-weight: 400;
    margin-bottom: 24px;
}

.hero-trusted-label strong {
    color: #060612;
    font-weight: 600;
}

.hero-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    opacity: 0.7;
}

.hero-logos img {
    height: 24px;
    width: auto;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.hero-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Placeholder logos using text */
.hero-logo-placeholder {
    font-size: 18px;
    font-weight: 600;
    color: #060612;
    opacity: 0.6;
}

/* Floating Icons */
.hero-floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.floating-icon {
    position: absolute;
    width: 52px;
    height: 52px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 6s ease-in-out infinite;
}

.floating-icon svg {
    width: 24px;
    height: 24px;
}

.floating-icon:nth-child(1) {
    top: 30%;
    left: 8%;
    animation-delay: 0s;
}

.floating-icon:nth-child(2) {
    top: 35%;
    right: 8%;
    animation-delay: 1.5s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(2deg);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-headline {
        font-size: 48px;
        letter-spacing: -1.5px;
    }

    .floating-icon {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 120px 20px 60px;
        min-height: auto;
    }

    .hero-section::before {
        width: 500px;
        height: 500px;
    }

    .hero-headline {
        font-size: 36px;
        letter-spacing: -1px;
    }

    .hero-cta-group {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .hero-logos {
        gap: 24px;
    }
}