/* ============================================================
   SHIVRAJ AGRO TECH — AEROPONIC TOWER PRODUCT PAGE
   Scoped exclusively to .shb-aero-* classes.
   Global style.css is NOT modified.
   ============================================================ */
/* ---------- Scoped Variables ---------- */
.shb-aero-page {
    --at-deep: #075b3a;
    --at-green: #138a4b;
    --at-fresh: #43a047;
    --at-light: #e8f5e9;
    --at-bg: #f7fbf8;
    --at-dark: #17211b;
    --at-white: #ffffff;
    --at-muted: #55605a;
    --at-soft: #f0f8f2;
    --at-radius: 14px;
    --at-shadow-sm: 0 3px 14px rgba(7, 91, 58, 0.07);
    --at-shadow-md: 0 10px 34px rgba(7, 91, 58, 0.12);
    --at-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}
/* ---------- Reveal System ---------- */
.shb-aero-reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.7s var(--at-ease), transform 0.7s var(--at-ease);
}
.shb-aero-reveal.shb-aero-visible {
    opacity: 1;
    transform: translateY(0);
}
.shb-aero-d1 {
    transition-delay: 0.08s;
}
.shb-aero-d2 {
    transition-delay: 0.16s;
}
.shb-aero-d3 {
    transition-delay: 0.24s;
}
.shb-aero-d4 {
    transition-delay: 0.32s;
}
/* ---------- Shared Typography/Labels ---------- */
.shb-aero-section {
    padding: 50px 0;
}
.shb-aero-label {
    display: block;
    font-family: "Poppins", sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 3.4px;
    color: #138a4b;
    margin-bottom: 12px;
}
.shb-aero-h2 {
    font-family: "Poppins", sans-serif;
    font-size: clamp(1.65rem, 3.4vw, 2.4rem);
    font-weight: 800;
    color: #17211b;
    margin: 0 0 14px;
}
.shb-aero-subhead {
    font-family: "Poppins", sans-serif;
    font-size: clamp(0.85rem, 1.6vw, 1rem);
    font-weight: 600;
    letter-spacing: 2.6px;
    color: #43a047;
    margin-bottom: 18px;
}
.shb-aero-subshb {
    font-size: 1rem;
    color: #55605a;
    max-width: 560px;
    margin: 0 auto;
}
.shb-aero-lead {
    font-size: 1.08rem;
    line-height: 1.85;
    color: #39423c;
    margin: 0 0 14px;
}
.shb-aero-body {
    font-size: 1rem;
    line-height: 1.85;
    color: #55605a;
    margin: 0 0 14px;
}
.shb-aero-body strong {
    color: #17211b;
}
/* ---------- Shared Buttons ---------- */
.shb-aero-btn-main,
.shb-aero-btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: "Poppins", sans-serif;
    font-size: 0.86rem;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 14px 28px;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.25s ease,
        box-shadow 0.3s ease;
    border: 2px solid #075b3a;
}
.shb-aero-btn-main {
    background: #075b3a;
    color: #ffffff;
}
.shb-aero-btn-main:hover,
.shb-aero-btn-main:focus-visible {
    background: #138a4b;
    border-color: #138a4b;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(19, 138, 75, 0.3);
}
.shb-aero-btn-ghost {
    background: transparent;
    color: #075b3a;
    border-color: rgba(7, 91, 58, 0.35);
}
.shb-aero-btn-ghost:hover,
.shb-aero-btn-ghost:focus-visible {
    background: #075b3a;
    border-color: #075b3a;
    color: #ffffff;
    transform: translateY(-2px);
}
.shb-aero-btn-main:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}
@media (max-width: 420px) {
    .shb-aero-btn-main,
    .shb-aero-btn-ghost {
        width: 100%;
    }
}
/* ============================================================
   1. BREADCRUMB
   ============================================================ */
.shb-aero-crumbs-wrap {
    background: #f7fbf8;
    border-bottom: 1px solid rgba(7, 91, 58, 0.07);
    padding: 92px 0 14px;
}
.shb-aero-crumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.shb-aero-crumb a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: "Poppins", sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1.4px;
    color: #138a4b;
    text-decoration: none;
    transition: color 0.25s ease;
}
.shb-aero-crumb a:hover {
    color: #075b3a;
}
.shb-aero-crumb-sep {
    color: #b9c8bf;
    font-size: 0.75rem;
}
.shb-aero-crumb-current {
    font-family: "Poppins", sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1.4px;
    color: #7d8782;
}
/* ============================================================
   2. HERO
   ============================================================ */
