/* ==========================================================================
   Phuket Land Clearing — Site UI (single source of truth)
   ========================================================================== */

:root {
    --plc-yellow: #f4b41a;
    --plc-yellow-dark: #d99a08;
    --plc-green: #2b7a0b;
    --plc-green-dark: #1f5c08;
    --plc-green-light: #e8f5e9;
    --plc-black: #141414;
    --plc-gray-900: #1f2937;
    --plc-gray-700: #374151;
    --plc-gray-500: #6b7280;
    --plc-gray-300: #d1d5db;
    --plc-gray-100: #f3f4f6;
    --plc-white: #ffffff;
    --plc-radius: 12px;
    --plc-radius-lg: 16px;
    --plc-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 4px 16px rgba(0, 0, 0, 0.06);
    --plc-shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.1);
    --plc-section-y: 4rem;
    --lang-bar-height: 36px;
    --header-height: 60px;
    --bottom-nav-height: 60px;
    --safe-bottom: env(safe-area-inset-bottom, 0px);
    --content-max: 1140px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--lang-bar-height) + var(--header-height) + 12px);
}

body {
    margin: 0;
    padding-top: var(--lang-bar-height);
    font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Roboto, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--plc-gray-900);
    background: var(--plc-gray-100);
    -webkit-font-smoothing: antialiased;
}

body.has-language-switcher { padding-top: var(--lang-bar-height); }
body.has-app-shell { padding-bottom: calc(var(--bottom-nav-height) + var(--safe-bottom) + 8px); }

.language-switcher-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    height: var(--lang-bar-height);
    background: #1a1a1a;
    border-bottom: 1px solid var(--plc-yellow);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.language-switcher-inner {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: var(--lang-bar-height);
    padding: 0 12px;
    gap: 8px;
}
.language-switcher-label { color: var(--plc-yellow); font-size: 0.85rem; margin-right: 4px; }
.language-switcher-list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 4px;
}
.language-switcher-list li { margin: 0; padding: 0; }
.language-switcher-link {
    display: inline-block;
    min-width: 40px;
    padding: 4px 10px;
    font-size: 0.75rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    color: var(--plc-yellow);
    border: 1px solid transparent;
    border-radius: 4px;
}
.language-switcher-link:hover { background: var(--plc-yellow); color: #000; }
.language-switcher-link.is-active {
    background: var(--plc-yellow);
    color: #000;
    border-color: var(--plc-yellow);
    cursor: default;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--plc-green); text-decoration: none; }
a:hover { color: var(--plc-green-dark); }

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    line-height: 1.25;
    font-weight: 700;
    color: var(--plc-gray-900);
}

.section-header { text-align: center; max-width: 640px; margin: 0 auto 2.5rem; }
.section-header h1, .section-header h2 { font-size: clamp(1.5rem, 3.5vw, 2rem); color: var(--plc-green); margin-bottom: 0.5rem; }
.section-header p { color: var(--plc-gray-500); margin: 0; font-size: 1rem; }
.section-header--left { text-align: left; margin-left: 0; margin-right: 0; max-width: none; }
.section-divider { width: 48px; height: 4px; background: var(--plc-yellow); border-radius: 99px; margin: 0 auto 1rem; }
.section-header--left .section-divider { margin-left: 0; }

/* ---- Page sections ---- */
.page-section { padding: var(--plc-section-y) 0; }
.page-section--white { background: var(--plc-white); }
.page-section--light { background: var(--plc-gray-100); }
.page-section--accent { background: linear-gradient(180deg, #fffbeb 0%, var(--plc-white) 100%); }

/* ---- Buttons ---- */
.btn-brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--plc-green);
    color: var(--plc-white) !important;
    border: none;
    border-radius: var(--plc-radius);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 0.9375rem;
    min-height: 44px;
    transition: background 0.2s, transform 0.15s;
}
.btn-brand:hover { background: var(--plc-green-dark); color: var(--plc-white) !important; }
.btn-brand.btn-sm { padding: 0.5rem 1rem; font-size: 0.8125rem; min-height: 36px; }

