/* =========================================
   2T PROVISION & SOLUTIONS — DESIGN SYSTEM
   ========================================= */

/* ---- CSS Variables ---- */
:root {
    /* Brand Colors — Minimal Corporate */
    --primary: #1B3A5C;
    --primary-dark: #142D48;
    --primary-light: #2A5580;
    --secondary: #E8720C;
    --secondary-dark: #C45E0A;
    --secondary-light: #F09030;

    /* Neutrals */
    --dark: #0F1C2E;
    --dark-2: #1E293B;
    --gray-900: #0F172A;
    --gray-700: #475569;
    --gray-500: #64748B;
    --gray-300: #CBD5E1;
    --gray-100: #E2E8F0;
    --light: #F8FAFC;
    --light-alt: #F1F5F9;
    --white: #FFFFFF;

    /* Gradients */
    --gradient-brand: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    --gradient-accent: linear-gradient(135deg, #e8612d 0%, #d4841c 50%, #f09030 100%);
    --gradient-hero: linear-gradient(160deg, rgba(15, 28, 46, 0.93) 0%, rgba(27, 58, 92, 0.82) 50%, rgba(20, 45, 72, 0.90) 100%);
    --gradient-dark: linear-gradient(135deg, #0F1C2E 0%, #0F172A 100%);
    --gradient-card: linear-gradient(145deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.6) 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%);

    /* Typography */
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;

    /* Spacing */
    --section-py: 70px;
    --container-px: 24px;
    --container-max: 1200px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 60px rgba(0, 0, 0, 0.16);
    --shadow-glow-accent: 0 4px 25px rgba(232, 97, 45, 0.35);
    --shadow-glow: 0 0 30px rgba(27, 58, 92, 0.25);

    /* Borders */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --transition: 0.3s var(--ease-out);
    --transition-slow: 0.6s var(--ease-out);
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark-2);
    background: var(--white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* ---- Utilities ---- */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-px);
}

.section {
    padding: var(--section-py) 0;
    position: relative;
}

.section--alt {
    background: var(--light);
    position: relative;
}

/* Subtle dot grid pattern for alt sections */
.section--alt::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, var(--gray-300) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.3;
    pointer-events: none;
}

.section--dark {
    background: var(--gradient-dark);
    color: var(--white);
}

/* Wave section divider */
.section__wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 1;
}

.section__wave svg {
    display: block;
    width: 100%;
    height: 60px;
}

.section__wave--top {
    top: -1px;
    bottom: auto;
    transform: rotate(180deg);
}

/* Scroll progress bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--gradient-accent);
    z-index: 10000;
    width: 0%;
    transition: width 0.1s linear;
}

.section__header {
    text-align: center;
    margin-bottom: 40px;
}

.section__label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 12px;
    position: relative;
}

.section__label::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: var(--gradient-brand);
    margin: 8px auto 0;
    border-radius: 2px;
}

.section__label--light {
    color: var(--primary-light);
}

.section__title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 16px;
}

.section__title em {
    font-style: normal;
    color: var(--secondary);
}

.section__title--light {
    color: var(--white);
}

.section__title--light em {
    color: var(--secondary-light);
}

.section__desc {
    font-size: 18px;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn--primary {
    background: var(--gradient-brand);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(27, 58, 92, 0.35);
    position: relative;
    overflow: hidden;
}

.btn--primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(27, 58, 92, 0.4);
}

.btn--primary:hover::before {
    opacity: 1;
}

.btn--primary:active {
    transform: translateY(0) scale(0.98);
}

.btn--outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(8px);
    position: relative;
    overflow: hidden;
}

.btn--outline::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-100%);
    transition: transform 0.4s var(--ease-out);
    border-radius: inherit;
}

.btn--outline:hover {
    border-color: rgba(255, 255, 255, 0.8);
}

.btn--outline:hover::before {
    transform: translateX(0);
}

.btn--lg {
    padding: 16px 36px;
    font-size: 16px;
}

.btn--full {
    width: 100%;
    justify-content: center;
    background: var(--primary);
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.35);
}

.btn--full:hover {
    background: var(--primary-dark);
    box-shadow: var(--shadow-glow);
}

.icon-sm {
    width: 18px;
    height: 18px;
}

.icon-bounce {
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-8px);
    }

    60% {
        transform: translateY(-4px);
    }
}

/* =========================================
   HEADER
   ========================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 12px 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px) saturate(180%);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    box-shadow: var(--shadow-sm);
    padding: 10px 0;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
}

.header__logo-img {
    height: 52px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.header__logo-text {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    line-height: 1.4;
    color: var(--dark);
    text-transform: uppercase;
    transition: var(--transition);
}

.header__logo-text strong {
    font-size: 16px;
    font-weight: 800;
    color: var(--secondary);
    letter-spacing: 0;
}
.header__logo-dark {
    display: none;
}

.header__logo-light {
    display: block;
}

.header.scrolled .header__logo-img {
    height: 40px;
}

/* Logo text: white on transparent header, dark on scrolled */
.header__logo-text {
    color: var(--dark);
}
.header__logo-text strong {
    color: var(--secondary);
}

.header__menu {
    display: flex;
    gap: 8px;
}

.header__link {
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-2);
    border-radius: var(--radius-full);
    transition: var(--transition);
    position: relative;
    white-space: nowrap;
}

.header.scrolled .header__link {
    color: var(--dark-2);
}

.header__link:hover {
    color: var(--primary);
    background: rgba(27, 58, 92, 0.08);
}

.header.scrolled .header__link:hover {
    color: var(--primary);
    background: rgba(255, 140, 0, 0.1);
}

.header__link.active {
    color: var(--primary);
    font-weight: 700;
}

.header__link.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 14px;
    right: 14px;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

.header.scrolled .header__link.active {
    color: var(--primary);
}

.header.scrolled .header__link.active::after {
    background: var(--gradient-accent);
}

/* Dropdown Menu */
.header__has-dropdown {
    position: relative;
}

.icon-dropdown {
    width: 14px;
    height: 14px;
    vertical-align: middle;
    margin-left: 2px;
    transition: transform 0.3s ease;
}

.header__has-dropdown:hover .icon-dropdown {
    transform: rotate(180deg);
}

.header__dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(12px);
    min-width: 240px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s var(--ease-out);
    z-index: 1000;
    list-style: none;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.header__dropdown::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 10px;
}

.header__has-dropdown:hover .header__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.header__dropdown li {
    list-style: none;
}

.header__dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 500;
    color: var(--dark-2);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.header__dropdown a i {
    width: 18px;
    height: 18px;
    color: var(--secondary, #d4841c);
    flex-shrink: 0;
}

.header__dropdown a:hover {
    background: rgba(26, 35, 50, 0.06);
    color: var(--primary);
}

.header__dropdown a:hover i {
    color: var(--primary);
}

/* Sub-dropdown (Level 3) */
.header__has-subdropdown {
    position: relative;
}

.icon-subdropdown {
    width: 14px;
    height: 14px;
    margin-left: auto;
    opacity: 0.4;
    transition: all 0.2s ease;
}

.header__has-subdropdown:hover .icon-subdropdown {
    opacity: 1;
    color: var(--primary);
}

.header__subdropdown {
    position: absolute;
    top: -8px;
    left: 100%;
    margin-left: 4px;
    min-width: 220px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    z-index: 1001;
    list-style: none;
    border: 1px solid var(--border, #eee);
    transform: translateX(8px);
}

.header__subdropdown::before {
    content: '';
    position: absolute;
    top: 0;
    left: -8px;
    width: 8px;
    height: 100%;
}

.header__has-subdropdown:hover > .header__subdropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.header__subdropdown a {
    padding: 8px 14px;
    font-size: 12px;
}

.header__subdropdown a::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--secondary, #d4841c);
    flex-shrink: 0;
}

/* 3rd level: sub-subdropdown (e.g. ISO → 9001/14001/45001) */
.header__subdropdown .header__has-subdropdown {
    position: relative;
}
.header__subdropdown .header__has-subdropdown > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header__subdropdown .header__subdropdown {
    top: -8px;
    left: 100%;
    margin-left: 4px;
    min-width: 200px;
}
.header__subdropdown .header__subdropdown::before {
    left: -8px;
    width: 8px;
}
.header__subdropdown .header__has-subdropdown:hover > .header__subdropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Header Actions (Lang Switcher + CTA) */
.header__actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: var(--light);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-full);
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--dark-2);
    transition: var(--transition);
}

.header.scrolled .lang-switcher {
    background: var(--light);
    border-color: var(--gray-100);
    color: var(--dark-2);
}

.lang-switcher:hover {
    background: rgba(255, 255, 255, 0.25);
}

.header.scrolled .lang-switcher:hover {
    background: var(--gray-100);
}

.lang-switcher__flag {
    font-size: 16px;
}

.lang-switcher__label {
    font-weight: 700;
    color: var(--primary-light);
}

.header.scrolled .lang-switcher__label {
    color: var(--primary);
}

.lang-switcher__divider {
    opacity: 0.4;
}

.lang-switcher__alt {
    opacity: 0.6;
}

.lang-switcher__alt:hover {
    opacity: 1;
}

.lang-switcher__flag-alt {
    font-size: 16px;
    opacity: 0.5;
    transition: opacity 0.2s ease;
}

.lang-switcher:hover .lang-switcher__flag-alt {
    opacity: 0.8;
}

.header__cta {
    padding: 10px 24px;
    font-size: 14px;
}

.header.scrolled .header__cta {
    box-shadow: 0 2px 10px rgba(255, 140, 0, 0.2);
}

.header__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.header__hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.header.scrolled .header__hamburger span {
    background: var(--dark-2);
}

.header__hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.header__hamburger.active span:nth-child(2) {
    opacity: 0;
}

.header__hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* =========================================
   HERO
   ========================================= */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.hero__slider {
    position: relative;
    height: 100%;
}

.hero__slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.hero__slide.active {
    opacity: 1;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
}

/* Floating geometric shapes */
.hero__overlay::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 97, 45, 0.08) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    animation: heroFloat 8s ease-in-out infinite;
}

.hero__overlay::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(27, 58, 92, 0.15) 0%, transparent 70%);
    bottom: -50px;
    left: 10%;
    animation: heroFloat 10s ease-in-out infinite reverse;
}

@keyframes heroFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -20px) scale(1.05); }
}

.hero__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding-top: 80px;
    max-width: 700px;
}

.hero__badge {
    display: inline-block;
    width: fit-content;
    padding: 8px 24px;
    background: var(--gradient-glass);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 24px;
    animation: fadeInDown 0.8s var(--ease-out) both;
}

