/* =====================================================
   GenoCare Lab — Shared Stylesheet
   Premium Medical Luxury Theme
   ===================================================== */

/* === GLOBAL RESET & MOBILE FIXES === */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

img, iframe, video, embed, object {
    max-width: 100%;
    height: auto;
    display: block;
}

:root {
    --white: #ffffff;
    --navy: #0F172A;
    --navy-2: #1E293B;
    --blue: #3B82F6;
    --blue-dark: #2563EB;
    --cyan: #E0F2FE;
    --cyan-2: #BAE6FD;
    --silver: #CBD5E1;
    --gray-light: #F8FAFC;
    --gray-mid: #64748B;
    --gradient-primary: linear-gradient(135deg, #3B82F6 0%, #06B6D4 100%);
    --gradient-dark: linear-gradient(135deg, #0F172A 0%, #1E40AF 100%);
    --gradient-soft: linear-gradient(180deg, #E0F2FE 0%, #ffffff 100%);
    --shadow-sm: 0 4px 12px rgba(15, 23, 42, 0.06);
    --shadow-md: 0 12px 32px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.12);
    --shadow-blue: 0 12px 40px rgba(59, 130, 246, 0.25);
    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --font-display: 'Outfit', sans-serif;
    --font-body: 'Poppins', 'Sarabun', sans-serif;
    --font-thai: 'Sarabun', 'Poppins', sans-serif;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--navy);
    background: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* === CONTAINERS === */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}
.container-narrow { max-width: 920px; }

.section { padding: 110px 0; position: relative; }
.section-sm { padding: 70px 0; }

/* === SECTION HEADERS === */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: var(--cyan);
    color: var(--blue-dark);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.section-tag i { font-size: 11px; }

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--navy);
    letter-spacing: -0.02em;
    margin-bottom: 18px;
}
.section-title .accent {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-sub {
    font-size: 17px;
    color: var(--gray-mid);
    max-width: 680px;
    margin: 0 auto 56px;
    text-align: center;
    font-family: var(--font-thai);
}
.section-head { text-align: center; margin-bottom: 56px; }
.section-head .section-tag { display: inline-flex; }

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    font-size: 15px;
    font-weight: 600;
    font-family: var(--font-display);
    letter-spacing: 0.01em;
    border-radius: 999px;
    transition: all 0.35s cubic-bezier(.2,.8,.2,1);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}
.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-blue);
}
.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #2563EB 0%, #0891B2 100%);
    opacity: 0;
    transition: opacity .35s ease;
}
.btn-primary span, .btn-primary i { position: relative; z-index: 1; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 50px rgba(59,130,246,0.4); }
.btn-primary:hover::before { opacity: 1; }

.btn-outline {
    background: transparent;
    color: var(--navy);
    border: 1.5px solid var(--silver);
}
.btn-outline:hover {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
    transform: translateY(-3px);
}

.btn-ghost {
    background: rgba(255,255,255,0.08);
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.25);
    backdrop-filter: blur(8px);
}
.btn-ghost:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-3px);
}
.btn-sm { padding: 11px 22px; font-size: 14px; }

/* === NAVBAR === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: all 0.35s ease;
    background: rgba(255,255,255,0);
}
.navbar.scrolled {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(14px) saturate(180%);
    -webkit-backdrop-filter: blur(14px) saturate(180%);
    box-shadow: 0 6px 24px rgba(15,23,42,0.06);
    padding: 12px 0;
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 22px;
    color: var(--navy);
    letter-spacing: -0.02em;
    flex-shrink: 0;
}
.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--gradient-primary);
    display: grid;
    place-items: center;
    color: white;
    font-size: 18px;
    box-shadow: 0 8px 20px rgba(59,130,246,0.35);
    flex-shrink: 0;
}
.brand span:last-child { font-weight: 400; color: var(--blue); margin-left: 2px; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-links a {
    padding: 10px 16px;
    font-size: 14.5px;
    font-weight: 500;
    color: var(--navy-2);
    border-radius: 10px;
    transition: all 0.25s ease;
    display: block;
}
.nav-links a:hover, .nav-links a.active {
    color: var(--blue-dark);
    background: var(--cyan);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}
.hamburger {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--gray-light);
    color: var(--navy);
    font-size: 18px;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* === MOBILE MENU === */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 86%;
    max-width: 360px;
    height: 100vh;
    background: var(--white);
    z-index: 1100;
    padding: 90px 24px 32px;
    transition: right 0.4s cubic-bezier(.2,.8,.2,1);
    box-shadow: -10px 0 40px rgba(15,23,42,0.12);
    overflow-y: auto;
}
.mobile-menu.open { right: 0; }
.mobile-menu a {
    display: block;
    padding: 14px 16px;
    font-size: 16px;
    font-weight: 500;
    color: var(--navy);
    border-radius: 12px;
    margin-bottom: 6px;
    border: 1px solid transparent;
    transition: all 0.25s ease;
}
.mobile-menu a:hover, .mobile-menu a.active {
    background: var(--cyan);
    color: var(--blue-dark);
}
.mobile-menu-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--gray-light);
    font-size: 18px;
    color: var(--navy);
    display: grid;
    place-items: center;
}
.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15,23,42,0.5);
    backdrop-filter: blur(4px);
    z-index: 1050;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.menu-overlay.show { opacity: 1; pointer-events: auto; }

