/* ============================================
   SHIPLYSTIC — PREMIUM HERO SECTION V2
   Modern SaaS Logistics Landing
   Animated Courier Background + Glassmorphism
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --sl-red: #E10006;
    --sl-red-dk: #b80005;
    --sl-red-lt: #ff3d43;
    --sl-dark-bg: #030712;
    --sl-glass: rgba(255, 255, 255, 0.05);
    --sl-glass-border: rgba(255, 255, 255, 0.1);
    --sl-white: #ffffff;
    --sl-text-muted: rgba(255, 255, 255, 0.7);
    --sl-font-hero: 'Outfit', sans-serif;
    --sl-accent: #f97316;
    --sl-emerald: #10b981;
    --sl-blue: #3b82f6;
    --sl-indigo: #6366f1;
}

/* ===== HERO SECTION ===== */
.sl-hero {
    position: relative;
    min-height: calc(100vh - 110px);
    overflow: hidden;
    background: var(--sl-dark-bg);
    font-family: var(--sl-font-hero);
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 1;
}

/* ===== ANIMATED BACKGROUND ===== */
.sl-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.sl-hero__bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 10% 40%, rgba(225, 0, 6, 0.12), transparent 45%),
        radial-gradient(circle at 90% 20%, rgba(99, 102, 241, 0.1), transparent 45%),
        radial-gradient(circle at 50% 90%, rgba(16, 185, 129, 0.06), transparent 40%);
}

.sl-hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    animation: sl-breathe 12s ease-in-out infinite alternate;
}

.sl-hero__orb--1 {
    width: 550px;
    height: 550px;
    background: rgba(225, 0, 6, 0.18);
    top: -15%;
    left: -8%;
}

.sl-hero__orb--2 {
    width: 450px;
    height: 450px;
    background: rgba(99, 102, 241, 0.15);
    bottom: -15%;
    right: 5%;
    animation-delay: 3s;
}

.sl-hero__grid {
    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;
    mask-image: linear-gradient(to bottom, black 30%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 30%, transparent 100%);
    animation: sl-gridPan 40s linear infinite;
}

/* ===== COURIER ANIMATED BACKGROUND SVGs ===== */
.sl-hero__courier-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.sl-courier-element {
    position: absolute;
    opacity: 0.08;
    will-change: transform;
}

/* Delivery Truck 1 */
.sl-courier-truck-1 {
    bottom: 12%;
    left: -120px;
    animation: sl-truckDrive 22s linear infinite;
    opacity: 0.07;
}
.sl-courier-truck-1 svg {
    width: 100px;
    height: 60px;
    fill: var(--sl-white);
}

/* Delivery Truck 2 */
.sl-courier-truck-2 {
    top: 15%;
    right: -120px;
    animation: sl-truckDriveReverse 28s linear infinite;
    animation-delay: 5s;
    opacity: 0.05;
}
.sl-courier-truck-2 svg {
    width: 80px;
    height: 48px;
    fill: var(--sl-red-lt);
    transform: scaleX(-1);
}

/* Package Icons */
.sl-courier-package-1 {
    top: 25%;
    left: 8%;
    animation: sl-packageFloat 8s ease-in-out infinite alternate;
    opacity: 0.06;
}
.sl-courier-package-1 svg {
    width: 40px;
    height: 40px;
    fill: var(--sl-accent);
}

.sl-courier-package-2 {
    bottom: 20%;
    right: 12%;
    animation: sl-packageFloat 10s ease-in-out infinite alternate-reverse;
    animation-delay: 2s;
    opacity: 0.05;
}
.sl-courier-package-2 svg {
    width: 35px;
    height: 35px;
    fill: var(--sl-emerald);
}

.sl-courier-package-3 {
    top: 60%;
    left: 20%;
    animation: sl-packageFloat 7s ease-in-out infinite alternate;
    animation-delay: 4s;
    opacity: 0.04;
}
.sl-courier-package-3 svg {
    width: 30px;
    height: 30px;
    fill: var(--sl-blue);
}

/* Location Pins */
.sl-courier-pin-1 {
    top: 35%;
    right: 20%;
    animation: sl-pinBounce 3s ease-in-out infinite;
    opacity: 0.07;
}
.sl-courier-pin-1 svg {
    width: 28px;
    height: 35px;
    fill: var(--sl-red);
}

