/* ============================================
   Premium Hero Section Styles
   עיצוב Hero יוקרתי
   ============================================ */

/* Premium Hero */
.hero-v2 {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(10, 22, 40, 0.75) 0%, rgba(30, 58, 95, 0.85) 100%);
    overflow: hidden;
    padding: 120px 0 80px;
}

/* Carousel Background Images - uses .hero-bg-layer child elements */
.hero-v2.hero-carousel {
    background: #0a1628;
}

.hero-v2.hero-carousel .hero-bg-layer {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    z-index: 0;
}

.hero-v2.hero-carousel .hero-bg-layer.active {
    opacity: 1;
}

.hero-v2.hero-carousel .hero-bg-layer[data-bg="1"] {
    background-image: url('/src/images/hero_slide1.png');
}

.hero-v2.hero-carousel .hero-bg-layer[data-bg="2"] {
    background-image: url('/src/images/hero_slide2.png');
}

.hero-v2.hero-carousel .hero-bg-layer[data-bg="3"] {
    background-image: url('/src/images/hero_slide3.png');
}

.hero-v2.hero-carousel .hero-bg-layer[data-bg="4"] {
    background-image: url('/src/images/hero_corporate_partnership.png');
}

/* Dark overlay for text readability */
.hero-v2.hero-carousel .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(10, 22, 40, 0.85) 0%,
            rgba(10, 22, 40, 0.7) 30%,
            rgba(10, 22, 40, 0.75) 70%,
            rgba(10, 22, 40, 0.9) 100%);
    z-index: 1;
    pointer-events: none;
}

/* Subtle decorative elements */
.hero-v2::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: radial-gradient(ellipse at 100% 30%,
            rgba(201, 162, 39, 0.08) 0%,
            transparent 60%);
    pointer-events: none;
}

.hero-v2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
    height: 60%;
    background: radial-gradient(ellipse at 0% 100%,
            rgba(30, 58, 95, 0.3) 0%,
            transparent 60%);
    pointer-events: none;
}

/* Grid pattern overlay */
.hero-v2 .hero-grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

/* Hero Content */
.hero-v2 .hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
    text-align: center;
}

/* Badge */
.hero-v2 .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: rgba(201, 162, 39, 0.15);
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 9999px;
    color: #c9a227;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.hero-v2 .hero-badge-dot {
    width: 8px;
    height: 8px;
    background: #c9a227;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

/* Main Title */
.hero-v2 .hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-v2 .hero-title .highlight {
    color: #c9a227;
}

/* Subtitle */
.hero-v2 .hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Feature Pills */
.hero-v2 .hero-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 3rem;
}

.hero-v2 .hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9375rem;
    font-weight: 500;
}

.hero-v2 .hero-feature svg {
    width: 18px;
    height: 18px;
    color: #c9a227;
}

/* CTA Buttons */
.hero-v2 .hero-cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.hero-v2 .btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #c9a227 0%, #a8841e 100%);
    color: #0a1628;
    font-size: 1.0625rem;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 4px 20px rgba(201, 162, 39, 0.3);
}

.hero-v2 .btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(201, 162, 39, 0.4);
}

.hero-v2 .btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 1rem 2rem;
    background: transparent;
    color: #fff;
    font-size: 1.0625rem;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s ease;
}

.hero-v2 .btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Stats Bar */
.hero-v2 .hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-v2 .hero-stat {
    text-align: center;
}

.hero-v2 .hero-stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: #c9a227;
    line-height: 1;
}

.hero-v2 .hero-stat-label {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.5rem;
}

/* Scroll Indicator */
.hero-v2 .scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8125rem;
    animation: bounce 2s infinite;
}

.hero-v2 .scroll-indicator svg {
    width: 24px;
    height: 24px;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-v2 {
        min-height: 85vh;
        padding: 100px 0 60px;
    }

    .hero-v2 .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .hero-v2 .hero-features {
        flex-direction: column;
        align-items: center;
    }

    .hero-v2 .hero-cta {
        flex-direction: column;
        width: 100%;
        padding: 0 1rem;
    }

    .hero-v2 .btn-hero-primary,
    .hero-v2 .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   Section: What We Offer
   סקשן מה אנחנו מציעים
   ============================================ */

.section-offerings {
    padding: 6rem 0;
    background: var(--color-neutral-50);
}

.section-offerings .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-offerings .section-label {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(201, 162, 39, 0.1);
    color: var(--color-brand-gold-dark);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
}

.section-offerings .section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--color-neutral-900);
    margin-bottom: 1rem;
}

.section-offerings .section-subtitle {
    font-size: 1.125rem;
    color: var(--color-neutral-600);
    max-width: 600px;
    margin: 0 auto;
}

/* Offerings Grid */
.offerings-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

@media (max-width: 1024px) {
    .offerings-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .offerings-grid {
        grid-template-columns: 1fr;
    }
}

/* Offering Card */
.offering-card {
    background: #fff;
    border-radius: var(--radius-2xl);
    padding: 2rem;
    border: 1px solid var(--color-neutral-200);
    transition: all var(--transition-default);
}

.offering-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--color-brand-gold);
}

.offering-card .offering-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.1) 0%, rgba(201, 162, 39, 0.05) 100%);
    border-radius: var(--radius-xl);
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.offering-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-neutral-900);
    margin-bottom: 0.75rem;
}

.offering-card>p {
    font-size: 0.9375rem;
    color: var(--color-neutral-600);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.offering-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.offering-card li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0;
    font-size: 0.875rem;
    color: var(--color-neutral-700);
}

.offering-card li::before {
    content: '✓';
    color: var(--color-brand-gold);
    font-weight: 700;
}

/* ============================================
   Section: Why Choose Us
   סקשן למה לבחור בנו
   ============================================ */

.section-why-us {
    padding: 6rem 0;
    background: linear-gradient(180deg, #fff 0%, var(--color-neutral-50) 100%);
}

.section-why-us .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-why-us .section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--color-neutral-900);
    margin-bottom: 1rem;
}

.section-why-us .section-subtitle {
    font-size: 1.125rem;
    color: var(--color-neutral-600);
    max-width: 600px;
    margin: 0 auto;
}

/* Reasons Grid */
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

@media (max-width: 1024px) {
    .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .reasons-grid {
        grid-template-columns: 1fr;
    }
}

/* Reason Card */
.reason-card {
    position: relative;
    padding: 2rem;
}

.reason-card .reason-number {
    font-size: 4rem;
    font-weight: 900;
    color: rgba(201, 162, 39, 0.15);
    line-height: 1;
    margin-bottom: 1rem;
}

.reason-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-neutral-900);
    margin-bottom: 0.75rem;
}

.reason-card p {
    font-size: 0.9375rem;
    color: var(--color-neutral-600);
    line-height: 1.6;
}

/* ============================================
   CTA Section
   ============================================ */

.section-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--color-brand-dark) 0%, var(--color-brand-navy) 100%);
    text-align: center;
}

.section-cta .cta-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
}

.section-cta .cta-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.section-cta .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}
