/* NT Loei — Enhanced UI */

:root {
    --nt-yellow: #f8d247;
    --nt-yellow-dark: #e0bc2f;
    --nt-yellow-light: #fef8dc;
    --nt-gray: #555859;
    --nt-gray-light: #7d7f80;
    --nt-gray-bg: #f5f5f5;
    --nt-white: #ffffff;
    --nt-shadow: 0 4px 24px rgba(85, 88, 89, 0.08);
    --nt-shadow-lg: 0 16px 48px rgba(85, 88, 89, 0.14);
    --nt-radius: 12px;
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'IBM Plex Sans Thai', sans-serif;
    color: var(--nt-gray);
    background: var(--nt-white);
    line-height: 1.6;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

/* Scroll reveal */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }

/* Top bar */
.top-bar {
    background: var(--nt-gray);
    color: #fff;
    font-size: 0.8rem;
    padding: 0.4rem 0;
}

.top-bar a { color: var(--nt-yellow); transition: opacity 0.2s; }
.top-bar a:hover { opacity: 0.85; }

/* Header */
.site-header {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 3px solid var(--nt-yellow);
    box-shadow: var(--nt-shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: padding 0.3s var(--ease-out), box-shadow 0.3s;
}

.site-header.is-scrolled {
    box-shadow: 0 4px 20px rgba(85, 88, 89, 0.12);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
    gap: 1rem;
    transition: padding 0.3s var(--ease-out);
}

.site-header.is-scrolled .header-inner { padding: 0.5rem 0; }

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: transform 0.3s var(--ease-out);
}

.brand-logo:hover { transform: scale(1.02); }

.brand-logo img {
    height: 48px;
    width: auto;
    transition: height 0.3s var(--ease-out);
}

.site-header.is-scrolled .brand-logo img { height: 40px; }

.brand-text h1 {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0;
    color: var(--nt-gray);
    line-height: 1.2;
}

.brand-text span {
    font-size: 0.75rem;
    color: var(--nt-gray-light);
}

.main-nav {
    display: flex;
    gap: 0.25rem;
    flex-wrap: wrap;
}

.main-nav a {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--nt-gray);
    transition: background 0.25s, color 0.25s, transform 0.25s;
    position: relative;
}

.main-nav a:hover {
    background: var(--nt-yellow-light);
    transform: translateY(-1px);
}

.main-nav a.active {
    background: #f8d247;
    font-weight: 600;
}

.nav-toggle {
    display: none;
    background: var(--nt-yellow);
    border: none;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    font-size: 1.25rem;
    cursor: pointer;
    transition: transform 0.2s;
}

.nav-toggle:hover { transform: scale(1.05); }

/* Hero */
.hero-banner {
    background: linear-gradient(135deg, var(--nt-yellow) 0%, #ffe680 45%, var(--nt-yellow-light) 100%);
    padding: 5rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.hero-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    animation: float 8s ease-in-out infinite;
}

.hero-shape-1 { width: 320px; height: 320px; right: -8%; top: -15%; animation-delay: 0s; }
.hero-shape-2 { width: 180px; height: 180px; left: 5%; bottom: 10%; animation-delay: -3s; }
.hero-shape-3 { width: 100px; height: 100px; right: 25%; bottom: 20%; animation-delay: -5s; background: rgba(85, 88, 89, 0.06); }

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(85, 88, 89, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(85, 88, 89, 0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 20%, transparent 75%);
}

.hero-highlight {
    background: linear-gradient(90deg, var(--nt-gray), #3d3f40);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-mascot-frame {
    position: relative;
    display: inline-block;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.45);
    border-radius: 24px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    box-shadow: var(--nt-shadow-lg);
}

.hero-mascot-frame::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 28px;
    border: 2px dashed rgba(85, 88, 89, 0.15);
    animation: spinSlow 20s linear infinite;
}

@keyframes spinSlow {
    to { transform: rotate(360deg); }
}

.hero-mascot-frame img {
    max-height: 280px;
    border-radius: 16px;
}

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-18px) scale(1.03); }
}

.hero-content { position: relative; z-index: 1; }

.hero-banner .hero-label {
    display: inline-block;
    background: rgba(255, 255, 255, 0.7);
    color: var(--nt-gray);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    animation: fadeInDown 0.8s var(--ease-out) both;
}

.hero-banner h2 {
    font-size: clamp(1.75rem, 4vw, 2.85rem);
    font-weight: 700;
    color: var(--nt-gray);
    margin-bottom: 1rem;
    line-height: 1.25;
    animation: fadeInDown 0.8s var(--ease-out) 0.1s both;
}

.hero-banner p {
    font-size: 1.1rem;
    color: var(--nt-gray);
    max-width: 560px;
    margin-bottom: 1.75rem;
    opacity: 0.92;
    animation: fadeInDown 0.8s var(--ease-out) 0.2s both;
}

.hero-actions {
    animation: fadeInDown 0.8s var(--ease-out) 0.3s both;
}

.hero-mascot {
    animation: fadeInRight 1s var(--ease-out) 0.2s both;
    position: relative;
}

