/* G E N E R A L   S E T T I N G ------------------------------------------------------- */
/* #region */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html::-webkit-scrollbar {
    display: none;
    width: 0;
}
html {
    scrollbar-width: none;  
    -ms-overflow-style: none;
}
body {
    margin: 0;
    padding: 0;
    font-family: 'Kanit', sans-serif;
    overflow-x: hidden;
    color: #333;
    
    scrollbar-width: none;  
    -ms-overflow-style: none;

}
body::-webkit-scrollbar {
    display: none; 
    width: 0;      
}

.prohouse-main-title {
    display: flex;
    text-align: center;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 40px;
    color: #4b4b4b	;

}
.prohouse-main-title h1 {
    font-weight: 600;
    font-size: 2.8rem;
}
.prohouse-main-title i {
    font-size: 2rem;
}

/* mobile setting  */
.mobile-prohouse-bottom-nav,
.prohouse-mobile-header,
.mobile-prohouse-mobile-header {
    display: none;
}


/* #endregion */
/* ####################################################################################### */



/* T O P   H E A D E R  ----------------------------------------------------------------------------*/
/* #region */

.prohouse-desktop-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2px 20px;
    background-color: #fff;
    border-bottom: 1px solid #eee;
}
.prohouse-logo img {
    margin-left: 35px;
    width: 120px;
}
.prohouse-contact-info {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    padding: 20px;
}
.prohouse-contact-block {
    display: flex;
    flex-direction: column;
    font-size: 15px;
    gap: 4px;
}
.prohouse-contact-block i {
    font-size: 13px;
    color: #f16a48;
    margin-bottom: 6px;
}
.prohouse-contact-block p {
    margin: 0;
    line-height: 1.2;
    font-size: 13px;
}
.prohouse-request-btn {
    padding: 10px 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: white;
    cursor: pointer;
    font-size: 14px;
}
.prohouse-contact-info a {
    text-decoration: none;
    color: #1d1d1d;
}
/* #endregion */
/* ####################################################################################### */



/* B A N N E R   S E C T I O N ---------------------------------------------------------------------- */
/* #region */
.prohouse-hero {
    position: relative;
    color: white;
    padding: 100px 40px 100px;
    text-align: left;
    height: 30%;
    overflow: hidden;
}
.prohouse-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 2;
}
.prohouse-hero>.prohouse-hero-content {
    position: relative;
    z-index: 3;
    max-width: 600px;
}

/* Banner image slide --------------------------------------------------------------------- */
.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;
    z-index: 0;
}
.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.5);
}
.prohouse-pagenumber {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 14px;
    font-weight: bold;
    color: white;
    background-color: rgba(0, 0, 0, 0.4);
    padding: 4px 10px;
    border-radius: 4px;
    z-index: 3;
}
.prohouse-banner-slide-picture.active .prohouse-pagenumber {
    font-size: 15px;
    background-color: #1d1d1d;
    padding: 6px 16px;
}

/* Navigation tab -------------------------------------------------------------  */
.prohouse-nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.18);
    z-index: 10;
    padding: 16px 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.prohouse-nav ul {
    list-style: none;
    display: flex;
    justify-content: flex-start;
    gap: 40px;
    margin: 0;
    padding: 0;
}
.prohouse-nav li {
    position: relative;
}
.prohouse-nav a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    font-size: 14px;
    padding: 6px 12px;
    transition: color 0.3s, border-bottom 0.3s;
}
.prohouse-nav a.prohouse-active {
    color: #f19448;
    border-bottom: 2px solid #f19448;
    font-weight: 700;
}
.prohouse-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgba(255, 255, 255, 0.95);
    min-width: 200px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 999;
    border-radius: 8px;
    overflow: hidden;
    padding: 8px 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.prohouse-dropdown:hover>.prohouse-dropdown-menu {
    display: block;
    pointer-events: auto;
    opacity: 1;
}
.prohouse-dropdown-menu li a {
    display: block;
    padding: 10px 16px;
    color: #333;
    font-size: 14px;
    transition: background 0.3s, color 0.3s;
}
.prohouse-dropdown-menu li a:hover {
    background-color: #f5f5f5;
    color: #f19448;
}