.hero__title {
    font-size: clamp(32px, 4.5vw, 50px);
    font-weight: 900;
    line-height: 1.12;
    color: var(--white);
    margin-bottom: 24px;
    animation: fadeInUp 0.8s var(--ease-out) 0.2s both;
}

.hero__title em {
    font-style: normal;
    display: block;
    background: linear-gradient(135deg, #fff 30%, rgba(240, 144, 48, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__subtitle {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 520px;
    animation: fadeInUp 0.8s var(--ease-out) 0.4s both;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s var(--ease-out) 0.6s both;
}

.hero__dots {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.hero__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
}

.hero__dot.active {
    background: var(--white);
    border-color: var(--white);
    transform: scale(1.2);
}

.hero__scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.7);
    z-index: 10;
}

/* =========================================
   ABOUT
   ========================================= */
.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about__image-wrapper {
    position: relative;
}

.about__image {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about__experience-badge {
    position: relative;
    z-index: 2;
    margin-top: 16px;
    margin-left: auto;
    margin-right: 0;
    width: fit-content;
    background: var(--gradient-brand);
    color: var(--white);
    padding: 20px 28px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-lg);
}

.about__experience-number {
    font-size: 48px;
    font-weight: 900;
    line-height: 1;
}

.about__experience-label {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about__content .section__label::after {
    margin: 8px 0 0;
}

.about__content .section__title {
    text-align: left;
}

.about__text {
    font-size: 16px;
    color: var(--gray-700);
    margin-bottom: 16px;
    line-height: 1.8;
}

.about__highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 16px;
}

.about__highlights li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary);
}

.about__highlights li i {
    color: var(--accent);
    flex-shrink: 0;
}

@media (max-width: 480px) {
    .about__highlights {
        grid-template-columns: 1fr;
    }
}

.about__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 36px 0;
    padding: 28px;
    background: var(--light);
    border-radius: var(--radius-md);
}

.about__stat {
    text-align: center;
}

.about__stat-number {
    font-size: 36px;
    font-weight: 900;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.about__stat-plus {
    font-size: 24px;
    font-weight: 900;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about__stat-label {
    display: block;
    font-size: 13px;
    color: var(--gray-500);
    margin-top: 4px;
}

/* =========================================
   PROCESS TIMELINE
   ========================================= */
.process__timeline {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.process__step {
    flex: 1;
    text-align: center;
    padding: 0 12px;
    position: relative;
}

.process__number {
    font-size: 14px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.process__icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 3px solid var(--primary);
    border-radius: 50%;
    color: var(--primary);
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

.process__icon svg {
    width: 28px;
    height: 28px;
}

.process__step:hover .process__icon {
    background: var(--gradient-brand);
    color: var(--white);
    border-color: transparent;
    transform: scale(1.1);
    box-shadow: var(--shadow-glow);
}

.process__step h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.process__step p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.6;
}

.process__connector {
    flex-shrink: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-brand);
    margin-top: 52px;
    border-radius: 2px;
    opacity: 0.5;
}

/* =========================================
   SERVICES
   ========================================= */
.services__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.services__image-area {
    position: sticky;
    top: 120px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.services__main-image {
    width: 100%;
    height: 480px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.services__tabs {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.services__tab {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    border: 2px solid rgba(27, 58, 92, 0.08);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.4s var(--ease-out);
    text-align: left;
    font-family: var(--font-body);
    box-shadow: var(--shadow-sm);
}

.services__tab:hover {
    border-color: rgba(27, 58, 92, 0.2);
    transform: translateX(6px);
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.9);
}

.services__tab.active {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 4px 24px rgba(27, 58, 92, 0.15);
}

.services__tab-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light);
    border-radius: var(--radius-sm);
    color: var(--gray-500);
    transition: all 0.4s var(--ease-out);
}

.services__tab.active .services__tab-icon {
    background: var(--gradient-brand);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(27, 58, 92, 0.3);
}

.services__tab-content h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.services__tab-content p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.5;
    display: none;
}

.services__tab.active .services__tab-content p {
    display: block;
}

@media (max-width: 768px) {
    .services__tab.active .services__tab-content p {
        display: none;
    }
}

.services__tab-arrow {
    flex-shrink: 0;
    margin-left: auto;
    margin-top: 2px;
    color: var(--gray-300);
    transition: var(--transition);
}

.services__tab.active .services__tab-arrow {
    color: var(--primary);
    transform: translateX(4px);
}

/* ---- Service Detail Panels ---- */
.services__detail {
    margin-top: 48px;
    position: relative;
    min-height: 280px;
}

.services__detail-panel {
    display: none;
    animation: fadeInUp 0.4s var(--ease-out);
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--primary);
}

.services__detail-panel.active {
    display: block;
}

.services__detail-panel h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
}

.services__detail-panel p {
    font-size: 16px;
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 24px;
}

.services__detail-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 32px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.services__detail-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    color: var(--gray-700);
    line-height: 1.5;
}

.services__detail-list li svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--secondary);
    margin-top: 2px;
}

.services__detail-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 28px;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-full);
    background: var(--gradient-brand);
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
}

.services__detail-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.4);
}

.services__detail-cta .icon-sm {
    width: 16px;
    height: 16px;
}

/* =========================================
   SERVICE CARDS (NEW 3-CARD LAYOUT)
   ========================================= */
.services__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.services__card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-100);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.services__card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.services__card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.services__card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.services__card:hover .services__card-image img {
    transform: scale(1.05);
}

.services__card-body {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.services__card-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-brand);
    border-radius: var(--radius-md);
    color: var(--white);
    margin-bottom: 16px;
}

.services__card-icon svg {
    width: 24px;
    height: 24px;
}

.services__card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.services__card-desc {
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 16px;
}

.services__card-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
}

.services__card-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--gray-700);
    padding: 6px 0;
    border-bottom: 1px solid var(--gray-100);
}

.services__card-list li:last-child {
    border-bottom: none;
}

.services__card-list li svg {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    color: var(--secondary);
}

.services__card-help {
    background: linear-gradient(135deg, rgba(27, 58, 92, 0.06), rgba(27, 58, 92, 0.02));
    border-radius: var(--radius-sm);
    padding: 16px;
    margin-bottom: 20px;
}

.services__card-help strong {
    font-size: 14px;
    color: var(--primary);
    display: block;
    margin-bottom: 6px;
}

.services__card-help p {
    font-size: 13px;
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

.services__card-cta {
    margin-top: auto;
    align-self: flex-start;
}

@media (max-width: 1024px) {
    .services__cards {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* =========================================
   WHAT WE DO
   ========================================= */
.what-we-do__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.what-we-do__item {
    text-align: center;
    padding: 28px 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-100);
    transition: var(--transition);
}

.what-we-do__item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.what-we-do__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, rgba(27, 58, 92, 0.12), rgba(27, 58, 92, 0.04));
    border-radius: var(--radius-md);
    color: var(--primary);
    transition: var(--transition);
}

.what-we-do__icon svg {
    width: 24px;
    height: 24px;
}

.what-we-do__item:hover .what-we-do__icon {
    background: var(--gradient-brand);
    color: var(--white);
    transform: scale(1.1);
}

.what-we-do__item p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

.what-we-do__goal {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 32px;
    background: linear-gradient(135deg, rgba(27, 58, 92, 0.08), rgba(27, 58, 92, 0.02));
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary);
}

.what-we-do__goal-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    color: var(--primary);
}

.what-we-do__goal p {
    font-size: 16px;
    color: var(--dark);
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 1024px) {
    .what-we-do__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .what-we-do__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .what-we-do__goal {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .what-we-do__grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   TARGET CUSTOMERS
   ========================================= */
.target-customers {
    margin-top: 48px;
    text-align: center;
    padding: 40px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.target-customers__title {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 24px;
}

.target-customers__tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.target-customers__tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(27, 58, 92, 0.08), rgba(27, 58, 92, 0.03));
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 500;
    color: var(--primary);
    transition: var(--transition);
    border: 1px solid rgba(27, 58, 92, 0.1);
}

.target-customers__tag:hover {
    background: var(--gradient-brand);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.target-customers__tag:hover svg {
    color: var(--white);
}

.target-customers__tag svg {
    width: 16px;
    height: 16px;
}

/* =========================================
   COMMITMENT / CTA SECTION
   ========================================= */
.commitment {
    background: var(--gradient-brand);
    color: var(--white);
    text-align: center;
}

.commitment__content {
    max-width: 720px;
    margin: 0 auto;
}

.section__label--light {
    color: rgba(255, 255, 255, 0.7);
    border-color: rgba(255, 255, 255, 0.3);
}

.section__title--light {
    color: var(--white);
}

.section__title--light em {
    color: var(--secondary-light);
}

.commitment__text {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.commitment__question {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 24px;
}

.commitment__actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn--white {
    background: var(--white);
    color: var(--primary);
    font-weight: 600;
}

.btn--white:hover {
    background: var(--light);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

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

.btn--outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-2px);
}

/* =========================================
   WHY US
   ========================================= */
.why-us__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.why-us__card {
    padding: 36px 28px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-100);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.why-us__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-brand);
    opacity: 0;
    transition: var(--transition);
}

.why-us__card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.why-us__card:hover::before {
    opacity: 1;
}

.why-us__card-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(27, 58, 92, 0.12), rgba(27, 58, 92, 0.06));
    border-radius: var(--radius-md);
    color: var(--primary);
    margin-bottom: 20px;
    transition: var(--transition);
}

.why-us__card-icon svg {
    width: 28px;
    height: 28px;
}

.why-us__card:hover .why-us__card-icon {
    background: var(--gradient-brand);
    color: var(--white);
    transform: scale(1.1);
}

.why-us__card-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.why-us__card-desc {
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.7;
}

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonials__slider {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonials__track {
    position: relative;
    min-height: 280px;
}

.testimonials__card {
    display: none;
    animation: fadeInUp 0.5s var(--ease-out);
}

.testimonials__card.active {
    display: block;
}

.testimonials__stars {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 20px;
    letter-spacing: 4px;
}

.testimonials__quote {
    font-size: 20px;
    font-style: italic;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 32px;
    position: relative;
    padding: 0 40px;
}

.testimonials__quote::before {
    content: '\201C';
    position: absolute;
    top: -20px;
    left: 0;
    font-size: 80px;
    font-family: var(--font-display);
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    opacity: 0.3;
}

.testimonials__author {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    text-align: left;
}

.testimonials__avatar-placeholder {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gradient-brand);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.testimonials__author strong {
    display: block;
    font-size: 16px;
    color: var(--dark);
}

.testimonials__author span {
    font-size: 14px;
    color: var(--gray-500);
}

.testimonials__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 36px;
}

.testimonials__btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light);
    border: 1px solid var(--gray-100);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    color: var(--gray-500);
}