.shb-aero-hero {
    position: relative;
    background: #f7fbf8;
    padding: 54px 0 88px;
    overflow: hidden;
}
.shb-aero-hero-blob {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.shb-aero-hb-1 {
    width: 520px;
    height: 520px;
    top: -200px;
    right: -160px;
    background: radial-gradient(circle, rgba(67, 160, 71, 0.12) 0%, rgba(67, 160, 71, 0) 70%);
}
.shb-aero-hb-2 {
    width: 420px;
    height: 420px;
    bottom: -180px;
    left: -140px;
    background: radial-gradient(circle, rgba(19, 138, 75, 0.08) 0%, rgba(19, 138, 75, 0) 70%);
}
.shb-aero-leaf {
    position: absolute;
    color: rgba(19, 138, 75, 0.08);
    animation: shbAeroFloat 7s ease-in-out infinite;
    pointer-events: none;
}
.shb-aero-fl-1 {
    top: 14%;
    right: 26%;
    font-size: 90px;
}
.shb-aero-fl-2 {
    bottom: 12%;
    left: 2.5%;
    font-size: 64px;
    animation-delay: 2.4s;
}
@keyframes shbAeroFloat {
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-14px) rotate(5deg);
    }
}
.shb-aero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: "Poppins", sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 3.4px;
    color: #138a4b;
    margin-bottom: 18px;
}
.shb-aero-eyebrow-line {
    display: inline-block;
    width: 36px;
    height: 2px;
    background: #43a047;
    border-radius: 2px;
}
.shb-aero-title {
    font-family: "Poppins", sans-serif;
    font-size: clamp(2.4rem, 5.4vw, 4.1rem);
    font-weight: 900;
    line-height: 1.05;
    color: #17211b;
    margin: 0 0 12px;
}
.shb-aero-title-accent {
    color: #075b3a;
}
.shb-aero-tagline {
    font-family: "Poppins", sans-serif;
    font-size: clamp(0.85rem, 1.6vw, 1.02rem);
    font-weight: 600;
    letter-spacing: 3px;
    color: #43a047;
    margin: 0 0 18px;
}
.shb-aero-desc {
    font-size: 1.04rem;
    line-height: 1.8;
    color: #55605a;
    max-width: 520px;
    margin: 0 0 24px;
}
.shb-aero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 30px;
}
.shb-aero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    border: 1px solid rgba(19, 138, 75, 0.2);
    color: #075b3a;
    font-family: "Poppins", sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    padding: 9px 16px;
    border-radius: 50px;
    box-shadow: 0 2px 10px rgba(7, 91, 58, 0.05);
}
.shb-aero-badge i {
    color: #43a047;
}
.shb-aero-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}
@media (max-width: 420px) {
    .shb-aero-hero-actions {
        flex-direction: column;
    }
}
/* ============================================================
   GALLERY
   ============================================================ */
.shb-aero-gallery {
    display: flex;
    gap: 14px;
    align-items: stretch;
}
.shb-aero-main-frame {
    flex: 1 1 auto;
    position: relative;
}
.shb-aero-main-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 440px;
    background: #ffffff;
    border: 1px solid rgba(7, 91, 58, 0.1);
    border-radius: 18px;
    box-shadow: var(--at-shadow-md);
    padding: 26px;
    cursor: zoom-in;
    position: relative;
    overflow: hidden;
}
.shb-aero-main-btn::before {
    content: "";
    position: absolute;
    width: 70%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(67, 160, 71, 0.13) 0%, rgba(67, 160, 71, 0) 70%);
    pointer-events: none;
}
.shb-aero-main-img {
    position: relative;
    max-width: 100%;
    max-height: 470px;
    height: auto;
    width: auto;
    object-fit: contain;
    transition: transform 0.45s var(--at-ease), opacity 0.25s ease;
    filter: drop-shadow(0 16px 30px rgba(7, 91, 58, 0.14));
}
.shb-aero-main-btn:hover .shb-aero-main-img {
    transform: scale(1.04);
}
.shb-aero-main-img.shb-aero-img-fading {
    opacity: 0;
}
.shb-aero-zoom-hint {
    position: absolute;
    bottom: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(7, 91, 58, 0.85);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 2;
}
.shb-aero-main-btn:hover .shb-aero-zoom-hint {
    opacity: 1;
    transform: translateY(0);
}
/* Thumbnails — desktop vertical */
.shb-aero-thumbs-wrap {
    flex: 0 0 86px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.shb-aero-thumbs {
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow-y: auto;
    max-height: 440px;
    scrollbar-width: thin;
    scrollbar-color: rgba(19, 138, 75, 0.35) transparent;
    padding: 2px;
}
.shb-aero-thumbs::-webkit-scrollbar {
    width: 4px;
}
.shb-aero-thumbs::-webkit-scrollbar-thumb {
    background: rgba(19, 138, 75, 0.3);
    border-radius: 4px;
}
.shb-aero-thumb {
    flex: 0 0 auto;
    width: 82px;
    height: 82px;
    background: #ffffff;
    border: 2px solid rgba(7, 91, 58, 0.12);
    border-radius: 12px;
    padding: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.shb-aero-thumb:hover {
    border-color: #43a047;
    transform: translateY(-2px);
}
.shb-aero-thumb.shb-aero-thumb-active {
    border-color: #138a4b;
    box-shadow: 0 0 0 3px rgba(19, 138, 75, 0.18), 0 4px 14px rgba(7, 91, 58, 0.14);
}
.shb-aero-thumb-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    pointer-events: none;
}
.shb-aero-thumbs-arrow {
    display: none;
}
/* Gallery — mobile horizontal strip */
@media (max-width: 991.98px) {
    .shb-aero-gallery {
        flex-direction: column;
    }
    .shb-aero-main-btn {
        min-height: 320px;
        padding: 18px;
    }
    .shb-aero-main-img {
        max-height: 300px;
    }
    .shb-aero-thumbs-wrap {
        flex: none;
        flex-direction: row;
        align-items: center;
    }
    .shb-aero-thumbs {
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        max-height: none;
        width: 100%;
        scroll-behavior: smooth;
        padding: 4px 2px;
    }
    .shb-aero-thumbs::-webkit-scrollbar {
        height: 4px;
        width: auto;
    }
    .shb-aero-thumb {
        width: 74px;
        height: 74px;
    }
    .shb-aero-thumbs-arrow {
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 32px;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        border: 1px solid rgba(7, 91, 58, 0.18);
        background: #ffffff;
        color: #075b3a;
        font-size: 0.8rem;
        cursor: pointer;
        transition: background 0.25s ease, color 0.25s ease;
    }
    .shb-aero-thumbs-arrow:hover {
        background: #075b3a;
        color: #ffffff;
    }
    .shb-aero-thumbs-arrow i {
        transform: rotate(-90deg);
    }
}
@media (max-width: 575.98px) {
    .shb-aero-main-btn {
        min-height: 260px;
    }
    .shb-aero-main-img {
        max-height: 240px;
    }
    .shb-aero-thumbs-arrow {
        display: none;
    }
}
/* ============================================================
   LIGHTBOX
   ============================================================ */
.shb-aero-lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.shb-aero-lightbox[hidden] {
    display: none;
}
.shb-aero-lightbox.shb-aero-lb-open {
    opacity: 1;
}
.shb-aero-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 20, 14, 0.88);
    backdrop-filter: blur(6px);
}
.shb-aero-lightbox-frame {
    position: relative;
    z-index: 2;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    max-width: min(88vw, 900px);
}
.shb-aero-lightbox-img {
    max-width: 88vw;
    max-height: 80vh;
    object-fit: contain;
    background: #ffffff;
    border-radius: 14px;
    padding: 18px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
    transition: opacity 0.2s ease, transform 0.3s var(--at-ease);
}
.shb-aero-lb-open .shb-aero-lightbox-img {
    transform: scale(1);
}
.shb-aero-lightbox-img.shb-aero-lb-fading {
    opacity: 0;
}
.shb-aero-lightbox-cap {
    font-family: "Poppins", sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.85);
}
.shb-aero-lightbox-btn {
    position: absolute;
    z-index: 3;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(6px);
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.shb-aero-lightbox-btn:hover {
    background: #138a4b;
    color: #ffffff;
    transform: scale(1.06);
}
.shb-aero-lightbox-close {
    top: 20px;
    right: 20px;
}
.shb-aero-lightbox-prev {
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
}
.shb-aero-lightbox-next {
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
}
.shb-aero-lightbox-prev:hover {
    transform: translateY(-50%) translateX(-3px);
}
.shb-aero-lightbox-next:hover {
    transform: translateY(-50%) translateX(3px);
}
body.shb-aero-lb-lock {
    overflow: hidden;
}
@media (max-width: 575.98px) {
    .shb-aero-lightbox-btn {
        width: 40px;
        height: 40px;
    }
    .shb-aero-lightbox-prev {
        left: 8px;
    }
    .shb-aero-lightbox-next {
        right: 8px;
    }
}
/* ============================================================
   3. INTRO + MINI CARDS
   ============================================================ */
.shb-aero-intro {
    background: #ffffff;
}
.shb-aero-mini-card {
    background: var(--at-soft);
    border: 1px solid rgba(7, 91, 58, 0.07);
    border-radius: var(--at-radius);
    padding: 26px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    height: 100%;
    text-align: center;
    transition: transform 0.3s var(--at-ease), box-shadow 0.3s var(--at-ease), background 0.3s ease;
}
.shb-aero-mini-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--at-shadow-md);
    background: #ffffff;
}
.shb-aero-mini-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--at-light);
    color: var(--at-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: background 0.3s ease, color 0.3s ease;
}
.shb-aero-mini-card:hover .shb-aero-mini-icon {
    background: var(--at-deep);
    color: #ffffff;
}
.shb-aero-mini-text {
    font-family: "Poppins", sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    color: #17211b;
}
/* ============================================================
   AEROPONIC MODEL IMAGE SHOWCASE
   ============================================================ */
