/* ==========================================================================
   HOME PAGE — INDUSTRIAL HERO
   ========================================================================== */

.ih-hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background: url('../img/industrial-foundry.webp') center center / cover no-repeat;
    padding-top: 90px;
    overflow: hidden;
}

.ih-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 48, 135, 0.3);
    z-index: 1;
}

.ih-hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

/* ---- GRID ---- */
.ih-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 60px;
    padding: 60px 0 80px;
}

/* ---- CONTENT LEFT ---- */
.ih-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--corporate-blue);
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 7px 16px;
    border-radius: 999px;
    width: fit-content;
    margin-bottom: 10px;
    animation: heroFadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

.ih-hero-title {
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    color: whitesmoke;
    margin-bottom: 22px;
    width: 100%;
    max-width: 100%;
    animation: heroFadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.ih-hero-desc {
    font-size: 1rem;
    color: whitesmoke;
    line-height: 1.75;
    max-width: 100%;
    margin-bottom: 36px;
    animation: heroFadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.35s both;
}

.ih-hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    animation: heroFadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
    width: 100%;
}

.ih-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 8px;
    border: 1px solid rgba(0, 48, 135, 0.4);
    color: #0f172a;
    background: rgba(255, 255, 255, 0.75);
    transition: all 0.25s ease;
    text-decoration: none;
    cursor: pointer;
}

.ih-btn-ghost:hover {
    background: #ffffff;
    border-color: var(--corporate-blue);
    color: var(--corporate-blue);
}

/* Trust pills */
.ih-trust {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    animation: heroFadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.65s both;
}

.ih-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #1e293b;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(0, 48, 135, 0.15);
    padding: 6px 14px;
    border-radius: 999px;
    width: fit-content;
}

.ih-trust-item i {
    color: var(--corporate-blue);
    font-size: 0.75rem;
}

/* ---- VISUAL RIGHT ---- */
.ih-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: heroFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

.ih-img-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.ih-hero-img {
    width: 100%;
    max-width: 420px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 40px rgba(0, 0, 0, 0.4));
    animation: float 6s ease-in-out infinite;
    display: block;
}

.ih-img-badge {
    position: absolute;
    bottom: -16px;
    left: 24px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.ih-img-badge i {
    color: var(--corporate-blue);
    font-size: 1.3rem;
}

.ih-img-badge strong {
    display: block;
    font-size: 0.82rem;
    font-weight: 800;
    color: #1e293b;
}

.ih-img-badge span {
    font-size: 0.7rem;
    color: #64748b;
}

/* ---- SLIDER DOTS override for light bg ---- */
.ih-hero .hero-slider-dots {
    margin-top: 0;
    margin-bottom: 28px;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
    .ih-hero-grid { grid-template-columns: 1fr; gap: 40px; padding: 50px 0 60px; }
    .ih-hero-title { font-size: 2.8rem; }
}

@media (max-width: 768px) {
    .ih-hero { padding-top: 68px; min-height: auto; }
    .ih-hero-grid { padding: 36px 0 50px; gap: 30px; }
    .ih-hero-title { font-size: 2rem; width: 100%; }
    .ih-hero-desc { font-size: 0.9rem; margin-bottom: 20px; }
    .ih-hero-cta { flex-direction: column; gap: 10px; margin-bottom: 20px; }
    .ih-hero-cta .btn, .ih-btn-ghost { width: 100%; justify-content: center; }
    .ih-img-card { padding: 16px; }
    .ih-hero-img { max-width: 100%; }
    .ih-img-badge { display: none; }
    .ih-trust { gap: 6px; }
    .ih-trust-item { font-size: 0.65rem; padding: 5px 10px; }
}

@media (max-width: 480px) {
    .ih-hero-title { font-size: 1.65rem; }
    .ih-hero-desc { font-size: 0.82rem; }
    .ih-badge { font-size: 0.62rem; padding: 5px 12px; }
    .ih-trust { gap: 5px; }
    .ih-trust-item { font-size: 0.58rem; padding: 4px 8px; }
    .ih-hero-cta .btn, .ih-btn-ghost { font-size: 0.78rem; padding: 12px 16px; }
}