.testimonials__btn:hover {
    background: var(--gradient-brand);
    color: var(--white);
    border-color: transparent;
}

.testimonials__dots {
    display: flex;
    gap: 8px;
}

.testimonials__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid var(--gray-300);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.testimonials__dot.active {
    background: var(--primary);
    border-color: var(--primary);
}

/* =========================================
   PARTNERS
   ========================================= */
.partners__marquee {
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.partners__marquee::before,
.partners__marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
}

.partners__marquee::before {
    left: 0;
    background: linear-gradient(to right, var(--light), transparent);
}

.partners__marquee::after {
    right: 0;
    background: linear-gradient(to left, var(--light), transparent);
}

.partners__track {
    display: flex;
    gap: 40px;
    animation: marquee 30s linear infinite;
    width: max-content;
}

.partners__logo {
    flex-shrink: 0;
    width: 160px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    filter: grayscale(100%);
    opacity: 0.6;
}

.partners__logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.partners__logo span {
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--gray-500);
    transition: var(--transition);
}

.partners__logo:hover span {
    color: var(--primary);
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* =========================================
   NEWS
   ========================================= */
.news__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.news__card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    transition: var(--transition);
}

.news__card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.news__card-image {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.news__card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.news__card:hover .news__card-image img {
    transform: scale(1.08);
}

.news__card-category {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    background: var(--gradient-brand);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    border-radius: var(--radius-full);
    letter-spacing: 0.5px;
}

.news__card-body {
    padding: 24px;
}

.news__card-date {
    font-size: 13px;
    color: var(--gray-500);
    font-weight: 500;
}

.news__card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin: 8px 0 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news__card-excerpt {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 16px;
}

.news__card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
    padding: 6px 0;
}

.news__card-link:hover {
    gap: 12px;
    color: var(--primary-dark);
}

/* =========================================
   CONTACT
   ========================================= */
.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact__text {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 36px;
    line-height: 1.7;
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact__detail {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact__detail>svg {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: var(--primary-light);
    margin-top: 2px;
}

.contact__detail strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 2px;
}

.contact__detail p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.contact__form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.contact__form-group {
    margin-bottom: 20px;
    position: relative;
}

.contact__form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact__form label,
.contact-page__form label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact__form input,
.contact__form select,
.contact__form textarea,
.contact-page__form input,
.contact-page__form select,
.contact-page__form textarea {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--dark);
    background: #fff;
    border: 1.5px solid var(--gray-200, #e2e8f0);
    border-radius: 10px;
    transition: all 0.25s ease;
    outline: none;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.04);
}

.contact__form input:hover,
.contact__form select:hover,
.contact__form textarea:hover,
.contact-page__form input:hover,
.contact-page__form select:hover,
.contact-page__form textarea:hover {
    border-color: var(--gray-300, #cbd5e1);
}

.contact__form input:focus,
.contact__form select:focus,
.contact__form textarea:focus,
.contact-page__form input:focus,
.contact-page__form select:focus,
.contact-page__form textarea:focus {
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(26, 35, 50, 0.08), inset 0 1px 2px rgba(0, 0, 0, 0.04);
}

.contact__form input::placeholder,
.contact__form textarea::placeholder,
.contact-page__form input::placeholder,
.contact-page__form textarea::placeholder {
    color: #a0aec0;
    font-weight: 400;
}

.contact__form select,
.contact-page__form select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23718096' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 16px;
    padding-right: 40px;
    cursor: pointer;
}

.contact__form textarea,
.contact-page__form textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

/* =========================================
   FOOTER
   ========================================= */
/* ---- Footer CTA Strip ---- */
.footer-cta {
    background: linear-gradient(135deg, #e8612d 0%, #d4451a 50%, #c0390f 100%);
    padding: 2.5rem 0;
}
.footer-cta__inner {
    display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
}
.footer-cta__text h3 {
    font-size: 1.5rem; font-weight: 700; color: #fff; margin-bottom: 0.25rem;
}
.footer-cta__text p {
    font-size: 0.95rem; color: rgba(255,255,255,0.85);
}
.footer-cta__actions {
    display: flex; gap: 0.75rem; flex-wrap: wrap;
}
.footer-cta__btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.75rem 1.5rem; border-radius: 10px; font-weight: 600; font-size: 0.95rem;
    text-decoration: none; transition: all 0.3s; white-space: nowrap;
}
.footer-cta__btn--phone {
    background: #fff; color: #e8612d;
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.footer-cta__btn--phone:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.2); }
.footer-cta__btn--zalo {
    background: rgba(255,255,255,0.2); color: #fff;
    border: 1px solid rgba(255,255,255,0.4);
}
.footer-cta__btn--zalo:hover { background: rgba(255,255,255,0.3); transform: translateY(-2px); }

/* ---- Footer Main ---- */
.footer {
    background: #1a2332;
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 0;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer__logo {
    height: 72px;
    width: auto;
    margin-bottom: 16px;
    border-radius: var(--radius-sm);
}

.footer__desc {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 24px;
    max-width: 300px;
    color: rgba(255,255,255,0.6);
}

.footer__social {
    display: flex;
    gap: 12px;
}

.footer__social-link {
    width: 42px; height: 42px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.4s var(--ease-out);
    position: relative;
}
.footer__social-link svg { width: 18px; height: 18px; }

/* Brand-specific hover colors */
.footer__social-link--fb:hover {
    background: #1877F2; color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(24, 119, 242, 0.4);
}

.footer__social-link--zalo:hover {
    background: #0068FF; color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 104, 255, 0.4);
}

.footer__social-link--yt:hover {
    background: #FF0000; color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.35);
}

/* Fallback for generic social links */
.footer__social-link:hover {
    background: var(--secondary); color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(232,97,45,0.35);
}

.footer__links h4 {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    padding-bottom: 10px;
    position: relative;
}
.footer__links h4::after {
    content: ''; position: absolute; left: 0; bottom: 0;
    width: 28px; height: 2px;
    background: #e8612d; border-radius: 2px;
}

.footer__links ul { list-style: none; padding: 0; margin: 0; }

.footer__links li {
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.6;
    transition: all 0.2s;
}

.footer__links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: all 0.2s;
}
.footer__links a:hover {
    color: #e8612d;
    padding-left: 4px;
}

.footer__contact li {
    display: flex; align-items: flex-start; gap: 8px;
}
.footer__contact li svg {
    flex-shrink: 0; margin-top: 3px;
    stroke: #e8612d;
}
.footer__contact li a { color: rgba(255,255,255,0.7); }
.footer__contact li a:hover { color: #e8612d; padding-left: 0; }

/* ---- Footer Divider ---- */
.footer__divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(232,97,45,0.3), rgba(255,255,255,0.1), rgba(232,97,45,0.3), transparent);
}

/* ---- Footer Bottom ---- */
.footer__bottom {
    background: #141c28;
    padding: 20px 0;
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
    margin: 0 calc(-50vw + 50%);
    padding-left: calc(50vw - 50%);
    padding-right: calc(50vw - 50%);
}
.footer__bottom p { margin-bottom: 4px; }
.footer__bottom-legal a {
    color: rgba(255,255,255,0.4); text-decoration: none;
    transition: color 0.2s;
}
.footer__bottom-legal a:hover { color: #e8612d; }

@media (max-width: 768px) {
    .footer-cta { padding: 1.5rem 0; text-align: center; }
    .footer-cta__inner { flex-direction: column; text-align: center; }
    .footer-cta__text h3 { font-size: 1.2rem; }
    .footer-cta__actions { justify-content: center; }
    .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer__desc { max-width: 100%; }
    .footer__brand { text-align: center; }
    .footer__social { justify-content: center; }
    .footer__links h4::after { left: 0; }
}

/* =========================================
   FAB CONTACT MENU
   ========================================= */
.fab {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 900;
}

.fab__trigger {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: none;
    background: var(--gradient-brand);
    color: var(--white);
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    animation: pulse-ring 2s infinite;
}

.fab__trigger:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-glow);
}

.fab__trigger svg {
    width: 24px;
    height: 24px;
    position: absolute;
    transition: var(--transition);
}

.fab__icon-close {
    opacity: 0;
    transform: rotate(-90deg);
}

.fab.open .fab__icon-open {
    opacity: 0;
    transform: rotate(90deg);
}

.fab.open .fab__icon-close {
    opacity: 1;
    transform: rotate(0);
}

.fab.open .fab__trigger {
    animation: none;
}

.fab__items {
    position: absolute;
    bottom: 70px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
}

.fab.open .fab__items {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.fab__item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 18px 10px 12px;
    border-radius: var(--radius-full);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    box-shadow: var(--shadow-md);
    white-space: nowrap;
    text-decoration: none;
    transform: translateX(10px);
    opacity: 0;
    transition: var(--transition);
}

.fab.open .fab__item {
    transform: translateX(0);
    opacity: 1;
}

.fab.open .fab__item:nth-child(1) { transition-delay: 0.05s; }
.fab.open .fab__item:nth-child(2) { transition-delay: 0.1s; }
.fab.open .fab__item:nth-child(3) { transition-delay: 0.15s; }

.fab__item svg {
    width: 18px;
    height: 18px;
}

.fab__item:hover {
    transform: translateX(-4px) !important;
    box-shadow: var(--shadow-lg);
}

.fab__item--phone { background: var(--primary); }
.fab__item--email { background: var(--secondary); }
.fab__item--zalo { background: #0068FF; }

@keyframes pulse-ring {
    0% { box-shadow: 0 0 0 0 rgba(232, 114, 12, 0.5); }
    70% { box-shadow: 0 0 0 12px rgba(232, 114, 12, 0); }
    100% { box-shadow: 0 0 0 0 rgba(232, 114, 12, 0); }
}

/* =========================================
   BACK TO TOP
   ========================================= */
/* ==================== FLOATING CONTACT BUTTONS ==================== */
.floating-contact {
    position: fixed;
    left: 20px;
    bottom: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.floating-contact__btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    position: relative;
}

.floating-contact__btn:hover {
    transform: scale(1.15) translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
}

.floating-contact__btn--phone {
    background: linear-gradient(135deg, #1a73e8, #0d47a1);
}

.floating-contact__btn--zalo {
    background: linear-gradient(135deg, #0068ff, #0045b5);
}

.floating-contact__btn svg {
    width: 24px;
    height: 24px;
}

/* Tooltip */
.floating-contact__btn::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--dark-2, #1a2332);
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    pointer-events: none;
}

.floating-contact__btn:hover::after {
    opacity: 1;
    visibility: visible;
}

/* Pulse animation */
.floating-contact__btn--phone::before,
.floating-contact__btn--zalo::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid currentColor;
    opacity: 0;
    animation: floatPulse 2s ease-in-out infinite;
}

.floating-contact__btn--phone::before {
    border-color: #1a73e8;
}

.floating-contact__btn--zalo::before {
    border-color: #0068ff;
    animation-delay: 1s;
}

@keyframes floatPulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.4); opacity: 0; }
}