.hero-mascot img {
    max-height: 300px;
    border-radius: 20px;
    box-shadow: var(--nt-shadow-lg);
    transition: transform 0.5s var(--ease-out);
}

.hero-mascot:hover img {
    transform: translateY(-8px) rotate(1deg);
}

.hero-mascot::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 24px;
    background: radial-gradient(ellipse, rgba(85, 88, 89, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Hero stats */
.hero-stats {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(85, 88, 89, 0.12);
    animation: fadeInDown 0.8s var(--ease-out) 0.4s both;
}

.hero-stat {
    text-align: center;
    min-width: 100px;
}

.hero-stat .num {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--nt-gray);
    line-height: 1.2;
}

.hero-stat .label {
    font-size: 0.8rem;
    color: var(--nt-gray-light);
}

/* Quick links bar */
.quick-links {
    background: var(--nt-white);
    margin-top: -2rem;
    position: relative;
    z-index: 2;
    padding-bottom: 0.5rem;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    background: var(--nt-white);
    border-radius: var(--nt-radius);
    box-shadow: var(--nt-shadow-lg);
    padding: 1.25rem;
    border: 1px solid rgba(248, 210, 71, 0.35);
}

.quick-link-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.85rem 1rem;
    border-radius: 10px;
    transition: background 0.3s var(--ease-out), transform 0.3s var(--ease-out), box-shadow 0.3s;
}

.quick-link-item:hover {
    background: var(--nt-yellow-light);
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(248, 210, 71, 0.25);
}

.quick-link-item .ql-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--nt-yellow), #ffe680);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    transition: transform 0.35s var(--ease-out);
}

.quick-link-item:hover .ql-icon { transform: scale(1.1) rotate(-5deg); }

.quick-link-item .ql-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.quick-link-item .ql-text strong {
    font-size: 0.95rem;
    color: var(--nt-gray);
}

.quick-link-item .ql-text small {
    font-size: 0.75rem;
    color: var(--nt-gray-light);
}

/* Buttons */
.btn-nt {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--nt-gray);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    border: none;
    transition: transform 0.25s var(--ease-out), box-shadow 0.25s, background 0.25s;
    position: relative;
    overflow: hidden;
}

.btn-nt::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s;
}

.btn-nt:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(85, 88, 89, 0.28);
}

.btn-nt:hover::after { transform: translateX(100%); }

.btn-nt-outline {
    background: rgba(255, 255, 255, 0.5);
    color: var(--nt-gray);
    border: 2px solid var(--nt-gray);
}

.btn-nt-outline:hover {
    background: var(--nt-gray);
    color: #fff;
}

.btn-nt-yellow {
    background: var(--nt-yellow);
    color: var(--nt-gray);
}

.btn-nt-yellow:hover { background: var(--nt-yellow-dark); color: var(--nt-gray); }

/* Sections */
.section { padding: 4rem 0; }

.section-alt {
    background: linear-gradient(180deg, var(--nt-gray-bg) 0%, #fafafa 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-header h2 {
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--nt-gray);
    margin-bottom: 0.5rem;
}

.section-header p {
    color: var(--nt-gray-light);
    margin: 0;
}

.section-header .accent-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--nt-yellow), var(--nt-yellow-dark));
    margin: 1rem auto 0;
    border-radius: 2px;
    transition: width 0.5s var(--ease-out);
}

.section-header.is-visible .accent-line { width: 80px; }

.section-header-v2 .section-chip {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--nt-gray-light);
    background: var(--nt-gray-bg);
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    margin-bottom: 0.75rem;
    border: 1px solid rgba(85, 88, 89, 0.08);
}