/* === HERO (Homepage) === */
.hero {
    position: relative;
    min-height: 100vh;
    padding: 160px 0 110px;
    background: var(--gradient-soft);
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 700px;
    height: 700px;
    max-width: 80vw;
    max-height: 80vw;
    background: radial-gradient(circle, rgba(59,130,246,0.18), transparent 65%);
    border-radius: 50%;
    z-index: 0;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    max-width: 80vw;
    max-height: 80vw;
    background: radial-gradient(circle, rgba(6,182,212,0.18), transparent 65%);
    border-radius: 50%;
    z-index: 0;
}
.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 8px 8px 16px;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59,130,246,0.2);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 26px;
    box-shadow: var(--shadow-sm);
    max-width: 100%;
    flex-wrap: wrap;
}
.hero-pill .dot {
    width: 8px;
    height: 8px;
    background: #10B981;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(16,185,129,0.2);
    animation: pulse 1.8s infinite;
    flex-shrink: 0;
}
.hero-pill .badge {
    padding: 4px 10px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 999px;
    font-size: 11px;
    letter-spacing: 0.04em;
    flex-shrink: 0;
}
.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.08;
    color: var(--navy);
    letter-spacing: -0.025em;
    margin-bottom: 22px;
    word-wrap: break-word;
}
.hero h1 .gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}
.hero h1 .underline-mark { position: relative; display: inline-block; }
.hero h1 .underline-mark::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 4px;
    width: 100%;
    height: 10px;
    background: rgba(59,130,246,0.25);
    z-index: -1;
    border-radius: 4px;
}
.hero-sub {
    font-size: 17px;
    color: var(--gray-mid);
    max-width: 560px;
    margin-bottom: 36px;
    font-family: var(--font-thai);
}
.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 44px;
}
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding-top: 32px;
    border-top: 1px solid rgba(15,23,42,0.08);
}
.hero-stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.02em;
}
.hero-stat strong .plus { color: var(--blue); }
.hero-stat span { font-size: 13px; color: var(--gray-mid); line-height: 1.4; }

.hero-visual {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-image-card {
    position: relative;
    width: 100%;
    max-width: 520px;
    height: 560px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transform: rotate(-2deg);
    transition: transform 0.6s ease;
}
.hero-image-card:hover { transform: rotate(0); }
.hero-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-image-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(15,23,42,0.5) 100%);
}
.glass-card {
    position: absolute;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(14px) saturate(180%);
    -webkit-backdrop-filter: blur(14px) saturate(180%);
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: 18px;
    box-shadow: 0 16px 40px rgba(15,23,42,0.12);
    padding: 18px;
}
.glass-card-1 {
    top: 6%;
    left: -32px;
    width: 240px;
    max-width: calc(100% - 40px);
    z-index: 4;
    animation: float 6s ease-in-out infinite;
}
.glass-card-2 {
    bottom: 8%;
    right: -20px;
    width: 220px;
    max-width: calc(100% - 40px);
    z-index: 4;
    animation: float 6s ease-in-out infinite 1.5s;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(16,185,129,0.5); }
    70% { box-shadow: 0 0 0 8px rgba(16,185,129,0); }
}
.glass-card .gc-head { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.gc-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--gradient-primary);
    color: white;
    display: grid;
    place-items: center;
    font-size: 14px;
    flex-shrink: 0;
}
.gc-icon.green { background: linear-gradient(135deg, #10B981, #059669); }
.glass-card .gc-title { font-size: 13px; font-weight: 700; color: var(--navy); }
.glass-card .gc-value {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.02em;
}
.glass-card .gc-meta { font-size: 11px; color: var(--gray-mid); margin-top: 2px; }
.progress-bar {
    width: 100%;
    height: 6px;
    background: var(--gray-light);
    border-radius: 999px;
    margin-top: 10px;
    overflow: hidden;
}
.progress-bar > div {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 999px;
    width: 96%;
}

/* === BRANDS STRIP === */
.brands-strip { background: var(--white); padding: 36px 0 12px; position: relative; z-index: 3; }
.brands-strip .label {
    text-align: center;
    color: var(--gray-mid);
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 22px;
    font-weight: 600;
}
.brands-track {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0.65;
}
.brand-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 17px;
    color: var(--navy-2);
}
.brand-item i { color: var(--blue); }

/* === PAGE HEADER (About, Services, Blog, Contact) === */
.page-header {
    position: relative;
    padding: 170px 0 90px;
    background: var(--gradient-soft);
    overflow: hidden;
    text-align: center;
}
.page-header::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    max-width: 80vw;
    max-height: 80vw;
    background: radial-gradient(circle, rgba(59,130,246,0.15), transparent 65%);
    border-radius: 50%;
}
.page-header::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    max-width: 80vw;
    max-height: 80vw;
    background: radial-gradient(circle, rgba(6,182,212,0.12), transparent 65%);
    border-radius: 50%;
}
.page-header .container { position: relative; z-index: 1; }
.page-header h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.8rem);
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.025em;
    margin-bottom: 16px;
    line-height: 1.1;
}
.page-header h1 .accent {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.page-header p {
    color: var(--gray-mid);
    font-family: var(--font-thai);
    font-size: 17px;
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.7;
}
.page-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--gray-mid);
    margin-top: 24px;
    font-family: var(--font-display);
    flex-wrap: wrap;
    justify-content: center;
}
.page-breadcrumb a { color: var(--gray-mid); transition: color 0.2s ease; }
.page-breadcrumb a:hover { color: var(--blue-dark); }
.page-breadcrumb .sep { opacity: 0.4; }
.page-breadcrumb .current { color: var(--navy); font-weight: 600; }

/* === SERVICES CARDS === */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    position: relative;
    padding: 38px 30px;
    background: var(--white);
    border: 1px solid #EEF2F7;
    border-radius: var(--radius-md);
    transition: all 0.4s cubic-bezier(.2,.8,.2,1);
    overflow: hidden;
    z-index: 1;
}
.service-card::after {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(59,130,246,0.18), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(15,23,42,0.12);
    border-color: transparent;
}
.service-card:hover::after { opacity: 1; }
.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: var(--cyan);
    color: var(--blue-dark);
    display: grid;
    place-items: center;
    font-size: 24px;
    margin-bottom: 24px;
    transition: all 0.4s ease;
    position: relative;
}
.service-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 18px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}
.service-card:hover .service-icon {
    color: var(--white);
    background: transparent;
    transform: scale(1.05) rotate(-6deg);
}
.service-card:hover .service-icon::after { opacity: 1; }
.service-card h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}
.service-card p {
    font-size: 15px;
    color: var(--gray-mid);
    line-height: 1.7;
    margin-bottom: 22px;
    font-family: var(--font-thai);
}
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--blue-dark);
    font-family: var(--font-display);
}
.service-link i { transition: transform 0.3s ease; }
.service-card:hover .service-link i { transform: translateX(4px); }
.service-number {
    position: absolute;
    top: 22px;
    right: 26px;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--silver);
    letter-spacing: 0.1em;
}

