/* =========================================
   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-hero: linear-gradient(135deg, rgba(27, 58, 92, 0.92) 0%, rgba(15, 28, 46, 0.88) 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%);

    /* 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: 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);
}

.section--dark {
    background: var(--gradient-dark);
    color: var(--white);
}

.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 15px rgba(255, 140, 0, 0.3);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn--outline {
    background: transparent;
    color: var(--white);
    border: 2.5px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(4px);
}

.btn--outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--white);
}

.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: 2px;
    background: var(--primary);
    border-radius: 1px;
}

.header.scrolled .header__link.active {
    color: var(--primary);
}

.header.scrolled .header__link.active::after {
    background: var(--primary);
}

/* 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;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero__slide.active {
    opacity: 1;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
}

.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 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--radius-full);
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 24px;
    animation: fadeInDown 0.8s var(--ease-out) both;
}

.hero__title {
    font-size: clamp(30px, 4.5vw, 46px);
    font-weight: 900;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 20px;
    animation: fadeInUp 0.8s var(--ease-out) 0.2s both;
}

.hero__title em {
    font-style: normal;
    display: block;
    opacity: 0.9;
}

.hero__subtitle {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 520px;
    animation: fadeInUp 0.8s var(--ease-out) 0.4s both;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.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;
    background: var(--white);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    text-align: left;
    font-family: var(--font-body);
    box-shadow: var(--shadow-sm);
}

.services__tab:hover {
    border-color: var(--primary-light);
    transform: translateX(4px);
}

.services__tab.active {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.services__tab-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light);
    border-radius: var(--radius-sm);
    color: var(--gray-500);
    transition: var(--transition);
}

.services__tab.active .services__tab-icon {
    background: var(--gradient-brand);
    color: var(--white);
}

.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;
}

.contact__form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact__form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 6px;
}

.contact__form input,
.contact__form select,
.contact__form textarea {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--dark);
    background: var(--light);
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    outline: none;
}

.contact__form input:focus,
.contact__form select:focus,
.contact__form textarea:focus {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(255, 140, 0, 0.1);
}

.contact__form input::placeholder,
.contact__form textarea::placeholder {
    color: var(--gray-300);
}

.contact__form textarea {
    resize: vertical;
    min-height: 100px;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 0;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__logo {
    height: 80px;
    width: auto;
    margin-bottom: 16px;
    border-radius: var(--radius-sm);
}

.footer__desc {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 280px;
}

.footer__social {
    display: flex;
    gap: 12px;
}

.footer__social a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer__social a svg {
    width: 22px;
    height: 22px;
}

.footer__social a:hover {
    background: var(--gradient-brand);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(255, 140, 0, 0.3);
}

.footer__links h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.footer__links li {
    margin-bottom: 10px;
    font-size: 14px;
}

.footer__links a:hover {
    color: var(--primary-light);
    padding-left: 4px;
}

.footer__bottom {
    text-align: center;
    padding: 24px 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

/* =========================================
   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
   ========================================= */
.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);
}

.reveal-up {
    transform: translateY(40px);
}

.reveal-left {
    transform: translateX(-40px);
}

.reveal-right {
    transform: translateX(40px);
}

.reveal-up.revealed,
.reveal-left.revealed,
.reveal-right.revealed {
    opacity: 1;
    transform: translate(0);
}

/* =========================================
   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__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 {
        right: 16px;
        top: auto;
        bottom: 90px;
        transform: none;
    }

    .contact .floating-contact,
    .floating-contact.at-form {
        opacity: 0.3;
        pointer-events: none;
    }

    .floating-contact__btn {
        width: 44px;
        height: 44px;
    }
}

@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;
}

/* 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__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;
}

/* 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;
    }
}
@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);
}

@media (max-width: 768px) {
    .contact-hero { padding-top: 100px; }
    .contact-page__grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   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%, #0f1724 100%);
    padding: 4rem 0;
    overflow: hidden;
}

.stats-counter__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stats-counter__item {
    position: relative;
    padding: 1.5rem 1rem;
}

.stats-counter__item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.stats-counter__number {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    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: 2.2rem;
    font-weight: 700;
    color: var(--secondary-light);
}

.stats-counter__label {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    margin-top: 0.5rem;
    letter-spacing: 0.03em;
}

@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: 72px;
    height: 72px;
    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 1rem;
    box-shadow: 0 4px 20px rgba(26, 35, 50, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-timeline__icon:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(26, 35, 50, 0.3);
}

.process-timeline__icon i {
    color: var(--accent);
    width: 28px;
    height: 28px;
}

.process-timeline__num {
    font-family: 'Playfair Display', serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

.process-timeline__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.process-timeline__desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Arrow chevrons between steps */
.process-timeline__step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 36px;
    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);
    z-index: 2;
    opacity: 0.7;
}

@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(2, 1fr);
    gap: 2rem;
}

.featured-products__card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-products__card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.featured-products__image {
    overflow: hidden;
    height: 240px;
    background: var(--light-alt);
}

.featured-products__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.featured-products__card:hover .featured-products__image img {
    transform: scale(1.05);
}

.featured-products__body {
    padding: 1.5rem 2rem 2rem;
}

.featured-products__tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--secondary);
    background: rgba(232, 114, 12, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.featured-products__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.featured-products__desc {
    font-size: 0.95rem;
    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: gap 0.3s ease;
}

.featured-products__link:hover {
    gap: 12px;
    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;
    }
}