/* Home / Hero section */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 4.5%;
    background-color: rgba(255,255,255,0.96);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    backdrop-filter: blur(8px);
    transition: padding 0.35s ease, box-shadow 0.35s ease;
}
.logo img { height: 80px; }
.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: #f0f4f8;
    padding: 9px 22px;
    border-radius: 999px;
}
.nav-links a {
    text-decoration: none;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}
.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-orange);
}

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 30px 5% 60px;
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 74px);
}
.hero-image-container {
    flex: 1.15;
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.hero-image {
    width: 100%;
    max-width: 640px;
    position: relative;
    z-index: 2;
    border: none;
    border-radius: 0;
    box-shadow: none;
    display: block;
}
.hero-content {
    flex: 1;
    padding-left: 20px;
    max-width: 520px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    margin-right: 80px;
}
.hero-title {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0;
    margin-bottom: 20px;
    margin-right: 20px;
    width: 100%;
}
.hero-word {
    display: block;
    line-height: 1.15;
}
.hero-delivering {
    font-size: clamp(2.4rem, 4vw, 3.2rem);
    font-weight: 800;
    color: #111827;
    line-height: 1.2;
}
.hero-experiences {
    font-size: clamp(4rem, 8.5vw, 6rem);
    font-weight: 800;
    color: var(--primary-orange);
    line-height: 1.0;
    text-align: right;
    align-self: flex-end;
    letter-spacing: -1px;
}
.hero-beyond {
    font-size: clamp(2.4rem, 4vw, 3.2rem);
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1.2;
}
.hero-content p {
    max-width: 420px;
    font-size: 0.97rem;
    color: var(--text-muted);
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    margin-bottom: 0;
}
.hero-buttons {
    display: flex;
    gap: 10px;
    margin-top: 100px;
    flex-wrap: wrap;
    justify-content: flex-end;
    margin-right: 40px;
}
.hero-buttons .btn-outline {
    background-color: transparent;
    color: var(--primary-blue);
    border: 2px solid #c9d0da;
}
.hero-buttons .btn-outline:hover {
    background-color: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(26, 54, 93, 0.2);
}

@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        text-align: center;
        min-height: auto;
        padding: 40px 5% 60px;
    }
    .hero-image-container {
        width: 85%;
        max-width: 480px;
        margin: 0 auto 24px;
        justify-content: center;
    }
    .hero-content {
        padding-left: 0;
        max-width: 100%;
        align-items: center;
        text-align: center;
    }
    .hero-title {
        align-items: center;
    }
    .hero-experiences {
        margin-right: 0;
    }
    .hero-content p {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 15px;
    }
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    .hero {
        padding-top: 40px;
    }
}