.sl-courier-pin-2 {
    bottom: 30%;
    left: 15%;
    animation: sl-pinBounce 3.5s ease-in-out infinite;
    animation-delay: 1.5s;
    opacity: 0.06;
}
.sl-courier-pin-2 svg {
    width: 24px;
    height: 30px;
    fill: var(--sl-accent);
}

/* Route dotted lines */
.sl-courier-route {
    position: absolute;
    top: 45%;
    left: 0;
    width: 100%;
    height: 2px;
    opacity: 0.04;
}
.sl-courier-route svg {
    width: 100%;
    height: 60px;
}

/* Shipping Arrows */
.sl-courier-arrow-1 {
    top: 18%;
    left: 30%;
    animation: sl-arrowMove 6s ease-in-out infinite;
    opacity: 0.05;
}
.sl-courier-arrow-1 svg {
    width: 50px;
    height: 20px;
    fill: var(--sl-white);
}

.sl-courier-arrow-2 {
    bottom: 25%;
    right: 30%;
    animation: sl-arrowMove 8s ease-in-out infinite reverse;
    animation-delay: 3s;
    opacity: 0.04;
}
.sl-courier-arrow-2 svg {
    width: 45px;
    height: 18px;
    fill: var(--sl-red-lt);
}

/* Warehouse */
.sl-courier-warehouse {
    bottom: 8%;
    right: 8%;
    animation: sl-warehousePulse 6s ease-in-out infinite alternate;
    opacity: 0.05;
}
.sl-courier-warehouse svg {
    width: 60px;
    height: 50px;
    fill: var(--sl-text-muted);
}

/* ===== COURIER ANIMATION KEYFRAMES ===== */
@keyframes sl-truckDrive {
    0% { transform: translateX(-150px); }
    100% { transform: translateX(calc(100vw + 150px)); }
}

@keyframes sl-truckDriveReverse {
    0% { transform: translateX(150px); }
    100% { transform: translateX(calc(-100vw - 150px)); }
}

@keyframes sl-packageFloat {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
    100% { transform: translateY(10px) rotate(-3deg); }
}

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

@keyframes sl-arrowMove {
    0% { transform: translateX(0) scale(1); opacity: 0.05; }
    50% { transform: translateX(30px) scale(1.1); opacity: 0.08; }
    100% { transform: translateX(0) scale(1); opacity: 0.05; }
}

@keyframes sl-warehousePulse {
    0% { transform: scale(1); opacity: 0.04; }
    100% { transform: scale(1.05); opacity: 0.07; }
}

@keyframes sl-gridPan {
    0% { transform: translateY(0); }
    100% { transform: translateY(60px); }
}

@keyframes sl-breathe {
    0% { transform: scale(1) translate(0, 0); }
    50% { transform: scale(1.15) translate(25px, -25px); }
    100% { transform: scale(0.9) translate(-25px, 25px); }
}

/* ===== CONTENT CONTAINER ===== */
.sl-hero__content {
    position: relative;
    z-index: 5;
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-top: 10px;
}

.sl-hero__row {
    flex: 1;
    margin-bottom: 10px;
}

/* ===== LEFT PANEL ===== */
.sl-hero__left {
    padding-right: 20px;
    animation: sl-slideRight 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.sl-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 4px 14px 4px 10px;
    background: linear-gradient(90deg, rgba(225, 0, 6, 0.15), rgba(225, 0, 6, 0.05));
    border: 1px solid rgba(225, 0, 6, 0.4);
    border-radius: 50px;
    color: var(--sl-white);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    box-shadow: 0 4px 20px rgba(225, 0, 6, 0.25), inset 0 0 10px rgba(225, 0, 6, 0.1);
    backdrop-filter: blur(10px);
}

.sl-hero__badge-dot {
    width: 6px;
    height: 6px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 8px #10b981;
    animation: sl-pulse 2s infinite;
}

.sl-hero__heading {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--sl-white);
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.sl-hero__heading span {
    background: linear-gradient(135deg, var(--sl-red-lt), var(--sl-accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* ===== WIDGET FORM ===== */
.sl-hero__widget {
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    position: relative;
    width: 100%;
    max-width: 550px;
    z-index: 10;
    animation: sl-slideUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    animation-delay: 0.4s;
    opacity: 0;
}

.sl-hero__widget::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(225, 0, 6, 0.8), transparent);
    animation: sl-sweepGradient 4s linear infinite;
}

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

/* Tabs */
.sl-hero__tabs {
    display: flex;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.sl-hero__tab {
    flex: 1;
    padding: 8px 6px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    font-family: var(--sl-font-hero);
}

.sl-hero__tab:hover {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.03);
}

.sl-hero__tab--active {
    color: var(--sl-white);
    background: rgba(255, 255, 255, 0.05);
}

.sl-hero__tab--active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--sl-red);
    box-shadow: 0 0 10px var(--sl-red);
}