.btn-outline-brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: 2px solid var(--plc-green);
    color: var(--plc-green) !important;
    background: transparent;
    border-radius: var(--plc-radius);
    padding: 0.625rem 1.25rem;
    font-weight: 600;
    min-height: 44px;
    transition: background 0.2s, color 0.2s;
}
.btn-outline-brand:hover { background: var(--plc-green); color: var(--plc-white) !important; }

.btn-outline-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: 2px solid var(--plc-white);
    color: var(--plc-white) !important;
    background: transparent;
    border-radius: var(--plc-radius);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    min-height: 44px;
    transition: background 0.2s, color 0.2s;
}
.btn-outline-light:hover { background: var(--plc-white); color: var(--plc-black) !important; }

/* ---- Layout container ---- */
.plc-container {
    width: 100%;
    max-width: var(--content-max);
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;
}

/* ---- Header (primary) ---- */
.plc-site-header,
.header.app-header {
    background: var(--plc-yellow) !important;
    position: sticky;
    top: var(--lang-bar-height);
    z-index: 1030;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}

.plc-site-header__inner,
.app-header__inner,
.plc-site-header .container.app-header__inner {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 1rem;
    min-height: var(--header-height);
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.plc-site-header__logo,
.app-header__logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    line-height: 0;
    text-decoration: none;
}

.plc-site-header__logo img,
.app-header__logo .logo,
.app-header__logo img {
    display: block;
    height: 44px;
    width: auto;
    max-width: min(200px, 42vw);
    object-fit: contain;
}

.plc-site-header__actions,
.app-header__actions {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem;
    flex-shrink: 0;
}