/* ==================== BACK TO TOP ==================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-brand);
    color: var(--white);
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    z-index: 800;
}

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

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* =========================================
   ANIMATIONS
   ========================================= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal-up,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: all 0.8s var(--ease-out);
    will-change: opacity, transform;
}

.reveal-up {
    transform: translateY(50px);
}

.reveal-left {
    transform: translateX(-50px);
}

.reveal-right {
    transform: translateX(50px);
}

.reveal-up.revealed,
.reveal-left.revealed,
.reveal-right.revealed {
    opacity: 1;
    transform: translate(0);
}

/* Stagger children animation delays */
.stagger-children > *:nth-child(1) { transition-delay: 0s; }
.stagger-children > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-children > *:nth-child(3) { transition-delay: 0.2s; }
.stagger-children > *:nth-child(4) { transition-delay: 0.3s; }
.stagger-children > *:nth-child(5) { transition-delay: 0.4s; }
.stagger-children > *:nth-child(6) { transition-delay: 0.5s; }

/* Button arrow animation */
.btn i, .btn svg {
    transition: transform 0.3s var(--ease-out);
}

.btn:hover i, .btn:hover svg {
    transform: translateX(4px);
}

/* Button ripple effect */
.btn--ripple {
    position: relative;
    overflow: hidden;
}

.btn--ripple::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 10%, transparent 10.01%);
    transform: scale(10);
    opacity: 0;
    transition: transform 0.5s, opacity 0.5s;
    pointer-events: none;
}

.btn--ripple:active::after {
    transform: scale(0);
    opacity: 1;
    transition: 0s;
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
    .about__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about__experience-badge {
        margin-right: 16px;
    }

    .about__image {
        height: 400px;
    }

    .services__layout {
        grid-template-columns: 1fr;
    }

    .services__image-area {
        position: static;
    }

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

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

    .contact__grid {
        grid-template-columns: 1fr;
    }

    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-py: 60px;
    }

    .process__timeline {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .process__connector {
        width: 3px;
        height: 30px;
        margin: 0;
    }

    .process__step {
        max-width: 320px;
    }

    .header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--white);
        padding: 80px 24px 24px;
        box-shadow: var(--shadow-xl);
        transition: var(--transition-slow);
        z-index: 1000;
    }

    .header__nav.open {
        right: 0;
    }

    .header__menu {
        flex-direction: column;
        gap: 4px;
    }

    .header__link {
        color: var(--dark-2);
        padding: 12px 16px;
        border-radius: var(--radius-sm);
    }

    .header__dropdown {
        display: none;
    }

    .header__subdropdown {
        display: none;
    }

    .icon-dropdown {
        display: none;
    }

    .header__cta {
        display: none;
    }

    .header__hamburger {
        display: flex;
    }

    .hero__title {
        font-size: clamp(28px, 8vw, 42px);
    }

    .hero__subtitle {
        font-size: 16px;
    }

    .about__stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .about__content .section__title {
        text-align: center;
    }

    .about__content .section__label::after {
        margin: 8px auto 0;
    }

    .why-us__grid {
        grid-template-columns: 1fr;
    }

    .services__layout {
        grid-template-columns: 1fr;
    }

    .services__image-area {
        max-height: 300px;
        overflow: hidden;
        border-radius: var(--radius-lg);
    }

    .services__tabs {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        gap: 8px;
        padding-bottom: 8px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .services__tabs::-webkit-scrollbar {
        height: 4px;
    }

    .services__tabs::-webkit-scrollbar-thumb {
        background: var(--primary-light);
        border-radius: 4px;
    }

    .services__tab {
        min-width: 160px;
        flex-shrink: 0;
        scroll-snap-align: start;
        padding: 12px 16px;
    }

    .services__tab-content h3 {
        font-size: 14px;
    }

    .services__tab-arrow {
        display: none;
    }

    .services__detail-list {
        grid-template-columns: 1fr;
    }

    .services__detail-panel {
        padding: 24px;
    }

    .contact__form {
        padding: 24px;
    }

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

    .footer__grid {
        grid-template-columns: 1fr;
    }

    .floating-contact {
        left: 12px;
        bottom: 80px;
    }

    .floating-contact__btn {
        width: 46px;
        height: 46px;
    }
}

@media (max-width: 480px) {
    .hero__actions {
        flex-direction: column;
    }

    .hero__actions .btn {
        width: 100%;
        justify-content: center;
    }

    .section__title {
        font-size: 28px;
    }

    .about__experience-badge {
        padding: 16px;
    }

    .about__experience-number {
        font-size: 36px;
    }
}

/* =========================================
   FORM VALIDATION
   ========================================= */
.contact__form-group input.error,
.contact__form-group select.error,
.contact__form-group textarea.error {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.contact__form-group .error-msg {
    display: block;
    color: #e74c3c;
    font-size: 13px;
    margin-top: 6px;
    animation: fadeInUp 0.3s ease;
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-5px);
    }

    75% {
        transform: translateX(5px);
    }
}

.shake {
    animation: shake 0.4s ease;
}

/* =========================================
   ABOUT PAGE — Dedicated page styles
   ========================================= */

/* Page hero */
.about-hero {
    position: relative;
    padding-top: 120px;
    padding-bottom: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, #0f1724 60%, var(--primary-light) 100%);
    color: #fff;
    overflow: hidden;
}
.about-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(212,132,28,0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(212,132,28,0.06) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}
.about-hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
    z-index: 0;
}
.about-hero .container { position: relative; z-index: 1; }
.about-hero .section__label {
    color: var(--accent);
}
.about-hero .section__title {
    color: #fff;
}
.about-hero .section__title em {
    color: var(--accent);
}
.about-hero .section__desc {
    color: rgba(255,255,255,0.85);
    font-size: 1.1rem;
}

/* Intro & Story sections */
.about-page__intro,
.about-page__story {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    max-width: 820px;
    margin: 0 auto;
}
.about-page__intro-icon,
.about-page__story-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 4px;
}
.about-page__intro-icon i,
.about-page__story-icon i {
    width: 28px;
    height: 28px;
}
.about-page__intro-content,
.about-page__story-content {
    flex: 1;
}
.about-page__section-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 1rem;
}
.about-page__intro-content p,
.about-page__story-content p {
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 0.75rem;
}
.about-page__service-list,
.about-page__needs-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}
.about-page__service-list li,
.about-page__needs-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0;
    color: var(--text-secondary);
}
.about-page__service-list li i,
.about-page__needs-list li i {
    color: var(--accent);
    flex-shrink: 0;
}

/* Two-column intro with image */
.about-page__intro--two-col {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 3rem;
    align-items: start;
    max-width: 1100px;
}
.about-page__intro-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    max-height: 400px;
}
.about-page__intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.about-page__intro-image:hover img {
    transform: scale(1.03);
}

/* Team group photo */
.about-page__team-photo {
    max-width: 800px;
    margin: 0 auto 3rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
.about-page__team-photo img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Hero with background image */
.about-hero--with-bg {
    border-radius: 0;
}
.about-hero--with-bg .section__label--light {
    color: rgba(255,255,255,0.7);
    border-color: rgba(255,255,255,0.3);
}
.about-hero--with-bg .section__title--light {
    color: #fff;
}
.about-hero--with-bg .section__title--light em {
    color: var(--accent);
}

/* Vision & Mission cards */
.about-page__vision-mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 960px;
    margin: 0 auto;
}
.about-page__vm-card {
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border: 1px solid var(--border);
}
.about-page__vm-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}
.about-page__vm-icon i {
    width: 26px;
    height: 26px;
}
.about-page__vm-highlight {
    font-weight: 600;
    color: var(--primary);
    font-size: 1.05rem;
    line-height: 1.65;
    margin-bottom: 0.75rem;
}
.about-page__vm-card p:last-child {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Core Values grid */
.about-page__values-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}
.about-page__value-card {
    background: var(--surface);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid var(--border);
    transition: transform 0.3s, box-shadow 0.3s;
}
.about-page__value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.about-page__value-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}
.about-page__value-icon i {
    width: 24px;
    height: 24px;
}
.about-page__value-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}
.about-page__value-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Target Customers grid */
.about-page__customers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}
.about-page__customer-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid var(--border);
    transition: transform 0.3s, box-shadow 0.3s;
}
.about-page__customer-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.about-page__customer-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}
.about-page__customer-icon i {
    width: 26px;
    height: 26px;
}
.about-page__customer-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}
.about-page__customer-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
}
.about-page__customers-note {
    text-align: center;
    color: var(--text-secondary);
    font-style: italic;
    margin-top: 2rem;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

/* Focus area grid */
.about-page__focus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}
.about-page__focus-card {
    background: var(--surface);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    border: 1px solid var(--border);
    transition: transform 0.3s, box-shadow 0.3s;
}
.about-page__focus-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.about-page__focus-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}
.about-page__focus-icon i {
    width: 24px;
    height: 24px;
}
.about-page__focus-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}
.about-page__focus-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* About page responsive */
@media (max-width: 1024px) {
    .about-page__values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 768px) {
    .about-page__intro,
    .about-page__story {
        flex-direction: column;
        gap: 1rem;
    }
    .about-page__intro--two-col {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .about-page__team-photo {
        margin-bottom: 2rem;
    }
    .about-page__vision-mission {
        grid-template-columns: 1fr;
    }
    .about-page__values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-page__customers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-page__focus-grid {
        grid-template-columns: 1fr;
    }
    .about-hero {
        padding-top: 100px;
    }
}
@media (max-width: 480px) {
    .about-page__values-grid {
        grid-template-columns: 1fr;
    }
    .about-page__customers-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   SERVICES PAGE — Dedicated page styles
   ========================================= */

/* Services hero */
.services-hero {
    position: relative;
    padding-top: 120px;
    padding-bottom: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, #0f1724 60%, var(--primary-light) 100%);
    color: #fff;
    overflow: hidden;
}
.services-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image:
        radial-gradient(circle at 30% 70%, rgba(212,132,28,0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(212,132,28,0.06) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}
.services-hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
    z-index: 0;
}
.services-hero .container { position: relative; z-index: 1; }
.services-hero .section__label {
    color: var(--accent);
}
.services-hero .section__title {
    color: #fff;
}
.services-hero .section__title em {
    color: var(--accent);
}
.services-hero .section__desc {
    color: rgba(255,255,255,0.85);
    font-size: 1.05rem;
}
.services-hero__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* Intro */
.svc-page__intro {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    max-width: 820px;
    margin: 0 auto;
}
.svc-page__intro-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 4px;
}
.svc-page__intro-icon i {
    width: 28px;
    height: 28px;
}
.svc-page__intro-content {
    flex: 1;
}
.svc-page__section-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 1rem;
}
.svc-page__intro-content p {
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 0.75rem;
}

