/* 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: 160px 40px 100px;
    text-align: left;
    height: 60%;
    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;
    padding: 0 40px;
    color: white;
    display: flex;
    flex-direction: column;
    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;
    width: 250px;
    padding: 12px 28px;
    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 a {
    color: white;
    font-size: 16px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

}
.prohouse-btn:hover {
    background-color: #277927;
}
/* #endregion */
/* ####################################################################################### */



/* H O W T O   S E C T I O N ------------------------------------------------------------------------- */
/* L U X U R Y   H O U S E  */
/* #region */

.luxury-home-section {
    background: #ffffff;
    padding: 60px 20px;
    font-family: 'Kanit', sans-serif;
    color: #333;
}

.luxury-home-container {
    max-width: 1100px;
    margin: auto;
}

.luxury-home-title {
    text-align: left;
    font-size: 25px;
    color: #4E4E4E	;
    margin-bottom: 40px;
}

.luxury-home-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; 
    gap: 32px;
    max-width: 1200px; 
    margin: 0 auto; 
}

.luxury-home-card {
    flex: 0 1 calc(33.333% - 22px); 
    
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: transform 0.3s ease;
    
    max-width: 380px; 
}

.luxury-home-card:hover {
    transform: translateY(-4px);
}

.luxury-home-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.text-content {
    padding: 25px;
    margin-bottom: 15px;
}

.text-content i {
    font-size: 25px;
    color: #FF6F00		;
    margin-bottom: 10px;
    display: inline-block;
}

.text-content h3 {
    font-size: 16px;
    color: #2c3e50;
    margin: 8px 0;
}

.text-content p {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

.luxury-home-btn {
    display: flex;
    justify-content: center; 
    margin: 40px 0;
    width: 100%;
}

.luxury-home-btn a {
    display: inline-block;
    padding: 16px 45px;
    background-color: #1B5E20; 
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
    border-radius: 50px; 
    border: 2px solid #042d03;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 10px 20px rgba(4, 45, 3, 0.15); 
    position: relative;
    overflow: hidden;
    text-align: center;
}

.luxury-home-btn a:hover {
    background-color: transparent;
    color: #d35400;
    border-color: #d35400;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(211, 84, 0, 0.2); 
}

.luxury-home-btn a::after {
    content: '\f105'; 
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-left: 10px;
    transition: 0.3s;
}

.luxury-home-btn a:hover::after {
    margin-left: 15px; 
}


.luxury-home-footer {
    background: transparent;
    border: 3px solid rgb(4, 73, 0);
    text-align: center;
    padding: 20px;
    font-size: 18px;
    color: #2c3e50;
    border-radius: 5px;
    margin-top: 40px;
}
/* #endregion */


/* E C O   S M A R T   S E C T I O N */
/* #region */

.eco-smart-section {
    background: #ffffff;
    padding: 60px 20px;
    font-family: 'Kanit', sans-serif;
    color: #333;
}
.eco-smart-container {
    max-width: 1100px;
    margin: auto;
}
.eco-smart-home-title {
    text-align: left;
    font-size: 25px;
    color: #4CAF50	;
    margin-bottom: 40px;
}

.eco-smart-home-gallery {
    width: 100%;
    padding: 20px 0;
    margin-bottom: 50px;
}
.eco-smart-home-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 15px; 
}

.eco-smart-home-gallery-grid img {
    width: 100%;
    height: 250px; 
    object-fit: cover;
    border-radius: 12px; 
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.eco-smart-home-gallery-grid img:hover {
    transform: scale(1.03); 
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
    filter: brightness(1.1); 
}


@media screen and (max-width: 768px) {
    .eco-smart-home-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .eco-smart-home-gallery-grid img {
        height: 200px;
    }
}

@media screen and (max-width: 480px) {
    .eco-smart-home-gallery-grid {
        grid-template-columns: repeat(2, 1fr); 
        gap: 10px;
    }
    .eco-smart-home-gallery-grid img {
        height: 150px; 
    }
}

.eco-smart-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
@media (max-width: 768px) {
    .eco-smart-grid {
        grid-template-columns: 1fr;
    }
}

.eco-smart-card {
    background: #f7fcfb; 
    border-radius: 12px;
    border: 1px solid #e0f2f1;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    transition: transform 0.3s ease;
}
.eco-smart-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}
.eco-smart-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}
.eco-smart-card .text-content {
    padding: 25px;
}
.eco-smart-card .text-content i {
    font-size: 25px;
    color: #43A047	;
    margin-bottom: 10px;
    display: inline-block;
}
.eco-smart-card .text-content h3 {
    font-size: 16px;
    color: #43A047	;
    margin: 8px 0;
}
.eco-smart-card .text-content p {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}
.eco-smart-footer {
    text-align: center;
    margin-top: 40px;
}
.eco-smart-btn {
    display: inline-block;
    background-color: #43A047	;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;

}
.eco-smart-btn:hover {
    background-color: #006904;
}

