/* Stiluri Generale pentru Secțiuni */
section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 1s forwards;
}

section:nth-of-type(2) {
    animation-delay: 0.2s;
}

section:nth-of-type(3) {
    animation-delay: 0.4s;
}

section:nth-of-type(4) {
    animation-delay: 0.6s;
}

h2 {
    font-size: 2.2rem;
    color: var(--main-blue);
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-align: center;
}

#despre {
    background: var(--white);
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(26, 54, 93, 0.07);
    margin-top: -3rem;
    margin-bottom: 2rem;
}

#despre p {
    font-size: 1.15rem;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

/* Stats Section (Cifre) */
#stats {
    background: var(--main-blue);
    color: var(--white);
    border-radius: 18px;
    margin-bottom: 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 400;
}

/* CTA Row (Interesat de ambarcațiuni) */
#cta-row {
    background: var(--white);
    text-align: center;
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(26, 54, 93, 0.07);
    margin-bottom: 4rem;
}

#cta-row h2 {
    margin-bottom: 2rem;
}



/* --- FLOATING STRUCTURES HOOK --- */
#floating-hook {
    background: #f5f7fa;
    border-radius: 24px;
    margin-bottom: 4rem;
    padding: 0;
    /* Resetăm padding-ul pentru a lăsa imaginea să respire */
    overflow: hidden;
}

.hook-container {
    display: flex;
    align-items: center;
    gap: 0;
}

.hook-content {
    flex: 1;
    padding: 4rem;
}

.hook-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--main-blue);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hook-content h2 {
    text-align: left;
    /* Aliniere pe stânga pentru contrast cu restul site-ului */
    margin-bottom: 1rem;
}

.hook-content p {
    font-size: 1.1rem;
    color: #f5f7fa;
    margin-bottom: 2rem;
}

.hook-features {
    list-style: none;
    margin-bottom: 2.5rem;
}

.hook-features li {
    margin-bottom: 0.8rem;
    font-weight: 700;
    color: var(--main-blue);
    display: flex;
    align-items: center;
    gap: 10px;
}

.hook-features i {
    color: var(--accent);
}

.hook-image {
    flex: 1;
    height: 500px;
    /* Înălțime fixă pentru impact vizual */
}

.hook-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Ajustări Mobil */
@media (max-width: 768px) {
    .stat-item {
        margin-bottom: 1.5rem;
    }

    section {
        padding: 2rem 1rem;
    }

    .hook-container {
        flex-direction: column;
    }

    .hook-content {
        padding: 3rem 2rem;
        order: 2;
    }

    .hook-image {
        width: 100%;
        height: 300px;
        order: 1;
    }
}