.shb-aero-model-card {
    position: relative;
    background: #ffffff;
    border: 1px solid rgba(7, 91, 58, 0.1);
    border-radius: 18px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.shb-aero-model-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(7, 91, 58, 0.14);
    border-color: rgba(19, 138, 75, 0.35);
}
/* ============================================================
   PRODUCT IMAGE
   ============================================================ */
.shb-aero-model-image-wrap {
    position: relative;
    width: 100%;
    height: 270px;
    background: linear-gradient(145deg, #f7fbf8 0%, #eef7f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
/* subtle decorative glow */
.shb-aero-model-image-wrap::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(67, 160, 71, 0.08);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.5s ease;
}
.shb-aero-model-card:hover .shb-aero-model-image-wrap::before {
    transform: translate(-50%, -50%) scale(1.3);
}
/* actual product image */
.shb-aero-model-image {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 18px;
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.shb-aero-model-card:hover .shb-aero-model-image {
    transform: scale(1.07);
}
/* ============================================================
   IMAGE BADGE
   ============================================================ */
.shb-aero-model-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 5;
    background: #075b3a;
    color: #ffffff;
    padding: 7px 12px;
    border-radius: 50px;
    font-family: "Poppins", sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(7, 91, 58, 0.2);
}
/* ============================================================
   IMAGE OVERLAY ICON
   ============================================================ */
.shb-aero-model-image-overlay {
    position: absolute;
    right: 15px;
    top: 15px;
    z-index: 5;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    color: #075b3a;
    opacity: 0;
    transform: translateY(-5px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.shb-aero-model-card:hover .shb-aero-model-image-overlay {
    opacity: 1;
    transform: translateY(0);
}
/* ============================================================
   CONTENT
   ============================================================ */
.shb-aero-model-content {
    padding: 22px 22px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
/* ============================================================
   TITLE
   ============================================================ */
.shb-aero-model-title {
    font-family: "Poppins", sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #075b3a;
    line-height: 1;
    margin: 0 0 18px;
}
.shb-aero-model-title span {
    display: block;
    margin-top: 6px;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: #43a047;
}
/* ============================================================
   SPECIFICATION LIST
   ============================================================ */
.shb-aero-model-list {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
}
.shb-aero-model-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 9px 0;
    font-size: 0.8rem;
    border-bottom: 1px dashed rgba(7, 91, 58, 0.1);
}
.shb-aero-model-list li:last-child {
    border-bottom: none;
}
.shb-aero-model-list span {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #7d8782;
}
.shb-aero-model-list span i {
    color: #138a4b;
    font-size: 0.9rem;
    width: 17px;
}
.shb-aero-model-list b {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    color: #17211b;
    text-align: right;
    white-space: nowrap;
}

/* ============================================================
   ENQUIRE BUTTON
   ============================================================ */
.shb-aero-model-btn {
    margin-top: auto;
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-family: "Poppins", sans-serif;
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 1.2px;
    padding: 12px 18px;
    border-radius: 9px;
    background: transparent;
    color: #075b3a;
    border: 2px solid rgba(7, 91, 57, 0.479);
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.25s ease;
}
.shb-aero-model-btn i {
    transition: transform 0.3s ease;
}
.shb-aero-model-btn:hover {
    background: #075b3a;
    border-color: #075b3a;
    color: #ffffff;
    transform: translateY(-2px);
}
.shb-aero-model-btn:hover i {
    transform: translateX(4px);
}

/* ============================================================
   ENQUIRE BUTTON
   ============================================================ */
.shb-call-model-btn {
    margin-top: auto;
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-family: "Poppins", sans-serif;
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 1.2px;
    padding: 12px 18px;
    border-radius: 9px;
    background: transparent;
    color: #2980b9;
    border: 2px solid rgba(41, 127, 185, 0.507);
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.25s ease;
}
.shb-call-model-btn i {
    transition: transform 0.3s ease;
}
.shb-call-model-btn:hover {
    background: #2980b9;
    border-color: #12486d;
    color: #ffffff;
    transform: translateY(-2px);
}
.shb-call-model-btn:hover i {
    transform: translateX(4px);
}
/* ============================================================
   SELECTED CARD
   ============================================================ */
.shb-aero-model-card.shb-aero-model-selected {
    border-color: #075b3a;
    box-shadow: 0 0 0 3px rgba(7, 91, 58, 0.12), 0 18px 45px rgba(7, 91, 58, 0.14);
}
.shb-aero-model-selected .shb-aero-model-btn {
    background: #075b3a;
    border-color: #075b3a;
    color: #ffffff;
}
/* ============================================================
   MOBILE
   ============================================================ */
@media (max-width: 767px) {
    .shb-aero-model-image-wrap {
        height: 250px;
    }
    .shb-aero-model-content {
        padding: 20px;
    }
    .shb-aero-model-title {
        font-size: 1.8rem;
    }
    .shb-aero-model-image {
        padding: 15px;
    }
}
/* ============================================================
   5. SPECIFICATIONS
   ============================================================ */
.shb-aero-specs {
    background: #ffffff;
}
.shb-aero-spec-grid {
    display: grid;
    grid-template-columns: 2fr 2fr;
    gap: 14px;
}
@media (max-width: 767.98px) {
    .shb-aero-spec-grid {
        grid-template-columns: 1fr;
    }
}
.shb-aero-spec {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--at-bg);
    border: 1px solid rgba(7, 91, 58, 0.07);
    border-radius: 12px;
    padding: 18px 20px;
    transition: transform 0.3s var(--at-ease), box-shadow 0.3s var(--at-ease), background 0.3s ease;
}
.shb-aero-spec:hover {
    transform: translateY(-4px);
    box-shadow: var(--at-shadow-sm);
    background: #ffffff;
}
.shb-aero-spec-icon {
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--at-light);
    color: var(--at-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    transition: background 0.3s ease, color 0.3s ease;
}
.shb-aero-spec:hover .shb-aero-spec-icon {
    background: var(--at-deep);
    color: #ffffff;
}
.shb-aero-spec-k {
    display: block;
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: #7d8782;
    margin-bottom: 3px;
}
.shb-aero-spec-v {
    display: block;
    font-family: "Poppins", sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    color: #17211b;
    line-height: 1.4;
}
/* ============================================================
   6. FEATURES
   ============================================================ */
.shb-aero-features {
    background: var(--at-bg);
}
.shb-aero-feature {
    position: relative;
    background: #ffffff;
    border: 1px solid rgba(7, 91, 58, 0.08);
    border-radius: var(--at-radius);
    padding: 30px 24px;
    height: 100%;
    overflow: hidden;
    transition: transform 0.3s var(--at-ease), box-shadow 0.3s var(--at-ease);
}
.shb-aero-feature::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--at-fresh), var(--at-green));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--at-ease);
}
.shb-aero-feature:hover {
    transform: translateY(-6px);
    box-shadow: var(--at-shadow-md);
}
.shb-aero-feature:hover::before {
    transform: scaleX(1);
}
.shb-aero-feature-num {
    position: absolute;
    top: 12px;
    right: 16px;
    font-family: "Poppins", sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--at-light);
    line-height: 1;
}
.shb-aero-feature-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: var(--at-light);
    color: var(--at-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 16px;
    transition: background 0.3s ease, color 0.3s ease;
}
.shb-aero-feature:hover .shb-aero-feature-icon {
    background: var(--at-deep);
    color: #ffffff;
}
.shb-aero-feature-title {
    font-family: "Poppins", sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.6px;
    color: #17211b;
    margin: 0 0 10px;
}
.shb-aero-feature-text {
    font-size: 0.87rem;
    line-height: 1.65;
    color: #55605a;
    margin: 0;
}
/* ============================================================
   7. CROPS
   ============================================================ */