.section-header--services .section-chip { color: var(--nt-gray); background: #fbe8a3; border-color: rgba(248, 210, 71, 0.5); }
.section-header--promotions .section-chip { color: #9a3412; background: #fff7ed; border-color: #fed7aa; }
.section-header--news .section-chip { color: #1e40af; background: #eff6ff; border-color: #bfdbfe; }
.section-header--about .section-chip { color: var(--nt-gray); background: #fff8d6; border-color: rgba(248, 210, 71, 0.5); }
.section-header--contact .section-chip { color: #166534; background: #f0fdf4; border-color: #bbf7d0; }

.section-header-v2 h2 {
    font-size: clamp(1.6rem, 3vw, 2.1rem);
}

.section-cta {
    text-align: center;
    margin-top: 2.5rem;
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

.section-about { background: linear-gradient(180deg, #fff 0%, #fffdf8 100%); }
.section-about-why { background: linear-gradient(180deg, #fafafa 0%, #fffdf0 100%); }

/* About showcase */
.about-showcase {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 3rem;
    align-items: center;
}

.about-mascot-frame {
    position: relative;
    display: inline-block;
    padding: 1rem;
    background: linear-gradient(135deg, var(--nt-yellow-light), #fff);
    border-radius: 20px;
    border: 2px solid rgba(248, 210, 71, 0.5);
    box-shadow: var(--nt-shadow-lg);
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
}

.about-mascot-frame img {
    width: 100%;
    border-radius: 14px;
    display: block;
}

.about-showcase-media { text-align: center; }

.about-stat-pills {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.25rem;
}

.about-stat-pill {
    background: #fff;
    border: 1px solid rgba(248, 210, 71, 0.4);
    border-radius: 12px;
    padding: 0.65rem 1rem;
    text-align: center;
    min-width: 90px;
    box-shadow: var(--nt-shadow);
    transition: transform 0.25s var(--ease-out);
}

.about-stat-pill:hover { transform: translateY(-3px); }

.about-stat-pill .num {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--nt-gray);
    line-height: 1.2;
}

.about-stat-pill .label {
    display: block;
    font-size: 0.68rem;
    color: var(--nt-gray-light);
}

.about-showcase-content .section-chip { margin-bottom: 0.75rem; }

.about-showcase-content h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--nt-gray);
}

.about-showcase-content p {
    color: var(--nt-gray-light);
    margin-bottom: 1rem;
}

.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}

.about-value-card {
    display: flex;
    gap: 0.85rem;
    background: #fff;
    border: 1px solid rgba(248, 210, 71, 0.35);
    border-radius: 12px;
    padding: 1.15rem;
    box-shadow: var(--nt-shadow);
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}

.about-value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--nt-shadow-lg);
}

.about-value-icon {
    width: 44px;
    height: 44px;
    background: var(--nt-yellow-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.about-value-card strong {
    display: block;
    font-size: 0.9rem;
    color: var(--nt-gray);
    margin-bottom: 0.25rem;
}

.about-value-card p {
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.5;
}

/* Why choose cards */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.why-card {
    background: #fff;
    border-radius: var(--nt-radius);
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid rgba(85, 88, 89, 0.08);
    box-shadow: var(--nt-shadow);
    transition: transform 0.35s var(--ease-out), box-shadow 0.35s, border-color 0.35s;
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--nt-yellow), var(--nt-yellow-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-out);
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--nt-shadow-lg);
    border-color: rgba(248, 210, 71, 0.4);
}

.why-card:hover::before { transform: scaleX(1); }

.why-card-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--nt-yellow-light), #fff8d6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1rem;
    transition: transform 0.4s var(--ease-out);
}

.why-card:hover .why-card-icon {
    transform: scale(1.1) rotate(5deg);
}

.why-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--nt-gray);
}

.why-card p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--nt-gray-light);
}

/* Contact quick bar */
.contact-quick-bar {
    background: #fff;
    margin-top: -1.5rem;
    position: relative;
    z-index: 2;
    padding-bottom: 0.5rem;
}

.contact-quick-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    background: #fff;
    border-radius: var(--nt-radius);
    box-shadow: var(--nt-shadow-lg);
    padding: 1rem;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.contact-quick-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    border-radius: 10px;
    background: var(--nt-gray-bg);
    border: 1px solid transparent;
    transition: background 0.25s, transform 0.25s var(--ease-out), border-color 0.25s;
}

.contact-quick-item:hover {
    background: #fff;
    transform: translateY(-3px);
    border-color: rgba(248, 210, 71, 0.5);
    box-shadow: var(--nt-shadow);
    color: inherit;
}

