/* T O P   H E A D E R   ----------------------------------------------------------------------------*/
/* #region */

.prohouse-desktop-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
    background-color: #fff;
    border-bottom: 1px solid #eee;
}

.prohouse-logo img {
    width: 130px;
}

.prohouse-contact-info {
    display: flex;
    align-items: center;
    gap: 35px;
}

.prohouse-contact-block {
    display: flex;
    flex-direction: column;
    font-size: 13px;
    gap: 3px;
}

.prohouse-contact-block i {
    font-size: 13px;
    color: #f16a48;
    margin-bottom: 2px;
}

.prohouse-contact-block p {
    margin: 0;
    line-height: 1.3;
    color: #4b5563;
}

.prohouse-request-btn {
    padding: 10px 22px;
    border: 1.5px solid #f16a48;
    border-radius: 6px;
    background-color: transparent;
    color: #f16a48;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.prohouse-request-btn:hover {
    background-color: #f16a48;
    color: #ffffff;
}
/* #endregion */


/* B A N N E R   S E C T I O N ---------------------------------------------------------------------- */
/* #region */
.prohouse-hero {
    position: relative;
    color: white;
    padding: 180px 60px 100px; 
    text-align: left;
    min-height: 750px;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.prohouse-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.4) 60%, rgba(15, 23, 42, 0.1) 100%);
    z-index: 2;
}

.prohouse-banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.prohouse-banner-slide-picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.prohouse-banner-slide-picture.active {
    opacity: 1;
    z-index: 1;
}

.prohouse-banner-slide-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.65); 
    transform: scale(1.02);
    transition: transform 6s ease;
}

.prohouse-banner-slide-picture.active img {
    transform: scale(1);
}

.prohouse-pagenumber {
    position: absolute;
    bottom: 25px;
    right: 30px;
    font-size: 14px;
    font-weight: 500;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    padding: 6px 14px;
    border-radius: 6px;
    z-index: 3;
}

.prohouse-nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    padding: 0 40px;
}

.prohouse-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    min-width: 200px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    z-index: 999;
    border-radius: 8px;
    overflow: hidden;
    padding: 8px 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.prohouse-dropdown:hover>.prohouse-dropdown-menu {
    display: block;
    opacity: 1;
}

.prohouse-dropdown-menu li a {
    display: block;
    padding: 10px 16px;
    color: #333;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
}

.prohouse-dropdown-menu li a:hover {
    background-color: #fff4ec;
    color: #f16a48;
}

.prohouse-overlay-title {
    position: relative;
    z-index: 3;
    max-width: 700px;
    padding: 0 20px;
    color: white;
    display: flex;
    flex-direction: column;
    text-align: left;
    gap: 12px;
}

.prohouse-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(241, 106, 72, 0.2);
    border: 1px solid rgba(241, 106, 72, 0.5);
    color: #ff9f80;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    width: fit-content;
    margin-bottom: 5px;
}

.prohouse-overlay-title h2 {
    font-size: 1.25rem;
    font-weight: 500;
    color: #e2e8f0;
    letter-spacing: 0.5px;
    margin: 0;
}

.prohouse-overlay-title h1 {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.15;
    margin: 0;
    color: #ffffff;
}

.prohouse-overlay-title p {
    font-size: 1.1rem;
    font-weight: 300;
    color: #cbd5e1;
    line-height: 1.6;
    margin: 5px 0 15px 0;
    max-width: 600px;
}

.prohouse-btn {
    background-color: #f16a48;
    color: white;
    width: 210px;
    padding: 14px 28px;
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 600;
    border: 2px solid #f16a48;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(241, 106, 72, 0.3);
    transition: all 0.3s ease;
}

.prohouse-btn i {
    transition: transform 0.3s ease;
}

.prohouse-btn:hover {
    background-color: #d95330;
    border-color: #d95330;
    transform: translateY(-2px);
    box-shadow: 0 15px 25px rgba(241, 106, 72, 0.4);
}

.prohouse-btn:hover i {
    transform: translateX(4px);
}

@media screen and (max-width: 768px) {
    .prohouse-hero {
        padding: 140px 20px 60px;
        min-height: 600px;
        text-align: center;
        align-items: center;
    }
    .prohouse-overlay-title {
        text-align: center;
        align-items: center;
    }
    .prohouse-overlay-title h1 {
        font-size: 2.2rem;
    }
    .prohouse-contact-info {
        display: none; 
    }
}
/* #endregion */


.ph-nav-stay-brand { display: none; }
@media screen and (max-width: 1024px) {
    .ph-nav-stay-brand {display: block;}
    .prohouse-desktop-header {display: none;}
}

@media (max-width: 1024px) {
    .prohouse-nav {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        box-sizing: border-box;
    }
}