/* === ABOUT === */
.about { background: linear-gradient(180deg, #F8FAFC 0%, #ffffff 100%); }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 70px;
    align-items: center;
}
.about-visual {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-visual img {
    width: 100%;
    height: 580px;
    object-fit: cover;
}
.about-badge {
    position: absolute;
    bottom: 28px;
    left: 28px;
    right: 28px;
    background: rgba(15,23,42,0.85);
    backdrop-filter: blur(10px);
    color: white;
    padding: 22px 24px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    gap: 18px;
}
.about-badge .ab-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--gradient-primary);
    display: grid;
    place-items: center;
    font-size: 22px;
    flex-shrink: 0;
}
.about-badge strong {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
    display: block;
    margin-bottom: 2px;
}
.about-badge p { font-size: 13px; opacity: 0.8; line-height: 1.5; }

.feature-list { margin-top: 32px; }
.feature-item {
    display: flex;
    gap: 18px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(15,23,42,0.08);
}
.feature-item:last-child { border-bottom: none; }
.feature-num {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--cyan);
    color: var(--blue-dark);
    display: grid;
    place-items: center;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 800;
}
.feature-item h4 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
}
.feature-item p {
    font-size: 14.5px;
    color: var(--gray-mid);
    line-height: 1.65;
    font-family: var(--font-thai);
}

/* === MISSION & VISION === */
.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-top: 40px;
}
.mission-card {
    padding: 44px 38px;
    background: var(--white);
    border: 1px solid #EEF2F7;
    border-radius: var(--radius-lg);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}
.mission-card::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(59,130,246,0.08), transparent 70%);
    border-radius: 50%;
}
.mission-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(59,130,246,0.2);
}
.mission-card .m-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: var(--gradient-primary);
    display: grid;
    place-items: center;
    color: white;
    font-size: 28px;
    margin-bottom: 24px;
    box-shadow: 0 12px 30px rgba(59,130,246,0.3);
    position: relative;
}
.mission-card h3 {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 14px;
    letter-spacing: -0.01em;
}
.mission-card p {
    font-size: 16px;
    color: var(--gray-mid);
    line-height: 1.8;
    font-family: var(--font-thai);
}
.mission-card .m-list {
    margin-top: 20px;
    display: grid;
    gap: 10px;
}
.mission-card .m-list li {
    display: flex;
    gap: 10px;
    font-size: 14.5px;
    color: var(--navy-2);
    font-family: var(--font-thai);
    align-items: flex-start;
}
.mission-card .m-list li i {
    color: var(--blue);
    margin-top: 6px;
    flex-shrink: 0;
}

/* === WHY CHOOSE US (4-card grid) === */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}
.why-card {
    padding: 36px 28px;
    background: var(--white);
    border: 1px solid #EEF2F7;
    border-radius: var(--radius-md);
    text-align: center;
    transition: all 0.4s ease;
}
.why-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}
.why-card .w-icon {
    width: 76px;
    height: 76px;
    border-radius: 22px;
    background: var(--cyan);
    color: var(--blue-dark);
    margin: 0 auto 22px;
    display: grid;
    place-items: center;
    font-size: 28px;
    transition: all 0.4s ease;
}
.why-card:hover .w-icon {
    background: var(--gradient-primary);
    color: white;
    transform: rotate(-6deg) scale(1.08);
}
.why-card h4 {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}
.why-card p {
    font-size: 14px;
    color: var(--gray-mid);
    line-height: 1.7;
    font-family: var(--font-thai);
}

/* === TEAM SECTION === */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-top: 40px;
}
.team-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid #EEF2F7;
    transition: all 0.4s ease;
}
.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.team-photo {
    position: relative;
    height: 320px;
    overflow: hidden;
    background: var(--gray-light);
}
.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}
.team-card:hover .team-photo img { transform: scale(1.08); }
.team-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(15,23,42,0.4));
    z-index: 1;
}
.team-social {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    z-index: 2;
    display: flex;
    gap: 8px;
    opacity: 0;
    transition: all 0.4s ease;
}
.team-card:hover .team-social { opacity: 1; transform: translateX(-50%) translateY(0); }
.team-social a {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: white;
    color: var(--navy);
    display: grid;
    place-items: center;
    font-size: 13px;
    transition: all 0.25s ease;
}
.team-social a:hover { background: var(--blue); color: white; }
.team-info { padding: 22px 22px 26px; text-align: center; }
.team-info h4 {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}
.team-info span {
    font-size: 13px;
    color: var(--blue-dark);
    font-weight: 600;
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* === TRUST / STATS === */
.trust {
    position: relative;
    background: var(--navy);
    color: var(--white);
    overflow: hidden;
}
.trust::before {
    content: '';
    position: absolute;
    top: -40%;
    left: -10%;
    width: 800px;
    height: 800px;
    max-width: 90vw;
    max-height: 90vw;
    background: radial-gradient(circle, rgba(59,130,246,0.18), transparent 60%);
    border-radius: 50%;
}
.trust::after {
    content: '';
    position: absolute;
    bottom: -40%;
    right: -10%;
    width: 800px;
    height: 800px;
    max-width: 90vw;
    max-height: 90vw;
    background: radial-gradient(circle, rgba(6,182,212,0.16), transparent 60%);
    border-radius: 50%;
}
.trust .container { position: relative; z-index: 2; }
.trust .section-title { color: var(--white); }
.trust .section-sub { color: rgba(255,255,255,0.7); }
.trust .section-tag {
    background: rgba(255,255,255,0.08);
    color: var(--cyan);
    border: 1px solid rgba(255,255,255,0.12);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 50px;
}
.stat-card {
    padding: 36px 28px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}
.stat-card:hover {
    transform: translateY(-6px);
    background: rgba(255,255,255,0.07);
    border-color: rgba(59,130,246,0.3);
}
.stat-card .stat-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--gradient-primary);
    display: grid;
    place-items: center;
    font-size: 20px;
    color: white;
    margin-bottom: 22px;
    box-shadow: 0 12px 30px rgba(59,130,246,0.35);
}
.stat-card .stat-number {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 46px);
    font-weight: 800;
    line-height: 1;
    color: var(--white);
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}
.stat-card .stat-number .suffix { color: var(--cyan); }
.stat-card .stat-label {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
    font-family: var(--font-thai);
}
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 56px;
    flex-wrap: wrap;
}
.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 999px;
    font-size: 13.5px;
    color: rgba(255,255,255,0.85);
    font-weight: 500;
}
.badge-pill i { color: var(--cyan); font-size: 14px; }