.contact-quick-item .cq-icon {
    width: 40px;
    height: 40px;
    background: var(--nt-yellow);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-quick-item--line .cq-icon { background: #06c755; }

.contact-quick-item strong {
    display: block;
    font-size: 0.9rem;
    color: var(--nt-gray);
    line-height: 1.2;
}

.contact-quick-item small {
    display: block;
    font-size: 0.72rem;
    color: var(--nt-gray-light);
}

.contact-mini-map {
    margin: 0 1.5rem 1rem;
    height: 160px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid rgba(248, 210, 71, 0.35);
}

.contact-mini-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.contact-form-header .section-chip {
    display: inline-block;
    margin-bottom: 0.65rem;
}

.contact-success-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

.section-services { background: linear-gradient(180deg, #fff 0%, #fffdf5 100%); }
.section-promotions { background: linear-gradient(180deg, #fafafa 0%, #fff9f0 100%); }
.section-news { background: linear-gradient(180deg, #fff 0%, #f8fbff 100%); }

/* Page hero v2 */
.page-hero {
    position: relative;
    overflow: hidden;
    padding: 3.5rem 0;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.page-hero--services { background: linear-gradient(135deg, #fffdf0 0%, var(--nt-yellow-light) 50%, #fff 100%); }
.page-hero--services .page-hero-bg {
    background: radial-gradient(circle at 85% 20%, rgba(248, 210, 71, 0.35) 0%, transparent 45%);
}

.page-hero--promotions { background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 40%, #fff 100%); }
.page-hero--promotions .page-hero-bg {
    background: radial-gradient(circle at 15% 80%, rgba(251, 146, 60, 0.2) 0%, transparent 50%);
}

.page-hero--news { background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 35%, #fff 100%); }
.page-hero--news .page-hero-bg {
    background: radial-gradient(circle at 80% 30%, rgba(59, 130, 246, 0.15) 0%, transparent 50%);
}

.page-hero--about { background: linear-gradient(135deg, #fffdf5 0%, var(--nt-yellow-light) 40%, #f5f5f5 100%); }
.page-hero--about .page-hero-bg {
    background: radial-gradient(circle at 20% 70%, rgba(248, 210, 71, 0.3) 0%, transparent 50%);
}

.page-hero--contact { background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 35%, #fff 100%); }
.page-hero--contact .page-hero-bg {
    background: radial-gradient(circle at 75% 25%, rgba(34, 197, 94, 0.12) 0%, transparent 50%);
}

.page-hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
}

.page-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(85, 88, 89, 0.1);
    padding: 0.4rem 0.85rem 0.4rem 0.4rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--nt-gray);
    margin-bottom: 1rem;
}

.page-hero-icon {
    width: 32px;
    height: 32px;
    background: var(--nt-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.page-hero h1 {
    font-size: clamp(1.85rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--nt-gray);
}

.page-hero-desc {
    color: var(--nt-gray-light);
    margin: 0;
    max-width: 560px;
    font-size: 1.05rem;
}

.page-hero-stat {
    flex-shrink: 0;
    text-align: center;
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(248, 210, 71, 0.5);
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    box-shadow: var(--nt-shadow);
    min-width: 100px;
}

.page-hero-stat-num {
    font-size: 2rem;
    font-weight: 700;
    color: var(--nt-gray);
    line-height: 1;
}

.page-hero-stat-label {
    font-size: 0.8rem;
    color: var(--nt-gray-light);
    margin-top: 0.25rem;
}

.page-intro {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.page-intro-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #fff;
    border: 1px solid rgba(248, 210, 71, 0.4);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--nt-gray);
    box-shadow: var(--nt-shadow);
    transition: transform 0.25s var(--ease-out);
}

.page-intro-item:hover { transform: translateY(-2px); }

.page-intro-item span { font-size: 1.1rem; }

/* Spotlight featured row */
.spotlight-row {
    margin-bottom: 1.5rem;
}

.spotlight-row .promo-card--featured,
.spotlight-row .news-card--featured {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    min-height: 280px;
}

.spotlight-row .promo-card--featured .card-img,
.spotlight-row .news-card--featured .card-img {
    height: auto;
    min-height: 280px;
}

.spotlight-row .promo-card--featured .card-body,
.spotlight-row .news-card--featured .card-body {
    padding: 2rem;
    justify-content: center;
}

.spotlight-row .promo-card--featured h3,
.spotlight-row .news-card--featured h3 {
    font-size: 1.35rem;
}

/* Cards */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.content-card {
    background: var(--nt-white);
    border-radius: var(--nt-radius);
    overflow: hidden;
    box-shadow: var(--nt-shadow);
    border: 1px solid rgba(85, 88, 89, 0.08);
    transition: transform 0.35s var(--ease-out), box-shadow 0.35s, border-color 0.35s;
    display: flex;
    flex-direction: column;
    position: relative;
}

.content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--nt-yellow), var(--nt-yellow-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-out);
    z-index: 1;
}

.content-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--nt-shadow-lg);
    border-color: rgba(248, 210, 71, 0.4);
}

.content-card:hover::before { transform: scaleX(1); }

.content-card .card-img {
    height: 180px;
    background: var(--nt-yellow-light);
    overflow: hidden;
}

.content-card .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease-out);
}

.content-card:hover .card-img img { transform: scale(1.08); }

.content-card .card-body {
    padding: 1.25rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.content-card .card-date {
    font-size: 0.8rem;
    color: var(--nt-gray-light);
    margin-bottom: 0.5rem;
}

.content-card h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--nt-gray);
    transition: color 0.25s;
}

.content-card:hover h3 { color: var(--nt-gray); }

.content-card p {
    font-size: 0.9rem;
    color: var(--nt-gray-light);
    flex-grow: 1;
    margin-bottom: 1rem;
}

.content-card .read-more {
    color: var(--nt-gray);
    font-weight: 500;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.content-card .read-more::after {
    content: '→';
    transition: transform 0.25s var(--ease-out);
}

.content-card:hover .read-more::after { transform: translateX(6px); }

.content-card .read-more .arrow {
    transition: transform 0.25s var(--ease-out);
}

.content-card:hover .read-more .arrow { transform: translateX(5px); }

.card-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(85, 88, 89, 0.55) 100%);
    opacity: 0;
    transition: opacity 0.35s;
    pointer-events: none;
}

.content-card:hover .card-img-overlay { opacity: 1; }

.card-tag {
    position: absolute;
    z-index: 2;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.3rem 0.65rem;
    border-radius: 50px;
}

.card-tag--hot {
    top: 0.75rem;
    left: 0.75rem;
    background: linear-gradient(135deg, #f97316, #fb923c);
    color: #fff;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.35);
}

.card-tag--date {
    bottom: 0.75rem;
    left: 0.75rem;
    background: rgba(255, 255, 255, 0.92);
    color: var(--nt-gray);
}

.card-date-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    z-index: 2;
    background: rgba(85, 88, 89, 0.85);
    color: var(--nt-yellow);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.35rem 0.7rem;
    border-radius: 8px;
}

.card-category {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--nt-gray-light);
    margin-bottom: 0.35rem;
}

.promo-card .card-category { color: #c2410c; }
.news-card .card-category { color: #2563eb; }

.promo-card .card-img,
.news-card .card-img {
    position: relative;
    height: 200px;
}

.promo-card--featured .card-img,
.news-card--featured .card-img {
    height: 100%;
}

/* Service card v2 */
.service-card-v2 {
    text-align: left;
    padding: 0;
    overflow: hidden;
}

.service-card-v2 .service-card-top {
    position: relative;
    background: linear-gradient(135deg, var(--nt-yellow-light) 0%, #fff8d6 100%);
    padding: 1.75rem 1.5rem 1.25rem;
    border-bottom: 1px solid rgba(248, 210, 71, 0.3);
}

.service-card-v2 .service-card-num {
    position: absolute;
    top: 0.75rem;
    right: 1rem;
    font-size: 2rem;
    font-weight: 700;
    color: rgba(85, 88, 89, 0.08);
    line-height: 1;
}

.service-card-v2 .icon-wrap {
    width: 64px;
    height: 64px;
    background: #fff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: 0 6px 16px rgba(248, 210, 71, 0.35);
    transition: transform 0.4s var(--ease-out);
}

.service-card-v2:hover .icon-wrap {
    transform: scale(1.08) rotate(-5deg);
}

.service-card-v2 .service-card-body {
    padding: 1.25rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-card-v2 h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.service-card-v2.is-featured {
    border-color: rgba(248, 210, 71, 0.6);
    box-shadow: 0 12px 40px rgba(248, 210, 71, 0.2);
}

.card-grid--services {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.card-grid--promos,
.card-grid--news {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.cta-banner-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(248, 210, 71, 0.15) 0%, transparent 70%);
    bottom: -100px;
    left: -80px;
    pointer-events: none;
}

.badge-featured {
    background: linear-gradient(135deg, var(--nt-yellow), #ffe680);
    color: var(--nt-gray);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.25rem 0.65rem;
    border-radius: 50px;
    align-self: flex-start;
}

/* Service icon cards */
.service-card-icon {
    text-align: center;
    padding: 2rem 1.5rem;
}

.service-card-icon .icon-wrap {
    width: 72px;
    height: 72px;
    background: #fbe8a3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
}

.service-card-icon:hover .icon-wrap {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(248, 210, 71, 0.4);
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, var(--nt-gray) 0%, #3d3f40 100%);
    color: #fff;
    padding: 3.5rem 2rem;
    border-radius: var(--nt-radius);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(248, 210, 71, 0.08);
    border-radius: 50%;
    top: -50px;
    right: -50px;
}

.cta-banner h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    position: relative;
}

.cta-banner .phone {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--nt-yellow);
    position: relative;
    transition: transform 0.3s;
}

.cta-banner .phone:hover { transform: scale(1.05); }

/* About */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-grid img {
    border-radius: var(--nt-radius);
    width: 100%;
    box-shadow: var(--nt-shadow-lg);
    transition: transform 0.5s var(--ease-out);
}

.about-grid img:hover { transform: scale(1.02); }

.info-box {
    background: var(--nt-yellow-light);
    border-left: 4px solid var(--nt-yellow);
    padding: 1.25rem;
    border-radius: 0 var(--nt-radius) var(--nt-radius) 0;
    margin-bottom: 1rem;
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}

.info-box:hover {
    transform: translateX(4px);
    box-shadow: var(--nt-shadow);
}

/* Contact */
.contact-section {
    background: linear-gradient(180deg, var(--nt-gray-bg) 0%, #fff 100%);
}

.contact-layout {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 2rem;
    align-items: start;
}

.contact-info-card,
.contact-form-card {
    background: var(--nt-white);
    border-radius: var(--nt-radius);
    box-shadow: var(--nt-shadow-lg);
    border: 1px solid rgba(248, 210, 71, 0.3);
    overflow: hidden;
}

.contact-info-header {
    background: linear-gradient(135deg, var(--nt-gray) 0%, #3d3f40 100%);
    color: #fff;
    padding: 1.75rem 1.5rem;
    position: relative;
    overflow: hidden;
}

.contact-info-header::after {
    content: '';
    position: absolute;
    width: 140px;
    height: 140px;
    background: rgba(248, 210, 71, 0.12);
    border-radius: 50%;
    top: -40px;
    right: -30px;
}

.contact-info-label {
    display: inline-block;
    background: rgba(248, 210, 71, 0.2);
    color: var(--nt-yellow);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
    margin-bottom: 0.75rem;
}

.contact-info-header h2 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
    position: relative;
}

.contact-info-header p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.85;
    position: relative;
}

.contact-hotline {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.25rem 1.5rem 0;
    padding: 1rem 1.25rem;
    background: var(--nt-yellow-light);
    border: 2px solid var(--nt-yellow);
    border-radius: 12px;
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}

.contact-hotline:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(248, 210, 71, 0.35);
}

.contact-hotline-icon {
    width: 52px;
    height: 52px;
    background: var(--nt-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.contact-hotline small {
    display: block;
    font-size: 0.75rem;
    color: var(--nt-gray-light);
}

.contact-hotline strong {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--nt-gray);
    line-height: 1.2;
}

.contact-hotline span {
    display: block;
    font-size: 0.8rem;
    color: var(--nt-gray-light);
}

.contact-info-list {
    list-style: none;
    padding: 1.25rem 1.5rem 0.5rem;
    margin: 0;
}

.contact-info-list li {
    display: flex;
    gap: 0.85rem;
    margin-bottom: 1.15rem;
    transition: transform 0.25s var(--ease-out);
}

.contact-info-list li:hover { transform: translateX(4px); }

.contact-info-icon {
    width: 42px;
    height: 42px;
    background: var(--nt-gray-bg);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-info-list strong {
    display: block;
    font-size: 0.8rem;
    color: var(--nt-gray-light);
    margin-bottom: 0.15rem;
}

.contact-info-list p,
.contact-info-list a {
    margin: 0;
    font-size: 0.9rem;
    color: var(--nt-gray);
    line-height: 1.5;
}

.contact-info-list a:hover { color: var(--nt-yellow-dark); }

.contact-map-btn {
    display: flex;
    justify-content: center;
    margin: 0.5rem 1.5rem 1.5rem;
    width: calc(100% - 3rem);
}

.contact-form-card {
    padding: 2rem;
}

.contact-form-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 3px solid var(--nt-yellow);
}

.contact-form-header h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--nt-gray);
    margin-bottom: 0.35rem;
}

.contact-form-header p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--nt-gray-light);
}

.contact-alert {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1rem;
    border-radius: 10px;
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
}

.contact-alert-error {
    background: #fff5f5;
    border: 1px solid #f5c2c7;
    color: #842029;
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact-field {
    margin-bottom: 1.15rem;
}

.contact-field label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--nt-gray);
    margin-bottom: 0.4rem;
}

.contact-field .required {
    color: #c0392b;
}

.contact-input-wrap {
    position: relative;
}

.contact-input-wrap .field-icon {
    position: absolute;
    left: 0.85rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    opacity: 0.6;
    pointer-events: none;
    z-index: 1;
}

.contact-textarea-wrap .field-icon { top: 1rem; transform: none; }

.contact-form .form-control {
    border: 2px solid rgba(85, 88, 89, 0.12);
    border-radius: 10px;
    padding: 0.8rem 1rem 0.8rem 2.75rem;
    font-size: 0.95rem;
    background: var(--nt-gray-bg);
    transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}

.contact-textarea-wrap .form-control {
    padding: 0.85rem 1rem;
    min-height: 140px;
    resize: vertical;
}

.contact-form .form-control::placeholder {
    color: rgba(85, 88, 89, 0.4);
}

.contact-form .form-control:hover {
    border-color: rgba(248, 210, 71, 0.5);
    background: #fff;
}

.contact-form .form-control:focus {
    border-color: var(--nt-yellow);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(248, 210, 71, 0.2);
    outline: none;
}

.contact-field-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.35rem;
}

.contact-hint {
    font-size: 0.75rem;
    color: var(--nt-gray-light);
}

.contact-char-count {
    font-size: 0.75rem;
    color: var(--nt-gray-light);
    font-weight: 500;
}

.contact-form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 0.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(85, 88, 89, 0.1);
}

.contact-note {
    margin: 0;
    font-size: 0.8rem;
    color: var(--nt-gray-light);
}

.contact-submit {
    padding: 0.85rem 2rem;
    font-size: 1rem;
}

.contact-submit .submit-arrow {
    transition: transform 0.25s var(--ease-out);
}

.contact-submit:hover .submit-arrow { transform: translateX(4px); }

.contact-success {
    text-align: center;
    padding: 2.5rem 1.5rem;
}

.contact-success-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--nt-yellow), #ffe680);
    color: var(--nt-gray);
    font-size: 2rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    animation: successPop 0.5s var(--ease-out) both;
}