.plc-btn-wa,
.whatsapp-button {
    background: #25d366 !important;
    color: #fff !important;
    padding: 0.5rem 1rem;
    border-radius: var(--plc-radius);
    font-weight: 600;
    font-size: 0.8125rem;
    display: inline-flex !important;
    align-items: center;
    gap: 0.375rem;
    text-decoration: none !important;
    min-height: 40px;
    white-space: nowrap;
    border: none;
}
.plc-btn-wa:hover,
.whatsapp-button:hover { background: #1da851 !important; color: #fff !important; }

.plc-btn-estimate,
.estimate-button {
    background: var(--plc-black) !important;
    color: var(--plc-yellow) !important;
    padding: 0.5rem 1rem;
    border: 2px solid var(--plc-black);
    border-radius: var(--plc-radius);
    font-weight: 600;
    font-size: 0.8125rem;
    text-decoration: none !important;
    min-height: 40px;
    display: inline-flex !important;
    align-items: center;
    gap: 0.375rem;
    white-space: nowrap;
}
.plc-btn-estimate:hover,
.estimate-button:hover { background: var(--plc-yellow) !important; color: var(--plc-black) !important; border-color: var(--plc-yellow); }

.plc-btn-icon,
.header-icon-btn {
    width: 44px;
    height: 44px;
    border-radius: var(--plc-radius);
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    border: none;
    text-decoration: none !important;
}
.plc-btn-icon,
.header-icon-btn--wa { background: #25d366; color: #fff; }

.plc-btn-menu,
.navbar-toggler {
    width: 44px;
    height: 44px;
    border: 2px solid var(--plc-black);
    background: var(--plc-white);
    border-radius: var(--plc-radius);
    color: var(--plc-black);
    font-size: 1.1rem;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: pointer;
}

/* Desktop nav */
.plc-site-header__nav,
.nav-container {
    background: var(--plc-black) !important;
}

.plc-site-header__menu,
.nav-links.navbar-nav {
    display: flex !important;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    list-style: none;
    margin: 0;
    padding: 0.5rem 0;
}

.plc-site-header__menu .nav-link,
.nav-links .nav-link {
    color: var(--plc-yellow) !important;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.625rem 0.875rem !important;
    border-radius: 8px;
    transition: background 0.15s;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
}
.plc-site-header__menu .nav-link:hover,
.plc-site-header__menu .nav-link.is-active,
.nav-links .nav-link:hover,
.nav-links .nav-link.is-active {
    background: var(--plc-yellow) !important;
    color: var(--plc-black) !important;
}

/* Responsive visibility helpers (mobile-first) */
.plc-hide-mobile { display: none !important; }
.plc-hide-desktop { display: inline-flex !important; }

@media (min-width: 992px) {
    .plc-hide-mobile { display: inline-flex !important; }
    .plc-hide-desktop { display: none !important; }
    .plc-site-header__logo img,
    .app-header__logo .logo { height: 50px; max-width: 220px; }
}

/* Legacy alias */
.header {
    background: var(--plc-yellow);
    position: sticky;
    top: var(--lang-bar-height);
    z-index: 1030;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}

.app-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: var(--header-height);
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.app-header__logo .logo { height: 44px; width: auto; }

.app-header__actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.whatsapp-button {
    background: #25d366;
    color: #fff !important;
    padding: 0.5rem 1rem;
    border-radius: var(--plc-radius);
    font-weight: 600;
    font-size: 0.8125rem;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    text-decoration: none;
    min-height: 40px;
}
.whatsapp-button:hover { background: #1da851; color: #fff !important; }

.estimate-button {
    background: var(--plc-black);
    color: var(--plc-yellow) !important;
    padding: 0.5rem 1rem;
    border: 2px solid var(--plc-black);
    border-radius: var(--plc-radius);
    font-weight: 600;
    font-size: 0.8125rem;
    text-decoration: none;
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
}
.estimate-button:hover { background: var(--plc-yellow); color: var(--plc-black) !important; border-color: var(--plc-yellow); }

.header-icon-btn {
    width: 44px;
    height: 44px;
    border-radius: var(--plc-radius);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    border: none;
    text-decoration: none;
}
.header-icon-btn--wa { background: #25d366; color: #fff; }

.navbar-toggler {
    width: 44px;
    height: 44px;
    border: 2px solid var(--plc-black);
    background: var(--plc-white);
    border-radius: var(--plc-radius);
    color: var(--plc-black);
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: pointer;
}

/* Desktop nav */
.nav-container { background: var(--plc-black); }
.nav-links .nav-link {
    color: var(--plc-yellow) !important;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.625rem 0.875rem !important;
    border-radius: 8px;
    transition: background 0.15s;
}
.nav-links .nav-link:hover,
.nav-links .nav-link.is-active {
    background: var(--plc-yellow);
    color: var(--plc-black) !important;
}

/* ---- Mobile menu ---- */
.mobile-menu-offcanvas { width: min(320px, 90vw); border: none; box-shadow: var(--plc-shadow-lg); }
.mobile-menu-header {
    background: var(--plc-black);
    color: #fff;
    padding: 1.25rem;
    border-bottom: 3px solid var(--plc-yellow);
}
.mobile-menu-brand { display: flex; align-items: center; gap: 0.75rem; }
.mobile-menu-brand img { border-radius: 8px; background: #fff; padding: 4px; }
.mobile-menu-brand strong { display: block; color: var(--plc-yellow); font-size: 1rem; }
.mobile-menu-brand small { display: block; color: rgba(255,255,255,0.6); font-size: 0.75rem; }
.mobile-menu-body { padding: 1rem; background: var(--plc-gray-100); }
.mobile-menu-nav { display: flex; flex-direction: column; gap: 0.5rem; }
.mobile-menu-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    background: var(--plc-white);
    border-radius: var(--plc-radius);
    color: var(--plc-gray-900);
    font-weight: 600;
    font-size: 0.9375rem;
    box-shadow: var(--plc-shadow);
    text-decoration: none;
    min-height: 48px;
}
.mobile-menu-link:active { background: var(--plc-green-light); }
.mobile-menu-link__icon {
    width: 36px; height: 36px;
    border-radius: 8px;
    background: var(--plc-green-light);
    color: var(--plc-green);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.mobile-menu-link__text { flex: 1; }
.mobile-menu-link__arrow { color: var(--plc-gray-300); font-size: 0.75rem; }
.mobile-menu-cta { display: grid; grid-template-columns: 1fr 1fr; gap: 0.625rem; margin-top: 1.25rem; padding-top: 1rem; border-top: 1px solid var(--plc-gray-300); }
.mobile-menu-cta__wa, .mobile-menu-cta__quote {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 0.375rem; padding: 0.75rem; border-radius: var(--plc-radius);
    font-weight: 700; font-size: 0.75rem; text-decoration: none; min-height: 68px; text-align: center;
}
.mobile-menu-cta__wa { background: #25d366; color: #fff; }
.mobile-menu-cta__wa i { font-size: 1.375rem; }
.mobile-menu-cta__quote { background: var(--plc-black); color: var(--plc-yellow); border: 2px solid var(--plc-yellow); }

/* ---- Bottom nav (mobile) ---- */
.app-bottom-nav {
    position: fixed; left: 0; right: 0; bottom: 0;
    z-index: 1080;
    height: calc(var(--bottom-nav-height) + var(--safe-bottom));
    padding-bottom: var(--safe-bottom);
    background: var(--plc-white);
    border-top: 1px solid var(--plc-gray-300);
    display: flex;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.06);
}
.app-tab {
    flex: 1;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 2px; padding: 6px 4px;
    color: var(--plc-gray-500);
    font-size: 0.625rem; font-weight: 600;
    text-decoration: none; min-height: 48px;
    position: relative;
}
.app-tab i { font-size: 1.2rem; }
.app-tab.is-active { color: var(--plc-green); }
.app-tab.is-active::after {
    content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 24px; height: 3px; background: var(--plc-green); border-radius: 0 0 3px 3px;
}
.app-tab--chat { color: #25d366; }
.app-tab--accent.is-active { color: var(--plc-yellow-dark); }
.app-tab--accent.is-active::after { background: var(--plc-yellow); }

/* ---- Hero ---- */
.hero-section {
    position: relative;
    background: var(--plc-gray-900);
    background-image: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)), var(--hero-image, none);
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 4rem 1.25rem 5rem;
    min-height: 360px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.hero-section h1 {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    color: #fff;
    margin-bottom: 1rem;
    max-width: 720px;
}
.hero-section-text {
    font-size: clamp(0.9375rem, 2vw, 1.125rem);
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin: 0 auto 1.5rem;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }

/* ---- Features strip ---- */
.features-section {
    margin-top: -3rem;
    padding: 0 1rem 2rem;
    position: relative;
    z-index: 2;
}
.feature-box {
    background: var(--plc-white);
    border-radius: var(--plc-radius-lg);
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--plc-shadow-lg);
    height: 100%;
}
.feature-box img { margin: 0 auto 0.75rem; }
.feature-box p { color: var(--plc-gray-700); margin: 0; font-size: 0.9375rem; }

/* ---- Service cards ---- */
.service-card {
    border: none;
    border-radius: var(--plc-radius-lg);
    overflow: hidden;
    box-shadow: var(--plc-shadow);
    background: var(--plc-white);
    height: 100%;
    transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--plc-shadow-lg); }
.service-card .card-img-top { width: 100%; height: 200px; object-fit: cover; }
.service-card .card-body { padding: 1.25rem; }
.service-card .card-title { font-size: 1.0625rem; color: var(--plc-green); margin-bottom: 0.5rem; }
.service-card .card-title a { color: inherit; text-decoration: none; }
.service-card .card-title a:hover { color: var(--plc-green-dark); }
.service-card p { color: var(--plc-gray-500); font-size: 0.875rem; margin-bottom: 1rem; }
.service-card .btn-brand { width: 100%; }

/* ---- Location cards ---- */
.location-box {
    background: var(--plc-white);
    border-radius: var(--plc-radius-lg);
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--plc-shadow);
    height: 100%;
    transition: transform 0.2s;
}
.location-box:hover { transform: translateY(-4px); }
.location-box .icon-container {
    width: 72px; height: 72px;
    margin: 0 auto 1rem;
    background: var(--plc-green-light);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--plc-green);
}
.location-title { color: var(--plc-green); font-weight: 700; margin-bottom: 0.5rem; }
.location-box p { color: var(--plc-gray-500); font-size: 0.875rem; margin: 0; }

/* ---- Article cards ---- */
.article-box {
    background: var(--plc-white);
    border-radius: var(--plc-radius-lg);
    overflow: hidden;
    box-shadow: var(--plc-shadow);
    height: 100%;
    transition: transform 0.2s;
}
.article-box:hover { transform: translateY(-4px); }
.article-box img { width: 100%; height: 180px; object-fit: cover; }
.article-content { padding: 1.25rem; }
.article-content h4 { font-size: 1rem; margin-bottom: 0.5rem; }
.article-content h4 a { color: var(--plc-gray-900); text-decoration: none; }
.article-content h4 a:hover { color: var(--plc-green); }
.article-content p { color: var(--plc-gray-500); font-size: 0.875rem; margin-bottom: 1rem; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

.article-card {
    background: var(--plc-white);
    border-radius: var(--plc-radius-lg);
    overflow: hidden;
    box-shadow: var(--plc-shadow);
    height: 100%;
}
.article-card img { width: 100%; height: 180px; object-fit: cover; }
.article-card-body { padding: 1.25rem; }
.article-card-body h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.article-card__category {
    display: inline-block;
    background: var(--plc-yellow);
    color: var(--plc-black);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.625rem;
    border-radius: 99px;
    margin-bottom: 0.5rem;
    text-decoration: none;
}

.content-section { padding: var(--plc-section-y) 0; background: var(--plc-gray-100); }

/* ---- Forms ---- */
.estimate-form-section { padding: var(--plc-section-y) 0; }
.estimate-form {
    background: var(--plc-white);
    border-radius: var(--plc-radius-lg);
    padding: 1.5rem;
    box-shadow: var(--plc-shadow);
    max-width: 800px;
    margin: 0 auto;
}
.estimate-form .form-label { font-weight: 600; font-size: 0.875rem; color: var(--plc-gray-700); }
.estimate-form .form-control,
.estimate-form .form-select {
    border: 1.5px solid var(--plc-gray-300);
    border-radius: var(--plc-radius);
    padding: 0.75rem 1rem;
    font-size: 1rem;
    min-height: 48px;
}
.estimate-form .form-control:focus,
.estimate-form .form-select:focus {
    border-color: var(--plc-green);
    box-shadow: 0 0 0 3px rgba(43, 122, 11, 0.15);
}
.estimate-form .btn-brand { min-width: 200px; }

/* ---- Keywords ---- */
.keywords, .related-keywords {
    margin-top: 1.5rem;
    padding: 1rem;
    background: var(--plc-gray-100);
    border-radius: var(--plc-radius);
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.related-keywords h5 { width: 100%; font-size: 0.875rem; color: var(--plc-gray-700); margin-bottom: 0.25rem; }
.keyword, .related-keywords a {
    background: var(--plc-green);
    color: #fff !important;
    padding: 0.375rem 0.875rem;
    border-radius: 99px;
    font-size: 0.8125rem;
    font-weight: 500;
    text-decoration: none;
}
.related-keywords a:hover { background: var(--plc-green-dark); color: #fff !important; }

/* ---- Inner pages ---- */
.inner-page { background: var(--plc-gray-100); min-height: 50vh; }
.page-hero {
    background: linear-gradient(135deg, var(--plc-black) 0%, #2d2d2d 100%);
    color: #fff;
    padding: 2rem 0;
}
.page-hero h1 { color: #fff; font-size: clamp(1.25rem, 3.5vw, 1.875rem); margin-bottom: 0.5rem; }
.page-hero .lead { color: rgba(255,255,255,0.8); margin: 0; font-size: 0.9375rem; }
.page-content {
    background: var(--plc-white);
    border-radius: var(--plc-radius-lg);
    box-shadow: var(--plc-shadow);
    padding: 1.5rem;
    margin: 1.5rem 0 2.5rem;
}
.page-content img { border-radius: var(--plc-radius); margin-bottom: 1.25rem; }
.page-back a { color: var(--plc-green); font-weight: 600; display: inline-flex; align-items: center; gap: 0.5rem; min-height: 44px; }

/* ---- Breadcrumb ---- */
.breadcrumb-nav { background: var(--plc-white); border-bottom: 1px solid var(--plc-gray-300); padding: 0.625rem 0; }
.breadcrumb-list {
    display: flex; flex-wrap: wrap; align-items: center; gap: 0.25rem;
    list-style: none; margin: 0; padding: 0; font-size: 0.8125rem;
}
.breadcrumb-list li + li::before { content: "›"; margin-right: 0.25rem; color: var(--plc-gray-300); }
.breadcrumb-list a { color: var(--plc-green); font-weight: 600; }

/* ---- Footer ---- */
.footer-section {
    background: var(--plc-gray-900);
    color: #e5e7eb;
    padding: 3rem 0 1.5rem;
}
.footer-section h4 { color: var(--plc-yellow); font-size: 1rem; margin-bottom: 1rem; }
.footer-section p, .footer-section li { font-size: 0.875rem; color: #d1d5db; }
.footer-section a { color: var(--plc-yellow); }
.footer-section a:hover { color: #fff; }
.footer-section ul { list-style: none; padding: 0; margin: 0; }
.footer-section ul li { margin-bottom: 0.5rem; }
.footer-section ul li i { margin-right: 0.5rem; color: var(--plc-yellow); }
.footer-logo img { max-width: 140px; margin-bottom: 1rem; }
.contact-details { font-size: 0.875rem; }
.contact-details p { margin-bottom: 0.5rem; }
.footer-section .text-center p {
    margin: 0; padding-top: 1.5rem; margin-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.8125rem; color: #9ca3af;
}

/* ---- CMS content ---- */
.about-content, .service-detail, .article-body { font-size: 1rem; line-height: 1.7; color: var(--plc-gray-700); }
.about-content h2, .about-content h3, .service-detail h2, .service-detail h3, .article-body h2, .article-body h3 {
    color: var(--plc-green); margin-top: 1.5rem;
}

/* ---- Quality section (CMS page 2) ---- */
.quality-section { background: var(--plc-white); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 991.98px) {
    :root {
        --lang-bar-height: 32px;
        --header-height: 52px;
        --plc-section-y: 2.5rem;
    }

    .plc-site-header__nav,
    .nav-container { display: none !important; }

    .plc-hide-mobile.plc-btn-wa,
    .plc-hide-mobile.plc-btn-estimate,
    .whatsapp-button.plc-hide-mobile,
    .estimate-button.plc-hide-mobile { display: none !important; }

    .plc-hide-desktop,
    .plc-btn-icon.plc-hide-desktop,
    .plc-btn-menu.plc-hide-desktop { display: inline-flex !important; }

    .hero-section { min-height: 280px; padding: 3rem 1rem 4rem; }
    .features-section { margin-top: -2rem; }

    .breadcrumb-nav { display: none; }

    .page-content { margin: 1rem 0 2rem; }

    .footer-section { padding-bottom: 1rem; }
}

@media (min-width: 992px) {
    .app-bottom-nav { display: none !important; }
    body.has-app-shell { padding-bottom: 0; }
    .plc-site-header__logo img,
    .app-header__logo .logo { height: 50px; max-width: 220px; }
}
