/* ===== Bassmah Landing - Hero Styles ===== */

.hero {
    position: relative;
    padding: 80px 0 60px;
    background: linear-gradient(160deg, #f8fffe 0%, #eaf7f0 30%, #e8f4fd 70%, #f0f4f8 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(39, 174, 96, 0.06) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(41, 128, 185, 0.06) 0%, transparent 50%);
    animation: heroGlow 15s ease-in-out infinite;
}

@keyframes heroGlow {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(-5%, 3%);
    }
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.02) 1px, transparent 1px),
                       linear-gradient(90deg, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    z-index: 1;
}

.hero-orb.orb-1 {
    width: 400px;
    height: 400px;
    background: rgba(39, 174, 96, 0.12);
    top: -100px;
    right: -100px;
    animation: orbFloat1 8s ease-in-out infinite;
}

.hero-orb.orb-2 {
    width: 300px;
    height: 300px;
    background: rgba(41, 128, 185, 0.1);
    bottom: -50px;
    left: 10%;
    animation: orbFloat2 10s ease-in-out infinite;
}

@keyframes orbFloat1 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-30px, 30px) scale(1.1);
    }
}

@keyframes orbFloat2 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(20px, -20px) scale(1.05);
    }
}

.hero-deco {
    position: absolute;
    z-index: 1;
    opacity: 0.1;
    pointer-events: none;
}

.hero-deco svg {
    width: 100%;
    height: 100%;
}

.hero-deco.hd-megaphone {
    width: 130px;
    height: 130px;
    top: 12%;
    left: 3%;
    animation: decoFloat1 7s ease-in-out infinite;
}

.hero-deco.hd-seo {
    width: 100px;
    height: 100px;
    bottom: 15%;
    right: 3%;
    animation: decoFloat2 6s ease-in-out infinite;
}

.hero-deco.hd-like {
    width: 80px;
    height: 80px;
    top: 20%;
    right: 8%;
    animation: decoFloat3 8s ease-in-out infinite;
}

.hero-deco.hd-graph {
    width: 110px;
    height: 110px;
    bottom: 8%;
    left: 8%;
    animation: decoFloat1 9s ease-in-out infinite;
}

.hero-deco.hd-mail {
    width: 70px;
    height: 70px;
    top: 55%;
    left: 2%;
    animation: decoFloat2 5s ease-in-out infinite;
}

.hero-deco.hd-target {
    width: 90px;
    height: 90px;
    top: 8%;
    right: 35%;
    animation: decoFloat3 7s ease-in-out infinite;
}

.hero-deco.hd-phone {
    width: 75px;
    height: 75px;
    bottom: 25%;
    right: 15%;
    animation: decoFloat1 6s ease-in-out infinite;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    padding-top: 40px;
    padding-bottom: 40px;
}

.hero-logo {
    margin-bottom: 20px;
}

.hero-logo img {
    height: 70px;
}

.hero-content h1 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 900;
    color: var(--dark);
    line-height: 1.35;
    margin-bottom: 22px;
}

.hero-content h1 .highlight-green {
    color: var(--accent);
}

.hero-content > p {
    font-size: 20px;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 18px;
}

.hero-content .brand-name {
    color: var(--accent);
    font-weight: 800;
}

.hero-highlight {
    background: rgba(39, 174, 96, 0.06);
    border-right: 4px solid var(--accent);
    padding: 18px 22px;
    border-radius: 0 14px 14px 0;
    margin-bottom: 32px;
}

.hero-highlight p {
    color: var(--text) !important;
    font-size: 18px !important;
    margin: 0 !important;
    line-height: 1.8 !important;
}

.hero-highlight .hl-brand {
    color: var(--primary-light);
    font-weight: 700;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: #fff;
    padding: 14px 30px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    font-family: 'Tajawal', sans-serif;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(39, 174, 96, 0.3);
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(39, 174, 96, 0.4);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: var(--dark);
    padding: 14px 30px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    font-family: 'Tajawal', sans-serif;
    border: 2px solid #e2e8f0;
    cursor: pointer;
    transition: var(--transition);
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 16px;
}

.hero-trust-item svg {
    color: var(--accent);
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 560px;
}

.hero-image-wrapper > img {
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    width: 100%;
    min-height: 500px;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.5);
}

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    inset: -20px;
    background: linear-gradient(135deg, rgba(39, 174, 96, 0.08), rgba(41, 128, 185, 0.06));
    border-radius: 32px;
    filter: blur(40px);
    z-index: -1;
}

.hero-float-card {
    position: absolute;
    background: #fff;
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 18px 24px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float 4s ease-in-out infinite;
    border: 1px solid #e8ecf1;
}

.hero-float-card.card-1 {
    top: 20px;
    right: -30px;
}

.hero-float-card.card-2 {
    bottom: 40px;
    left: -30px;
    animation-delay: 2s;
}

.hero-float-card.card-3 {
    bottom: -10px;
    right: 40px;
    animation-delay: 1s;
}

.hero-float-card .card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-float-card .card-icon.green {
    background: rgba(39, 174, 96, 0.1);
}

.hero-float-card .card-icon.blue {
    background: rgba(41, 128, 185, 0.1);
}

.hero-float-card .card-icon.gold {
    background: rgba(243, 156, 18, 0.1);
}

.hero-float-card .card-text strong {
    display: block;
    font-size: 16px;
    color: var(--dark);
}

.hero-float-card .card-text span {
    font-size: 14px;
    color: var(--text-light);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

/* ===== MARQUEE ===== */

.marquee-bar {
    background: linear-gradient(135deg, var(--accent), #1a8f4a);
    overflow: hidden;
    padding: 16px 0;
    white-space: nowrap;
}

.marquee-track {
    display: inline-flex;
    animation: marqueeScroll 20s linear infinite;
}

.marquee-text {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
}

.marquee-sep {
    color: rgba(255, 255, 255, 0.5);
    font-size: 18px;
    flex-shrink: 0;
    padding: 0 12px;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