@keyframes successPop {
    from { transform: scale(0.5); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.contact-success h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--nt-gray);
    margin-bottom: 0.5rem;
}

.contact-success p {
    color: var(--nt-gray-light);
    margin-bottom: 1.5rem;
}

/* Social links */
.social-links--contact {
    padding: 0 1.5rem 1rem;
}

.social-links-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--nt-gray);
    margin-bottom: 0.75rem;
}

.social-links-grid {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.social-links--footer .social-links-grid {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.7rem 0.9rem;
    border-radius: 10px;
    border: 2px solid rgba(85, 88, 89, 0.1);
    background: var(--nt-gray-bg);
    transition: transform 0.25s var(--ease-out), box-shadow 0.25s, border-color 0.25s, background 0.25s;
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--nt-shadow);
    color: inherit;
}

.social-link-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    flex-shrink: 0;
    color: #fff;
}

.social-link-text {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.social-link-text strong {
    font-size: 0.8rem;
    color: var(--nt-gray-light);
    font-weight: 600;
}

.social-link-text span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--nt-gray);
}

.social-link--line .social-link-icon { background: #06c755; }
.social-link--line:hover { border-color: #06c755; background: #f0fff5; }

.social-link--facebook .social-link-icon { background: #1877f2; font-family: serif; }
.social-link--facebook:hover { border-color: #1877f2; background: #f0f6ff; }

.social-link--tiktok .social-link-icon { background: #010101; }
.social-link--tiktok:hover { border-color: #010101; background: #f5f5f5; }

.social-links--footer .social-link {
    padding: 0.5rem 0.75rem;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

.social-links--footer .social-link:hover {
    background: rgba(248, 210, 71, 0.15);
    border-color: rgba(248, 210, 71, 0.4);
}

.social-links--footer .social-link-text strong {
    color: rgba(255, 255, 255, 0.65);
}

.social-links--footer .social-link-text span {
    color: rgba(255, 255, 255, 0.9);
}

.social-links--footer .social-link-icon {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
}

/* Legacy contact grid (keep for compatibility) */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.contact-info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    transition: transform 0.3s var(--ease-out);
}

.contact-info-item:hover { transform: translateX(4px); }

.contact-info-item .icon {
    width: 48px;
    height: 48px;
    background: var(--nt-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.25rem;
    transition: transform 0.3s var(--ease-out);
}

.contact-info-item:hover .icon { transform: rotate(10deg) scale(1.05); }

.contact-form .form-select {
    border: 2px solid rgba(85, 88, 89, 0.12);
    border-radius: 10px;
    padding: 0.8rem 1rem;
    transition: border-color 0.25s, box-shadow 0.25s;
}

.contact-form .form-select:focus {
    border-color: var(--nt-yellow);
    box-shadow: 0 0 0 4px rgba(248, 210, 71, 0.2);
}

/* Detail page */
.detail-hero {
    background: linear-gradient(180deg, var(--nt-yellow-light) 0%, var(--nt-gray-bg) 100%);
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.detail-hero::before {
    content: '';
    position: absolute;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(248, 210, 71, 0.35) 0%, transparent 70%);
    top: -80px;
    right: -60px;
    pointer-events: none;
}

.detail-hero .container { position: relative; z-index: 1; }

.detail-hero h1 {
    font-size: 1.85rem;
    font-weight: 700;
}

.detail-content { padding: 2.5rem 0; }

.detail-content img {
    max-width: 100%;
    border-radius: var(--nt-radius);
    margin-bottom: 1.5rem;
    box-shadow: var(--nt-shadow);
}

.detail-content .content-body {
    line-height: 1.8;
    white-space: pre-line;
}

/* Footer */
.site-footer {
    background: linear-gradient(180deg, var(--nt-gray) 0%, #3d3f40 100%);
    color: rgba(255, 255, 255, 0.85);
    padding: 3rem 0 1.5rem;
}

.site-footer h5 {
    color: var(--nt-yellow);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.site-footer a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.85rem;
    display: block;
    margin-bottom: 0.4rem;
    transition: color 0.25s, transform 0.25s;
}

.site-footer a:hover {
    color: var(--nt-yellow);
    transform: translateX(4px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: 2rem;
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Back to top */
.back-to-top {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 44px;
    height: 44px;
    background: var(--nt-yellow);
    color: var(--nt-gray);
    border: none;
    border-radius: 50%;
    font-size: 1.25rem;
    cursor: pointer;
    box-shadow: var(--nt-shadow-lg);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s var(--ease-out), background 0.25s;
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--nt-yellow-dark);
    transform: translateY(-4px);
}

/* Breadcrumb */
.breadcrumb-nav {
    font-size: 0.85rem;
    color: var(--nt-gray-light);
    margin-bottom: 1rem;
}

.breadcrumb-nav a:hover { color: var(--nt-gray); }

/* Service centers slider */
.sc-slider {
    background: var(--nt-white);
    border-radius: var(--nt-radius);
    box-shadow: var(--nt-shadow-lg);
    border: 1px solid rgba(248, 210, 71, 0.35);
    padding: 1.25rem;
    overflow: hidden;
}

.sc-tabs {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding-bottom: 0.75rem;
    margin-bottom: 1rem;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
}

.sc-tabs::-webkit-scrollbar { height: 4px; }
.sc-tabs::-webkit-scrollbar-thumb { background: var(--nt-yellow); border-radius: 4px; }

.sc-tab {
    flex: 0 0 auto;
    min-width: 160px;
    max-width: 220px;
    text-align: left;
    background: var(--nt-gray-bg);
    border: 2px solid transparent;
    border-radius: 10px;
    padding: 0.65rem 0.85rem;
    cursor: pointer;
    transition: background 0.25s, border-color 0.25s, transform 0.25s var(--ease-out);
}

.sc-tab:hover {
    background: var(--nt-yellow-light);
    transform: translateY(-2px);
}

.sc-tab.active {
    background: var(--nt-yellow-light);
    border-color: var(--nt-yellow);
    box-shadow: 0 4px 12px rgba(248, 210, 71, 0.3);
}

.sc-tab-district {
    display: block;
    font-size: 0.7rem;
    color: var(--nt-gray-light);
    margin-bottom: 0.15rem;
}

.sc-tab-name {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--nt-gray);
    line-height: 1.3;
}

.sc-viewport {
    position: relative;
}

.sc-track {
    position: relative;
    min-height: 420px;
}

.sc-slide {
    display: none;
    animation: scFadeIn 0.45s var(--ease-out) both;
}

.sc-slide.active { display: block; }

@keyframes scFadeIn {
    from { opacity: 0; transform: translateX(12px); }
    to { opacity: 1; transform: translateX(0); }
}

.sc-card {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(85, 88, 89, 0.1);
}

.sc-card-top {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 0;
}

.sc-photo {
    position: relative;
    min-height: 280px;
    background: var(--nt-yellow-light);
    overflow: hidden;
}

.sc-photo img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.sc-slide.active .sc-photo img { transform: scale(1.02); }

.sc-photo-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(85, 88, 89, 0.85);
    color: var(--nt-yellow);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
}

.sc-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, #fff 0%, var(--nt-gray-bg) 100%);
}

.sc-info h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--nt-gray);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--nt-yellow);
}

.sc-details {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
    flex-grow: 1;
}

.sc-details li {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.sc-detail-icon {
    width: 36px;
    height: 36px;
    background: var(--nt-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
}

.sc-details strong {
    display: block;
    font-size: 0.8rem;
    color: var(--nt-gray-light);
    margin-bottom: 0.15rem;
}

.sc-details p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--nt-gray);
    line-height: 1.5;
}

.sc-details a {
    color: var(--nt-gray);
    font-weight: 600;
    transition: color 0.2s;
}

.sc-details a:hover { color: var(--nt-yellow-dark); }

.sc-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.sc-actions .btn-nt { font-size: 0.85rem; padding: 0.6rem 1.1rem; }

.sc-map {
    height: 260px;
    background: var(--nt-gray-bg);
    border-top: 3px solid var(--nt-yellow);
}

.sc-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.sc-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: var(--nt-white);
    color: var(--nt-gray);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: var(--nt-shadow);
    transition: background 0.25s, transform 0.25s var(--ease-out);
}

.sc-nav:hover {
    background: var(--nt-yellow);
    transform: translateY(-50%) scale(1.08);
}

.sc-nav-prev { left: -0.5rem; }
.sc-nav-next { right: -0.5rem; }

.sc-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.25rem;
}

.sc-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(85, 88, 89, 0.25);
    cursor: pointer;
    padding: 0;
    transition: background 0.25s, transform 0.25s;
}