/* === BLOG GRID === */
.blog { background: var(--gray-light); }
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.blog-card {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(.2,.8,.2,1);
    border: 1px solid #EEF2F7;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.blog-thumb {
    position: relative;
    height: 230px;
    overflow: hidden;
    flex-shrink: 0;
}
.blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}
.blog-card:hover .blog-thumb img { transform: scale(1.08); }
.blog-cat {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    color: var(--blue-dark);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.blog-body {
    padding: 26px 24px 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.blog-meta {
    display: flex;
    gap: 18px;
    font-size: 12.5px;
    color: var(--gray-mid);
    margin-bottom: 14px;
    flex-wrap: wrap;
}
.blog-meta i { color: var(--blue); margin-right: 6px; }
.blog-body h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.35;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 56px;
}
.blog-body h3 a { color: inherit; transition: color 0.2s ease; }
.blog-body h3 a:hover { color: var(--blue-dark); }
.blog-body p {
    font-size: 14.5px;
    color: var(--gray-mid);
    line-height: 1.7;
    font-family: var(--font-thai);
    margin-bottom: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}
.blog-readmore {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--blue-dark);
    font-family: var(--font-display);
    cursor: pointer;
    margin-top: auto;
}
.blog-readmore i { transition: transform 0.3s ease; }
.blog-card:hover .blog-readmore i { transform: translateX(4px); }

/* === BLOG FILTERS === */
.blog-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 50px;
}
.blog-filter {
    padding: 10px 20px;
    background: var(--white);
    border: 1px solid #EEF2F7;
    border-radius: 999px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--navy-2);
    font-family: var(--font-display);
    transition: all 0.25s ease;
    cursor: pointer;
}
.blog-filter:hover { border-color: var(--blue); color: var(--blue-dark); }
.blog-filter.active {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
    box-shadow: var(--shadow-blue);
}

/* === PAGINATION === */
.pagination {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.pagination a, .pagination span {
    min-width: 44px;
    height: 44px;
    padding: 0 14px;
    border-radius: 12px;
    background: white;
    color: var(--navy-2);
    border: 1px solid #EEF2F7;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 14px;
    transition: all 0.25s ease;
    cursor: pointer;
}
.pagination a:hover, .pagination .active {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: var(--shadow-blue);
}

/* === TESTIMONIALS === */
.testi { background: var(--white); overflow: hidden; }
.testi-track-wrap {
    overflow: hidden;
    position: relative;
    padding: 12px 0;
    mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}
.testi-track {
    display: flex;
    gap: 24px;
    animation: scrollTesti 36s linear infinite;
    width: max-content;
}
.testi-track:hover { animation-play-state: paused; }
@keyframes scrollTesti {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.testi-card {
    width: 380px;
    flex-shrink: 0;
    padding: 32px 28px;
    background: var(--white);
    border: 1px solid #EEF2F7;
    border-radius: var(--radius-md);
    transition: all 0.35s ease;
}
.testi-card:hover { border-color: var(--blue); box-shadow: var(--shadow-md); }
.testi-stars { color: #FBBF24; margin-bottom: 14px; font-size: 14px; }
.testi-text {
    font-family: var(--font-thai);
    font-size: 15px;
    color: var(--navy-2);
    line-height: 1.75;
    margin-bottom: 22px;
}
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    display: grid;
    place-items: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}
.testi-author strong {
    display: block;
    font-family: var(--font-display);
    font-size: 15px;
    color: var(--navy);
}
.testi-author span {
    font-size: 12.5px;
    color: var(--gray-mid);
    font-family: var(--font-thai);
}

/* === FAQ === */
.faq { background: var(--gray-light); }
.faq-wrap { max-width: 880px; margin: 0 auto; }
.faq-item {
    background: var(--white);
    border: 1px solid #EEF2F7;
    border-radius: var(--radius-sm);
    margin-bottom: 14px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.faq-item.open {
    border-color: rgba(59,130,246,0.3);
    box-shadow: var(--shadow-md);
}
.faq-q {
    width: 100%;
    text-align: left;
    padding: 22px 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
    cursor: pointer;
    transition: color 0.2s ease;
}
.faq-item.open .faq-q { color: var(--blue-dark); }
.faq-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: var(--cyan);
    color: var(--blue-dark);
    display: grid;
    place-items: center;
    font-size: 14px;
    transition: all 0.3s ease;
}
.faq-item.open .faq-icon {
    background: var(--gradient-primary);
    color: white;
    transform: rotate(180deg);
}
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(.2,.8,.2,1);
}
.faq-a-inner {
    padding: 0 26px 24px;
    font-size: 15px;
    color: var(--gray-mid);
    line-height: 1.75;
    font-family: var(--font-thai);
}

/* === CTA === */
.cta-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: var(--navy);
}
.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 20% 30%, rgba(59,130,246,0.35), transparent 50%),
      radial-gradient(circle at 80% 70%, rgba(6,182,212,0.3), transparent 50%);
}
.cta-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
}
.cta-inner .section-tag {
    background: rgba(255,255,255,0.08);
    color: var(--cyan);
    border: 1px solid rgba(255,255,255,0.15);
}
.cta-inner h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4.5vw, 3.2rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.12;
    margin-bottom: 18px;
    letter-spacing: -0.02em;
}
.cta-inner h2 .gradient {
    background: linear-gradient(135deg, #93C5FD 0%, #67E8F9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.cta-inner p {
    font-size: 17px;
    color: rgba(255,255,255,0.75);
    margin-bottom: 36px;
    font-family: var(--font-thai);
}
.cta-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* === CONTACT FORM === */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 56px;
    align-items: start;
}
.contact-info {
    padding: 40px 36px;
    background: var(--gradient-dark);
    color: white;
    border-radius: var(--radius-md);
    position: relative;
    overflow: hidden;
}
.contact-info::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 400px;
    height: 400px;
    max-width: 100%;
    background: radial-gradient(circle, rgba(59,130,246,0.3), transparent 60%);
    border-radius: 50%;
}
.contact-info > * { position: relative; z-index: 1; }
.contact-info h3 {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}
.contact-info > p {
    color: rgba(255,255,255,0.75);
    margin-bottom: 32px;
    font-family: var(--font-thai);
    font-size: 15px;
}
.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 22px;
}
.contact-method .ci-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    display: grid;
    place-items: center;
    color: var(--cyan);
    font-size: 16px;
    flex-shrink: 0;
}
.contact-method strong {
    display: block;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
}
.contact-method p {
    color: rgba(255,255,255,0.75);
    font-size: 14px;
    font-family: var(--font-thai);
    line-height: 1.6;
}
.contact-socials {
    display: flex;
    gap: 10px;
    margin-top: 30px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.12);
    flex-wrap: wrap;
}
.contact-socials a {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255,255,255,0.08);
    color: white;
    display: grid;
    place-items: center;
    transition: all 0.25s ease;
    flex-shrink: 0;
}
.contact-socials a:hover {
    background: var(--blue);
    transform: translateY(-3px);
}