/* banner detail --------------------------------------------------------------- */
.prohouse-overlay-title {
    position: relative;
    z-index: 3;
    /* max-width: 800px; */
    width: 100%;
    padding: 0 40px;
    color: white;
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 15px;
}
.prohouse-overlay-title h2 {
    font-size: 2rem;
    font-weight: 400;
}
.prohouse-overlay-title h1 {
    font-size: 2.8rem;
    font-weight: 600;
}
.prohouse-overlay-title p {
    font-size: 1.2rem;
    font-weight: 400;
}
.prohouse-btn {
    background-color: #007bff00;
    color: white;
    width: 200px;
    padding: 12px 28px;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    border: 2px solid white;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 20px;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.prohouse-btn:hover {
    background-color: #f89100;
}
/* #endregion */
/* ####################################################################################### */



/* M R  P O N D  Introduce --------------------------------------------------------------------------------*/
/* #region */
.ab-intro {
    position: relative;
    background-color: #ffffff;
    padding: 70px 16px;
    font-family: 'Kanit', sans-serif;
    color: #333;
    height: 100%;
    overflow: hidden;
}
.ab-intro::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("/assets/image/banner/banner-1.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.045;
    z-index: 0;
}
.ab-intro-sub {
    max-width: 100%;
    margin: 0 auto;
    height: 100%;
    position: relative;
    z-index: 1;
}
.ab-in-con {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
    height: 100%;
    justify-content: center;
}
.ab-in-top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    box-shadow: 0px 15px rgba(7, 44, 0, 0.63);
}
.ab-in-title h1 {
    font-size: 36px;
    font-weight: 600;
    margin: 0;
    color: #222;
}
.ab-in-img img {
    max-height: 80px;
    object-fit: contain;
}

.ab-in-detail {
    display: flex;
    padding: 50px;
    justify-content: center;
    justify-items: center;
}
.ab-in-detail-box {
    display: flex;
    flex-wrap: wrap;
    gap: 5rem;
    max-width: 1300px;

}
.ab-in-d-img img {
    max-width: 320px;
    border-radius: 12px;
    /* box-shadow:  25px 35px 25px rgba(0, 0, 0, 0.163); */
}
.ab-in-d-txt {
    flex: 1;
    min-width: 280px;
    text-align: left;
}
.ab-in-d-txt-title h3 {
    font-size: 25px;
    color: #e67e22;
    margin-bottom: 8px;
}
.ab-in-d-txt-title h1 {
    font-size: 28px;
    color: #111;
    margin-bottom: 16px;
}
.ab-in-d-txt-desc {
    font-size: 20px;
    line-height: 1.7;
    color: #444;
}

.ab-in-d-txt-desc h5 {
    margin: 8px 0;
    font-size: 21px;
    color: #555;
}

.ab-in-layout {
    padding: 32px;
    border-radius: 12px;
}