/* Detail cards */
.svc-page__detail-card {
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border);
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    transition: box-shadow 0.3s;
}
.svc-page__detail-card:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}
.svc-page__detail-card--accent {
    border-left: 4px solid var(--accent);
}
.svc-page__detail-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}
.svc-page__detail-num {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--primary);
    color: #fff;
    font-weight: 800;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.svc-page__detail-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--primary);
}
.svc-page__detail-desc {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}
.svc-page__detail-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
}
.svc-page__tag {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    padding: 0.35rem 0.9rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}
.svc-page__detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.25rem;
}
.svc-page__detail-block h4 {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.75rem;
}
.svc-page__detail-block h4 i {
    color: var(--accent);
}
.svc-page__detail-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.svc-page__detail-block ul li {
    padding: 0.3rem 0;
    padding-left: 1.2rem;
    position: relative;
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.6;
}
.svc-page__detail-block ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}
.svc-page__detail-benefit {
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
    background: var(--bg-alt, #f5f7fa);
    padding: 1rem 1.25rem;
    border-radius: 12px;
    border-left: 3px solid var(--accent);
}
.svc-page__detail-benefit i {
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}
.svc-page__detail-benefit p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.6;
    margin: 0;
}

/* Process Steps (Quy trình triển khai) */
.svc-page__detail-process {
    margin-bottom: 1.25rem;
}
.svc-page__detail-process h4 {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.75rem;
}
.svc-page__detail-process h4 i {
    color: var(--accent);
}
.svc-page__process-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    padding-left: 1.5rem;
}
.svc-page__process-steps::before {
    content: "";
    position: absolute;
    left: 7px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent), var(--primary));
    border-radius: 2px;
}
.svc-page__process-step {
    position: relative;
    padding: 0.5rem 0;
}
.svc-page__process-step::before {
    content: "";
    position: absolute;
    left: -1.5rem;
    top: 0.85rem;
    width: 14px;
    height: 14px;
    background: var(--accent);
    border: 3px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 2px var(--accent);
    z-index: 1;
}
.svc-page__process-step strong {
    color: var(--primary);
    font-size: 0.9rem;
}
.svc-page__process-step span {
    color: var(--text-secondary);
    font-size: 0.85rem;
}
.svc-page__process-step em {
    display: inline-block;
    background: rgba(255, 140, 0, 0.1);
    color: var(--accent);
    font-style: normal;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.15rem 0.5rem;
    border-radius: 10px;
    margin-left: 0.3rem;
}

/* Deliverables (Kết quả bàn giao) */
.svc-page__detail-deliverables {
    margin-bottom: 1.25rem;
}
.svc-page__detail-deliverables h4 {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.75rem;
}
.svc-page__detail-deliverables h4 i {
    color: var(--accent);
}
.svc-page__deliverables-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.35rem 1.5rem;
}
.svc-page__deliverables-list li {
    padding: 0.3rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.5;
}
.svc-page__deliverables-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: 700;
    font-size: 0.9rem;
}

/* ISO Branches */
.svc-page__iso-branches {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}
.svc-page__iso-branch {
    background: var(--light, #f8f9fa);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid var(--border, #e5e7eb);
    transition: box-shadow 0.3s;
}
.svc-page__iso-branch:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.svc-page__iso-branch-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}
.svc-page__iso-badge {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 52px;
    height: 32px;
    padding: 0 10px;
    border-radius: 8px;
    background: var(--primary, #1a2332);
    color: #fff;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}
.svc-page__iso-badge--green {
    background: #16a34a;
}
.svc-page__iso-badge--orange {
    background: #ea580c;
}
.svc-page__iso-branch h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark, #1a2332);
    margin: 0;
}
.svc-page__iso-branch > p {
    font-size: 0.88rem;
    color: var(--text-secondary, #64748b);
    line-height: 1.6;
    margin-bottom: 0.75rem;
}
.svc-page__iso-branch ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.svc-page__iso-branch ul li {
    font-size: 0.85rem;
    color: var(--text, #334155);
    padding: 0.3rem 0;
    border-top: 1px solid rgba(0,0,0,0.05);
}
.svc-page__iso-branch ul li:first-child {
    border-top: none;
}

/* Help grid */
.svc-page__help-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}
.svc-page__help-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-align: center;
    padding: 1.5rem 1rem;
    background: var(--surface);
    border-radius: 14px;
    border: 1px solid var(--border);
    transition: transform 0.3s, box-shadow 0.3s;
}
.svc-page__help-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.06);
}
.svc-page__help-item i {
    color: var(--primary);
}
.svc-page__help-item span {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}
.svc-page__help-note {
    text-align: center;
    color: var(--text-secondary);
    margin-top: 2rem;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* Target tags */
.svc-page__target-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}
.svc-page__target-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 50px;
    font-weight: 600;
    color: var(--primary);
    font-size: 0.95rem;
    transition: transform 0.3s, box-shadow 0.3s;
}
.svc-page__target-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.svc-page__target-tag i {
    color: var(--accent);
    width: 20px;
    height: 20px;
}

/* Services page responsive */
@media (max-width: 768px) {
    .services-hero {
        padding-top: 100px;
    }
    .services-hero__actions {
        flex-direction: column;
        align-items: center;
    }
    .svc-page__intro {
        flex-direction: column;
        gap: 1rem;
    }
    .svc-page__detail-grid {
        grid-template-columns: 1fr;
    }
    .svc-page__help-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .svc-page__detail-card {
        padding: 1.5rem;
    }
    .svc-page__iso-branches {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 480px) {
    .svc-page__help-grid {
        grid-template-columns: 1fr;
    }
    .svc-page__target-grid {
        flex-direction: column;
        align-items: stretch;
    }
    .svc-page__target-tag {
        justify-content: center;
    }
}

/* =========================================
   CONTACT PAGE
   ========================================= */
.contact-hero {
    position: relative;
    padding-top: 120px;
    padding-bottom: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, #0f1724 60%, var(--primary-light) 100%);
    color: #fff;
    overflow: hidden;
}
.contact-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image:
        radial-gradient(circle at 70% 80%, rgba(212,132,28,0.08) 0%, transparent 50%),
        radial-gradient(circle at 30% 20%, rgba(212,132,28,0.06) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}
.contact-hero .container { position: relative; z-index: 1; }
.contact-hero .section__label { color: var(--accent); }
.contact-hero .section__title { color: #fff; }
.contact-hero .section__title em { color: var(--accent); }
.contact-hero .section__desc { color: rgba(255,255,255,0.85); }

.contact-page__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}
.contact-page__details {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 1.5rem;
}
.contact-page__detail-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.contact-page__detail-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-page__detail-icon i {
    width: 20px;
    height: 20px;
}
.contact-page__detail-item strong {
    color: var(--primary);
    font-size: 0.9rem;
}
.contact-page__detail-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0.2rem 0 0;
}
.contact-page__detail-item a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}
.contact-page__detail-item a:hover {
    color: var(--primary);
}
.contact-page__map {
    margin-top: 1.5rem;
}
.contact-page__form-wrapper {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid var(--border);
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

/* Quick Action Buttons */
.contact-quick-actions {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    max-width: 640px;
    margin: 2rem auto 0;
}
.contact-quick-actions__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    background: var(--primary);
    color: #fff;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    white-space: nowrap;
}
.contact-quick-actions__btn:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 35, 50, 0.25);
}
.contact-quick-actions__btn i {
    width: 18px;
    height: 18px;
}

/* Trust Badges */
.contact-page__trust {
    margin-top: 1.5rem;
    padding: 1.25rem;
    background: rgba(212, 132, 28, 0.06);
    border-radius: 12px;
    border: 1px solid rgba(212, 132, 28, 0.15);
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.contact-page__trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}
.contact-page__trust-item i {
    width: 16px;
    height: 16px;
    color: var(--secondary);
    flex-shrink: 0;
}

/* Form Trust Strip */
.contact-form__trust {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}
.contact-form__trust span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.78rem;
    color: var(--text-muted);
    white-space: nowrap;
}
.contact-form__trust i {
    width: 14px;
    height: 14px;
    color: var(--secondary);
}

@media (max-width: 768px) {
    .contact-hero { padding-top: 100px; }
    .contact-page__grid {
        grid-template-columns: 1fr;
    }
    .contact-quick-actions {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-form__trust {
        flex-wrap: wrap;
        gap: 10px;
        justify-content: space-around;
    }
}

/* =========================================
   PRODUCTS PAGE
   ========================================= */
.products-hero {
    padding-top: 120px;
    padding-bottom: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: #fff;
}
.products-hero .section__label { color: var(--accent); }
.products-hero .section__title { color: #fff; }
.products-hero .section__title em { color: var(--accent); }
.products-hero .section__desc { color: rgba(255,255,255,0.85); }

.products-page__card {
    display: flex;
    gap: 2.5rem;
    align-items: flex-start;
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid var(--border);
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    transition: box-shadow 0.3s;
}
.products-page__card:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,0.08);
}
.products-page__card-icon {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    border-radius: 18px;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.products-page__card-icon--alt {
    background: var(--accent);
    color: var(--primary);
}
.products-page__card-icon i {
    width: 36px;
    height: 36px;
}
.products-page__card-content {
    flex: 1;
}
.products-page__card-content h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
}
.products-page__card-content > p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
.products-page__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}
.products-page__feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.92rem;
    color: var(--text-secondary);
}
.products-page__feature i {
    color: var(--accent);
    flex-shrink: 0;
}
.products-page__cta {
    padding-top: 0.5rem;
}