.contact-form {
    background: var(--white);
    padding: 40px 36px;
    border-radius: var(--radius-md);
    border: 1px solid #EEF2F7;
    box-shadow: var(--shadow-sm);
}
.contact-form h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}
.contact-form > p {
    color: var(--gray-mid);
    font-size: 14.5px;
    margin-bottom: 26px;
    font-family: var(--font-thai);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}
.form-group { margin-bottom: 14px; }
.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy-2);
    margin-bottom: 8px;
    font-family: var(--font-display);
}
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid #E5E9F0;
    border-radius: 12px;
    font-size: 14.5px;
    font-family: var(--font-thai);
    color: var(--navy);
    background: var(--gray-light);
    transition: all 0.25s ease;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--blue);
    background: white;
    box-shadow: 0 0 0 4px rgba(59,130,246,0.1);
}
.form-group textarea {
    resize: vertical;
    min-height: 110px;
    font-family: var(--font-thai);
}
.form-submit {
    width: 100%;
    margin-top: 8px;
}

/* === MAP === */
.map-wrap {
    width: 100%;
    height: 420px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid #EEF2F7;
    box-shadow: var(--shadow-md);
}
.map-wrap iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* === INFO CARDS (Contact page) === */
.info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}
.info-card {
    background: var(--white);
    padding: 36px 28px;
    border: 1px solid #EEF2F7;
    border-radius: var(--radius-md);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}
.info-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(59,130,246,0.12), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.info-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.info-card:hover::before { opacity: 1; }
.info-card .info-icon {
    width: 68px;
    height: 68px;
    border-radius: 20px;
    background: var(--gradient-primary);
    margin: 0 auto 20px;
    display: grid;
    place-items: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 12px 30px rgba(59,130,246,0.3);
}
.info-card h4 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}
.info-card p {
    color: var(--gray-mid);
    font-size: 14.5px;
    font-family: var(--font-thai);
    line-height: 1.7;
}
.info-card a {
    color: var(--blue-dark);
    font-weight: 600;
    transition: color 0.2s ease;
}
.info-card a:hover { color: var(--blue); }

/* === DETAILED SERVICE (Services Page) === */
.service-detail {
    background: var(--white);
    padding: 0;
    border-bottom: 1px solid #EEF2F7;
}
.service-detail:nth-child(even) { background: var(--gray-light); }
.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
    padding: 90px 0;
}
.service-detail:nth-child(even) .service-detail-grid {
    direction: rtl;
}
.service-detail:nth-child(even) .service-detail-grid > * {
    direction: ltr;
}
.service-detail-visual {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-lg);
}
.service-detail-visual img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}
.service-detail-content .service-num-tag {
    display: inline-block;
    padding: 6px 14px;
    background: var(--cyan);
    color: var(--blue-dark);
    border-radius: 8px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 16px;
    letter-spacing: 0.05em;
}
.service-detail-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 18px;
    letter-spacing: -0.015em;
}
.service-detail-content > p {
    font-size: 16px;
    color: var(--gray-mid);
    line-height: 1.8;
    font-family: var(--font-thai);
    margin-bottom: 24px;
}
.service-features {
    display: grid;
    gap: 14px;
    margin-bottom: 28px;
}
.service-features li {
    display: flex;
    gap: 14px;
    padding: 14px 18px;
    background: rgba(59,130,246,0.05);
    border-left: 3px solid var(--blue);
    border-radius: 0 12px 12px 0;
    font-family: var(--font-thai);
    color: var(--navy-2);
    align-items: flex-start;
    font-size: 14.5px;
}
.service-features li i {
    color: var(--blue);
    margin-top: 4px;
    flex-shrink: 0;
}

/* === PROCESS / TIMELINE === */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
    position: relative;
}
.process-step {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border: 1px solid #EEF2F7;
    border-radius: var(--radius-md);
    position: relative;
    transition: all 0.4s ease;
}
.process-step:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}
.process-num {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: var(--gradient-primary);
    color: white;
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 800;
    display: grid;
    place-items: center;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-blue);
}
.process-step h4 {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}
.process-step p {
    font-size: 14px;
    color: var(--gray-mid);
    line-height: 1.7;
    font-family: var(--font-thai);
}