.shb-aero-crops {
    background: #ffffff;
}
.shb-aero-crop-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    max-width: 860px;
    margin: 0 auto;
}
.shb-aero-crop {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--at-soft);
    border: 1px solid rgba(19, 138, 75, 0.15);
    color: #075b3a;
    font-family: "Poppins", sans-serif;
    font-size: 0.84rem;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 50px;
    transition: background 0.3s ease, color 0.3s ease, transform 0.25s ease, border-color 0.3s ease;
    cursor: default;
}
.shb-aero-crop:hover {
    background: var(--at-deep);
    border-color: var(--at-deep);
    color: #ffffff;
    transform: translateY(-3px);
}
.shb-aero-crop i {
    color: #43a047;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}
.shb-aero-crop:hover i {
    color: #ffffff;
}
.shb-aero-crops-note {
    text-align: center;
    margin-top: 26px;
    font-size: 0.95rem;
    color: #7d8782;
    font-style: italic;
}
/* ============================================================
   8. HOW IT WORKS
   ============================================================ */
.shb-aero-works {
    background: var(--at-bg);
}
.shb-aero-step {
    background: #ffffff;
    border: 1px solid rgba(7, 91, 58, 0.08);
    border-radius: var(--at-radius);
    padding: 32px 26px;
    text-align: center;
    height: 100%;
    transition: transform 0.3s var(--at-ease), box-shadow 0.3s var(--at-ease);
}
.shb-aero-step:hover {
    transform: translateY(-6px);
    box-shadow: var(--at-shadow-md);
}
.shb-aero-step-num {
    font-family: "Poppins", sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: #43a047;
}
.shb-aero-step-icon {
    width: 66px;
    height: 66px;
    margin: 14px auto 16px;
    border-radius: 50%;
    background: var(--at-light);
    color: var(--at-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s var(--at-ease);
}
.shb-aero-step:hover .shb-aero-step-icon {
    background: var(--at-deep);
    color: #ffffff;
    transform: scale(1.06);
}
.shb-aero-step-title {
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    color: #17211b;
    margin: 0 0 10px;
}
.shb-aero-step-text {
    font-size: 0.88rem;
    line-height: 1.65;
    color: #55605a;
    margin: 0;
}
/* Flow Diagram */
.shb-aero-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    background: #ffffff;
    border: 1px solid rgba(7, 91, 58, 0.08);
    border-radius: 16px;
    padding: 28px 22px;
}
.shb-aero-flow-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 108px;
    padding: 14px 12px;
    background: var(--at-bg);
    border: 1px solid rgba(7, 91, 58, 0.08);
    border-radius: 12px;
}
.shb-aero-flow-node i {
    font-size: 1.4rem;
    color: var(--at-green);
}
.shb-aero-flow-node span {
    font-family: "Poppins", sans-serif;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 1.4px;
    color: #17211b;
    text-align: center;
}
.shb-aero-flow-end {
    background: var(--at-deep);
    border-color: var(--at-deep);
}
.shb-aero-flow-end i,
.shb-aero-flow-end span {
    color: #ffffff;
}
.shb-aero-flow-arrow {
    color: #43a047;
    font-size: 1.1rem;
}
.shb-aero-flow-arrow i {
    transform: rotate(-90deg);
}
@media (max-width: 767.98px) {
    .shb-aero-flow {
        flex-direction: column;
    }
    .shb-aero-flow-node {
        width: 100%;
        max-width: 280px;
    }
    .shb-aero-flow-arrow i {
        transform: none;
    }
}
/* ============================================================
   9. WHAT IS AEROPONICS
   ============================================================ */