@media (max-width: 768px) {
    .products-hero { padding-top: 100px; }
    .products-page__card {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    .products-page__features {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   NEWS PAGE + SUBPAGE HERO (shared)
   ========================================= */

/* Shared subpage hero — used by news.html, products.html, etc. */
.svc-page__hero {
    position: relative;
    padding-top: 120px;
    padding-bottom: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, #0f1724 60%, var(--primary-light) 100%);
    color: #fff;
    overflow: hidden;
}

/* Geometric pattern overlay */
.svc-page__hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(212, 132, 28, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(212, 132, 28, 0.06) 0%, transparent 40%),
        linear-gradient(90deg, transparent 49.5%, rgba(255,255,255,0.02) 49.5%, rgba(255,255,255,0.02) 50.5%, transparent 50.5%);
    background-size: 100% 100%, 100% 100%, 60px 60px;
    pointer-events: none;
    z-index: 0;
}

/* Accent glow spot */
.svc-page__hero::after {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 132, 28, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.svc-page__hero .container {
    position: relative;
    z-index: 1;
}

.svc-page__hero .section__label--light {
    color: var(--accent);
    letter-spacing: 0.15em;
}

.svc-page__hero .section__title,
.svc-page__hero .section__title--light {
    color: #fff;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.svc-page__hero .section__title em,
.svc-page__hero .section__title--light em {
    color: var(--accent);
    font-style: normal;
}

.svc-page__hero-desc {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    max-width: 640px;
    margin: 0.5rem auto 0;
    line-height: 1.7;
}

.svc-page__hero-actions {
    margin-top: 1.5rem;
}

/* Also keep old .news-hero for backward compat */
.news-hero {
    padding-top: 120px;
    padding-bottom: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: #fff;
}
.news-hero .section__label { color: var(--accent); }
.news-hero .section__title { color: #fff; }
.news-hero .section__title em { color: var(--accent); }
.news-hero .section__desc { color: rgba(255,255,255,0.85); }

.news-page__empty {
    text-align: center;
    padding: 4rem 2rem;
    max-width: 560px;
    margin: 0 auto;
}
.news-page__empty-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}
.news-page__empty-icon i {
    width: 40px;
    height: 40px;
}
.news-page__empty h2 {
    font-family: var(--font-display);
    color: var(--primary);
    margin-bottom: 1rem;
}
.news-page__empty p {
    color: var(--text-secondary);
    line-height: 1.7;
}
.news-page__empty-sub {
    font-weight: 600;
    color: var(--primary);
    margin-top: 0.75rem;
}

@media (max-width: 768px) {
    .news-hero { padding-top: 100px; }
    .news-page__empty { padding: 2rem 1rem; }
}

/* =============================================
   NEWS LISTING PAGE - UPDATED
   ============================================= */

/* --- Filter Tabs --- */
.news-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}
.news-filter__btn {
    padding: 0.5rem 1.25rem;
    border: 1.5px solid var(--border);
    border-radius: 100px;
    background: var(--bg-white);
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: var(--font-primary);
}
.news-filter__btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}
.news-filter__btn--active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* --- Article Card Grid --- */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.news-grid__empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    color: var(--text-muted);
}
.news-card {
    display: flex;
    flex-direction: column;
    background: var(--bg-white);
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid var(--border);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}
.news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
    border-color: var(--primary);
}
.news-card__img {
    aspect-ratio: 16/10;
    overflow: hidden;
}
.news-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.news-card:hover .news-card__img img {
    transform: scale(1.05);
}
.news-card__body {
    padding: 1.25rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.news-card__cat {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--cat-color, #64748b);
    background: color-mix(in srgb, var(--cat-color, #64748b) 10%, transparent);
    width: fit-content;
    margin-bottom: 0.75rem;
}
.news-card__title {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.news-card__excerpt {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.news-card__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    border-top: 1px solid var(--border);
    padding-top: 0.75rem;
}
.news-card__read {
    color: var(--primary);
    font-weight: 600;
}

/* --- Pagination --- */
.news-pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2.5rem;
}
.news-page__btn {
    padding: 0.5rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: 0.5rem;
    background: var(--bg-white);
    color: var(--text-secondary);
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: var(--font-primary);
}
.news-page__btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}
.news-page__btn--active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* --- Empty State (for listing) --- */
.news-empty {
    text-align: center;
    padding: 4rem 2rem;
}
.news-empty h3 {
    margin-top: 1rem;
    font-size: 1.25rem;
    color: var(--text-primary);
}
.news-empty p {
    color: var(--text-muted);
    margin-top: 0.5rem;
}

/* =============================================
   ARTICLE DETAIL PAGE
   ============================================= */

/* --- Breadcrumb --- */
.article-breadcrumb {
    padding: 100px 0 1rem;
    background: var(--bg-surface);
}
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    flex-wrap: wrap;
}
.breadcrumb a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
}
.breadcrumb a:hover {
    color: var(--primary);
}
.breadcrumb__current {
    color: var(--text-primary);
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 400px;
}

/* --- Article Container --- */
.article__container {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 3rem;
    padding: 2rem 0 4rem;
}
.article__main {
    min-width: 0;
}

/* --- Hero Image --- */
.article__hero {
    border-radius: 1rem;
    overflow: hidden;
    margin-bottom: 1.5rem;
}
.article__hero img {
    width: 100%;
    height: auto;
    max-height: 480px;
    object-fit: cover;
    display: block;
}

/* --- Article Meta --- */
.article__meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: var(--text-muted);
}
.article-cat {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--cat-color, #64748b);
    background: color-mix(in srgb, var(--cat-color, #64748b) 10%, transparent);
}
.article__meta time,
.article-author {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

/* --- Article Title --- */
.article__title {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.3;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

/* --- Share Buttons --- */
.article__share {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
    font-size: 0.85rem;
    color: var(--text-muted);
}
.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--bg-white);
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}
.share-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}
.share-btn--fb:hover {
    background: #1877f2;
    color: #fff;
    border-color: #1877f2;
}

/* --- Article Body --- */
.article__body {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}
.article__body h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}
.article__body h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}
.article__body p {
    margin-bottom: 1rem;
}
.article__body ul, .article__body ol {
    margin: 0.75rem 0 1rem 1.5rem;
}
.article__body li {
    margin-bottom: 0.4rem;
}
.article__body strong {
    color: var(--text-primary);
}
.article__body a {
    color: var(--primary);
    text-decoration: underline;
}
.article__body blockquote {
    border-left: 4px solid var(--primary);
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    background: var(--bg-surface);
    border-radius: 0 0.5rem 0.5rem 0;
    font-style: italic;
}

/* --- Loading skeleton --- */
.article__loading-bar {
    height: 1rem;
    background: linear-gradient(90deg, var(--bg-surface) 25%, #e2e8f0 50%, var(--bg-surface) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 0.25rem;
    margin-bottom: 0.75rem;
}
@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* --- Article CTA --- */
.article__cta {
    margin-top: 2.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--bg-surface), #e8f0fe);
    border-radius: 1rem;
    text-align: center;
}
.article__cta p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

/* --- Sidebar / Related --- */
.article__sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
}
.article__sidebar h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary);
}
.related-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.related-card {
    display: flex;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
    padding: 0.75rem;
    border-radius: 0.75rem;
    border: 1px solid var(--border);
    background: var(--bg-white);
    transition: all 0.2s ease;
}
.related-card:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}
.related-card img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 0.5rem;
    flex-shrink: 0;
}
.related-card__body {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 0;
}
.related-card__body h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.related-card__body time {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* --- Not Found --- */
.article-not-found {
    text-align: center;
    padding: 4rem 2rem;
    grid-column: 1 / -1;
}
.article-not-found h2 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}
.article-not-found p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .article__container {
        grid-template-columns: 1fr;
    }
    .article__sidebar {
        position: static;
    }
    .related-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }
    .related-card {
        flex-direction: column;
    }
    .related-card img {
        width: 100%;
        height: 120px;
    }
}
@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
    .news-filter {
        gap: 0.35rem;
    }
    .news-filter__btn {
        padding: 0.4rem 0.9rem;
        font-size: 0.8rem;
    }
    .article__title {
        font-size: 1.5rem;
    }
    .breadcrumb__current {
        max-width: 200px;
    }
    .related-grid {
        grid-template-columns: 1fr;
    }
}

/* ==================== PWA & APP-LIKE EXPERIENCE ==================== */

/* Global app feel */
html {
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent;
    overscroll-behavior-y: none;
}

/* Safe area for iPhone X+ notch */
body {
    padding-top: env(safe-area-inset-top);
}

/* PWA standalone mode adjustments */
@media all and (display-mode: standalone) {
    .header {
        padding-top: env(safe-area-inset-top);
    }
}

/* ==================== BOTTOM NAVIGATION BAR ==================== */

.bottom-nav {
    display: none;
}

@media (max-width: 768px) {
    .bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 9999;
        background: rgba(255, 255, 255, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-top: 1px solid rgba(0, 0, 0, 0.06);
        padding: 6px 0;
        padding-bottom: calc(6px + env(safe-area-inset-bottom));
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.06);
        justify-content: space-around;
        align-items: center;
    }

    .bottom-nav__item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2px;
        padding: 4px 8px;
        text-decoration: none;
        color: #94a3b8;
        font-size: 0.6rem;
        font-weight: 500;
        letter-spacing: 0.02em;
        transition: all 0.25s ease;
        border-radius: 8px;
        min-width: 52px;
        position: relative;
    }

    .bottom-nav__item svg,
    .bottom-nav__item i {
        width: 20px;
        height: 20px;
        stroke-width: 1.8;
        transition: all 0.25s ease;
    }

    .bottom-nav__item.active {
        color: #1a2332;
    }

    .bottom-nav__item.active svg,
    .bottom-nav__item.active i {
        color: #d4841c;
        stroke-width: 2.2;
    }

    .bottom-nav__item.active::before {
        content: '';
        position: absolute;
        top: -6px;
        left: 50%;
        transform: translateX(-50%);
        width: 20px;
        height: 3px;
        background: #d4841c;
        border-radius: 0 0 3px 3px;
    }

    .bottom-nav__item:active {
        transform: scale(0.92);
    }

    /* === Hide hamburger menu & top nav on mobile (bottom nav replaces it) === */
    .header__hamburger {
        display: none !important;
    }

    .header__nav {
        display: none !important;
    }

    /* Keep header slim: only logo + lang + CTA */
    .header__inner {
        justify-content: space-between;
    }

    .header__cta {
        display: none;
    }

    /* Body padding for bottom nav clearance */
    body {
        padding-bottom: calc(60px + env(safe-area-inset-bottom));
    }

    /* Move FAB above bottom nav */
    .fab {
        bottom: calc(75px + env(safe-area-inset-bottom)) !important;
    }

    .back-to-top {
        bottom: calc(80px + env(safe-area-inset-bottom)) !important;
    }
}

/* ==================== SCROLL ANIMATIONS ==================== */

.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.scroll-reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.scroll-reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.scroll-reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.scroll-reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger children animations */
.stagger-children .scroll-reveal:nth-child(1) { transition-delay: 0.05s; }
.stagger-children .scroll-reveal:nth-child(2) { transition-delay: 0.12s; }
.stagger-children .scroll-reveal:nth-child(3) { transition-delay: 0.19s; }
.stagger-children .scroll-reveal:nth-child(4) { transition-delay: 0.26s; }
.stagger-children .scroll-reveal:nth-child(5) { transition-delay: 0.33s; }
.stagger-children .scroll-reveal:nth-child(6) { transition-delay: 0.40s; }