/* === FOOTER === */
.footer {
    background: var(--navy);
    color: rgba(255,255,255,0.7);
    padding: 80px 0 28px;
    position: relative;
    overflow: hidden;
}
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 200px;
    max-width: 100%;
    background: radial-gradient(ellipse at top, rgba(59,130,246,0.2), transparent 60%);
}
.footer .container { position: relative; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
    gap: 48px;
    margin-bottom: 56px;
}
.footer-brand .brand { color: white; margin-bottom: 18px; }
.footer-about {
    font-size: 14.5px;
    line-height: 1.75;
    margin-bottom: 22px;
    font-family: var(--font-thai);
    color: rgba(255,255,255,0.65);
}
.footer h4 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: white;
    margin-bottom: 22px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.footer-links a::before {
    content: '→';
    opacity: 0;
    transform: translateX(-6px);
    transition: all 0.25s ease;
    color: var(--cyan);
}
.footer-links a:hover { color: white; }
.footer-links a:hover::before { opacity: 1; transform: translateX(0); }
.footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 14px;
    flex-wrap: wrap;
}
.footer-socials a {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255,255,255,0.06);
    color: white;
    display: grid;
    place-items: center;
    transition: all 0.25s ease;
    flex-shrink: 0;
}
.footer-socials a:hover { background: var(--blue); transform: translateY(-3px); }
.newsletter-form {
    margin-top: 14px;
    display: flex;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 999px;
    padding: 5px;
    overflow: hidden;
}
.newsletter-form input {
    flex: 1;
    min-width: 0;
    background: transparent;
    border: none;
    padding: 11px 18px;
    color: white;
    font-size: 14px;
    font-family: inherit;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-form input:focus { outline: none; }
.newsletter-form button {
    background: var(--gradient-primary);
    color: white;
    padding: 11px 22px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    font-family: var(--font-display);
    white-space: nowrap;
    flex-shrink: 0;
}
.newsletter-note {
    font-size: 12.5px;
    color: rgba(255,255,255,0.5);
    margin-top: 10px;
    font-family: var(--font-thai);
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    flex-wrap: wrap;
}
.footer-bottom a {
    color: rgba(255,255,255,0.65);
    margin: 0 8px;
}
.footer-bottom a:hover { color: white; }

/* === SCROLL TO TOP BUTTON === */
.scroll-top {
    position: fixed;
    bottom: 26px;
    right: 26px;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: var(--gradient-primary);
    color: white;
    display: grid;
    place-items: center;
    font-size: 18px;
    box-shadow: 0 12px 32px rgba(59,130,246,0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.85);
    transition: all 0.35s cubic-bezier(.2,.8,.2,1);
    z-index: 800;
    cursor: pointer;
    border: 2px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
}
.scroll-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}
.scroll-top:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 16px 40px rgba(59,130,246,0.5);
}
.scroll-top::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 18px;
    background: var(--gradient-primary);
    z-index: -1;
    opacity: 0;
    filter: blur(12px);
    transition: opacity 0.3s ease;
}
.scroll-top:hover::before { opacity: 0.6; }

/* === READING PROGRESS BAR === */
.reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    width: 0;
    background: var(--gradient-primary);
    z-index: 1200;
    transition: width 0.1s ease;
    box-shadow: 0 0 8px rgba(59,130,246,0.5);
}