.shb-aero-what {
    background: #ffffff;
}
.shb-aero-word-break {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}
.shb-aero-word-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--at-soft);
    border: 1px solid rgba(19, 138, 75, 0.15);
    padding: 10px 18px;
    border-radius: 10px;
}
.shb-aero-word-main {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-size: 1rem;
    color: var(--at-deep);
    letter-spacing: 1px;
}
.shb-aero-word-eq {
    color: #7d8782;
}
.shb-aero-word-mean {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: var(--at-fresh);
}
.shb-aero-formula {
    background: var(--at-bg);
    border: 1px solid rgba(7, 91, 58, 0.08);
    border-radius: 16px;
    padding: 30px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}
.shb-aero-formula-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    border: 1px solid rgba(7, 91, 58, 0.1);
    border-radius: 12px;
    padding: 14px 16px;
    min-width: 84px;
}
.shb-aero-formula-item i {
    font-size: 1.5rem;
    color: var(--at-green);
}
.shb-aero-formula-item span {
    font-family: "Poppins", sans-serif;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 1.6px;
    color: #17211b;
}
.shb-aero-formula-plus,
.shb-aero-formula-eq {
    font-family: "Poppins", sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: #43a047;
}
.shb-aero-formula-result {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    background: var(--at-deep);
    border-radius: 12px;
    padding: 16px 18px;
    min-width: 110px;
}
.shb-aero-formula-result i {
    font-size: 1.5rem;
    color: #ffffff;
}
.shb-aero-formula-result span {
    font-family: "Poppins", sans-serif;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 1.6px;
    color: #ffffff;
    text-align: center;
    line-height: 1.5;
}
@media (max-width: 575.98px) {
    .shb-aero-formula {
        padding: 22px 14px;
        gap: 7px;
    }
    .shb-aero-formula-item {
        min-width: 68px;
        padding: 11px 10px;
    }
}
/* ============================================================
   10. COMPARISON
   ============================================================ */
.shb-aero-compare {
    background: var(--at-bg);
}
.shb-aero-cmp-card {
    background: #ffffff;
    border: 1px solid rgba(7, 91, 58, 0.08);
    border-radius: 16px;
    padding: 30px 28px;
    height: 100%;
    transition: transform 0.3s var(--at-ease), box-shadow 0.3s var(--at-ease);
}
.shb-aero-cmp-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--at-shadow-md);
}
.shb-aero-cmp-head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}
.shb-aero-cmp-head-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--at-light);
    color: var(--at-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}
