/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 926px;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-size: cover;
    background-position: center;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    position: absolute;
    width: 634px;
    height: 100px;
    left: calc(50% - 634px/2);
    top: 307px;
    font-family: 'Alexandria';
    font-style: normal;
    font-weight: 500;
    font-size: 72px;
    line-height: 100px;
    text-align: center;
    letter-spacing: -0.03em;
    color: #FFFFFF;
    margin: 0;
}

.hero-subtitle {
    position: absolute;
    width: 1039px;
    height: 55px;
    left: calc(50% - 1039px/2 - 0.5px);
    top: 439px;
    font-family: 'Alexandria';
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 230%;
    text-align: center;
    letter-spacing: -0.01em;
    color: #F2F5F8;
    margin: 0;
}

.breadcrumb-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0;
    gap: 11px;
    position: absolute;
    width: 250px;
    height: 40px;
    left: calc(50% - 222px/2 - 0.5px);
    top: 594px;
}

.breadcrumb-nav span {
    font-family: 'Alexandria';
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 200%;
    text-align: center;
    letter-spacing: -0.01em;
    color: #CFD5DD;
}

.breadcrumb-nav svg {
    width: 24px;
    height: 24px;
    flex: none;
}

/* Section shared styles (used by management section) */
.section-header {
    text-align: center;
    margin-bottom: 100px;
}

.section-title {
    font-size: 56px;
    font-weight: 600;
    line-height: 1.3;
    color: #246B6E;
    margin-bottom: 40px;
}

.section-description {
    font-size: 24px;
    font-weight: 400;
    line-height: 29.25px;
    color: #4D5663;
    max-width: 1756px;
    margin: 0 auto;
}

/* Management Section */
.management-section {
    padding: 119px 80px;
}

.management-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px 20px;
    max-width: 1760px;
    margin: 0 auto;
}

.management-card {
    background: rgba(255, 255, 255, 0.7);
    border: 2.5px solid #76D2CE;
    border-radius: 16px;
    box-shadow: 0px 4px 4.2px -13px rgba(0, 0, 0, 0.1);
    padding: 72.5px 50.5px;
    height: 345px;
    display: flex;
    flex-direction: column;
    gap: 90px;
}

.management-card-header {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

.management-card-icon {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.management-card-title {
    font-size: 28px;
    font-weight: 400;
    line-height: 41px;
    color: #050814;
    text-align: right;
}

.management-card-description {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.81;
    color: #232A36;
    text-align: right;
}

/* Booking Management Section */
.booking-management {
    position: relative;
    height: 717px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 0 80px;
}

.booking-management::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(59.23deg, rgba(0, 17, 17, 0.9) 7.4%, rgba(30, 77, 77, 0.45) 100.48%, rgba(0, 0, 0, 0) 107.29%);
}

.booking-content {
    position: relative;
    z-index: 1;
    max-width: 743px;
    color: white;
    text-align: center;
}

.booking-title {
    font-size: 32px;
    font-weight: 400;
    line-height: 41px;
    margin-bottom: 32px;
}

.booking-description {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.81;
    color: #E4E8EE;
    margin-bottom: 40px;
}

.btn-activate {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 48px;
    height: 56px;
    background: linear-gradient(69.54deg, #CCAA63 55.115%, #B99656 93.66%);
    border-radius: 16px;
    box-shadow: 0px 5.945px 8.918px -5px rgba(194, 166, 107, 0.6);
    font-size: 20px;
    font-weight: 500;
    color: white;
    text-decoration: none;
    transition: opacity 0.2s;
}

.btn-activate:hover {
    opacity: 0.88;
    color: white;
}

/* Responsive */
@media (max-width: 1199.98px) {
    .hero-title {
        font-size: 60px;
        line-height: 80px;
    }

    .section-title {
        font-size: 42px;
    }

    .management-cards {
        gap: 40px 20px;
    }
}

@media (max-width: 991.98px) {
    .management-section {
        padding: 60px 40px;
    }

    .hero-section {
        height: 600px;
    }


    .hero-title {
        font-size: 48px;
        line-height: 60px;
        width: 90%;
        left: 5%;
    }

    .hero-subtitle {
        width: 90%;
        left: 5%;
        font-size: 18px;
    }

    .section-title {
        font-size: 36px;
    }

    .service-cards,
    .management-cards {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 575.98px) {
    .hero-section {
        height: 500px;
    }

    .services-section {
     
    }

    .hero-title {
        font-size: 36px;
        line-height: 48px;
        top: 200px;
    }

    .hero-subtitle {
        font-size: 16px;
        top: 320px;
    }

    .breadcrumb-nav {
        top: 420px;
    }

    .booking-management {
        height: 500px;
        padding: 0 24px;
    }
}