/* === BLOG POST SINGLE === */
.post-hero {
    position: relative;
    padding: 160px 0 70px;
    background: var(--gradient-soft);
    overflow: hidden;
}
.post-hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 500px;
    height: 500px;
    max-width: 80vw;
    max-height: 80vw;
    background: radial-gradient(circle, rgba(59,130,246,0.15), transparent 65%);
    border-radius: 50%;
}
.post-hero .container { position: relative; z-index: 2; }
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--gray-mid);
    margin-bottom: 22px;
    font-family: var(--font-display);
    flex-wrap: wrap;
}
.breadcrumb a { color: var(--gray-mid); transition: color 0.2s ease; }
.breadcrumb a:hover { color: var(--blue-dark); }
.breadcrumb .sep { opacity: 0.4; }
.breadcrumb .current { color: var(--navy); font-weight: 600; }
.post-category-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(59,130,246,0.3);
}
.post-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4.5vw, 3.4rem);
    font-weight: 800;
    line-height: 1.12;
    color: var(--navy);
    letter-spacing: -0.025em;
    margin-bottom: 28px;
}
.post-meta-bar {
    display: flex;
    align-items: center;
    gap: 26px;
    flex-wrap: wrap;
    padding: 22px 0;
    margin-bottom: 40px;
    border-top: 1px solid rgba(15,23,42,0.1);
    border-bottom: 1px solid rgba(15,23,42,0.1);
}
.post-meta-author { display: flex; align-items: center; gap: 14px; }
.post-meta-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    display: grid;
    place-items: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 16px;
    border: 3px solid white;
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}
.post-meta-author-info strong {
    display: block;
    font-family: var(--font-display);
    font-size: 14px;
    color: var(--navy);
    margin-bottom: 2px;
}
.post-meta-author-info span { font-size: 12px; color: var(--gray-mid); font-family: var(--font-thai); }
.post-meta-divider { width: 1px; height: 30px; background: rgba(15,23,42,0.1); }
.post-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--gray-mid);
    font-family: var(--font-display);
}
.post-meta-item i { color: var(--blue); }
.post-meta-share {
    margin-left: auto;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.post-share-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: white;
    border: 1px solid rgba(15,23,42,0.08);
    color: var(--navy);
    display: grid;
    place-items: center;
    font-size: 13px;
    transition: all 0.25s ease;
    cursor: pointer;
}
.post-share-btn:hover {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
}
.post-share-btn.facebook:hover { background: #1877F2; }
.post-share-btn.twitter:hover { background: #1DA1F2; }
.post-share-btn.line:hover { background: #06C755; }
.post-featured-frame {
    position: relative;
    margin: 0 auto 60px;
    max-width: 1100px;
    padding: 0 24px;
}
.post-featured-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(15,23,42,0.18);
}
.post-featured-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(15,23,42,0.6) 100%);
    z-index: 1;
    pointer-events: none;
}
.post-featured-image img {
    width: 100%;
    height: clamp(240px, 50vw, 520px);
    object-fit: cover;
}
.post-featured-decor {
    position: absolute;
    top: -16px;
    right: 8px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0.15;
    filter: blur(20px);
    z-index: -1;
}
.post-featured-decor.bottom {
    top: auto;
    bottom: -16px;
    right: auto;
    left: 8px;
    background: linear-gradient(135deg, #06B6D4, #3B82F6);
}
.post-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 60px;
    padding: 0 0 90px;
}
.post-main {
    background: white;
    border-radius: var(--radius-lg);
    padding: 50px 52px;
    box-shadow: var(--shadow-sm);
    border: 1px solid #EEF2F7;
    position: relative;
    min-width: 0;
}
.post-content {
    font-family: var(--font-thai);
    font-size: 17px;
    line-height: 1.95;
    color: #2C3645;
    word-wrap: break-word;
}
.post-content > *:first-child { margin-top: 0; }
.post-content p { margin-bottom: 22px; }
.post-content .lead {
    font-size: 19px;
    line-height: 1.85;
    color: var(--navy-2);
    font-weight: 500;
    padding: 0 0 20px;
    margin-bottom: 26px;
    border-bottom: 1px dashed rgba(15,23,42,0.1);
}
.post-content h2 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--navy);
    margin: 44px 0 16px;
    letter-spacing: -0.015em;
    position: relative;
    padding-left: 20px;
    scroll-margin-top: 100px;
}
.post-content h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 5px;
    height: 28px;
    background: var(--gradient-primary);
    border-radius: 4px;
}
.post-content h3 {
    font-family: var(--font-display);
    font-size: 21px;
    font-weight: 700;
    color: var(--navy);
    margin: 32px 0 12px;
    scroll-margin-top: 100px;
}
.post-content ul, .post-content ol {
    margin: 0 0 24px 26px;
    padding-left: 8px;
}
.post-content li { margin-bottom: 10px; padding-left: 10px; }
.post-content ul li::marker { color: var(--blue); font-size: 1.1em; }
.post-content ol li::marker { color: var(--blue); font-weight: 700; }
.post-content strong { color: var(--navy); font-weight: 700; }
.post-content blockquote {
    margin: 32px 0;
    padding: 28px 32px;
    background: linear-gradient(135deg, #E0F2FE 0%, rgba(186,230,253,0.5) 100%);
    border-left: 5px solid var(--blue);
    border-radius: 16px;
    font-size: 17px;
    color: var(--navy-2);
    position: relative;
    font-style: italic;
}
.post-content blockquote::before {
    content: '\201C';
    position: absolute;
    top: 4px;
    left: 22px;
    font-size: 72px;
    font-family: Georgia, serif;
    color: rgba(59,130,246,0.2);
    line-height: 1;
}
.post-content blockquote p { margin-bottom: 0; padding-left: 30px; }
.post-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 28px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    font-size: 14px;
}
.post-content table th, .post-content table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid #EEF2F7;
}
.post-content table th {
    background: var(--cyan);
    color: var(--navy);
    font-family: var(--font-display);
    font-weight: 700;
}
.callout-info {
    margin: 28px 0;
    padding: 22px 26px;
    background: linear-gradient(135deg, #DBEAFE 0%, #E0F2FE 100%);
    border-left: 4px solid var(--blue);
    border-radius: 14px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.callout-info i {
    color: var(--blue);
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}
.callout-info strong { display: block; margin-bottom: 4px; }

.post-tags {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(15,23,42,0.08);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}
.post-tags strong {
    font-family: var(--font-display);
    font-size: 13px;
    color: var(--navy);
    margin-right: 10px;
}
.post-tag {
    padding: 7px 14px;
    background: var(--gray-light);
    border-radius: 999px;
    font-size: 12.5px;
    color: var(--navy-2);
    transition: all 0.25s ease;
    font-family: var(--font-display);
    font-weight: 500;
}
.post-tag:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-2px);
}
.post-author-box {
    margin-top: 40px;
    padding: 36px;
    background: linear-gradient(135deg, var(--cyan) 0%, rgba(255,255,255,0.5) 100%);
    border: 1px solid rgba(59,130,246,0.15);
    border-radius: var(--radius-md);
    display: flex;
    gap: 24px;
    align-items: flex-start;
}
.author-avatar-lg {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    display: grid;
    place-items: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 26px;
    border: 4px solid white;
    box-shadow: var(--shadow-md);
}
.author-info h4 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}
.author-info .author-role {
    display: inline-block;
    font-size: 12px;
    color: var(--blue-dark);
    font-weight: 600;
    padding: 3px 10px;
    background: rgba(255,255,255,0.7);
    border-radius: 999px;
    margin-bottom: 10px;
}
.author-info p {
    font-size: 14.5px;
    color: var(--navy-2);
    line-height: 1.7;
    font-family: var(--font-thai);
    margin-bottom: 10px;
}
.author-social { display: flex; gap: 8px; flex-wrap: wrap; }
.author-social a {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: white;
    color: var(--navy);
    display: grid;
    place-items: center;
    font-size: 12px;
    transition: all 0.2s ease;
    flex-shrink: 0;
}
.author-social a:hover { background: var(--blue); color: white; }
.post-cta-box {
    margin: 40px 0;
    padding: 36px;
    background: var(--gradient-dark);
    color: white;
    border-radius: var(--radius-md);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.post-cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    max-width: 100%;
    background: radial-gradient(circle, rgba(59,130,246,0.3), transparent 60%);
    border-radius: 50%;
}
.post-cta-box > * { position: relative; z-index: 1; }
.post-cta-box h3 {
    font-family: var(--font-display);
    font-size: 22px;
    margin-bottom: 8px;
    color: white;
    padding: 0;
}
.post-cta-box h3::before { display: none; }
.post-cta-box p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 22px;
    font-family: var(--font-thai);
}
.post-sidebar > .widget {
    background: white;
    border: 1px solid #EEF2F7;
    border-radius: var(--radius-md);
    padding: 28px 26px;
    margin-bottom: 24px;
}
.widget-toc { position: sticky; top: 100px; }
.widget-title {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: flex;
    align-items: center;
    gap: 10px;
}
.widget-title::before {
    content: '';
    width: 24px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 4px;
}
.toc-list { list-style: none; margin: 0; padding: 0; }
.toc-list li { margin-bottom: 10px; }
.toc-list a {
    display: block;
    padding: 9px 14px;
    font-size: 13.5px;
    color: var(--navy-2);
    border-left: 2px solid #EEF2F7;
    transition: all 0.2s ease;
    border-radius: 0 8px 8px 0;
    font-family: var(--font-thai);
    cursor: pointer;
}
.toc-list a:hover, .toc-list a.active {
    background: var(--cyan);
    color: var(--blue-dark);
    border-left-color: var(--blue);
    font-weight: 600;
}
.widget-recent-posts a {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #EEF2F7;
    transition: all 0.2s ease;
}
.widget-recent-posts a:last-child { border-bottom: none; }
.widget-recent-posts a:hover .rp-title { color: var(--blue-dark); }
.rp-thumb {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    border-radius: 12px;
    overflow: hidden;
}
.rp-thumb img { width: 100%; height: 100%; object-fit: cover; }
.rp-content { flex: 1; min-width: 0; }
.rp-title {
    font-family: var(--font-display);
    font-size: 13.5px;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.4;
    margin-bottom: 4px;
    transition: color 0.2s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.rp-date { font-size: 11.5px; color: var(--gray-mid); }
.rp-date i { color: var(--blue); margin-right: 4px; }
.widget-newsletter {
    background: var(--gradient-dark) !important;
    color: white;
    border-color: transparent !important;
    position: relative;
    overflow: hidden;
}
.widget-newsletter::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(59,130,246,0.4), transparent 60%);
    border-radius: 50%;
}
.widget-newsletter > * { position: relative; z-index: 1; }
.widget-newsletter .widget-title { color: white; }
.widget-newsletter p {
    font-size: 13.5px;
    color: rgba(255,255,255,0.75);
    margin-bottom: 16px;
    font-family: var(--font-thai);
    line-height: 1.6;
}
.widget-newsletter input {
    width: 100%;
    padding: 12px 16px;
    border-radius: 12px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: white;
    font-family: inherit;
    font-size: 13.5px;
    margin-bottom: 10px;
}
.widget-newsletter input::placeholder { color: rgba(255,255,255,0.5); }
.widget-newsletter input:focus {
    outline: none;
    background: rgba(255,255,255,0.12);
    border-color: var(--blue);
}
.widget-newsletter button {
    width: 100%;
    padding: 12px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 12px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 13.5px;
    cursor: pointer;
    transition: all 0.2s ease;
}
.widget-newsletter button:hover { transform: translateY(-2px); }
.post-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}
.post-nav-item {
    background: white;
    padding: 24px 28px;
    border: 1px solid #EEF2F7;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    display: block;
}
.post-nav-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(59,130,246,0.3);
}
.post-nav-item.next { text-align: right; }
.post-nav-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--blue-dark);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
    font-family: var(--font-display);
}
.post-nav-item.next .post-nav-label { justify-content: flex-end; }
.post-nav-item h4 {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.4;
}
.related-posts {
    padding: 90px 0;
    background: var(--gray-light);
}