.sc-dot.active,
.sc-dot:hover {
    background: var(--nt-yellow);
    transform: scale(1.2);
}

/* Empty state */
.empty-state {
    text-align: center;
    padding: 3rem;
    color: var(--nt-gray-light);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .animate-on-scroll { opacity: 1; transform: none; }
    html { scroll-behavior: auto; }
}

/* Responsive */
@media (max-width: 992px) {
    .nav-toggle { display: block; }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--nt-white);
        flex-direction: column;
        padding: 1rem;
        border-bottom: 3px solid var(--nt-yellow);
        box-shadow: var(--nt-shadow-lg);
        animation: slideDown 0.3s var(--ease-out);
    }

    @keyframes slideDown {
        from { opacity: 0; transform: translateY(-8px); }
        to { opacity: 1; transform: translateY(0); }
    }

    .main-nav.open { display: flex; }

    .about-grid,
    .contact-grid,
    .contact-layout { grid-template-columns: 1fr; }

    .page-hero-inner { flex-direction: column; align-items: flex-start; }
    .page-hero-stat { align-self: flex-start; }

    .spotlight-row .promo-card--featured,
    .spotlight-row .news-card--featured {
        grid-template-columns: 1fr;
    }

    .spotlight-row .promo-card--featured .card-img,
    .spotlight-row .news-card--featured .card-img {
        min-height: 200px;
        height: 200px;
    }

    .about-showcase { grid-template-columns: 1fr; }
    .about-values { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .contact-quick-grid { grid-template-columns: repeat(2, 1fr); }

    .contact-form-row { grid-template-columns: 1fr; }
    .contact-form-card { padding: 1.5rem; }
    .contact-form-footer { flex-direction: column; align-items: stretch; }
    .contact-submit { width: 100%; justify-content: center; }

    .quick-links-grid { grid-template-columns: repeat(2, 1fr); }

    .sc-card-top { grid-template-columns: 1fr; }
    .sc-photo { min-height: 220px; }
    .sc-photo img { min-height: 220px; }
    .sc-nav-prev { left: 0.25rem; }
    .sc-nav-next { right: 0.25rem; }
}

@media (max-width: 576px) {
    .hero-banner { padding: 3rem 0 2.5rem; }
    .section { padding: 2.5rem 0; }
    .brand-text h1 { font-size: 1rem; }
    .hero-stats { gap: 1rem; }
    .hero-stat .num { font-size: 1.4rem; }
    .quick-links-grid { grid-template-columns: 1fr; padding: 1rem; }
    .sc-tab { min-width: 140px; }
    .sc-map { height: 200px; }
    .sc-actions { flex-direction: column; }
    .sc-actions .btn-nt { width: 100%; justify-content: center; }
    .contact-quick-grid { grid-template-columns: 1fr; }
}