.sl-hero__tab i {
    font-size: 1.1em;
}

/* Tab Content */
.sl-hero__tab-content {
    display: none;
    padding: 15px 20px;
}

.sl-hero__tab-content--active {
    display: block;
    animation: sl-fadeInScale 0.3s ease-out forwards;
}

.sl-hero__form {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.sl-hero__input-wrap {
    flex: 1;
    min-width: 140px;
    position: relative;
    display: flex;
    align-items: center;
}

.sl-hero__input-wrap>i {
    position: absolute;
    left: 14px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
    z-index: 2;
}

.sl-hero__input-wrap input {
    width: 100%;
    padding: 11px 14px 11px 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.4);
    color: var(--sl-white);
    font-size: 0.95rem;
    font-family: var(--sl-font-hero);
    outline: none;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.sl-hero__input-wrap i {
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.sl-hero__input-wrap input:focus {
    border-color: rgba(225, 0, 6, 0.8);
    background: rgba(0, 0, 0, 0.7);
    box-shadow: 0 0 15px rgba(225, 0, 6, 0.3), inset 0 0 10px rgba(225, 0, 6, 0.1);
    transform: translateY(-2px);
}

.sl-hero__input-wrap input:focus+i,
.sl-hero__input-wrap:focus-within i {
    color: var(--sl-red-lt);
    transform: scale(1.1);
}

.sl-hero__input-wrap input::placeholder {
    color: rgba(255, 255, 255, 0.3);
    transition: opacity 0.3s;
}

.sl-hero__input-wrap input:focus::placeholder {
    opacity: 0.6;
}

.sl-hero__submit-btn {
    padding: 11px 22px;
    background: linear-gradient(135deg, var(--sl-red), var(--sl-red-dk));
    color: var(--sl-white);
    border: none;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    box-shadow: 0 5px 15px rgba(225, 0, 6, 0.3);
    font-family: var(--sl-font-hero);
}

.sl-hero__submit-btn:hover {
    background: linear-gradient(135deg, var(--sl-red-lt), var(--sl-red));
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px rgba(225, 0, 6, 0.5), 0 0 15px rgba(225, 0, 6, 0.3);
}

.sl-hero__submit-btn:active {
    transform: translateY(1px);
    box-shadow: 0 5px 10px rgba(225, 0, 6, 0.3);
}

/* ===== RIGHT PANEL — NO BORDER IMAGE ===== */
.sl-hero__right {
    position: relative;
    animation: sl-slideLeft 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

@media (min-width: 992px) {
    .sl-hero__right {
        margin-left: 0;
    }
}

.sl-hero__visual-wrap {
    position: relative;
    width: 100%;
    perspective: 1200px;
}

/* Main Image — NO border/card/box */
.sl-hero__hero-img {
    position: relative;
    z-index: 2;
    border-radius: 16px;
    overflow: hidden;
    /* Soft shadow without border */
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.5));
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.6s ease;
    animation: sl-mainImgFloat 8s ease-in-out infinite alternate;
}

.sl-hero__hero-img:hover {
    transform: translateY(-8px) scale(1.01);
    filter: drop-shadow(0 35px 60px rgba(0, 0, 0, 0.6));
}

.sl-hero__hero-img img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

/* Subtle glow behind image */
.sl-hero__img-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(ellipse at center, rgba(225, 0, 6, 0.1) 0%, transparent 70%);
    z-index: 1;
    border-radius: 30px;
    pointer-events: none;
    animation: sl-glowPulse 5s ease-in-out infinite alternate;
}

/* Carousel Styles */
.sl-hero__hero-img .carousel-inner {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    background: transparent;
    overflow: hidden;
}

.sl-hero__hero-img .carousel-item {
    height: 100%;
}

.sl-hero__hero-img .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    border-radius: 16px;
}

/* Carousel Controls */
.sl-hero__hero-img .carousel-control-prev,
.sl-hero__hero-img .carousel-control-next {
    width: 40px;
    height: 40px;
    top: 50%;
    transform: translateY(-50%);
    bottom: unset;
    opacity: 0;
    transition: opacity 0.3s;
}

.sl-hero__hero-img:hover .carousel-control-prev,
.sl-hero__hero-img:hover .carousel-control-next {
    opacity: 1;
}