/* #endregion */
/* ####################################################################################### */



/* P R O H O U S E  I N F O   S E C T I O N ------------------------------------------------------------------------ */
/* #region */
.prohouse-revised-about-section {
    background-color: #fefefe; 
    font-family: 'Kanit', sans-serif;
    padding-bottom: 80px;
}
.about-hero-container {
    position: relative;
    width: 100%;
    height: 60vh; 
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.about-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8; 
    filter: brightness(0.7); 
}
.about-hero-overlay-text {
    position: absolute;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
    z-index: 10;
}
.about-hero-overlay-text h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 0 4px 6px rgba(0, 0, 0, 0.4);
}
.about-hero-overlay-text p {
    font-size: 1.2rem;
    font-weight: 400;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}
.about-info-boxes-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    margin-top: -150px; 
    position: relative;
    z-index: 20; 
}
.about-info-box-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .about-info-box-grid {
        grid-template-columns: 1fr;
    }
    .about-info-boxes-wrapper {
        margin-top: -80px; 
    }
    .about-hero-container {
        height: 50vh;
    }
}

.about-info-item {
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.about-info-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}
.about-info-item i {
    color: #f16a48; 
    margin-bottom: 15px;
}
.about-info-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}
.about-info-item p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}
.info-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #f16a48;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}
.info-link:hover {
    color: #d87c2d;
}
/* #endregion */
/* ####################################################################################### */



/* S H O W  H O U S E  M O D E L S -------------------------------------------------------------------------------------- */
/* #region */

