/* ===== Hero Section ===== */
.hero {
    height: 100vh;
    min-height: 700px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%), 
                url('background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.hero-content {
    max-width: 680px;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: 1px;
    opacity: 0;
    animation: fadeInUpScale 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.hero-title .net-part {
    color: #FF5252;
    text-shadow: 0 0 10px rgba(255, 82, 82, 0.5);
}

.hero-title .berry-part {
    color: white;
    position: relative;
}

.hero-title .berry-part::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #FF5252;
    transform: scaleX(0);
    transform-origin: left;
    animation: underlineGrow 1.2s ease 0.8s forwards;
}

.hero-title .logistics-part {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 0.8em;
    margin-left: 8px;
}

/* ===== Subtitles Section ===== */
/* Hero Subtitles Styling */
.hero-subtitles {
    margin: 1.5rem 0 2rem;
    padding-left: 0.5rem; /* Aligns with h1 text */
    opacity: 0;
    animation: fadeIn 0.8s ease 0.6s forwards;
}

.hero-subtitle {
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    line-height: 1.7;
    margin: 0.5rem 0;
    padding-left: 0.2rem; /* Reduced from 1.8rem */
    position: relative;
    color: rgba(255, 255, 255, 0.9);
    opacity: 0;
    transform: translateX(-10px);
}

.hero-subtitle::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #FF5252;
    font-size: 1.2rem; /* Reduced from 1.5rem */
    line-height: 1;
    margin-right: 0.4rem; /* Reduced from 0.8rem */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-subtitle {
        padding-left: 1rem;
        font-size: 1.1rem;
    }
    
    .hero-subtitle::before {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero-subtitle {
        padding-left: 0.8rem;
        font-size: 1rem;
    }
    
    .hero-subtitle::before {
        font-size: 1rem;
    }
}
.hero-subtitle:nth-child(1) {
    animation: fadeInLeft 0.6s ease 0.8s forwards;
}

.hero-subtitle:nth-child(2) {
    animation: fadeInLeft 0.6s ease 1s forwards;
}

.hero-subtitle:nth-child(3) {
    animation: fadeInLeft 0.6s ease 1.2s forwards;
}

/* ===== Buttons ===== */
.hero-buttons {
    display: flex;
    gap: 20px;
    opacity: 0;
    animation: fadeIn 0.8s ease 1.4s forwards;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn i {
    transition: transform 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #007bff 0%, #0062cc 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
}

.btn-primary:hover i {
    transform: translateX(3px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    background: white;
    color: #333;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
    border-color: white;
}

/* ===== Scroll Indicator ===== */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    opacity: 0;
    animation: fadeIn 1s ease 2s forwards;
}

.scroll-arrow {
    width: 20px;
    height: 30px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 15px;
    margin-top: 10px;
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 50%;
    width: 4px;
    height: 8px;
    background: white;
    border-radius: 2px;
    transform: translateX(-50%);
    animation: scrollBounce 1.5s infinite;
}

/* ===== Animations ===== */
@keyframes fadeInUpScale {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes underlineGrow {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

@keyframes scrollBounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(5px);
    }
}

/* ===== Responsive Design ===== */
@media (max-width: 992px) {
    .hero {
        min-height: 600px;
        background-attachment: scroll;
    }
    
    .container {
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 500px;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .hero-title {
        justify-content: center;
    }
    
    .hero-subtitle {
        padding-left: 0;
        text-align: center;
    }
    
    .hero-subtitle::before {
        display: none;
    }
    
    .hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero {
        min-height: 450px;
    }
    
    .hero-subtitles {
        margin: 1rem 0 2rem;
    }
    
    .hero-subtitle {
        margin: 0.5rem 0;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        padding: 14px 24px;
    }
}