.sl-hero__hero-img .carousel-control-prev {
    left: 12px;
}

.sl-hero__hero-img .carousel-control-next {
    right: 12px;
}

.sl-hero__hero-img .carousel-control-prev-icon,
.sl-hero__hero-img .carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    background-size: 14px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.15);
}

.sl-hero__hero-img .carousel-indicators {
    margin-bottom: 14px;
    gap: 6px;
    z-index: 15;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    padding: 6px 14px;
    background: rgba(0, 0, 0, 0.35);
    border-radius: 20px;
    backdrop-filter: blur(8px);
}

.sl-hero__hero-img .carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.5);
    transition: all 0.3s;
    padding: 0;
    margin: 0 2px;
    cursor: pointer;
    opacity: 1;
}

.sl-hero__hero-img .carousel-indicators button.active {
    background: var(--sl-red);
    width: 26px;
    border-radius: 10px;
    box-shadow: 0 0 12px var(--sl-red);
}

/* ===== FLOATING NOTIFICATION CARDS ===== */
.sl-float-group {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 20;
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
    transform: translateY(10px);
}
.sl-float-group.active {
    opacity: 1;
    transform: translateY(0);
}

.sl-hero__float-card {
    position: absolute;
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 16px;
    padding: 12px 18px;
    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.08),
        0 6px 15px rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 20;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: #1e293b;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    pointer-events: auto; /* restore pointer events for hover */
}

.sl-hero__float-card:hover {
    transform: scale(1.06) translateY(-6px) !important;
    background: #ffffff;
    box-shadow:
        0 25px 45px rgba(0, 0, 0, 0.12),
        0 10px 25px rgba(0, 0, 0, 0.05);
    z-index: 25;
}

.sl-hero__float-card--1 {
    top: -8%;
    left: -10%;
    animation: sl-floatCard1 5s ease-in-out infinite alternate;
    animation-delay: 0.5s;
}

.sl-hero__float-card--2 {
    bottom: 0%;
    right: -5%;
    animation: sl-floatCard2 6s ease-in-out infinite alternate-reverse;
    animation-delay: 1s;
}

/* Card Designs */
.sl-hero__float-card--pill {
    border-radius: 50px;
    padding: 12px 24px;
}
.sl-hero__float-card--pill .sl-hero__float-icon {
    border-radius: 50%;
}

.sl-hero__float-card--square {
    border-radius: 10px;
    border-left: 4px solid #E10006;
}
.sl-hero__float-card--square .sl-hero__float-icon {
    border-radius: 8px;
}

/* Notification Icons */
.sl-hero__float-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    position: relative;
    background: #E10006; /* Red background */
    color: #ffffff;      /* White icon */
    box-shadow: 0 4px 15px rgba(225, 0, 6, 0.25);
}

.sl-hero__float-icon--reverse {
    background: #ffffff;
    color: #E10006;
    border: 1px solid rgba(225, 0, 6, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.sl-hero__float-text {
    font-size: 0.85rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0px;
    color: #E10006; /* Heading color red */
}

.sl-hero__float-text small {
    display: block;
    font-weight: 500;
    color: #64748b;
    font-size: 0.72rem;
    margin-top: 1px;
    letter-spacing: 0.1px;
}

/* Status Indicator Dot on Float Card */
.sl-hero__float-icon::before {
    content: '';
    position: absolute;
    top: -3px;
    right: -3px;
    width: 10px;
    height: 10px;
    background: #10b981;
    border-radius: 50%;
    border: 2px solid #ffffff;
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.4);
}

.sl-hero__float-icon-blue-dot::before {
    background: #3b82f6;
    box-shadow: 0 0 8px rgba(59, 130, 246, 0.4);
    animation: sl-pulse 2s infinite;
}

/* ===== COURIER VECTOR ILLUSTRATIONS ===== */
.sl-hero__vectors {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
}

.sl-vector {
    position: absolute;
    opacity: 0.12;
}

/* Delivery Person */
.sl-vector--delivery {
    bottom: 5%;
    left: -2%;
    animation: sl-vectorFloat 7s ease-in-out infinite alternate;
}
.sl-vector--delivery svg {
    width: 120px;
    height: 140px;
    fill: rgba(255, 255, 255, 0.6);
}

/* Route Map */
.sl-vector--route {
    top: 8%;
    right: 5%;
    animation: sl-vectorFloat 9s ease-in-out infinite alternate-reverse;
    opacity: 0.08;
}
.sl-vector--route svg {
    width: 100px;
    height: 80px;
    fill: rgba(225, 0, 6, 0.4);
}

/* ===== KEYFRAMES ===== */
@keyframes sl-pulse {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

@keyframes sl-iconPulseGreen {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.15); opacity: 0; }
}

