/* G E N E R A L   S E T T I N G ------------------------------------------------------- */
/* #region */

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    color: #333;
}

/* html {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

html::-webkit-scrollbar {
    display: none;
    width: 0;
}

body {
    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 */
/* ####################################################################################### */



/* #region P R I V A C Y & T E R M S   H I G H - E N D   D A R K   T H E M E */

:root {
    --ph-bg-dark: #0f0e0d;        /* ดำสนิทระดับพรีเมียม */
    --ph-card-bg: #171513;        /* พื้นผิวกล่องเข้มหรู */
    --ph-card-surface: #1e1b18;   /* พื้นผิวรองรับชิ้นส่วนภายใน */
    --ph-border: rgba(255, 255, 255, 0.08); /* เส้นขอบบางเฉียบ */
    --ph-border-glow: rgba(249, 115, 22, 0.35); /* ขอบเรืองแสงส้ม */
    --ph-text-main: #f3f4f6;      /* ขาวสว่างนวลตา */
    --ph-text-muted: #9ca3af;     /* เทากลางอ่านง่าย */
    --ph-accent: #f97316;         /* ส้มแบรนด์ ProHouse ระดับไฮเอนด์ */
    --ph-accent-glow: rgba(249, 115, 22, 0.2);
}

.ph-privacy-body,
body.ph-privacy-body {
    background-color: var(--ph-bg-dark) !important;
    color: var(--ph-text-main) !important;
    margin: 0;
    padding: 0;
}

.privacy-wrapper {
    background: linear-gradient(145deg, var(--ph-card-bg) 0%, #12100e 100%) !important;
    color: var(--ph-text-main) !important;
    max-width: 960px;
    margin: 80px auto;
    padding: 60px 70px;
    border-radius: 28px;
    border: 1px solid var(--ph-border);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

.privacy-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--ph-accent), transparent);
}

.privacy-card-header {
    text-align: center;
    margin-bottom: 45px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.privacy-logo-container {
    padding: 10px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--ph-border);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.privacy-card-header img {
    width: 130px;
    filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.5));
}

.privacy-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(249, 115, 22, 0.12);
    color: var(--ph-accent);
    padding: 7px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    border: 1px solid rgba(249, 115, 22, 0.25);
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.1);
}

.privacy-card-header h1 {
    color: #ffffff !important;
    font-size: 2.2rem;
    margin: 4px 0 0;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.privacy-card-header p {
    color: var(--ph-text-muted) !important;
    font-size: 0.95rem;
    font-weight: 300;
    margin: 0;
}

.privacy-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--ph-border);
    padding-bottom: 25px;
}

.tab-btn {
    background: var(--ph-card-surface);
    border: 1px solid var(--ph-border);
    padding: 14px 30px;
    border-radius: 14px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--ph-text-muted);
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.tab-btn:hover {
    background: rgba(255, 255, 255, 0.04);
    color: #ffffff;
    border-color: rgba(249, 115, 22, 0.4);
    transform: translateY(-2px);
}

.tab-btn.active {
    background: linear-gradient(135deg, var(--ph-accent) 0%, #ea580c) !important;
    color: #ffffff !important;
    border-color: var(--ph-accent) !important;
    box-shadow: 0 10px 25px var(--ph-accent-glow);
    font-weight: 600;
    transform: translateY(-2px);
}

.privacy-tab-content {
    display: none;
}

.privacy-tab-content.active {
    display: block;
}

.privacy-content {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 10px 5px;
    border-radius: 16px;
}

.privacy-content .lead-text {
    font-size: 1.05rem;
    color: #ffffff !important;
    margin-bottom: 30px;
    line-height: 1.9;
    background: rgba(249, 115, 22, 0.05);
    padding: 20px 24px;
    border-radius: 12px;
    border-left: 4px solid var(--ph-accent);
}

.privacy-content h2 {
    color: #ffffff !important;
    font-size: 1.2rem;
    margin-top: 40px;
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.privacy-content h2::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--ph-accent);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--ph-accent);
}

.privacy-content p,
.privacy-content li {
    font-size: 0.96rem;
    line-height: 1.85;
    color: var(--ph-text-muted) !important;
    font-weight: 300;
}

.privacy-content strong {
    color: #ffffff !important;
    font-weight: 500;
}

.privacy-content ul {
    padding-left: 22px;
    margin-bottom: 25px;
}

.privacy-content li {
    margin-bottom: 10px;
    position: relative;
}

.contact-box {
    background: linear-gradient(145deg, #12100e, #0a0908) !important;
    border: 1px solid var(--ph-border);
    border-left: 4px solid var(--ph-accent);
    padding: 35px;
    border-radius: 18px;
    margin-top: 50px;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.contact-box h3 {
    color: #ffffff !important;
    font-size: 1.15rem;
    margin-top: 0;
    margin-bottom: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-box h3 i {
    color: var(--ph-accent);
    font-size: 1.25rem;
}

.contact-box p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--ph-text-muted) !important;
    margin: 6px 0;
}

.contact-details {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-details p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 8px 0;
}

.contact-details i {
    color: var(--ph-accent);
    width: 18px;
    text-align: center;
}

@media (max-width: 768px) {
    .privacy-wrapper {
        margin: 20px 12px;
        padding: 30px 20px;
        border-radius: 20px;
    }

    .privacy-card-header h1 {
        font-size: 1.6rem;
    }

    .privacy-tabs {
        flex-direction: column;
        gap: 10px;
    }

    .tab-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
    }
    
    .contact-box {
        padding: 25px 20px;
    }
}

/* #endregion */