.preview-house {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.preview-title h1 {
    color: #4E4E4E;
    font-weight: 700;
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 10px;
}

.preview-des {
    text-align: center;
    color: #cc0000;
    font-style: italic;
    margin-bottom: 30px;
}

.preview-sort {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    background-color: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 15px 20px;
    margin-bottom: 30px;
    overflow-x: auto;
    gap: 15px;
}

.p-title {
    flex-shrink: 0;
    color: #4E4E4E;
    font-weight: 600;
    font-size: 1.2em;
    padding-right: 15px;
    border-right: 2px solid #e0e0e0;
}

.p-button {
    display: flex;
    gap: 10px;
}

.p-item {
    display: flex;
    align-items: center;
    background-color: #f4f7f6;
    padding: 8px 15px;
    border-radius: 25px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    flex-shrink: 0;
    border: 1px solid #e0e0e0;
}

.p-item:hover {
    background: #ffe6cc; 
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.p-item.active {
    background-color: #FF6F00;
    color: white;
    box-shadow: 0 4px 10px rgba(255, 153, 0, 0.4);
    border-color: #FF6F00;
}

.p-item img {
    width: 20px;
    height: 20px;
    filter: brightness(0.5); 
    margin-right: 8px;
    transition: filter 0.3s;
}

.p-item.active img {
    filter: brightness(10); 
}

.p-item a {
    text-decoration: none;
    color: inherit;
    font-weight: 500;
    font-size: 0.95em;
}

.model-set1 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    padding: 0;
    justify-content: start; 
}

.model-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.model-card {
    background-color: #FFFFFF;
    max-width: 350px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.model-card:hover {
    transform: translateY(-5px);
    box-shadow:  0 8px 20px rgba(0, 0, 0, 0.15);
}

.model-img {
    position: relative;
    height: 220px;
}

.model-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.md-tag {
    position: absolute;
    top: 15px;
    left: 0;
    background-color: #FF6F00;
    color: white;
    padding: 5px 15px;
    font-size: 0.8em;
    font-weight: bold;
    border-radius: 0 5px 5px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    
}

.md-tag-find {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;

    background-color: #ffffff; 

    -webkit-mask-image: url('/assets/image/icons/search-house.png');
    mask-image: url('/assets/image/icons/search-house.png');
    
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 60%; 
    mask-size: 60%;
    -webkit-mask-position: center;
    mask-position: center;
}

.md-tag-find img {
    display: none; 
}

.md-tag-find:hover {
    background-color: #d35400; 
    transform: scale(1.1); 
}

.model-detail {
    padding: 15px;
    /* background: #FFFFFF; */
    display: flex;
    flex-direction: column; 
    gap: 12px;
}

.model-info-main {
    display: flex;
    justify-content: space-between; 
    align-items: center;
    flex-grow: 1;
    height: 60px;
}

.model-id {
    font-size: 0.9rem;
    color: #888;
    font-weight: 500;
}
.model-id span {
    font-size: 0.8rem;
    color: #ffa578;
    font-weight: 500;
}
.model-price {
    color: #e74c3c;
    font-size: 1rem;
    font-weight: 700;
}

.model-info-icons {
    display: flex;
    justify-content: right;
    gap: 32px;
    padding-top: 10px;
    border-top: 1px solid #add4ae; 
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.detail-item img {
    width: 19px;
    height: 19px;
    opacity: 0.6; 
}

.detail-item span {
    font-size: 0.85rem;
    color: #666;
    font-weight: 400;
}

.model-card:hover .model-price {
    color: #c0392b;
    transition: 0.3s;
}

.pagination-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 30px 0 50px 0;
}
.pagination-controls button {
    /* background-color: #FF6F00; */
    background-color: transparent;
    border: 1.5px solid #d46109;
    color: rgb(73, 73, 73);
    border-radius: 8px;
    padding: 10px 18px;
    cursor: pointer;
    font-size: 1em;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}
.pagination-controls button:hover:not(:disabled) {
    background-color: #e78200;
    transform: translateY(-2px);
}
.pagination-controls button:disabled {
    background-color: #ebebeb;
    border: 1.5px solid rgb(255, 199, 155);
    cursor: not-allowed;
    opacity: 0.7;
}
.pagination-controls button img {
    width: 14px;
    height: 14px;
    filter: brightness(10); 
}
#pageInfo {
    font-size: 1.1em;
    color: #4E4E4E;
    font-weight: 600;
}


@media (max-width: 768px) {
    .preview-title h1 {
        font-size: 2em;
    }
    
    .preview-sort {
        padding: 10px;
    }

    .p-title {
        display: none; 
    }

    .p-button {
        width: 100%; 
        gap: 20px;
    }
    
    .p-item {

        min-width: 80px;
        font-size: 0.85em;
        padding: 6px 12px;
    }
    
    .p-item img {
        margin-right: 4px;
    }
}

@media (max-width: 480px) {
    .model-set1 {
        grid-template-columns: 1fr; 
    }
    
    .model-img {
        height: 180px;
    }
}

/* #endregion */
/* ####################################################################################### */



/* P R O H O U S E   P R E M I U M   I N F O   S E C T I O N ------------------------------------ */
/* #region */
.prohouse-premium-info-section {
    padding: 80px 40px; 
    background-color: #ffffff; 
    font-family: 'Kanit', sans-serif;
}
.prohouse-info-wrapper {
    max-width: 1400px; 
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 80px;
}
.prohouse-info-block {
    display: flex;
    align-items: center;
    gap: 60px;
    background-color: #fcfcfc;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.prohouse-info-block-left .prohouse-info-image {
    order: 2;
}
.prohouse-info-block-left .prohouse-info-content {
    order: 1;
    padding-left: 40px;
}
.prohouse-info-block-right .prohouse-info-image {
    order: 1;
}
.prohouse-info-block-right .prohouse-info-content {
    order: 2;
    padding-right: 40px;
}

.prohouse-info-image {
    flex: 1;
    min-width: 45%;
    max-height: 450px; 
    overflow: hidden;
}
.prohouse-info-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.prohouse-info-block:hover .prohouse-info-image img {
    transform: scale(1.05); 
}
.prohouse-info-content {
    flex: 1;
    padding: 40px;
}
.prohouse-info-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}
.prohouse-info-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
}
.info-readmore-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 600;
    color: #FF6F00;
    text-decoration: none;
    border-bottom: 2px solid #fab108;
    padding-bottom: 5px;
    transition: color 0.3s;
}
.info-readmore-btn:hover {
    color: #d87c2d;
    border-color: #d87c2d;
}