@keyframes sl-iconPulseBlue {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.15); opacity: 0; }
}

@keyframes sl-slideRight {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes sl-slideLeft {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes sl-slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes sl-fadeInScale {
    from { opacity: 0; transform: scale(0.98); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes sl-floatCard1 {
    0% { transform: translateY(0) translateX(0); }
    100% { transform: translateY(-12px) translateX(5px); }
}

@keyframes sl-floatCard2 {
    0% { transform: translateY(0) translateX(0); }
    100% { transform: translateY(10px) translateX(-5px); }
}

@keyframes sl-mainImgFloat {
    0% { transform: translateY(-5px); }
    100% { transform: translateY(5px); }
}

@keyframes sl-glowPulse {
    0% { opacity: 0.4; }
    100% { opacity: 1; }
}

@keyframes sl-vectorFloat {
    0% { transform: translateY(0) translateX(0); }
    100% { transform: translateY(-15px) translateX(10px); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .sl-hero__heading {
        font-size: clamp(2.2rem, 4vw, 3.5rem);
    }

    .sl-hero__float-card--1 {
        left: -3%;
        top: -3%;
    }

    .sl-hero__float-card--2 {
        right: -2%;
    }
}

@media (max-width: 992px) {
    .sl-hero {
        height: auto;
        min-height: auto;
    }

    .sl-hero__content {
        padding-top: 80px;
        padding-bottom: 40px;
        display: block;
    }

    .sl-hero__row {
        flex-direction: column;
        text-align: center;
    }

    .sl-hero__left {
        padding-right: 0;
        margin-bottom: 50px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .sl-hero__right {
        margin-bottom: 40px;
    }

    .sl-hero__visual-wrap {
        max-width: 600px;
        margin: 0 auto;
    }

    .sl-hero__hero-img {
        animation: none;
    }

    .sl-hero__float-card--1 {
        top: -4%;
        left: 2%;
    }

    .sl-hero__float-card--2 {
        bottom: -4%;
        right: 2%;
    }

    .sl-hero__vectors {
        display: none;
    }
}

@media (max-width: 768px) {
    .sl-hero__badge {
        display: none;
    }

    .sl-hero__float-card {
        display: none;
    }

    .sl-hero__form {
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
    }

    .sl-hero__input-wrap {
        width: 100%;
        min-width: unset;
    }

    .sl-hero__submit-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .sl-hero__tab {
        font-size: 0.75rem;
        padding: 10px 4px;
        gap: 4px;
    }

    .sl-hero__tab i {
        font-size: 0.9rem;
    }

    .sl-hero__tab-content {
        padding: 15px 12px;
    }

    .sl-hero__courier-bg {
        display: none;
    }

    .sl-hero__vectors {
        display: none;
    }

    .sl-hero__img-glow {
        display: none;
    }

    .sl-hero__hero-img {
        animation: none;
        filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.4));
    }
}

@media (max-width: 576px) {
    .sl-hero__content {
        padding-top: 30px;
        padding-bottom: 20px;
        padding-left: 15px;
        padding-right: 15px;
        width: 100%;
        max-width: 100%;
    }

    .sl-hero__row {
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }

    .sl-hero__heading {
        font-size: 1.8rem;
        text-align: center;
        width: 100%;
    }

    .sl-hero__left {
        padding-left: 0;
        padding-right: 0;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .sl-hero__widget {
        margin-left: auto;
        margin-right: auto;
        width: 100%;
        max-width: 100%;
        border-radius: 12px;
    }
    
    .sl-hero__input-wrap input {
        padding: 10px 12px 10px 38px;
        font-size: 0.85rem;
    }
    
    .sl-hero__input-wrap i {
        left: 12px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .sl-hero {
        min-height: auto;
    }

    .sl-hero__heading {
        font-size: 1.6rem;
    }

    .sl-hero__tab {
        font-size: 0.7rem;
        padding: 12px 4px;
        flex-direction: column;
        gap: 4px;
    }
    
    .sl-hero__tab i {
        font-size: 1rem;
        margin-bottom: 2px;
    }

    .sl-hero__submit-btn {
        padding: 10px 15px;
        font-size: 0.85rem;
    }
}