.shb-aero-cmp-icon-deep {
    background: var(--at-deep);
    color: #ffffff;
}
.shb-aero-cmp-title {
    font-family: "Poppins", sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: #17211b;
    margin: 0 0 5px;
}
.shb-aero-cmp-tag {
    display: inline-block;
    font-family: "Poppins", sans-serif;
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 4px 12px;
    border-radius: 50px;
}
.shb-aero-cmp-tag-green {
    background: var(--at-light);
    color: var(--at-deep);
}
.shb-aero-cmp-tag-deep {
    background: #e3ede7;
    color: var(--at-deep);
}
.shb-aero-cmp-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.shb-aero-cmp-list li {
    display: flex;
    gap: 4px;
    font-size: 0.92rem;
    line-height: 1.65;
    color: #4c5651;
    padding: 7px 0;
    border-bottom: 1px dashed rgba(7, 91, 58, 0.08);
}
.shb-aero-cmp-list li:last-child {
    border-bottom: none;
}
.shb-aero-cmp-list i {
    color: #43a047;
    font-size: 1.2rem;
    flex-shrink: 0;
}
/* ============================================================
   11. NFT
   ============================================================ */
.shb-aero-nft {
    background: #ffffff;
}
.shb-aero-nft-note {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--at-soft);
    border-left: 3px solid var(--at-green);
    border-radius: 8px;
    padding: 14px 18px;
    font-size: 0.9rem;
    color: #39423c;
    margin-top: 20px;
}
.shb-aero-nft-note i {
    color: var(--at-green);
    font-size: 1rem;
    flex-shrink: 0;
}
.shb-aero-nft-diagram {
    background: var(--at-bg);
    border: 1px solid rgba(7, 91, 58, 0.08);
    border-radius: 16px;
    padding: 30px 26px 22px;
    text-align: center;
}
.shb-aero-nft-top {
    display: flex;
    justify-content: space-around;
    padding: 0 24px;
}
.shb-aero-nft-plant {
    font-size: 1.7rem;
    color: var(--at-fresh);
    animation: shbAeroFloat 5s ease-in-out infinite;
}
.shb-aero-nft-plant:nth-child(2) {
    animation-delay: 0.7s;
}
.shb-aero-nft-plant:nth-child(3) {
    animation-delay: 1.4s;
}
.shb-aero-nft-plant:nth-child(4) {
    animation-delay: 2.1s;
}
.shb-aero-nft-lid {
    display: flex;
    justify-content: space-around;
    padding: 10px 20px;
    background: #2f3a33;
    border-radius: 8px 8px 0 0;
    margin-top: 6px;
}
.shb-aero-nft-hole {
    width: 26px;
    height: 8px;
    background: #10160f;
    border-radius: 50%;
}
.shb-aero-nft-channel {
    position: relative;
    height: 54px;
    background: #42504a;
    border-radius: 0 0 10px 10px;
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    overflow: hidden;
    padding: 0 24px;
}
.shb-aero-nft-root {
    width: 4px;
    height: 26px;
    background: repeating-linear-gradient(#d8cab8 0 4px, #b9a68f 4px 8px);
    border-radius: 0 0 4px 4px;
    position: relative;
    z-index: 1;
}
.shb-aero-nft-water {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 16px;
    background: linear-gradient(90deg, rgba(67, 160, 71, 0.5), rgba(19, 138, 75, 0.65), rgba(67, 160, 71, 0.5));
    background-size: 200% 100%;
    animation: shbAeroWater 4s linear infinite;
}
@keyframes shbAeroWater {
    0% {
        background-position: 0% 0;
    }
    100% {
        background-position: 200% 0;
    }
}
.shb-aero-nft-flow {
    margin-top: 14px;
    font-size: 0.78rem;
    color: #7d8782;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.shb-aero-nft-flow i {
    color: var(--at-green);
}
/* ============================================================
   12. BENEFITS
   ============================================================ */
.shb-aero-benefits {
    background: var(--at-bg);
}
.shb-aero-benefit {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #ffffff;
    border: 1px solid rgba(7, 91, 58, 0.08);
    border-radius: var(--at-radius);
    padding: 24px 22px;
    height: 100%;
    transition: transform 0.3s var(--at-ease), box-shadow 0.3s var(--at-ease);
}
.shb-aero-benefit:hover {
    transform: translateY(-5px);
    box-shadow: var(--at-shadow-md);
}
.shb-aero-benefit-icon {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--at-light);
    color: var(--at-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: background 0.3s ease, color 0.3s ease;
}
.shb-aero-benefit:hover .shb-aero-benefit-icon {
    background: var(--at-deep);
    color: #ffffff;
}
.shb-aero-benefit-title {
    font-family: "Poppins", sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    color: #17211b;
    margin: 0 0 8px;
}
.shb-aero-benefit-text {
    font-size: 0.86rem;
    line-height: 1.65;
    color: #55605a;
    margin: 0;
}
.shb-aero-footnote {
    margin-top: 22px;
    font-size: 0.78rem;
    color: #90a096;
    text-align: center;
}
/* ============================================================
   13. COMPONENTS
   ============================================================ */
.shb-aero-components {
    background: #ffffff;
}
.shb-aero-component {
    background: var(--at-bg);
    border: 1px solid rgba(7, 91, 58, 0.07);
    border-radius: 12px;
    padding: 22px 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    height: 100%;
    text-align: center;
    transition: transform 0.3s var(--at-ease), box-shadow 0.3s var(--at-ease);
}
.shb-aero-component:hover {
    transform: translateY(-5px);
    box-shadow: var(--at-shadow-sm);
    background: #ffffff;
}
.shb-aero-component-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--at-light);
    color: var(--at-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}
