 url('https://fonts.googleapis.com/css2?family=Kanit:wght;400;500;600;700;800&display=swap');

:root {
    --lanna-gold: #c79a3b;
    --teak-brown: #6b4f2a;
    --mountain-green: #2e6f57;
    --cloud-white: #f8f8f8;
    --ink: #1f2933;
}

body {
    font-family: 'Kanit', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--ink);
    background: #fff;
}

.lj-navbar {
    background: rgba(46, 111, 87, 0.92);
    backdrop-filter: blur(12px);
}

.navbar-brand,
.lj-navbar .nav-link {
    color: #fff !important;
}

.brand-mark {
    display: inline-flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    border-radius: 50%;
    background: var(--lanna-gold);
    color: #fff;
    font-size: 14px;
}

.hero-section {
    position: relative;
    min-height: 100vh;
    background:
        linear-gradient(135deg, rgba(46,111,87,.95), rgba(107,79,42,.72)),
        url("https://images.unsplash.com/photo-1528181304800-259b08848526?q=80&w=1600&auto=format&fit=crop");
    background-size: cover;
    background-position: center;
    color: #fff;
}

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

.hero-kicker {
    display: inline-block;
    margin-bottom: 18px;
    padding: 8px 16px;
    border: 1px solid rgba(255,255,255,.4);
    border-radius: 999px;
    color: #fff;
}

.hero-section h1 {
    max-width: 900px;
    font-size: clamp(42px, 7vw, 84px);
    font-weight: 800;
    line-height: 1.05;
}

.hero-section p {
    max-width: 760px;
    margin: 24px 0;
    font-size: clamp(18px, 2vw, 24px);
    opacity: .92;
}

.btn-lanna {
    border: none;
    border-radius: 999px;
    padding: 12px 26px;
    background: var(--lanna-gold);
    color: #fff;
    font-weight: 700;
}

.btn-lanna:hover {
    background: #aa7e26;
    color: #fff;
}

.section-padding {
    padding: 90px 0;
}

.bg-soft {
    background: var(--cloud-white);
}

.section-heading {
    margin-bottom: 42px;
}

.section-heading span,
.section-mini {
    color: var(--lanna-gold);
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.section-heading h2 {
    margin-top: 10px;
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 800;
}

.province-card,
.experience-card {
    height: 100%;
    padding: 28px;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 12px 35px rgba(20, 30, 40, .08);
    transition: transform .2s ease, box-shadow .2s ease;
}

.province-card:hover,
.experience-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 45px rgba(20, 30, 40, .12);
}

.province-badge,
.experience-icon {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    border-radius: 18px;
    background: rgba(199, 154, 59, .14);
    color: var(--lanna-gold);
    font-weight: 800;
}

.province-card h3,
.experience-card h3 {
    font-size: 22px;
    font-weight: 800;
}

.province-card p,
.experience-card p {
    color: #667085;
}

.card-link {
    color: var(--mountain-green);
    font-weight: 700;
    text-decoration: none;
}

.event-panel {
    padding: 44px;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(46,111,87,.1), rgba(199,154,59,.16));
}

.contact-box {
    display: inline-flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 18px;
    padding: 22px 28px;
    border-radius: 22px;
    background: rgba(255,255,255,.08);
}

.site-footer {
    padding: 24px 0;
    background: #17231f;
    color: rgba(255,255,255,.72);
}

@media (max-width: 991px) {
    .lj-navbar {
        background: rgba(46, 111, 87, .98);
    }

    .section-padding {
        padding: 64px 0;
    }
}

.province-hero {
    min-height: 62vh;
    padding-top: 120px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(135deg, rgba(46,111,87,.96), rgba(107,79,42,.74)),
        url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?q=80&w=1600&auto=format&fit=crop");
    background-size: cover;
    background-position: center;
    color: #fff;
}

.province-hero-inner {
    max-width: 860px;
    padding: 80px 0;
}

.province-hero h1 {
    font-size: clamp(42px, 7vw, 86px);
    font-weight: 850;
    line-height: 1.05;
}

.province-hero p {
    max-width: 720px;
    margin: 22px 0;
    font-size: clamp(18px, 2vw, 24px);
    opacity: .92;
}

.content-card {
    height: 100%;
    padding: 34px;
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 12px 35px rgba(20, 30, 40, .08);
}

.contact-side {
    background: linear-gradient(135deg, rgba(46,111,87,.08), rgba(199,154,59,.12));
}

.site-logo {
    width: auto;
    height: 48px;
    max-width: 180px;
    object-fit: contain;
}

.brand-text {
    font-weight: 800;
    color: #fff;
    letter-spacing: .02em;
}

@media (max-width: 575px) {
    .site-logo {
        height: 40px;
        max-width: 145px;
    }

    .brand-text {
        font-size: 16px;
    }
}

.province-card {
    overflow: hidden;
    padding: 0;
}

.province-card-image {
    width: 100%;
    height: 190px;
    overflow: hidden;
    background: #eef2f0;
}

.province-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .35s ease;
}

.province-card:hover .province-card-image img {
    transform: scale(1.06);
}

.province-card-body {
    padding: 24px;
}

.lj-dropdown {
    border: 0;
    border-radius: 18px;
    padding: 10px;
    box-shadow: 0 18px 45px rgba(20, 30, 40, .16);
}

.lj-dropdown .dropdown-item {
    border-radius: 12px;
    padding: 10px 14px;
    font-weight: 500;
}

.lj-dropdown .dropdown-item:hover {
    background: rgba(199, 154, 59, .14);
    color: var(--mountain-green);
}

@media (min-width: 992px) {
    .navbar .dropdown:hover > .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}

.service-pill-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.service-pill {
    display: inline-flex;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.18);
    color: #fff;
    font-weight: 500;
}

.lead-form {
    padding: 30px;
    border-radius: 28px;
    background: #fff;
    color: var(--ink);
    box-shadow: 0 20px 60px rgba(0,0,0,.22);
}

.lead-form .form-label {
    font-weight: 700;
    color: var(--mountain-green);
}

.lead-form .form-control,
.lead-form .form-select {
    border-radius: 14px;
    padding: 12px 14px;
    border: 1px solid #d0d5dd;
}

.lead-form .form-control:focus,
.lead-form .form-select:focus {
    border-color: var(--lanna-gold);
    box-shadow: 0 0 0 .2rem rgba(199, 154, 59, .18);
}

.lead-form-alert {
    display: none;
    padding: 12px 16px;
    border-radius: 14px;
    font-weight: 600;
}

.lead-form-alert.success {
    display: block;
    background: rgba(46, 111, 87, .12);
    color: var(--mountain-green);
}

.lead-form-alert.error {
    display: block;
    background: rgba(220, 53, 69, .12);
    color: #b42318;
}