/* === RESPONSIVE — TABLETS === */
@media (max-width: 1100px) {
    .container { padding: 0 22px; }
    .section { padding: 90px 0; }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-visual {
        height: auto;
        max-width: 560px;
        margin: 0 auto;
        width: 100%;
    }
    .hero-image-card { height: 460px; }

    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-visual img { height: 420px; }

    .contact-grid { grid-template-columns: 1fr; gap: 28px; }

    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }

    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .info-cards { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .mission-grid { grid-template-columns: 1fr; }

    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 70px 0;
        direction: ltr !important;
    }
    .service-detail-visual img { height: 360px; }

    .post-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .widget-toc { position: static; }
    .post-main { padding: 40px 32px; }
}

/* === RESPONSIVE — SMALL TABLETS / LARGE PHONES === */
@media (max-width: 860px) {
    .section { padding: 70px 0; }

    .nav-links { display: none; }
    .nav-cta .btn-primary { display: none; }
    .hamburger { display: flex; }

    .hero { padding: 130px 0 70px; min-height: auto; }
    .hero-image-card { height: 420px; max-width: 460px; }
    .glass-card-1 { left: -10px; width: 200px; }
    .glass-card-2 { right: -10px; width: 200px; }

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }
    .hero-stat strong { font-size: 20px; }

    .testi-card { width: 320px; padding: 26px 22px; }

    .form-row { grid-template-columns: 1fr; }

    .footer-bottom {
        text-align: center;
        justify-content: center;
    }

    .post-nav { grid-template-columns: 1fr; }
    .post-author-box {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    .post-meta-share { margin-left: 0; width: 100%; }
    .post-meta-bar { gap: 16px; }

    .page-header { padding: 140px 0 70px; }

    .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 46px;
        height: 46px;
        font-size: 16px;
    }
}

/* === RESPONSIVE — MOBILE PHONES === */
@media (max-width: 600px) {
    .container { padding: 0 16px; }
    .section { padding: 60px 0; }

    .services-grid,
    .blog-grid,
    .why-grid,
    .team-grid,
    .info-cards,
    .process-grid,
    .stats-grid,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .hero { padding: 110px 0 60px; }
    .hero h1 { font-size: 1.9rem; }
    .hero-sub { font-size: 15px; }
    .hero-image-card { height: 360px; }
    .glass-card-1, .glass-card-2 { display: none; }

    .section-title { font-size: 1.7rem; }
    .section-sub { font-size: 15px; margin-bottom: 40px; }

    .hero-stats { gap: 10px; }
    .hero-stat strong { font-size: 18px; }
    .hero-stat span { font-size: 11.5px; }

    .stat-card .stat-number { font-size: 32px; }

    .brands-track { gap: 26px; }
    .brand-item { font-size: 14px; }

    .service-card,
    .mission-card,
    .info-card,
    .why-card { padding: 28px 22px; }

    .contact-info,
    .contact-form { padding: 30px 24px; }

    .post-main { padding: 28px 20px; }
    .post-content { font-size: 16px; }
    .post-content h2 { font-size: 22px; padding-left: 18px; }
    .post-content h2::before { height: 24px; }
    .post-content h3 { font-size: 19px; }
    .post-content blockquote { padding: 22px 24px; }
    .post-featured-image img { height: 220px; }
    .post-meta-bar { gap: 14px; padding: 18px 0; }
    .post-meta-divider { display: none; }
    .post-title { font-size: 1.8rem; }

    .comment-form { grid-template-columns: 1fr; }

    .map-wrap { height: 320px; }

    .testi-card { width: 280px; }

    .pagination a, .pagination span {
        min-width: 40px;
        height: 40px;
        font-size: 13px;
        padding: 0 10px;
    }

    .blog-filters { gap: 8px; }
    .blog-filter {
        padding: 8px 16px;
        font-size: 12.5px;
    }

    .newsletter-form { flex-direction: column; background: transparent; border: none; padding: 0; }
    .newsletter-form input {
        background: rgba(255,255,255,0.06);
        border: 1px solid rgba(255,255,255,0.12);
        border-radius: 12px;
        padding: 12px 16px;
        margin-bottom: 8px;
    }
    .newsletter-form button {
        border-radius: 12px;
        padding: 12px 22px;
    }

    .author-avatar-lg { width: 70px; height: 70px; font-size: 22px; }

    .btn {
        padding: 13px 24px;
        font-size: 14px;
    }
}

/* === Accessibility === */
.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
}
.skip-link:focus {
    left: 16px;
    top: 16px;
    z-index: 9999;
    background: var(--navy);
    color: white;
    padding: 10px 18px;
    border-radius: 8px;
}