@media (max-width: 1024px) {
    .prohouse-info-block {
        flex-direction: column;
        gap: 30px;
    }
    .prohouse-info-block-left .prohouse-info-content,
    .prohouse-info-block-right .prohouse-info-content {
        order: 2;
        padding-left: 20px;
        padding-right: 20px;
    }  
    .prohouse-info-block-left .prohouse-info-image,
    .prohouse-info-block-right .prohouse-info-image {
        order: 1;
        min-width: 100%;
        max-height: 300px;
    }   
    .prohouse-info-content h2 {
        font-size: 1.8rem;
    }
}
/* #endregion */
/* ####################################################################################### */



/* P R O J E C T   S H O W C A S E   S E C T I O N  ------------------------------------------------- */
/* #region */

.project-showcase-section {
    padding: 60px 20px;
    /* background-color: #f7f7f7; */
}

.project-showcase-container {
    max-width: 1200px;
    margin: auto;
}

.project-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 768px) {
    .project-showcase-grid {
        grid-template-columns: 1fr;
    }
}

.project-item {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.project-item:hover {
    transform: translateY(-5px);
}

.project-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.project-detail {
    padding: 20px;
}

.project-detail h3 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 5px;
}

.project-detail p {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 15px;
}

.view-project-btn {
    display: inline-block;
    color: #FF6F00;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border-bottom: 2px solid #ffb700;
    padding-bottom: 2px;
    transition: color 0.3s;
}

.view-project-btn:hover {
    color: #d87c2d;
}

.project-showcase-footer {
    text-align: center;
    margin-top: 40px;
}

/* #endregion */
/* ####################################################################################### */



/* C O N T A C T   S E C T I O N ------------------------------------------------------------------- */
/* #region */
.desktop-prohouse-contact-section {
    padding: 80px 20px;
    /* background: linear-gradient(135deg, #ffffff, #fdf5f0); */
    font-family: 'Kanit', sans-serif;
    text-align: center;
}
.desktop-prohouse-contact-container {
    max-width: 1000px;
    margin: auto;
    font-family: 'Kanit', sans-serif;
}
.desktop-prohouse-contact-container h2 {
    font-size: 26px;
    margin-bottom: 30px;
    color: #333;
}
.desktop-prohouse-contact-btn {
    display: inline-block;
    background-color: #FF6F00;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    margin-bottom: 40px;
    transition: background 0.3s;
}
.desktop-prohouse-contact-btn:hover {
    background-color: #ffa75a;
}
.desktop-prohouse-highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    text-align: left;
}
.desktop-prohouse-highlight-item {
    background-color: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}
.desktop-prohouse-highlight-item i {
    font-size: 28px;
    color: #FF6F00;
}
.desktop-prohouse-highlight-item p {
    font-size: 15px;
    color: #555;
    line-height: 1.4;
}
/* #endregion */
/* ####################################################################################### */



/* R E S P O N S I V E  */

@media (max-width: 480px) {

    /* mobile setting  */
    .mobile-prohouse-bottom-nav,
    .prohouse-mobile-header {
        display: block;
    }

    .prohouse-desktop-header,
    .prohouse-nav {
        display: none;
    }

    .prohouse-main-title h1 {
        font-size: 22px;
    }
    /* mobile setting  */

    /* mobile header  */
    .mobile-prohouse-mobile-header {
        padding: 12px 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        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;
        white-space: normal;
        text-align: center;
    }
    /* mobile header  */

    /* 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;
        justify-items: center;
        align-items: center;
    }
    .prohouse-overlay-title h2 {
        font-size: 16px;
    }
    .prohouse-overlay-title h1{
        font-size: 26px;
    }
    .prohouse-overlay-title p {
        font-size: 18px;
    }
    /* banner section */

    /* Howto Section */
    .luxury-home-title {
        font-size: 18px;
        text-align: center;
    }
    .luxury-home-grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 32px;
    }
    .eco-smart-section {
        padding: 20px 20px;
    }
    .eco-smart-home-title {
        font-size: 20px;
        text-align: center;
    }
    /* Howto Section */

    /* PROHOUSE INFO SECTION  */
    .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;
    }
    /* PROHOUSE INFO SECTION  */

    /* Show House Models section */
    .preview-des p {
        font-size: 14px;
    }
    .pagination-controls button {
        font-size: 14px;
    }
    /* Show House Models section */

    /* PROHOUSE PREMIUM INFO SECTION */
    .prohouse-premium-info-section {
        padding: 10px 15px; 
    }
    .prohouse-info-content h2 {
        font-size: 26px;
        text-align: center;
    }
    .prohouse-info-content p {
        font-size: 16px;
    }
    /* PROHOUSE PREMIUM INFO SECTION */

}


@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;
    }
}