.desktop-footer-section {
    background-color: green;
}

.ph-footer {
    text-align: center;
    width: 100%;
    height: 100%;
    font-family: 'Kanit', sans-serif;
}

.ft-con {
    border-radius: 45px 45px 0px 0px;
    width: 100%;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;

}

.ft-detail {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    width: 100%;
    justify-content: space-between;
}

.ft-item {
    flex: 1;
    min-width: 280px;
    text-align: center;
    padding: 15px;
    
}

.ft-item-n {
    flex: 1;
    min-width: 280px;
    text-align: left;
    padding: 15px;
    display: flex;
    gap: 50px;
}

.ft-item-g {
    flex: 1;
    min-width: 280px;
    text-align: left;
    padding: 15px;
}

.ft-item img {
    width: 250px;
    margin-bottom: 10px;
}

.ft-item p {
    font-size: 1em;
    line-height: 1.5;
    color: #ddd;
}

.ft-i-l,
.ft-i-r {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ftil-t h1 {
    font-size: 1.5em;
    font-weight: bold;
    color: #ffcc00;
    margin-bottom: 10px;
}

.ftil-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ftil-nav a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.ftil-nav a:hover {
    color: #ffcc00;
}

.ftil-t-detail p {
    font-size: 1em;
    line-height: 1.5;
    color: #ddd;
}

.ft-item-t-g {
    padding: 5px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.gps-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 400px;
    padding: 10px 15px;
    background-color: #eaeaea;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.gps-btn:hover {
    background-color: #e66a00;
}

.gps-btn:hover h3,
.gps-btn:hover p {
    color: white;
}

.gps-img img {
    width: 35px;
    height: 35px;
}

.gps-detail h3 {
    font-size: 1.2em;
    font-weight: bold;
    color: rgb(60, 60, 60);
}

.gps-t-d p {
    font-size: 0.9em;
    color: #878787;
}

.ftil-gps a {
    text-decoration: none;
    color: inherit;
}

.ft-c-right {
    margin-top: 30px;
    border-top: 1px solid #555;
    padding-top: 10px;
    text-align: center;
    width: 100%;
}

.ft-c-right p {
    font-size: 0.9em;
    color: #ccc;
}



@media (max-width: 480px) {

    .desktop-footer-section {
        margin-bottom: 50px;
    }

    /* Mobile Bottom Navigation */
    .mobile-prohouse-bottom-nav {
        display: flex;
        background-color: #fff;
        border-top: 1px solid #ccc;
        border-radius: 20px 20px 0 0;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 70px; 
        z-index: 1000;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.1); 
    }

    .mobile-prohouse-bottom-nav a {
        flex: 1; 
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        color: #555;
        transition: all 0.3s ease;
    }

    .mobile-prohouse-bottom-nav a i {
        font-size: 20px;
        margin-bottom: 2px;
        color: #888;
        transition: transform 0.3s ease;
    }

    .mobile-prohouse-bottom-nav a span {
        font-size: 10px;
        white-space: nowrap;
    }

    .mobile-prohouse-bottom-nav a.active i,
    .mobile-prohouse-bottom-nav a:hover i {
        color: #d35400;
        transform: translateY(-3px); 
    }

    .mobile-prohouse-bottom-nav a.active span,
    .mobile-prohouse-bottom-nav a:hover span {
        color: #d35400;
        font-weight: bold;
    }

    .mobile-prohouse-bottom-nav a.active {
        position: relative;
    }

    .mobile-prohouse-bottom-nav a.active::after {
        content: "";
        position: absolute;
        top: 0;
        width: 30%;
        height: 3px;
        background-color: #d35400;
        border-radius: 0 0 5px 5px;
    }

}