/* ==================== ENHANCED HOVER EFFECTS ==================== */

/* Service cards, product cards, news cards */
.service-card,
.product-card,
.news-card,
.why-card,
.feature-card,
.value-card,
.step-card {
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card:hover,
.product-card:hover,
.news-card:hover,
.why-card:hover,
.feature-card:hover,
.value-card:hover,
.step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 8px 16px rgba(0, 0, 0, 0.04);
}

/* News card image zoom */
.news-card__img {
    overflow: hidden;
}

.news-card__img img {
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.news-card:hover .news-card__img img {
    transform: scale(1.06);
}

/* Button hover enhancements */
.btn {
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.btn:active {
    transform: translateY(0);
}

/* ==================== STATS COUNTER ==================== */

.stats-counter {
    background: linear-gradient(135deg, var(--primary) 0%, #0d1520 50%, #0f1724 100%);
    padding: 5rem 0;
    overflow: hidden;
    position: relative;
}

.stats-counter::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(232, 97, 45, 0.06) 0%, transparent 50%),
                      radial-gradient(circle at 80% 50%, rgba(27, 58, 92, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.stats-counter__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
    position: relative;
}

.stats-counter__item {
    position: relative;
    padding: 2rem 1.5rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.4s var(--ease-out);
}

.stats-counter__item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
}

.stats-counter__icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(232, 97, 45, 0.2), rgba(240, 144, 48, 0.1));
    color: var(--secondary-light);
}

.stats-counter__icon i {
    width: 22px;
    height: 22px;
}

.stats-counter__number {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.stats-counter__suffix {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-light);
}

.stats-counter__label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-top: 0.75rem;
    letter-spacing: 0.04em;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .stats-counter__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stats-counter__item:nth-child(2)::after {
        display: none;
    }
    .stats-counter__number {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .stats-counter__grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    .stats-counter__number {
        font-size: 2rem;
    }
}

/* ==================== PRODUCT SHOWCASE ==================== */

.product-showcase {
    padding-top: 2rem;
    padding-bottom: 1rem;
}

.product-showcase__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.product-showcase__item {
    text-align: center;
}

.product-showcase__img-wrap {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.product-showcase__img-wrap:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
}

.product-showcase__img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.product-showcase__title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: 1rem;
}

.product-showcase__desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

@media (max-width: 600px) {
    .product-showcase__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 320px;
    }
}

/* ==================== PROCESS TIMELINE ==================== */

.process-timeline {
    background: var(--bg-alt);
}

.process-timeline__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

/* Connecting line */
.process-timeline__grid::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent) 0%, rgba(212,132,28,0.2) 100%);
    z-index: 0;
}

.process-timeline__step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.process-timeline__icon {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    box-shadow: 0 4px 20px rgba(26, 35, 50, 0.2), 0 0 0 4px rgba(27, 58, 92, 0.1);
    transition: all 0.4s var(--ease-out);
    position: relative;
}

.process-timeline__icon::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px dashed rgba(27, 58, 92, 0.15);
    animation: iconPulseRing 3s ease-in-out infinite;
}

@keyframes iconPulseRing {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.05); }
}

.process-timeline__icon:hover {
    transform: scale(1.12);
    box-shadow: 0 8px 30px rgba(26, 35, 50, 0.3), 0 0 0 6px rgba(27, 58, 92, 0.15);
}

.process-timeline__icon i {
    color: var(--accent, var(--secondary-light));
    width: 28px;
    height: 28px;
}

.process-timeline__num {
    font-family: 'Playfair Display', serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent, var(--secondary));
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

.process-timeline__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.35rem;
}

.process-timeline__desc {
    font-size: 0.85rem;
    color: var(--text-muted, var(--gray-500));
    line-height: 1.6;
}

/* Arrow chevrons between steps */
.process-timeline__step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 38px;
    right: -1rem;
    transform: translateX(50%) translateY(-50%);
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 10px solid var(--accent, var(--secondary));
    z-index: 2;
    opacity: 0.5;
    animation: arrowPulse 2s ease-in-out infinite;
}

@keyframes arrowPulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.8; }
}

@media (max-width: 768px) {
    .process-timeline__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem 1.5rem;
    }
    .process-timeline__grid::before {
        display: none;
    }
    .process-timeline__step:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .process-timeline__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* ==================== NEWS FEATURED ARTICLE ==================== */

.news-featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    text-decoration: none;
    color: inherit;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    margin-bottom: 0.5rem;
}

.news-featured:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.14);
}

.news-featured__img {
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.news-featured__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-featured:hover .news-featured__img img {
    transform: scale(1.05);
}

.news-featured__body {
    padding: 2rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.75rem;
}

.news-featured__title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.35;
    margin: 0;
}

.news-featured__excerpt {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
}

@media (max-width: 768px) {
    .news-featured {
        grid-template-columns: 1fr;
    }
    .news-featured__body {
        padding: 1.25rem 1.5rem;
    }
    .news-featured__title {
        font-size: 1.25rem;
    }
}

/* ==================== TEAM SECTION ==================== */

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.team-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.team-card__avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    border: 3px solid var(--secondary-light);
    box-shadow: 0 4px 16px rgba(27, 58, 92, 0.2);
}

.team-card__initials {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 2px;
}

.team-card__name {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.team-card__role {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.team-card__desc {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .team-card {
        padding: 2rem 1.5rem;
    }
}

/* =========================================
   FEATURED PRODUCTS (Homepage)
   ========================================= */
.featured-products__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.featured-products__card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s var(--ease-out);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.featured-products__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border-color: rgba(27, 58, 92, 0.1);
}

.featured-products__image {
    overflow: hidden;
    height: 240px;
    background: var(--light-alt);
    position: relative;
}

.featured-products__image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(15, 28, 46, 0.6) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.featured-products__card:hover .featured-products__image::after {
    opacity: 1;
}

.featured-products__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.featured-products__card:hover .featured-products__image img {
    transform: scale(1.08);
}

.featured-products__body {
    padding: 1.5rem 2rem 2rem;
}

.featured-products__tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
    background: var(--gradient-accent);
    padding: 5px 14px;
    border-radius: var(--radius-full);
    margin-bottom: 12px;
}

.featured-products__title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.featured-products__desc {
    font-size: 0.92rem;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 16px;
}

.featured-products__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s var(--ease-out);
}

.featured-products__link:hover {
    gap: 14px;
    color: var(--secondary);
}

@media (max-width: 768px) {
    .featured-products__grid {
        grid-template-columns: 1fr;
    }
    .featured-products__image {
        height: 200px;
    }
}

/* =========================================
   FAQ SECTION (Services page)
   ========================================= */
.faq-section {
    background: var(--light);
}

.faq__list {
    max-width: 800px;
    margin: 0 auto;
}

.faq__item {
    background: var(--white);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq__item:hover {
    box-shadow: var(--shadow-md);
}

.faq__question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    border: none;
    background: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    text-align: left;
    font-family: var(--font-body);
    transition: color 0.3s ease;
}

.faq__question:hover {
    color: var(--primary);
}

.faq__question-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--secondary);
}

.faq__item.active .faq__question-icon {
    transform: rotate(180deg);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 1.5rem;
}

.faq__item.active .faq__answer {
    max-height: 300px;
    padding: 0 1.5rem 1.25rem;
}

.faq__answer p {
    font-size: 0.95rem;
    color: var(--gray-500);
    line-height: 1.7;
}

/* =========================================
   NEWSLETTER SIGNUP (News page)
   ========================================= */
.newsletter-section {
    background: var(--gradient-brand);
    padding: 60px 0;
}

.newsletter__inner {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.newsletter__desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
}

.newsletter__form {
    display: flex;
    gap: 12px;
}

.newsletter__input {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1rem;
    font-family: var(--font-body);
    outline: none;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.newsletter__input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter__input:focus {
    border-color: var(--secondary);
    background: rgba(255, 255, 255, 0.15);
}

.newsletter__btn {
    padding: 14px 28px;
    background: var(--secondary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
}

.newsletter__btn:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
}

@media (max-width: 576px) {
    .newsletter__form {
        flex-direction: column;
    }
}

/* =========================================
   COMPANY TIMELINE (About page)
   ========================================= */
.company-timeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    padding-left: 40px;
}

.company-timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary), var(--secondary));
    border-radius: 2px;
}

.timeline__item {
    position: relative;
    margin-bottom: 2.5rem;
    padding-left: 24px;
}

.timeline__item::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 6px;
    width: 14px;
    height: 14px;
    background: var(--secondary);
    border: 3px solid var(--white);
    border-radius: 50%;
    box-shadow: 0 0 0 3px var(--secondary);
    z-index: 1;
}

.timeline__year {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--secondary);
    background: rgba(232, 114, 12, 0.1);
    padding: 3px 12px;
    border-radius: 20px;
    margin-bottom: 8px;
}

.timeline__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.timeline__desc {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* =========================================
   MOBILE STATS FIX
   ========================================= */
@media (max-width: 576px) {
    .stats-counter__grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem !important;
    }
    .stats-counter__number {
        font-size: 2.5rem !important;
    }
    .stats-counter__label {
        font-size: 0.85rem !important;
    }
}

/* =========================================
   SERVICE DETAIL PAGES
   ========================================= */
