/* ═══════════════════════════════════════════
   Global Azhari Hero Section – 51ea329e
   ═══════════════════════════════════════════ */

/* Hero Wrapper */
.gah-51ea329e-hero {
    position: relative;
    width: 100%;
    padding: 80px 20px 60px;
    overflow: hidden;
    font-family: 'Roboto', sans-serif;
}

.gah-51ea329e-inner {
    max-width: 1200px;
    margin: 0 auto;
}

/* ── Content Block ── */
.gah-51ea329e-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

/* Badge */
.gah-51ea329e-badge {
    display: inline-block;
    padding: 6px 20px;
    border-radius: 50px;
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

/* Heading */
.gah-51ea329e-heading {
    font-family: 'Roboto Slab', 'Roboto', serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 24px;
}

.gah-51ea329e-heading em {
    font-style: italic;
    font-weight: 600;
}

/* Description */
.gah-51ea329e-desc {
    font-family: 'Roboto', sans-serif;
    font-size: 17px;
    line-height: 1.75;
    max-width: 680px;
    margin: 0 auto 36px;
}

/* ── Buttons ── */
.gah-51ea329e-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.gah-51ea329e-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 30px;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    white-space: nowrap;
}

.gah-51ea329e-btn-primary {
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(110, 193, 228, 0.35);
}

.gah-51ea329e-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(110, 193, 228, 0.5);
    filter: brightness(1.08);
}

.gah-51ea329e-btn-secondary {
    background-color: transparent;
    border-width: 2px;
    border-style: solid;
}

.gah-51ea329e-btn-secondary:hover {
    background-color: #54595F;
    color: #ffffff !important;
    border-color: #54595F !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(84, 89, 95, 0.3);
}

/* ── Floating Gallery ── */
.gah-51ea329e-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    padding: 20px 0;
    perspective: 1000px;
}

.gah-51ea329e-card {
    background: #ffffff;
    padding: 10px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
    transform: rotate(var(--gah-rot, 0deg));
    animation: gah51ea329eFloat 6s ease-in-out infinite;
    animation-delay: var(--gah-delay, 0ms);
    width: 220px;
    flex-shrink: 0;
}

.gah-51ea329e-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

.gah-51ea329e-card-caption {
    display: block;
    text-align: center;
    padding: 10px 6px 4px;
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    font-weight: 500;
}

.gah-51ea329e-card:hover {
    transform: rotate(0deg) scale(1.05) translateY(-6px);
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

/* Floating animation */
@keyframes gah51ea329eFloat {
    0%, 100% { transform: rotate(var(--gah-rot, 0deg)) translateY(0); }
    50%      { transform: rotate(var(--gah-rot, 0deg)) translateY(-10px); }
}

.gah-51ea329e-card:hover {
    animation-play-state: paused;
}

/* ── Fade-up Animation ── */
.gah-51ea329e-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.gah-51ea329e-fade-up.gah-51ea329e-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .gah-51ea329e-heading {
        font-size: 38px;
    }
    .gah-51ea329e-card {
        width: 190px;
    }
    .gah-51ea329e-card img {
        height: 140px;
    }
}

@media (max-width: 767px) {
    .gah-51ea329e-hero {
        padding: 50px 16px 40px;
    }
    .gah-51ea329e-content {
        margin-bottom: 40px;
    }
    .gah-51ea329e-heading {
        font-size: 28px;
    }
    .gah-51ea329e-desc {
        font-size: 15px;
    }
    .gah-51ea329e-buttons {
        flex-direction: column;
        align-items: center;
    }
    .gah-51ea329e-btn {
        width: 100%;
        max-width: 280px;
    }
    .gah-51ea329e-gallery {
        gap: 16px;
    }
    .gah-51ea329e-card {
        width: calc(50% - 12px);
        animation: none;
        transform: rotate(0deg);
    }
    .gah-51ea329e-card img {
        height: 120px;
    }
}

@media (max-width: 480px) {
    .gah-51ea329e-heading {
        font-size: 24px;
    }
    .gah-51ea329e-card {
        width: 100%;
        max-width: 260px;
    }
}