.shb-aero-component-name {
    font-family: "Poppins", sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: #17211b;
    line-height: 1.4;
}
.shb-aero-package {
    margin-top: 30px;
    background: var(--at-soft);
    border: 1px dashed rgba(19, 138, 75, 0.3);
    border-radius: var(--at-radius);
    padding: 24px 26px;
}
.shb-aero-package-head {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: "Poppins", sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--at-deep);
    margin-bottom: 16px;
}
.shb-aero-package-head i {
    color: var(--at-green);
    font-size: 1.1rem;
}
.shb-aero-package-items {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.shb-aero-package-item {
    background: #ffffff;
    border: 1px solid rgba(7, 91, 58, 0.1);
    border-radius: 8px;
    padding: 7px 14px;
    font-size: 0.8rem;
    font-weight: 500;
    color: #39423c;
}
.shb-aero-package-note {
    margin: 16px 0 0;
    font-size: 0.76rem;
    color: #90a096;
}
@media (max-width: 575.98px) {
    .shb-aero-package {
        padding: 20px 18px;
    }
}
/* ============================================================
   14. ABS
   ============================================================ */
.shb-aero-abs {
    background: var(--at-bg);
}
.shb-aero-abs-card {
    background: #ffffff;
    border: 1px solid rgba(7, 91, 58, 0.08);
    border-radius: var(--at-radius);
    padding: 26px 22px;
    height: 100%;
    text-align: center;
    transition: transform 0.3s var(--at-ease), box-shadow 0.3s var(--at-ease);
}
.shb-aero-abs-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--at-shadow-md);
}
.shb-aero-abs-letter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--at-deep);
    color: #ffffff;
    font-family: "Poppins", sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 14px;
}
.shb-aero-abs-name {
    font-family: "Poppins", sans-serif;
    font-size: 0.98rem;
    font-weight: 700;
    color: #17211b;
    margin: 0 0 10px;
}
.shb-aero-abs-text {
    font-size: 0.86rem;
    line-height: 1.6;
    color: #55605a;
    margin: 0;
}
/* ============================================================
   15. IMAGE STRIP
   ============================================================ */
.shb-aero-strip {
    background: #ffffff;
    padding-top: 72px;
}
.shb-aero-strip-frame {
    background: var(--at-bg);
    border: 1px solid rgba(7, 91, 58, 0.08);
    border-radius: 14px;
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 260px;
    cursor: zoom-in;
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s var(--at-ease);
}
.shb-aero-strip-frame:hover {
    box-shadow: var(--at-shadow-md);
    transform: translateY(-4px);
}
.shb-aero-strip-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.4s var(--at-ease);
}
.shb-aero-strip-frame:hover .shb-aero-strip-img {
    transform: scale(1.05);
}
@media (max-width: 575.98px) {
    .shb-aero-strip-frame {
        height: 200px;
    }
}
/* ============================================================
   16. CTA
   ============================================================ */
.shb-aero-cta {
    position: relative;
    background: linear-gradient(135deg, #075b3a 0%, #0d7548 60%, #138a4b 100%);
    padding: 96px 0;
    overflow: hidden;
}
.shb-aero-cta-blob {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.shb-aero-cb-1 {
    width: 400px;
    height: 400px;
    top: -180px;
    right: -110px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
}
.shb-aero-cb-2 {
    width: 320px;
    height: 320px;
    bottom: -160px;
    left: -90px;
    background: radial-gradient(circle, rgba(67, 160, 71, 0.3) 0%, rgba(67, 160, 71, 0) 70%);
}
.shb-aero-cta-leaf {
    position: absolute;
    color: rgba(255, 255, 255, 0.07);
    animation: shbAeroFloat 7s ease-in-out infinite;
    pointer-events: none;
}
.shb-aero-cl-1 {
    top: 14%;
    left: 7%;
    font-size: 92px;
}
.shb-aero-cl-2 {
    bottom: 12%;
    right: 6%;
    font-size: 112px;
    animation-delay: 2.5s;
}
.shb-aero-cta-title {
    font-family: "Poppins", sans-serif;
    font-size: clamp(1.7rem, 3.8vw, 2.7rem);
    font-weight: 800;
    letter-spacing: 0.5px;
    color: #ffffff;
    margin: 0 0 16px;
}
.shb-aero-cta-desc {
    font-size: 1.02rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.82);
    max-width: 620px;
    margin: 0 auto 32px;
}
.shb-aero-cta-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}
.shb-aero-cta-btn1,
.shb-aero-cta-btn2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: "Poppins", sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 1.2px;
    padding: 15px 34px;
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid #ffffff;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.25s ease,
        box-shadow 0.3s ease;
}
.shb-aero-cta-btn1 {
    background: #ffffff;
    color: #075b3a;
}
.shb-aero-cta-btn1:hover {
    background: #e8f5e9;
    border-color: #e8f5e9;
    color: #075b3a;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}
.shb-aero-cta-btn2 {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.5);
}
.shb-aero-cta-btn2:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: #075b3a;
    transform: translateY(-2px);
}
@media (max-width: 420px) {
    .shb-aero-cta-btns {
        flex-direction: column;
    }
}
/* ============================================================
   ENQUIRY MODAL (scoped overrides)
   ============================================================ */