.ab-in-la-con {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.la-item {
    padding: 24px;
    border-radius: 10px;
    text-align: left;
    transition: transform 0.3s ease;
}

.la-item-tt h2 {
    font-size: 23px;
    color: #2c3e50;
    margin-bottom: 12px;
}

.la-item-de p {
    font-size: 20px;
    line-height: 1.6;
    color: #555;
}
/* #endregion */
/* ####################################################################################### */



/*C O M P A N Y  I N F O  Start ----------------------------------------------------------------------------------------- */
/* #region */
.company-intro {
    padding: 60px 20px;
    background-color: #fff;
    box-shadow: 0 15px 16px rgba(0, 0, 0, 0.06);

}

.company-container {
    display: flex;
    flex-direction: row;
    padding: 50px;
    gap: 80px;
    justify-content: space-between;

}

.company-block {
    display: flex;
    flex-direction: column;
    text-align: left;
    gap: 20px;
    background-color: #ffffff;
    padding: 24px;
    align-items: center;
    width: 45%;
    transition: transform 0.3s;
}

.company-block:hover {
    transform: translateY(-4px);
}

.company-icon {
    flex-shrink: 0;
    font-size: 100px;
    color: #ff850b;
    margin-top: 8px;
}
.company-icon img {
    max-width: 400px;
    height: 300px;
}
.company-content {
    flex-grow: 1;
}

.company-content h2 {
    font-size: 33px;
    margin: 0;
    color: #222;
    display: flex;
    align-items: center;
    gap: 10px;
}

.company-content hr {
    border: none;
    border-top: 2px solid #eee;
    margin: 12px 0;
    width: 100%;
}

.company-content p {
    color: #444;
    line-height: 1.7;
    font-size: 20px;
    margin: 8px 0;
}

.company-highlight {
    font-weight: bold;
    color: #000;
}

/* Responsive */
@media (max-width: 768px) {

    .com-pro-con,
    .com-pro2-con {
        flex-direction: column;
    }

    .com-bg-img,
    .com-bg2-img {
        background-size: 80px;
    }
}

/* #endregion */
/* ####################################################################################### */



/* C U S T O M E R   S E R V I C E start --------------------------------------------------------------- */
/* #region */
.section-service-customer {
    padding: 0;
    margin: 0;
    justify-items: center;
    background-color: rgb(255, 255, 255);
    /* background: linear-gradient(to top, #626262, #ffffff, #efefef); */
    padding: 60px 20px;
}

.service-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 0 20px;
    margin: 0 auto;
    box-sizing: border-box;
}

.service-container-block-title {
    text-align: center;
}

.service-container-block-title h5 {
    color: #dd7200;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 20px;
}

.service-container-block-title h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #025524;
}

.service-container-block-title p {
    font-size: 20px;
    color: #333;
    line-height: 1.7;
}

.service-container-block {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 80px;
    align-items: stretch;
    justify-content: center;
}

.service-container-block-left-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 40px;
    height: auto;
    width: 55vh;
    border-radius: 10px;
    /* background: linear-gradient(to top, #d77309, #ffffff); */
    background-color: #FB8C00	;
    box-shadow: 0 8px 8px rgba(0, 0, 0, 0.1);
}

.s-c-b-l-image img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #a04800;
}

.s-c-b-l-text p {
    padding: 30px;
    font-size: 23px;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
}

.s-c-b-l-button button {
    padding: 10px 20px;
    border: 3px solid #ffffff;
    font-size: 28px;
    background-color: transparent;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;

}

/* .s-c-b-l-button button:hover {
    background-color: #c85f00;
} */

.service-container-block-right-area {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    justify-content: space-between;
    flex: 1;
}

.s-c-b-r-a-cards {
    background-color: white;
    border-radius: 8px;
    text-align: left;
    width: 180px;
    padding: 20px;
    box-shadow: 0 8px 0px rgb(121, 121, 121);
    transition: transform 0.3s ease;
}

.s-c-b-r-a-cards:hover {
    box-shadow: 0 8px 0px rgb(255, 112, 16);
    transform: translateY(-5px);
}

.s-c-b-r-a-title h2 {
    color: #dd7200;
    margin-bottom: 10px;
}

.s-c-b-r-a-details p {
    margin: 4px 0;
    color: #333;
    font-size: 16px;
}

.service-container-block:last-child p {
    font-weight: 400;
    color: #000502;
    font-size: 18px;
    text-align: center;
}

.service-container-block-left {
    justify-items: center;
}

.service-container-block-left-area {
    width: 100%;
}

.service-container-block-right {
    justify-items: center;
}
/* #endregion */
/* ####################################################################################### */



/* M I S S I O N start --------------------------------------------------------------------------------------- */
/* #region */
.about-prohouse-mission-area {
    /* background: linear-gradient(to top, #ffffff, #f9f9f9); */
    background-color: #fcfcfc;
    padding: 60px 20px;
    font-family: 'Kanit', sans-serif;
}

.about-prohouse-container {
    max-width: 1300px;
    margin: 0 auto;
}

.about-prohouse-mission-header {
    text-align: center;
    margin-bottom: 50px;
}

.about-prohouse-mission-header h1 {
    font-size: 40px;
    color: #333;
    margin-bottom: 10px;
}