.svc-detail__back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255,255,255,0.75);
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    margin-bottom: 1.5rem;
    transition: color 0.2s;
}
.svc-detail__back-link:hover { color: #fff; }
.svc-detail__back-link .icon-xs { width: 16px; height: 16px; }

.svc-detail__section-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--heading, #1a2332);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.svc-detail__section-title .icon-sm {
    width: 22px; height: 22px;
    color: var(--primary, #2563eb);
    flex-shrink: 0;
}

.svc-detail__intro-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text, #334155);
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Pain Points Grid */
.svc-detail__pain-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}
.svc-detail__pain-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(0,0,0,0.06);
    transition: transform 0.25s, box-shadow 0.25s;
}
.svc-detail__pain-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.svc-detail__pain-icon {
    width: 36px; height: 36px;
    color: #ef4444;
    margin-bottom: 1rem;
}
.svc-detail__pain-card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--heading, #1a2332);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}
.svc-detail__pain-card p {
    font-size: 0.9rem;
    color: var(--text-muted, #64748b);
    line-height: 1.6;
}

/* Timeline */
.svc-detail__timeline {
    max-width: 700px;
    margin: 2rem auto;
    position: relative;
    padding-left: 3rem;
}
.svc-detail__timeline::before {
    content: '';
    position: absolute;
    left: 1.25rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary, #2563eb) 0%, rgba(37,99,235,0.15) 100%);
}
.svc-detail__timeline-item {
    position: relative;
    padding-bottom: 2.5rem;
}
.svc-detail__timeline-item:last-child { padding-bottom: 0; }
.svc-detail__timeline-num {
    position: absolute;
    left: -3rem;
    top: 0;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: var(--primary, #2563eb);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    z-index: 1;
}
.svc-detail__timeline-content h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--heading, #1a2332);
    margin-bottom: 0.25rem;
}
.svc-detail__timeline-duration {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--primary, #2563eb);
    background: rgba(37,99,235,0.08);
    padding: 0.15rem 0.6rem;
    border-radius: 4px;
    margin-bottom: 0.5rem;
}
.svc-detail__timeline-content p {
    font-size: 0.9rem;
    color: var(--text-muted, #64748b);
    line-height: 1.6;
}

/* Deliverables Grid */
.svc-detail__deliverables-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.svc-detail__deliverable {
    text-align: center;
    padding: 2rem 1.5rem;
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.06);
    transition: transform 0.25s, box-shadow 0.25s;
}
.svc-detail__deliverable:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.svc-detail__deliverable i,
.svc-detail__deliverable svg {
    width: 32px;
    height: 32px;
    color: var(--primary, #2563eb);
    margin-bottom: 1rem;
}
.svc-detail__deliverable h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--heading, #1a2332);
    margin-bottom: 0.5rem;
}
.svc-detail__deliverable p {
    font-size: 0.85rem;
    color: var(--text-muted, #64748b);
    line-height: 1.5;
}

/* Overview Cards Grid */
.svc-overview__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}
.svc-overview__card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: transform 0.25s, box-shadow 0.25s;
    text-decoration: none;
    color: inherit;
}
.svc-overview__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.svc-overview__card-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}
.svc-overview__card-icon i { width: 22px; height: 22px; }
.svc-overview__card-num {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted, #64748b);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.svc-overview__card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--heading, #1a2332);
}
.svc-overview__card p {
    font-size: 0.9rem;
    color: var(--text-muted, #64748b);
    line-height: 1.6;
}
.svc-overview__card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary, #2563eb);
    margin-top: auto;
}
.svc-overview__card-link i { width: 16px; height: 16px; }

/* Mobile Responsive for Service Detail Pages */
@media (max-width: 768px) {
    .svc-detail__pain-grid {
        grid-template-columns: 1fr;
    }
    .svc-detail__deliverables-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .svc-overview__grid {
        grid-template-columns: 1fr;
    }
    .svc-detail__section-title {
        font-size: 1.3rem;
    }
}
@media (max-width: 480px) {
    .svc-detail__deliverables-grid {
        grid-template-columns: 1fr;
    }
}

/* ---- Supply Product Catalog (E-commerce Style) ---- */
.supply-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.5rem; }

.supply-card {
    background: #fff; border-radius: 16px; overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer; position: relative;
}
.supply-card:hover { transform: translateY(-6px); box-shadow: 0 12px 32px rgba(0,0,0,0.14); }

.supply-card__img-wrap {
    position: relative; overflow: hidden; background: #f8fafc;
    aspect-ratio: 1;
}
.supply-card__img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.4s ease;
}
.supply-card:hover .supply-card__img { transform: scale(1.08); }

.supply-card__badge {
    position: absolute; top: 12px; left: 12px;
    background: #e8612d; color: #fff; font-size: 0.75rem; font-weight: 700;
    padding: 4px 12px; border-radius: 20px; z-index: 2;
    letter-spacing: 0.5px;
}
.supply-card__badge--new { background: #22c55e; }

.supply-card__sku {
    position: absolute; top: 12px; right: 12px;
    background: rgba(0,0,0,0.6); color: #fff; font-size: 0.7rem;
    padding: 2px 8px; border-radius: 4px; z-index: 2;
    font-family: monospace;
}

.supply-card__body { padding: 1rem 1.25rem 1.25rem; }
.supply-card__name {
    font-size: 1rem; font-weight: 700; color: #1e293b;
    margin-bottom: 0.35rem; line-height: 1.3;
}
.supply-card__desc {
    font-size: 0.85rem; color: #64748b; line-height: 1.5;
    margin-bottom: 0.5rem;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.supply-card__specs {
    font-size: 0.8rem; color: #94a3b8; margin-bottom: 0.75rem;
}
.supply-card__price {
    font-size: 1.3rem; font-weight: 800; color: #e8612d;
    margin-bottom: 0.75rem;
}
.supply-card__actions { display: flex; gap: 0.5rem; }
.supply-card__btn-detail {
    flex: 1; padding: 0.55rem 0; text-align: center;
    border: 2px solid #e8612d; color: #e8612d; background: transparent;
    border-radius: 8px; font-size: 0.85rem; font-weight: 600;
    cursor: pointer; transition: all 0.3s; text-decoration: none;
}
.supply-card__btn-detail:hover { background: #e8612d; color: #fff; }
.supply-card__btn-order {
    flex: 1; padding: 0.55rem 0; text-align: center;
    background: #e8612d; color: #fff; border: 2px solid #e8612d;
    border-radius: 8px; font-size: 0.85rem; font-weight: 600;
    cursor: pointer; transition: all 0.3s; text-decoration: none;
}
.supply-card__btn-order:hover { background: #d4551f; border-color: #d4551f; }

/* ---- Product Modal ---- */
.product-modal {
    display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.6); z-index: 9999;
    align-items: center; justify-content: center; padding: 1rem;
    backdrop-filter: blur(4px);
}
.product-modal.active { display: flex; }
.product-modal__content {
    background: #fff; border-radius: 20px; max-width: 800px; width: 100%;
    max-height: 90vh; overflow-y: auto; position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: modalSlideUp 0.3s ease;
}
@keyframes modalSlideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.product-modal__close {
    position: absolute; top: 16px; right: 16px;
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(0,0,0,0.08); border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; color: #475569; z-index: 2;
    transition: background 0.2s;
}
.product-modal__close:hover { background: rgba(0,0,0,0.15); }
.product-modal__top { display: flex; gap: 2rem; padding: 2rem; }
.product-modal__img {
    width: 300px; min-width: 300px; aspect-ratio: 1; object-fit: cover;
    border-radius: 12px; background: #f8fafc;
}
.product-modal__info { flex: 1; }
.product-modal__sku { font-size: 0.8rem; color: #94a3b8; font-family: monospace; margin-bottom: 0.5rem; }
.product-modal__name { font-size: 1.5rem; font-weight: 800; color: #1e293b; margin-bottom: 0.5rem; }
.product-modal__price { font-size: 1.6rem; font-weight: 800; color: #e8612d; margin-bottom: 1rem; }
.product-modal__desc { font-size: 0.95rem; color: #475569; line-height: 1.6; margin-bottom: 1.5rem; }

.product-modal__specs { list-style: none; padding: 0; margin: 0; }
.product-modal__specs li {
    display: flex; justify-content: space-between;
    padding: 0.5rem 0; border-bottom: 1px solid #f1f5f9;
    font-size: 0.9rem;
}
.product-modal__specs li span:first-child { color: #64748b; }
.product-modal__specs li span:last-child { color: #1e293b; font-weight: 600; }

/* ---- Order Form (inside modal) ---- */
.order-form {
    margin: 0 2rem 2rem; padding: 1.5rem;
    background: #f8fafc; border-radius: 12px;
    border: 1px solid #e2e8f0;
}
.order-form__title {
    font-size: 1rem; font-weight: 700; color: #1e293b;
    margin-bottom: 1rem; display: flex; align-items: center; gap: 0.5rem;
}
.order-form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.order-form__field { display: flex; flex-direction: column; gap: 0.25rem; }
.order-form__field--full { grid-column: 1 / -1; }
.order-form__label { font-size: 0.8rem; color: #64748b; font-weight: 500; }
.order-form__input {
    padding: 0.6rem 0.75rem; border: 1px solid #e2e8f0; border-radius: 8px;
    font-size: 0.9rem; outline: none; transition: border-color 0.2s;
}
.order-form__input:focus { border-color: #e8612d; }
.order-form__actions { grid-column: 1 / -1; display: flex; gap: 0.75rem; margin-top: 0.5rem; }
.order-form__submit {
    flex: 1; padding: 0.7rem 1.5rem; background: #e8612d; color: #fff;
    border: none; border-radius: 8px; font-size: 0.95rem; font-weight: 700;
    cursor: pointer; transition: background 0.3s;
}
.order-form__submit:hover { background: #d4551f; }
.order-form__zalo {
    flex: 1; padding: 0.7rem 1.5rem; background: #0068ff; color: #fff;
    border: none; border-radius: 8px; font-size: 0.95rem; font-weight: 700;
    cursor: pointer; transition: background 0.3s; text-decoration: none;
    text-align: center; display: flex; align-items: center; justify-content: center; gap: 0.5rem;
}
.order-form__zalo:hover { background: #0052cc; }

/* ---- Modal Responsive ---- */
@media (max-width: 768px) {
    .product-modal__top { flex-direction: column; gap: 1rem; padding: 1.5rem; }
    .product-modal__img { width: 100%; min-width: unset; }
    .product-modal__name { font-size: 1.2rem; }
    .order-form { margin: 0 1.5rem 1.5rem; }
    .order-form__grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .supply-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
    .supply-card__body { padding: 0.75rem; }
    .supply-card__name { font-size: 0.9rem; }
    .supply-card__desc { font-size: 0.8rem; -webkit-line-clamp: 1; }
    .supply-card__price { font-size: 1.05rem; }
    .supply-card__actions { flex-direction: column; gap: 0.35rem; }
    .supply-card__btn-detail, .supply-card__btn-order { padding: 0.45rem 0; font-size: 0.8rem; }
    .product-modal__content { border-radius: 12px; }
    .product-modal__top { padding: 1rem; }
    .order-form { margin: 0 1rem 1rem; padding: 1rem; }
}
@media (max-width: 380px) { .supply-grid { grid-template-columns: 1fr; } }

/* ---- Floating Admin Button ---- */
.floating-admin {
    position: fixed; bottom: 2rem; right: 1.5rem;
    width: 44px; height: 44px; border-radius: 50%;
    background: #1e293b; color: #fff;
    display: flex; align-items: center; justify-content: center;
    text-decoration: none; z-index: 999;
    transition: all 0.3s;
    box-shadow: 0 3px 14px rgba(0,0,0,0.25);
}
.floating-admin:hover { background: #e8612d; transform: scale(1.1); box-shadow: 0 4px 20px rgba(232,97,45,0.4); }
@media (max-width: 768px) { .floating-admin { bottom: 5.5rem; right: 1rem; } }