.shb-aero-modal .shb-aero-modal-content {
    border: none;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.25);
}
.shb-aero-modal .shb-aero-modal-head {
    background: linear-gradient(135deg, #075b3a, #138a4b);
    border: none;
    padding: 24px 26px;
}
.shb-aero-modal-title {
    font-family: "Poppins", sans-serif;
    font-size: 1.06rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: #ffffff;
    margin: 0;
}
.shb-aero-modal-sub {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.75);
    margin: 6px 0 0;
}
.shb-aero-modal .shb-aero-modal-close {
    filter: brightness(0) invert(1);
    opacity: 0.85;
}
.shb-aero-modal .shb-aero-modal-body {
    padding: 26px;
}
.shb-aero-form-label {
    display: block;
    font-family: "Poppins", sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.6px;
    color: #17211b;
    margin-bottom: 7px;
}
.shb-aero-req {
    color: #d9534f;
}
.shb-aero-form-input {
    width: 100%;
    background: #f7fbf8;
    border: 1.5px solid rgba(7, 91, 58, 0.14);
    border-radius: 8px;
    padding: 12px 15px;
    font-family: "Inter", sans-serif;
    font-size: 0.9rem;
    color: #17211b;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.shb-aero-form-input:focus {
    outline: none;
    border-color: #138a4b;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(19, 138, 75, 0.12);
}
.shb-aero-form-input.shb-aero-input-error {
    border-color: #d9534f;
    box-shadow: 0 0 0 3px rgba(217, 83, 79, 0.1);
}
.shb-aero-form-error {
    display: block;
    font-size: 0.76rem;
    color: #d9534f;
    margin-top: 5px;
    min-height: 14px;
}
.shb-aero-form-submit {
    width: 100%;
    margin-top: 6px;
}
.shb-aero-form-success {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #e8f5e9;
    border: 1px solid rgba(19, 138, 75, 0.25);
    border-radius: 8px;
    padding: 11px 14px;
    font-size: 0.84rem;
    color: #075b3a;
    margin-bottom: 14px;
}
.shb-aero-form-success i {
    color: #138a4b;
    font-size: 1rem;
    flex-shrink: 0;
}
/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
    .shb-aero-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .shb-aero-leaf,
    .shb-aero-cta-leaf,
    .shb-aero-nft-plant {
        animation: none;
    }
    .shb-aero-nft-water {
        animation: none;
    }
    .shb-aero-main-btn:hover .shb-aero-main-img,
    .shb-aero-strip-frame:hover .shb-aero-strip-img {
        transform: none;
    }
}

/* ============================================================
   AEROPONIC TOWER SETUP VIDEOS
   ============================================================ */

.shb-aero-video-section {
    padding: 100px 0;
    background: #f7faf8;
    overflow: hidden;
}

/* Header */

.shb-aero-video-header {
    max-width: 760px;
    margin: 0 auto 55px;
}

.shb-aero-video-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: "Poppins", sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: #138a4b;
}

.shb-aero-video-eyebrow-line {
    width: 32px;
    height: 2px;
    background: #138a4b;
    display: inline-block;
}

.shb-aero-video-heading {
    margin: 14px 0 16px;
    font-family: "Poppins", sans-serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.15;
    font-weight: 800;
    color: #17211b;
}

.shb-aero-video-heading span {
    color: #075b3a;
    display: block;
}

.shb-aero-video-intro {
    max-width: 650px;
    margin: auto;
    color: #6f7d75;
    font-size: 1rem;
    line-height: 1.8;
}

/* Video Grid */

.shb-aero-video-grid {
    margin-top: 10px;
}

/* Video Card */

.shb-aero-video-card {
    position: relative;
    height: 100%;
    background: #ffffff;
    border: 1px solid rgba(7, 91, 58, 0.1);
    border-radius: 18px;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.shb-aero-video-card:hover {
    transform: translateY(-7px);
    border-color: rgba(19, 138, 75, 0.3);
    box-shadow: 0 18px 45px rgba(7, 91, 58, 0.12);
}

/* Number */

.shb-aero-video-number {
    position: absolute;
    z-index: 3;
    top: 15px;
    left: 15px;

    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #075b3a;
    color: #ffffff;

    font-family: "Poppins", sans-serif;
    font-size: 0.78rem;
    font-weight: 700;

    box-shadow: 0 5px 18px rgba(7, 91, 58, 0.25);
}

/* Video */

.shb-aero-video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    background: #17211b;
    overflow: hidden;
}

.shb-aero-video-wrapper video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* Content */

.shb-aero-video-content {
    padding: 25px 24px 27px;
}

.shb-aero-video-label {
    display: inline-block;
    margin-bottom: 8px;

    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 1.8px;
    color: #138a4b;
}

.shb-aero-video-content h3 {
    margin: 0 0 9px;

    font-family: "Poppins", sans-serif;
    font-size: 1.12rem;
    font-weight: 700;
    color: #17211b;
}

.shb-aero-video-content p {
    margin: 0;

    color: #7d8782;
    font-size: 0.88rem;
    line-height: 1.7;
}

/* Bottom CTA */

.shb-aero-video-cta {
    margin-top: 55px;

    padding: 28px 32px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;

    background: #075b3a;
    border-radius: 16px;
    color: #ffffff;
}

.shb-aero-video-cta-small {
    display: block;
    margin-bottom: 6px;

    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #a9dfbe;
}

.shb-aero-video-cta h3 {
    margin: 0 0 5px;

    font-family: "Poppins", sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
}

.shb-aero-video-cta p {
    margin: 0;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.88rem;
}

/* CTA Button */

.shb-aero-video-cta-btn {
    flex-shrink: 0;

    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding: 13px 21px;

    border-radius: 8px;

    background: #ffffff;
    color: #075b3a;

    font-family: "Poppins", sans-serif;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.8px;

    text-decoration: none;

    transition: transform 0.25s ease, background 0.25s ease;
}

.shb-aero-video-cta-btn:hover {
    background: #f2f7f4;
    color: #075b3a;
    transform: translateY(-2px);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 991px) {
    .shb-aero-video-section {
        padding: 80px 0;
    }

    .shb-aero-video-cta {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 767px) {
    .shb-aero-video-section {
        padding: 65px 0;
    }

    .shb-aero-video-header {
        margin-bottom: 38px;
    }

    .shb-aero-video-heading {
        font-size: 2rem;
    }

    .shb-aero-video-intro {
        font-size: 0.92rem;
    }

    .shb-aero-video-cta {
        padding: 25px 22px;
    }

    .shb-aero-video-cta-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .shb-aero-video-section {
        padding: 55px 0;
    }

    .shb-aero-video-content {
        padding: 21px 19px 23px;
    }
}