.about-prohouse-mission-header i {
    color: #FF6F00	;
    margin-right: 10px;
}

.about-prohouse-mission-header p {
    font-size: 18px;
    color: #666;
}

.about-prohouse-mission-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.about-prohouse-mission-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px 25px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-prohouse-mission-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(255, 102, 0, 0.2);
}

.about-prohouse-mission-card .icon {
    font-size: 36px;
    color: #FF6F00	;
    margin-bottom: 15px;
}

.about-prohouse-mission-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #333;
}

.about-prohouse-mission-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.about-prohouse-mission-footer {
    margin-top: 60px;
    background: green;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.about-prohouse-mission-footer h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #FFB300	;
}

.about-prohouse-mission-footer h2 i {
    margin-right: 10px;
}

.about-prohouse-mission-footer p {
    font-size: 17px;
    color: #ffffff;
    line-height: 1.7;
}
/* #endregion */
/* ####################################################################################### */



/* A N I M A T I O N  G R O U P ---------------------------------------------------------------------------------- */
/* #region */
.ab-in-d-txt {
    opacity: 0;
    animation: slideFadeIn 1s ease-out forwards;
}

.la-item {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.la-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.ms-img img {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.ms-img.visible img {
    opacity: 1;
    transform: translateY(0);
}

.com-pro-con .com-bg-img img {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.com-pro-con .com-txt {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.com-pro-con.visible .com-bg-img img,
.com-pro-con.visible .com-txt {
    opacity: 1;
    transform: translateY(0);
}

.com-pro2-con .com-bg2-img img {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.com-pro2-con .com-txt {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.com-pro2-con.visible .com-bg2-img img,
.com-pro2-con.visible .com-txt {
    opacity: 1;
    transform: translateY(0);
}

/* #endregion */
/* ####################################################################################### */




/* ---------------------- Responsive Design ---------------------- */

/* tablet */
@media (min-width: 481px) and (max-width: 1023px) {
    .service-container-block-right-area {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* mobile */
@media screen and (max-width: 480px) {
    
    .prohouse-desktop-header, 
    .prohouse-nav,
    .ab-in-title h1 { 
        display: none; 
    }

    .mobile-prohouse-bottom-nav, 
    .prohouse-mobile-header { 
        display: block; 
    }

    h1 { font-size: 1.5rem; }
    h2 { font-size: 1.25rem; }
    h3 { font-size: 1.125rem; }
    p, h5 { font-size: 0.95rem; }

    .prohouse-main-title h1 { 
        font-size: 22px; 
    }

    /* Mobile Header Specifics */
    .mobile-prohouse-mobile-header {
        padding: 12px 16px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px;
        width: 100%;
        overflow-x: hidden;
    }
    .mobile-prohouse-mobile-header img {
        max-width: 100%;
        height: auto;
        display: block;
    }
    .mobile-prohouse-mobile-header h1 {
        font-size: 18px;
        color: #042d03;
        font-family: 'Kanit', sans-serif;
        text-align: center;
        white-space: normal;
    }

    /* 2. Hero & Banner Section */
    .prohouse-hero {
        padding: 40px 40px 100px;
        text-align: center;
        height: auto;
        overflow: hidden;
    }
    .prohouse-overlay-title {
        max-width: 100%;
        padding: 0;
        display: flex;
        flex-direction: column; 
        align-items: center;
    }
    .prohouse-overlay-title h2 { font-size: 16px; }
    .prohouse-overlay-title h1 { font-size: 26px; }
    .prohouse-overlay-title p { font-size: 18px; }

    /* 3. About Us Section (ab-in) */
    .ab-in-top {
        flex-direction: column;
        align-items: center;
    }
    .ab-in-img img {
        width: 120px;
        height: auto;
    }
    .ab-in-detail {
        flex-direction: column;
        padding: 1.5rem 1rem;
    }
    .ab-in-d-img img {
        width: 100%;
        max-width: 220px;
        margin: 0 auto;
    }
    .ab-in-d-txt {
        flex: 1 1 100%;
        text-align: center;
    }
    .ab-in-d-txt-title h1 { font-size: 1.25rem; }
    .ab-in-d-txt-title h3 { font-size: 1rem; }
    .ab-in-d-txt-desc p, 
    .ab-in-d-txt-desc { font-size: 0.9rem; }

    /* 4. Company Intro & Mission */
    .company-intro {
        padding: 1rem;
        overflow-x: hidden;
    }
    .company-container {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        padding: 1rem;
    }
    .company-block {
        width: 100%;
        max-width: 90%;
        padding: 1rem;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .company-icon {
        font-size: 2rem;
        margin-bottom: 0.5rem;
        text-align: center;
    }
    .company-content {
        font-size: 0.9rem;
        text-align: center;
    }
    .company-content h2 { font-size: 1.125rem; }
    .company-content p.highlight { font-weight: bold; }

    .about-prohouse-mission-card { flex: 1 1 100%; }
    .about-prohouse-mission-footer h2 { font-size: 1.25rem; }
    .about-prohouse-mission-footer p { font-size: 1rem; }

    /* 5. Service & Grid Sections */
    .service-container-block-left,
    .service-container-block-right {
        flex: 1 1 100%;
    }
    
    .service-container-block-left-area {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 1rem;
        text-align: center;
    }

    .s-c-b-l-image img {
        width: 200px;
        height: 200px; /* รักษาขนาดวงกลม/จัตุรัส */
        object-fit: cover;
    }

    .s-c-b-l-text p {
        font-size: 1rem;
        line-height: 1.6;
        margin: 1rem 0;
        padding: 1rem;
    }

    .s-c-b-l-button button {
        width: 100%;
        padding: 0.75rem;
        font-size: 1rem;
        background-color: transparent;
        color: #fff;
        border: 2px solid white;
    }

    .service-container-block-right-area {
        display: grid;
        grid-template-columns: 1fr; /* ปรับเป็น 1 คอลัมน์สำหรับมือถือ */
        gap: 20px;
    }

    .s-c-b-r-a-cards {
        flex: 1 1 100%;
        width: 100%; /* ปรับจาก 250px เป็นเต็มหน้าจอ */
        max-width: 280px;
        margin: 0 auto;
    }

    .luxury-home-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .luxury-home-title { font-size: 18px; text-align: center; }

    .eco-smart-section { padding: 20px 20px; }
    .eco-smart-home-title { font-size: 20px; text-align: center; }

    /* 6. Info & Portfolio Specifics */
    .about-hero-overlay-text h1 { font-size: 26px; }
    .about-hero-overlay-text p { font-size: 18px; }
    
    .about-info-item i { font-size: 24px; }
    .about-info-item h3 { font-size: 18px; }
    .about-info-item p { font-size: 16px; }

    .preview-des p,
    .pagination-controls button {
        font-size: 14px;
    }

    .prohouse-premium-info-section { padding: 10px 15px; }
    .prohouse-info-content h2 { font-size: 26px; text-align: center; }
    .prohouse-info-content p { font-size: 16px; }
}


@media (min-width: 481px) and (max-width: 1024px) {
    .prohouse-desktop-header {
        flex-direction: row;
        align-items: flex-start;
        padding: 10px 20px;
    }

    .prohouse-contact-info {
        flex-direction: row;
        gap: 20px;
        padding: 10px 0;
    }

    .prohouse-nav ul {
        flex-direction: row;
        gap: 12px;
    }

    .prohouse-hero {
        padding: 100px 20px 80px;
        height: auto;
    }

    .prohouse-overlay-title {
        padding: 0 20px;
        max-width: 100%;
    }

    .desktop-prohouse-info-wrapper {
        flex-direction: row;
        align-items: center;
    }

    .desktop-info-card {
        max-width: 100%;
    }

    .desktop-prohouse-highlight-grid {
        grid-template-columns: 1fr 1fr;
    }

    .desktop-prohouse-contact-container h2 {
        font-size: 22px;
    }

    .desktop-prohouse-contact-btn {
        padding: 10px 24px;
        font-size: 14px;
    }

    .desktop-prohouse-highlight-item {
        padding: 16px;
    }
}