/*
 * icons.css — Base Stylesheet
 * Scope: Base reset, variables, indexnew.asp layout, shared components
 *        (topbar, navbar, footer, directory, ad-banner, youtube, gallery)
 * Pairs with: icons-pages.css (inner-page components)
 * Font: IcoFont via CDN (unpkg.com/@icon/icofont/icofont.css)
 */

/* ══════════════════════════════════════════════════════
   1. BASE / RESET / VARIABLES
══════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --navy:   #1C3A1C;
    --steel:  #3A7D3A;
    --accent: #5CB85C;
    --accent2:#7DCE7D;
    --light:  #F0F7F0;
    --muted:  #7A9E7A;
    --white:  #ffffff;
    --bar-h:  72px;
  }

  body {
    font-family: 'Sarabun', sans-serif;
    background: #eaf3ea;
    min-height: 100vh;
  }

  /* ── TOP INFO BAR ── */
  .topbar {
    background: var(--navy);
    color: var(--muted);
    font-size: 12.5px;
    letter-spacing: 0.03em;
    height: 34px;
    display: flex;
    align-items: center;
  }
  .topbar .inner {
    max-width: 1280px;
    margin: auto;
    width: 100%;
    padding: 0 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .topbar a { color: var(--muted); text-decoration: none; transition: color .2s; }
  .topbar a:hover { color: var(--accent); }
  .topbar .left { display: flex; gap: 24px; align-items: center; }
  .topbar .right { display: flex; gap: 16px; align-items: center; }
  .topbar .dot { color: #2a5a2a; }
  .lang-switch {
    display: flex;
    gap: 0;
    border: 1px solid #2a5a2a;
    border-radius: 4px;
    overflow: hidden;
  }
  .lang-switch a {
    padding: 2px 10px;
    font-size: 11px;
    letter-spacing: .06em;
    font-weight: 500;
  }
  .lang-switch a.active {
    background: var(--accent);
    color: var(--white) !important;
  }

  /* ── MAIN NAVBAR ── */
  nav.main {
    background: var(--white);
    height: var(--bar-h);
    position: sticky;
    top: 0;
    z-index: 200;
    box-shadow: 0 2px 16px rgba(0,0,0,.08);
    border-bottom: 3px solid var(--steel);
  }
  .nav-inner {
    max-width: 1280px;
    margin: auto;
    height: 100%;
    padding: 0 32px;
    display: flex;
    align-items: center;
    gap: 40px;
  }

  /* Logo */
  .logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
  }
  .logo img,
  .logo-img {
    height: 50px;
    width: auto;
    display: block;
    flex-shrink: 0;
  }

  /* Menu — li สูงเต็ม nav ป้องกัน hover หลุด */
  .menu {
    display: flex;
    align-items: stretch;
    gap: 4px;
    flex: 1;
    list-style: none;
    height: 100%;
  }
  .menu > li {
    position: relative;
    display: flex;
    align-items: center;
  }
  .menu > li > a, .menu > li > button {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 14px;
    height: 100%;
    font-size: 14px;
    font-weight: 500;
    color: #2d3e50;
    text-decoration: none;
    border-radius: 6px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-family: 'Sarabun', sans-serif;
    transition: color .2s, background .2s;
    white-space: nowrap;
  }
  .menu > li > a:hover, .menu > li > button:hover {
    color: var(--navy);
    background: var(--light);
  }
  .menu > li > a.active {
    color: var(--accent);
    font-weight: 600;
  }
  .chevron {
    width: 14px; height: 14px;
    opacity: .5;
    transition: transform .25s;
  }
  .menu > li:hover .chevron { transform: rotate(180deg); opacity: 1; }

  /* Dropdown */
  .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 8px 40px rgba(0,0,0,.13);
    border: 1px solid #e8edf2;
    min-width: 220px;
    padding: 8px;
    padding-top: 14px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-4px);
    transition: opacity .22s, transform .22s;
    z-index: 200;
  }
  .dropdown::before { content:''; position:absolute; top:-12px; left:0; right:0; height:12px; }
  .menu > li:hover .dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    border-radius: 6px;
    font-size: 13.5px;
    color: #3a4f63;
    text-decoration: none;
    transition: background .15s, color .15s;
  }
  .dropdown a:hover { background: var(--light); color: var(--navy); }
  .dropdown a .icon {
    width: 28px; height: 28px;
    background: #e8f5e8;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
  }
  .dropdown hr {
    border: none;
    border-top: 1px solid #f0f2f5;
    margin: 6px 0;
  }

  /* Nav Right Actions */
  .nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
  }
  .btn-login {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border: 1.5px solid #cbd6e0;
    border-radius: 8px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--steel);
    text-decoration: none;
    font-family: 'Sarabun', sans-serif;
    background: transparent;
    cursor: pointer;
    transition: border-color .2s, color .2s, background .2s;
  }
  .btn-login:hover {
    border-color: var(--steel);
    background: var(--light);
  }
  .btn-cta {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 9px 20px;
    background: var(--steel);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 13.5px;
    font-weight: 600;
    font-family: 'Sarabun', sans-serif;
    cursor: pointer;
    text-decoration: none;
    transition: background .2s, transform .15s;
    box-shadow: 0 2px 8px rgba(45,106,79,.3);
  }
  .btn-cta:hover {
    background: var(--accent);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(45,106,79,.4);
  }

  /* ── SEARCH BAR (below nav) ── */
  .search-strip {
    background: var(--steel);
    padding: 14px 0;
  }
  .search-inner {
    max-width: 1280px;
    margin: auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .search-label {
    color: rgba(255,255,255,.7);
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .search-box {
    flex: 1;
    display: flex;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 8px;
    overflow: hidden;
    transition: border-color .2s;
  }
  .search-box:focus-within {
    border-color: var(--accent);
    background: rgba(255,255,255,.18);
  }
  .search-box select {
    background: transparent;
    border: none;
    border-right: 1px solid rgba(255,255,255,.2);
    color: white;
    font-size: 13px;
    font-family: 'Sarabun', sans-serif;
    padding: 8px 14px;
    outline: none;
    cursor: pointer;
  }
  .search-box select option { background: var(--steel); }
  .search-box input {
    flex: 1;
    background: transparent;
    border: none;
    color: white;
    font-size: 13.5px;
    font-family: 'Sarabun', sans-serif;
    padding: 8px 16px;
    outline: none;
  }
  .search-box input::placeholder { color: rgba(255,255,255,.45); }
  .btn-search {
    background: var(--steel);
    border: none;
    color: var(--white);
    font-weight: 700;
    font-size: 13px;
    font-family: 'Sarabun', sans-serif;
    padding: 0 22px;
    cursor: pointer;
    transition: background .2s;
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .btn-search:hover { background: var(--accent); }

  .search-tags {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
  }
  .tag {
    background: rgba(255,255,255,.1);
    color: rgba(255,255,255,.75);
    font-size: 11.5px;
    padding: 4px 12px;
    border-radius: 20px;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,.15);
    font-family: 'Sarabun', sans-serif;
    transition: background .15s, color .15s;
    white-space: nowrap;
  }
  .tag:hover { background: var(--accent); color: var(--white); border-color: var(--accent); }

  /* ── HERO ── */
  .hero {
    background: linear-gradient(135deg, #1C3A1C 0%, #122412 50%, #1C4A1C 100%);
    padding: 72px 0 80px;
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%235CB85C' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  }
  .hero-inner {
    max-width: 1280px;
    margin: auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 64px;
    align-items: center;
    position: relative;
  }
  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(82,183,136,.15);
    border: 1px solid rgba(82,183,136,.3);
    color: var(--accent);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .08em;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
    text-transform: uppercase;
  }
  .hero h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 54px;
    font-weight: 700;
    color: white;
    line-height: 1.1;
    letter-spacing: .01em;
    margin-bottom: 16px;
  }
  .hero h1 em {
    font-style: normal;
    color: var(--accent);
  }
  .hero-sub {
    color: rgba(255,255,255,.65);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 480px;
  }
  .hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
  .btn-hero-primary {
    background: var(--accent);
    color: var(--navy);
    font-weight: 700;
    font-size: 15px;
    padding: 13px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-family: 'Sarabun', sans-serif;
    transition: background .2s, transform .15s;
    box-shadow: 0 4px 20px rgba(82,183,136,.35);
  }
  .btn-hero-primary:hover { background: var(--accent2); transform: translateY(-2px); }
  .btn-hero-sec {
    background: rgba(255,255,255,.1);
    color: white;
    font-weight: 500;
    font-size: 15px;
    padding: 13px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-family: 'Sarabun', sans-serif;
    border: 1px solid rgba(255,255,255,.2);
    transition: background .2s;
  }
  .btn-hero-sec:hover { background: rgba(255,255,255,.18); }

  /* Login Card */
  .login-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 24px 64px rgba(0,0,0,.25);
  }
  .login-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 20px;
    color: var(--navy);
    letter-spacing: .04em;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--light);
  }
  .form-group { margin-bottom: 14px; }
  .form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--muted);
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 6px;
  }
  .form-group input {
    width: 100%;
    border: 1.5px solid #dde5e0;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 14px;
    font-family: 'Sarabun', sans-serif;
    color: var(--navy);
    outline: none;
    transition: border-color .2s;
  }
  .form-group input:focus { border-color: var(--accent); }
  .btn-form {
    width: 100%;
    background: var(--steel);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 12px;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Sarabun', sans-serif;
    cursor: pointer;
    margin-top: 4px;
    transition: background .2s;
  }
  .btn-form:hover { background: var(--navy); }
  .login-links {
    display: flex;
    justify-content: space-between;
    margin-top: 12px;
    font-size: 12.5px;
  }
  .login-links a { color: var(--steel); text-decoration: none; }
  .login-links a:hover { text-decoration: underline; }

  /* ── BANNER SLIDER ── */
  .banner-section {
    background: white;
    padding: 32px 0 0;
    border-bottom: 1px solid #e0ede0;
  }
  .banner-inner {
    max-width: 1280px;
    margin: auto;
    padding: 0 32px 32px;
  }
  .banner-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
  }
  .banner-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: .03em;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .banner-title .dot-live {
    width: 8px; height: 8px;
    background: #e74c3c;
    border-radius: 50%;
    animation: pulse-red 1.4s infinite;
    flex-shrink: 0;
  }
  @keyframes pulse-red {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: .5; transform: scale(1.4); }
  }
  .banner-controls {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .banner-counter {
    font-size: 13px;
    color: var(--muted);
    font-weight: 500;
    min-width: 44px;
    text-align: center;
  }
  .banner-btn {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1.5px solid #c8ddc8;
    background: white;
    color: var(--steel);
    font-size: 16px;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background .2s, border-color .2s, color .2s;
    flex-shrink: 0;
  }
  .banner-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
  }
  .banner-pause {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1.5px solid #c8ddc8;
    background: white;
    color: var(--muted);
    font-size: 13px;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background .2s, color .2s;
  }
  .banner-pause:hover { background: var(--light); color: var(--navy); }
  .banner-pause.paused { background: var(--light); color: var(--navy); }

  /* Slider Track */
  .slider-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,.09);
    aspect-ratio: 16 / 5;
    background: #1C3A1C;
    cursor: grab;
  }
  .slider-wrap:active { cursor: grabbing; }
  .slider-track {
    display: flex;
    height: 100%;
    transition: transform .55s cubic-bezier(.4,0,.2,1);
  }
  .slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
  }

  /* Slide backgrounds – แต่ละ slide ใช้ gradient คนละสี */
  /*.slide-1 { background: linear-gradient(120deg, #1C3A1C 0%, #2d6e2d 60%, #4a9a4a 100%); }*/
  .slide-1 { background: url('/images/slides/slide1.png') center/cover no-repeat; }
  .slide-2 { background: linear-gradient(120deg, #7B3412 0%, #B85C20 60%, #D4874A 100%); }
  .slide-3 { background: linear-gradient(120deg, #1A2E4A 0%, #2B5086 60%, #4A80CC 100%); }
  .slide-4 { background: linear-gradient(120deg, #2D1A4A 0%, #5A3086 60%, #8A60CC 100%); }
  .slide-5 { background: linear-gradient(120deg, #1A3A3A 0%, #2B7070 60%, #4AACAC 100%); }

  /* Pattern overlay */
  .slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
  }
  /* Large decorative circle */
  .slide::after {
    content: '';
    position: absolute;
    right: -80px; top: -80px;
    width: 360px; height: 360px;
    border-radius: 50%;
    background: rgba(255,255,255,.04);
    pointer-events: none;
  }

  /* Slide image (real banner) */
  .slide-img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity .4s;
  }
  .slide-img.loaded { opacity: 1; }

  /* Slide placeholder (emoji + text icon) */
  .slide-icon {
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    font-size: clamp(64px, 10vw, 120px);
    opacity: .18;
    pointer-events: none;
    user-select: none;
  }

  /* Slide content */
  .slide-content {
    position: relative;
    z-index: 2;
    padding: 0 6%;
    max-width: 65%;
  }
  .slide-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.25);
    color: white;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 14px;
    backdrop-filter: blur(4px);
  }
  .slide-content h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(26px, 3.5vw, 46px);
    font-weight: 700;
    color: white;
    line-height: 1.15;
    letter-spacing: .01em;
    margin-bottom: 10px;
    text-shadow: 0 2px 12px rgba(0,0,0,.3);
  }
  .slide-content p {
    font-size: clamp(13px, 1.4vw, 15px);
    color: rgba(255,255,255,.78);
    line-height: 1.6;
    margin-bottom: 20px;
  }
  .slide-cta {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: white;
    color: var(--navy);
    font-weight: 700;
    font-size: 14px;
    padding: 10px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-family: 'Sarabun', sans-serif;
    transition: transform .15s, box-shadow .15s;
    box-shadow: 0 4px 16px rgba(0,0,0,.2);
  }
  .slide-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.25); }
  .slide-cta.accent { background: var(--accent); color: white; }

  /* Upload placeholder */
  .slide-upload-hint {
    position: absolute;
    inset: 0;
    border: 2px dashed rgba(255,255,255,.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
  }

  /* Dot indicators */
  .slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
  }
  .sdot {
    width: 28px; height: 4px;
    border-radius: 2px;
    background: #c8ddc8;
    cursor: pointer;
    transition: background .3s, width .3s;
    border: none;
    padding: 0;
  }
  .sdot.active {
    background: var(--accent);
    width: 44px;
  }

  /* Upload button area */
  .banner-upload-bar {
    margin-top: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--light);
    border-radius: 10px;
    border: 1.5px dashed #b0d0b0;
  }
  .upload-icon {
    width: 36px; height: 36px;
    background: var(--accent);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: white;
    font-size: 16px;
    flex-shrink: 0;
  }
  .upload-text { flex: 1; }
  .upload-text strong { display: block; font-size: 13px; color: var(--navy); }
  .upload-text span { font-size: 12px; color: var(--muted); }
  .upload-btn {
    background: var(--steel);
    color: white;
    border: none;
    border-radius: 7px;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Sarabun', sans-serif;
    cursor: pointer;
    transition: background .2s;
    flex-shrink: 0;
  }
  .upload-btn:hover { background: var(--navy); }

  /* ── STATS BAR ── */
  .stats-bar {
    background: white;
    border-bottom: 1px solid #e8f0ec;
    padding: 0;
  }
  .stats-inner {
    max-width: 1280px;
    margin: auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
  .stat-item {
    padding: 24px 20px;
    text-align: center;
    border-right: 1px solid #e8f0ec;
    position: relative;
  }
  .stat-item:last-child { border-right: none; }
  .stat-item::before {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--accent);
    transition: width .3s;
  }
  .stat-item:hover::before { width: 60%; }
  .stat-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
  }
  .stat-num span { color: var(--steel); }
  .stat-label { font-size: 12.5px; color: var(--muted); margin-top: 4px; }

  /* ── SECTION WRAPPER ── */
  .section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 56px 32px;
  }
  .section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 28px;
  }
  .section-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: .03em;
  }
  .section-title span {
    display: block;
    font-family: 'Sarabun', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: var(--muted);
    letter-spacing: 0;
    margin-top: 2px;
  }
  .see-all {
    color: var(--steel);
    font-size: 13.5px;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color .2s;
  }
  .see-all:hover { color: var(--navy); }

  /* ── DIRECTORY GRID ── */
  .dir-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .dir-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid #e4ede8;
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    transition: box-shadow .2s, transform .2s, border-color .2s;
    cursor: pointer;
  }
  .dir-card:hover {
    box-shadow: 0 8px 32px rgba(45,106,79,.12);
    transform: translateY(-2px);
    border-color: var(--accent);
  }
  .dir-icon {
    width: 52px; height: 52px;
    background: var(--light);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    transition: background .2s;
  }
  .dir-card:hover .dir-icon { background: rgba(82,183,136,.15); }
  .dir-info h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 4px;
  }
  .dir-info p { font-size: 12.5px; color: var(--muted); }
  .dir-count {
    margin-left: auto;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--steel);
    flex-shrink: 0;
  }

  /* ── LISTING CARDS ── */
  .page-bg { background: #f2f8f2; }
  .listing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .listing-card {
    background: white;
    border-radius: 12px;
    border: 1px solid #e4ede8;
    padding: 20px 22px;
    text-decoration: none;
    display: block;
    transition: box-shadow .2s, border-color .2s;
  }
  .listing-card:hover {
    box-shadow: 0 6px 24px rgba(45,106,79,.1);
    border-color: var(--accent);
  }
  .listing-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
  }
  .listing-type {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: white;
    background: var(--steel);
    padding: 3px 10px;
    border-radius: 4px;
  }
  .listing-type.contractor { background: #3A7D3A; }
  .listing-type.material   { background: #5CB85C; }
  .listing-date { font-size: 12px; color: var(--muted); }
  .listing-card h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.5;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .listing-card p {
    font-size: 12.5px;
    color: #6b8a7a;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* ── PHOTO GALLERY ── */
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
  }
  .gallery-item {
    aspect-ratio: 1;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    background: var(--light);
  }
  .gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .4s;
  }
  .gallery-item:hover img { transform: scale(1.07); }
  .gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,58,42,.7) 0%, transparent 50%);
    opacity: 0;
    transition: opacity .3s;
    display: flex;
    align-items: flex-end;
    padding: 12px;
  }
  .gallery-item:hover .gallery-overlay { opacity: 1; }
  .gallery-overlay span {
    font-size: 11px;
    color: white;
    font-weight: 500;
  }
  .gallery-placeholder {
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--muted);
    background: linear-gradient(135deg, #e8f5ee, #d4ede0);
  }

  /* ── AD BANNER STRIP ── */
  .ad-strip {
    background: var(--light);
    border-top: 1px solid #c8e0c8;
    border-bottom: 1px solid #c8e0c8;
    padding: 16px 0;
  }
  .ad-inner {
    max-width: 1280px;
    margin: auto;
    padding: 0 32px;
    display: flex;
    gap: 16px;
    align-items: stretch;
  }
  .ad-label {
    font-size: 11px;
    color: var(--muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    flex-shrink: 0;
    padding-top: 8px;
  }
  .ad-slots {
    display: flex;
    gap: 12px;
    flex: 1;
    align-items: stretch;
  }
  .ad-slot {
    flex: 1;
    min-height: 198px;
    background: white;
    border: 2px dashed #c8ddd5;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--muted);
    cursor: pointer;
    overflow: hidden;
    line-height: normal;
    transition: border-color .2s, background .2s;
  }
  .ad-slot:hover { border-color: var(--accent); background: rgba(82,183,136,.05); }
  .ad-slot a { display: block; line-height: 0; width: 100%; }
  .ad-slot img { width: 100%; height: 198px; object-fit: cover; display: block; border-radius: 6px; }
  /* placeholder CTA inside empty slot
     NOTE: ต้อง reset line-height ทุก element
     เพราะ .ad-slot { line-height: 0 } inherit ลงมาทุก child */
  .ad-slot-cta {
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 10px; padding: 24px 20px;
    width: 100%; box-sizing: border-box;
    line-height: normal;
  }
  .ad-slot-cta-icon {
    width: 44px; height: 44px; border-radius: 50%;
    background: rgba(92,184,92,.12);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; line-height: normal;
  }
  .ad-slot-cta-title {
    font-size: 13px; font-weight: 700;
    color: #2d5a2d; text-align: center;
    line-height: 1.3; display: block;
  }
  .ad-slot-cta-sub {
    font-size: 11.5px; color: #7a9a7a;
    text-align: center; line-height: 1.5; display: block;
  }
  /* ใช้ .ad-slot-cta .ad-slot-cta-btn เพื่อชนะ .ad-slot a { display:block } */
  .ad-slot-cta .ad-slot-cta-btn {
    display: inline-flex !important; align-items: center; justify-content: center;
    gap: 5px; padding: 8px 20px;
    background: var(--steel); color: #fff;
    border-radius: 20px; font-size: 12px; font-weight: 600;
    text-decoration: none; line-height: 1.4;
    white-space: nowrap; transition: all .2s;
    align-self: center; width: auto;
  }
  .ad-slot-cta .ad-slot-cta-btn:hover {
    background: var(--accent); color: var(--navy);
    transform: translateY(-1px);
  }

  /* ── YOUTUBE SECTION ── */
  .yt-section { background: var(--navy); padding: 56px 0; }
  .yt-section .section-title { color: white; }
  .yt-section .section-title span { color: rgba(255,255,255,.5); }
  .yt-section .see-all { color: var(--accent2); }
  .yt-section .see-all:hover { color: white; }

  /* Filter tabs */
  .yt-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 24px;
  }
  .yt-tab {
    padding: 7px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    font-family: 'Sarabun', sans-serif;
    cursor: pointer;
    border: 1.5px solid rgba(255,255,255,.2);
    background: transparent;
    color: rgba(255,255,255,.65);
    transition: all .2s;
  }
  .yt-tab:hover { border-color: var(--accent); color: var(--accent); }
  .yt-tab.active {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
  }

  /* Grid */
  .yt-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  /* Card */
  .yt-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 14px;
    overflow: hidden;
    transition: transform .25s, box-shadow .25s, border-color .25s;
    cursor: pointer;
    text-decoration: none;
  }
  .yt-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,.4);
    border-color: rgba(92,184,92,.4);
  }

  /* Thumbnail area */
  .yt-thumb {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #0f1f0f;
    overflow: hidden;
  }
  .yt-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .4s;
  }
  .yt-card:hover .yt-thumb img { transform: scale(1.05); }

  /* Thumbnail placeholder */
  .yt-thumb-placeholder {
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
  }
  .yt-thumb-placeholder.c1 { background: linear-gradient(135deg,#1a3a1a,#2d6a2d); }
  .yt-thumb-placeholder.c2 { background: linear-gradient(135deg,#1a2a3a,#2d4a6a); }
  .yt-thumb-placeholder.c3 { background: linear-gradient(135deg,#3a1a1a,#6a2d2d); }
  .yt-thumb-placeholder.c4 { background: linear-gradient(135deg,#2a1a3a,#4a2d6a); }
  .yt-thumb-placeholder.c5 { background: linear-gradient(135deg,#1a3a2a,#2d6a4a); }
  .yt-thumb-placeholder.c6 { background: linear-gradient(135deg,#3a2a1a,#6a4a2d); }

  /* Play button overlay */
  .yt-play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,.25);
    transition: background .2s;
  }
  .yt-card:hover .yt-play-overlay { background: rgba(0,0,0,.1); }
  .yt-play-btn {
    width: 52px; height: 52px;
    background: rgba(255,0,0,.88);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(0,0,0,.5);
    transition: transform .2s, background .2s;
  }
  .yt-card:hover .yt-play-btn {
    transform: scale(1.12);
    background: #ff0000;
  }
  .yt-play-btn svg { margin-left: 3px; }

  /* Duration badge */
  .yt-duration {
    position: absolute;
    bottom: 8px; right: 8px;
    background: rgba(0,0,0,.78);
    color: white;
    font-size: 11.5px;
    font-weight: 600;
    padding: 2px 7px;
    border-radius: 4px;
    letter-spacing: .02em;
  }

  /* Category badge */
  .yt-cat {
    position: absolute;
    top: 10px; left: 10px;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 4px;
    color: white;
  }
  .yt-cat.walkthrough { background: rgba(92,184,92,.85); }
  .yt-cat.service     { background: rgba(52,144,220,.85); }
  .yt-cat.material    { background: rgba(240,173,78,.85); color:#1a1a1a; }
  .yt-cat.news        { background: rgba(217,83,79,.85); }

  /* Card body */
  .yt-body { padding: 16px 18px 18px; }
  .yt-title {
    font-size: 14.5px;
    font-weight: 600;
    color: white;
    line-height: 1.45;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .yt-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    color: rgba(255,255,255,.45);
  }
  .yt-meta .channel {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--accent);
    font-weight: 500;
  }
  .yt-avatar {
    width: 20px; height: 20px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: white;
    font-weight: 700;
    flex-shrink: 0;
  }

  /* Subscribe CTA bar */
  .yt-cta-bar {
    margin-top: 28px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 12px;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }
  .yt-cta-bar .left {
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .yt-logo-red {
    width: 44px; height: 44px;
    background: #ff0000;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
  }
  .yt-cta-bar .desc strong {
    display: block;
    color: white;
    font-size: 14px;
    margin-bottom: 2px;
  }
  .yt-cta-bar .desc span {
    font-size: 12.5px;
    color: rgba(255,255,255,.5);
  }
  .btn-yt-sub {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #ff0000;
    color: white;
    font-weight: 700;
    font-size: 13.5px;
    padding: 10px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-family: 'Sarabun', sans-serif;
    white-space: nowrap;
    transition: background .2s, transform .15s;
    border: none;
    cursor: pointer;
  }
  .btn-yt-sub:hover { background: #cc0000; transform: translateY(-1px); }

  /* Hidden cards for filter */
  .yt-card.hidden { display: none; }

  /* ── FOOTER ── */
  footer {
    background: var(--navy);
    color: rgba(255,255,255,.65);
    padding: 56px 0 0;
  }
  .footer-inner {
    max-width: 1280px;
    margin: auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 280px 1fr 1fr 1fr;
    gap: 48px;
  }
  .footer-brand .brand-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: white;
    letter-spacing: .08em;
    margin-bottom: 10px;
  }
  .footer-brand p {
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 20px;
  }
  .footer-contact p {
    font-size: 13px;
    line-height: 2;
  }
  .footer-contact a { color: var(--accent); text-decoration: none; }
  .footer-col h5 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: white;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,.1);
  }
  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 8px; }
  .footer-col ul li a {
    color: rgba(255,255,255,.55);
    text-decoration: none;
    font-size: 13px;
    transition: color .2s;
  }
  .footer-col ul li a:hover { color: var(--accent); }
  .footer-bottom {
    margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 18px 32px;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: rgba(255,255,255,.35);
  }

  /* ── MOBILE ── */
  @media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; }
    .login-card { display: none; }
    .dir-grid { grid-template-columns: repeat(2,1fr); }
    .gallery-grid { grid-template-columns: repeat(3,1fr); }
    .footer-inner { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 900px) {
    .menu { display: none; }
    .topbar .left { display: none; }
    .stats-inner { grid-template-columns: repeat(2,1fr); }
    .listing-grid { grid-template-columns: 1fr; }
  }

/* ══════════════════════════════════════════════════════
   5. ICOFONT — sizing & alignment overrides
══════════════════════════════════════════════════════ */
/* IcoFont sizing & alignment */
    .icofont { font-size: 1em; vertical-align: middle; line-height: 1; }
    .topbar .icofont       { font-size: 0.85em; }
    .dropdown .icon .icofont { font-size: 1.05em; }
    .why-emoji             { font-size: 4.5rem; display:flex; align-items:center; justify-content:center; }
    .why-emoji .icofont    { font-size: 1em; }
    .sc-icon .icofont, .trust-icon .icofont { font-size: 1.2em; }
    .plan-emoji .icofont   { font-size: 2.2em; }
    .gallery-placeholder .icofont { font-size: 2.5em; }
    .yt-thumb-placeholder .icofont { font-size: 2.2em; }
    .footer-contact .icofont { font-size: 0.85em; }
    .check-list .ck        { font-size: 10px; }
    .ph-badge .icofont     { font-size: 1em; }
    .page-hero-badge .icofont { font-size: 1em; }
    .stat-pill .icofont    { font-size: 1.4em; margin-right:4px; }
    .btn-submit .icofont   { font-size: 1em; }

/* ══════════════════════════════════════════════════════
   6. ABOUT US / CONTACT US / CAREER — page-specific styles
══════════════════════════════════════════════════════ */

/* Values grid */
.values-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin-top:32px}
.val-card{background:var(--light);border-radius:16px;padding:28px 24px;border:1px solid #d8ead8;transition:all .25s}
.val-card:hover{transform:translateY(-4px);box-shadow:0 12px 32px rgba(0,0,0,.08);background:#fff}
.val-icon{width:48px;height:48px;background:var(--steel);border-radius:12px;display:flex;align-items:center;justify-content:center;margin-bottom:16px}
.val-icon .icofont{color:#fff;font-size:1.4em}
.val-card h3{font-family:'Barlow Condensed',sans-serif;font-size:20px;font-weight:700;color:var(--navy);margin-bottom:8px;letter-spacing:.02em}
.val-card p{font-size:13.5px;color:#5a7a5a;line-height:1.65}
.team-stats{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;margin:40px 0 0}
.ts-card{background:linear-gradient(135deg,var(--steel),var(--navy));border-radius:16px;padding:28px 20px;text-align:center}
.ts-card .big{font-family:'Barlow Condensed',sans-serif;font-size:42px;font-weight:700;color:#fff;line-height:1}
.ts-card .big span{color:var(--accent2)}
.ts-card .sm{font-size:13px;color:rgba(255,255,255,.7);margin-top:6px}

/* Contact grid */
.contact-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:20px;margin-bottom:32px}
.contact-info-card{background:var(--light);border-radius:16px;padding:28px;border:1px solid #d8ead8;transition:all .25s}
.contact-info-card:hover{background:#fff;box-shadow:0 8px 28px rgba(0,0,0,.08)}
.ci-icon{width:52px;height:52px;background:var(--steel);border-radius:14px;display:flex;align-items:center;justify-content:center;margin-bottom:16px}
.ci-icon .icofont{font-size:1.5em;color:#fff}
.contact-info-card h3{font-family:'Barlow Condensed',sans-serif;font-size:18px;font-weight:700;color:var(--navy);margin-bottom:8px;letter-spacing:.02em}
.contact-info-card p,.contact-info-card a{font-size:14px;color:#3a5a3a;line-height:1.8;text-decoration:none;display:block}
.contact-info-card a:hover{color:var(--accent)}
.map-embed{border-radius:18px;overflow:hidden;border:2px solid #e0ede0}
.map-embed iframe{display:block;width:100%;border:none}

/* Career positions */
.positions-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:24px}
.pos-card{background:#fff;border-radius:18px;padding:32px;border:2px solid #e0ede0;transition:all .28s;position:relative;overflow:hidden}
.pos-card::before{content:'';position:absolute;top:0;left:0;right:0;height:4px;background:linear-gradient(90deg,var(--accent),var(--steel))}
.pos-card:hover{border-color:var(--accent);box-shadow:0 12px 40px rgba(92,184,92,.16);transform:translateY(-4px)}
.pos-num{font-family:'Barlow Condensed',sans-serif;font-size:48px;font-weight:700;color:var(--light);line-height:1;margin-bottom:4px}
.pos-card h3{font-family:'Barlow Condensed',sans-serif;font-size:24px;font-weight:700;color:var(--navy);margin-bottom:16px;letter-spacing:.02em}
.pos-reqs{list-style:none;display:flex;flex-direction:column;gap:9px}
.pos-reqs li{display:flex;align-items:flex-start;gap:10px;font-size:13.5px;color:#3a5a3a;line-height:1.55}
.pos-reqs li .icofont-check-circled{color:var(--accent);font-size:1em;flex-shrink:0;margin-top:1px}
.pos-tag{display:inline-flex;align-items:center;gap:6px;background:var(--light);color:var(--steel);font-size:12px;font-weight:600;padding:4px 12px;border-radius:20px;margin-bottom:12px;border:1px solid #c8e0c8}
.apply-bar{background:linear-gradient(135deg,var(--navy) 0%,#1a4a1a 100%);border-radius:20px;padding:44px;text-align:center;margin-top:36px;position:relative;overflow:hidden}
.apply-bar::before{content:'';position:absolute;inset:0;background:url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%235CB85C' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4z'/%3E%3C/g%3E%3C/svg%3E")}
.apply-bar h2{font-family:'Barlow Condensed',sans-serif;font-size:36px;font-weight:700;color:#fff;margin-bottom:10px;position:relative}
.apply-bar h2 em{font-style:normal;color:var(--accent)}
.apply-bar p{font-size:15px;color:rgba(255,255,255,.72);margin-bottom:24px;position:relative;line-height:1.7}
.apply-link{display:inline-flex;align-items:center;gap:10px;background:var(--accent);color:var(--navy);padding:14px 32px;border-radius:12px;font-size:16px;font-weight:700;text-decoration:none;transition:all .2s;position:relative;box-shadow:0 4px 16px rgba(92,184,92,.35)}
.apply-link:hover{background:var(--accent2);transform:translateY(-2px)}
.culture-chips{display:flex;flex-wrap:wrap;gap:10px;margin-top:20px;justify-content:center}
.chip{background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.2);color:rgba(255,255,255,.8);padding:6px 16px;border-radius:20px;font-size:13px}

@media(max-width:960px){
  .values-grid{grid-template-columns:1fr 1fr}
  .team-stats{grid-template-columns:1fr 1fr}
  .contact-grid{grid-template-columns:1fr}
  .positions-grid{grid-template-columns:1fr}
}
@media(max-width:600px){
  .values-grid{grid-template-columns:1fr}
}

/* ════════════════════════════════════════════════════════════════════
   PINMAP VIDEO SHOWCASE — indexnew.asp (between Slider and Directory)
   ─────────────────────────────────────────────────────────────────── */
.pmv-bg {
  background: linear-gradient(180deg, #F0FAF3 0%, #FFFFFF 100%);
  border-top: 1px solid #DDF5E7;
  border-bottom: 1px solid #DDF5E7;
}
.pmv-section { padding: 56px 24px; }
.pmv-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* ── Video column ───────────────────────────────────────────────── */
.pmv-video-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(15, 93, 54, .18);
  background: #0F5D36;
  aspect-ratio: 16 / 9;
}
.pmv-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pmv-controls {
  position: absolute;
  bottom: 12px; right: 12px;
  display: flex; gap: 8px;
  z-index: 2;
}
.pmv-ctrl-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(15, 93, 54, .85);
  color: #fff;
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 15px;
  transition: background .15s, transform .15s;
  backdrop-filter: blur(4px);
}
.pmv-ctrl-btn:hover {
  background: #0F5D36;
  transform: scale(1.08);
}

/* ── Copy column ────────────────────────────────────────────────── */
.pmv-copy {
  padding: 8px 0;
}
.pmv-title {
  font-size: 28px;
  font-weight: 500;
  color: #0F5D36;
  margin: 0 0 14px;
  line-height: 1.35;
  display: flex;
  align-items: center;
  gap: 10px;
}
.pmv-title i {
  color: #39B86C;
  font-size: 30px;
}
.pmv-sub {
  font-size: 15px;
  color: #4B5563;
  line-height: 1.7;
  margin: 0 0 22px;
}
.pmv-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}
.pmv-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: #1F2937;
  padding: 8px 0;
  line-height: 1.55;
}
.pmv-features li i {
  color: #39B86C;
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}
.pmv-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.pmv-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 8px;
  font-size: 14.5px;
  font-weight: 500;
  text-decoration: none;
  transition: all .18s ease;
}
.pmv-btn i { font-size: 16px; }
.pmv-btn-primary {
  background: #39B86C;
  color: #fff;
  box-shadow: 0 4px 12px rgba(57, 184, 108, .25);
}
.pmv-btn-primary:hover {
  background: #2DA15C;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(57, 184, 108, .35);
}
.pmv-btn-secondary {
  background: #FFFFFF;
  color: #0F5D36;
  border: 1.5px solid #BFE5BC;
}
.pmv-btn-secondary:hover {
  background: #DDF5E7;
  border-color: #39B86C;
}

/* ── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .pmv-section { padding: 44px 18px; }
  .pmv-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .pmv-title { font-size: 24px; }
  .pmv-title i { font-size: 26px; }
  .pmv-sub { font-size: 14.5px; }
}
@media (max-width: 480px) {
  .pmv-section { padding: 36px 14px; }
  .pmv-title { font-size: 21px; line-height: 1.4; }
  .pmv-actions { flex-direction: column; }
  .pmv-btn { width: 100%; justify-content: center; }
}

/* ── Premium Tech mirror ────────────────────────────────────────── */
body.style-premium-tech .pmv-bg {
  background: linear-gradient(180deg, #ECFDF5 0%, #FFFFFF 100%);
  border-color: #D1FAE5;
}
body.style-premium-tech .pmv-title,
body.style-premium-tech .pmv-btn-secondary {
  color: #064E3B;
}
body.style-premium-tech .pmv-title i,
body.style-premium-tech .pmv-features li i {
  color: #10B981;
}
body.style-premium-tech .pmv-btn-primary {
  background: #10B981;
  box-shadow: 0 4px 12px rgba(16, 185, 129, .25);
}
body.style-premium-tech .pmv-btn-primary:hover {
  background: #059669;
}
body.style-premium-tech .pmv-btn-secondary {
  border-color: #A7F3D0;
}
body.style-premium-tech .pmv-btn-secondary:hover {
  background: #D1FAE5;
  border-color: #10B981;
}
body.style-premium-tech .pmv-ctrl-btn {
  background: rgba(6, 78, 59, .85);
}
body.style-premium-tech .pmv-ctrl-btn:hover {
  background: #064E3B;
}