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

/* ========================================
   AN KHUE - Premium Light Theme
======================================== */

/* CSS Variables - Rich Color Palette */
:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-accent: #f1f5f9;
    --bg-glass: rgba(255, 255, 255, 0.85);
    --bg-pill: rgba(255, 255, 255, 0.7);

    --primary: #10b981;
    --primary-dark: #059669;
    --primary-glow: rgba(16, 185, 129, 0.15);

    --secondary: #f59e0b;
    --secondary-dark: #d97706;
    --secondary-glow: rgba(245, 158, 11, 0.15);

    --accent-violet: #8b5cf6;
    --accent-cyan: #06b6d4;
    --accent-rose: #f43f5e;
    --accent-amber: #fbbf24;
    --accent-sky: #0ea5e9;

    --text-bright: #0f172a;
    --text-main: #334155;
    --text-muted: #64748b;
    --text-white: #ffffff;

    --border-color: rgba(0, 0, 0, 0.06);
    --border-glass: rgba(255, 255, 255, 0.25);

    --font-family: "Outfit", "Inter", sans-serif;

    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --radius-full: 100px;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 12px 40px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.1);
    --shadow-color: 0 20px 50px rgba(16, 185, 129, 0.2);

    --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);

    --gold-gradient: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
    --emerald-gradient: linear-gradient(135deg, #34d399 0%, #10b981 50%, #059669 100%);
    --violet-gradient: linear-gradient(135deg, #a78bfa 0%, #8b5cf6 100%);
    --cyan-gradient: linear-gradient(135deg, #22d3ee 0%, #06b6d4 100%);
    --rose-gradient: linear-gradient(135deg, #fb7185 0%, #f43f5e 100%);
    --light-gradient: linear-gradient(180deg, #f0fdf4 0%, #ecfdf5 30%, #ffffff 100%);
    --section-alt: linear-gradient(135deg, #fefce8 0%, #fef3c7 50%, #f0f9ff 100%);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-primary);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background: rgba(16, 185, 129, 0.25);
    color: var(--text-bright);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

ul {
    list-style: none;
}

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

.container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Scrollbar - subtle brand styling */
::-webkit-scrollbar {
    width: 10px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, rgba(16, 185, 129, 0.4), rgba(16, 185, 129, 0.25));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--primary), var(--primary-dark));
}

/* ========================================
   Header + Hero Wrapper
======================================== */
.header-hero-wrapper {
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.header-hero-wrapper::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 40%;
    height: 60%;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    z-index: 0;
}

/* ========================================
   Header (Floating Pill Design)
======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 0;
}

.header .nav {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.2), rgba(245, 158, 11, 0.2), transparent) 1;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow-sm), 0 1px 0 rgba(16, 185, 129, 0.05);
}

.header.scrolled {
    background: var(--bg-glass);
    box-shadow: var(--shadow-md);
}

.header.scrolled .nav {
    padding: 15px 5%;
    /* Kept same as initial to prevent jump */
    border-bottom: 1px solid var(--border-color);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-menu {
    display: flex;
    gap: 5px;
    align-items: center;
}

.nav-link {
    font-weight: 600;
    color: var(--text-main);
    padding: 12px 24px;
    border-radius: var(--radius-full);
    transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    font-size: 1rem;
}

.nav-link:hover {
    background: rgba(16, 185, 129, 0.12);
    color: var(--primary-dark);
}

.nav-link:hover.nav-link.active,
.nav-link.active {
    background: var(--primary);
    color: var(--text-white);
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.35);
}

.nav-link:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Language Dropdown */
.lang-dropdown {
    position: relative;
}

.lang-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-family);
    box-shadow: 0 2px 8px rgba(79, 70, 229, 0.2);
}

.lang-toggle:hover {
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.lang-toggle:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.lang-toggle .lang-flag {
    width: 20px;
    height: 14px;
    object-fit: cover;
    border-radius: 2px;
}

.lang-toggle .lang-text {
    color: var(--text-main);
    font-size: 0.85rem;
    font-weight: 600;
}

.lang-toggle i {
    color: var(--text-muted);
    font-size: 0.7rem;
    transition: var(--transition);
}

.lang-toggle.active i {
    transform: rotate(180deg);
}

.lang-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: white;
    border-radius: 10px;
    padding: 8px 0;
    min-width: 100px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    box-shadow: 0 10px 40px rgba(79, 70, 229, 0.15);
    border: 1px solid var(--border-color);
    z-index: 1001;
}

.lang-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 16px;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-family);
}

.lang-option:hover {
    background: var(--bg-secondary);
}

.lang-option:focus-visible {
    background: rgba(16, 185, 129, 0.1);
    outline: none;
}

.lang-option .lang-flag {
    width: 20px;
    height: 14px;
    object-fit: cover;
    border-radius: 2px;
}

.lang-option span {
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 500;
}

.lang-option.active {
    background: rgba(79, 70, 229, 0.08);
}

.lang-option.active span {
    color: var(--primary);
    font-weight: 600;
}

.nav-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-bright);
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: background 0.2s ease, color 0.2s ease;
}

.nav-toggle:hover {
    background: rgba(16, 185, 129, 0.1);
    color: var(--primary);
}

.nav-toggle:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* ========================================
   Hero Section
======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0;
    text-align: left;
}

.hero-bg-full {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-bg-full img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(1.15) contrast(1.02);
}

.hero-bg-full::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-overlay {
    display: none;
    /* Removed the overlay */
}

.hero-container {
    width: 100%;
    margin: 0;
    padding: 0 5% 0 120px;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 850px;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-welcome {
    display: inline-flex;
    padding: 10px 28px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(6, 182, 212, 0.15));
    color: var(--primary-dark);
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 30px;
    border: 2px solid rgba(16, 185, 129, 0.3);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.15);
}

.hero-title {
    font-size: 4.8rem;
    /* Slightly larger */
    font-weight: 900;
    line-height: 1.05;
    color: #0f172a;
    /* Deep, polished charcoal */
    margin-bottom: 35px;
    letter-spacing: -3px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-title span {
    background: linear-gradient(135deg, #10b981 0%, #06b6d4 50%, #059669 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 950;
    filter: drop-shadow(0 0 24px rgba(16, 185, 129, 0.25));
    font-size: 1.05em;
}

.hero-description {
    color: #475569;
    /* Polished slate gray */
    font-size: 1.3rem;
    margin: 0 0 50px;
    max-width: 650px;
    line-height: 1.7;
    font-weight: 500;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--emerald-gradient);
    color: #fff;
    box-shadow: 0 12px 28px rgba(16, 185, 129, 0.35);
    padding: 16px 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 50px rgba(16, 185, 129, 0.4);
    background: linear-gradient(135deg, #34d399 0%, #10b981 50%, #06b6d4 100%);
}

.btn-primary:active {
    transform: translateY(-2px) scale(0.98);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
}

.btn-primary:focus-visible {
    outline: 2px solid var(--primary-dark);
    outline-offset: 3px;
}

/* Placeholder for full width images if needed elsewhere */
.img-full {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-illustration {
    position: relative;
    width: 250px;
    height: 250px;
}

.illustration-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    opacity: 0.9;
}

.illustration-person {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4.5rem;
    color: white;
    z-index: 2;
}

.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
}

.float-icon {
    position: absolute;
    width: 35px;
    height: 35px;
    background: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    font-size: 0.9rem;
    animation: float 3s ease-in-out infinite;
}

.icon-1 {
    top: 10%;
    left: 10%;
    color: var(--accent-orange);
    animation-delay: 0s;
}

.icon-2 {
    top: 20%;
    right: 5%;
    color: var(--primary);
    animation-delay: 0.5s;
}

.icon-3 {
    bottom: 20%;
    left: 5%;
    color: var(--accent-green);
    animation-delay: 1s;
}

.icon-4 {
    bottom: 10%;
    right: 15%;
    color: var(--accent-pink);
    animation-delay: 1.5s;
}

@keyframes float {

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

    50% {
        transform: translateY(-15px);
    }
}

/* ========================================
   About & Stats (Bento Layout)
======================================== */
.about-stats {
    padding: 140px 0;
    background: linear-gradient(180deg, #ecfdf5 0%, #f0fdf4 40%, #f8fafc 100%);
    position: relative;
}

.about-stats::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse at 80% 20%, rgba(6, 182, 212, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

.about-stats-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    border: 2px solid rgba(16, 185, 129, 0.15);
    overflow: hidden;
    box-shadow: var(--shadow-lg), 0 0 0 1px rgba(16, 185, 129, 0.05);
}

.about-intro {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-main-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -2px;
}

.about-main-title .highlight {
    background: var(--emerald-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-description {
    font-size: 1.15rem;
    color: var(--text-main);
    line-height: 1.8;
    margin-bottom: 40px;
}

.stats-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    border: 2px solid rgba(16, 185, 129, 0.2);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm), 0 4px 0 rgba(16, 185, 129, 0.1);
}

.stat-card:first-child:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md), 0 8px 0 rgba(16, 185, 129, 0.2);
}

.stat-card:last-child:hover {
    border-color: var(--secondary);
    box-shadow: var(--shadow-md), 0 8px 0 rgba(245, 158, 11, 0.2);
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 900;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
    filter: drop-shadow(0 2px 4px rgba(245, 158, 11, 0.2));
}

.stat-label {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-image {
    position: relative;
    height: 100%;
    min-height: 600px;
}

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

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

/* ========================================
   Featured Services (Premium Cards)
======================================== */
.featured-services {
    padding: 140px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #f0f9ff 50%, #ffffff 100%);
    position: relative;
}

.featured-services::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40%;
    height: 80%;
    background: radial-gradient(ellipse at 20% 80%, rgba(139, 92, 246, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.featured-services .container {
    max-width: 1600px;
    /* Full container expansion */
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.section-subtitle {
    color: var(--primary);
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.12), rgba(6, 182, 212, 0.1));
    border-radius: 50px;
    border: 1px solid rgba(16, 185, 129, 0.25);
}

.section-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--text-bright);
    margin-bottom: 25px;
    letter-spacing: -2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    padding: 60px 45px;
    border-radius: var(--radius-lg);
    border: 2px solid rgba(16, 185, 129, 0.12);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: var(--shadow-sm);
}

.service-card:nth-child(1) { border-top: 4px solid var(--primary); }
.service-card:nth-child(2) { border-top: 4px solid var(--secondary); }
.service-card:nth-child(3) { border-top: 4px solid var(--accent-violet); }

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary);
    z-index: -1;
    transform: translateY(100%);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:nth-child(2)::after { background: linear-gradient(135deg, #f59e0b, #d97706); }
.service-card:nth-child(3)::after { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 40px 80px rgba(16, 185, 129, 0.2);
    border-color: var(--primary);
}

.service-card:nth-child(2):hover { box-shadow: 0 40px 80px rgba(245, 158, 11, 0.2); border-color: var(--secondary); }
.service-card:nth-child(3):hover { box-shadow: 0 40px 80px rgba(139, 92, 246, 0.2); border-color: var(--accent-violet); }

.service-card:hover::after {
    transform: translateY(0);
}

.service-icon {
    width: 72px;
    height: 72px;
    background: var(--primary-glow);
    color: var(--primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 35px;
    transition: var(--transition);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.2);
}

.service-card:nth-child(2) .service-icon { background: rgba(245, 158, 11, 0.15); color: var(--secondary-dark); box-shadow: 0 8px 24px rgba(245, 158, 11, 0.2); }
.service-card:nth-child(3) .service-icon { background: rgba(139, 92, 246, 0.15); color: var(--accent-violet); box-shadow: 0 8px 24px rgba(139, 92, 246, 0.2); }

.service-card:hover .service-icon {
    background: var(--text-white);
    color: var(--primary);
}

.service-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-bright);
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card:hover .service-title,
.service-card:hover .service-description {
    color: var(--text-white);
}

.service-card:focus-within {
    outline: 2px solid var(--primary);
    outline-offset: 4px;
}

.service-description {
    color: var(--text-main);
    line-height: 1.7;
    margin-bottom: 0;
    transition: var(--transition);
}

.service-number {
    position: absolute;
    top: 40px;
    right: 40px;
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-glow);
    opacity: 0.5;
    transition: var(--transition);
}

.service-card:hover .service-number {
    color: rgba(255, 255, 255, 0.2);
}

/* ========================================
   Products Slider Section
   ======================================== */
.products-slider {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.products-slider .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.productsSwiper {
    height: 320px;
    padding: 20px 0 60px;
}

.product-card {
    background: var(--bg-accent);
    border-radius: 24px;
    padding: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.product-image {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 15px;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.product-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-bright);
    margin-bottom: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 0.9rem;
}

.product-rating i {
    color: #fbbf24;
}

.product-rating span {
    color: var(--text-muted);
    font-weight: 600;
}

.productsSwiper .swiper-button-next,
.productsSwiper .swiper-button-prev {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.productsSwiper .swiper-button-next:hover,
.productsSwiper .swiper-button-prev:hover {
    background: var(--primary);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
}

.productsSwiper .swiper-button-next:hover:after,
.productsSwiper .swiper-button-prev:hover:after {
    color: white;
}

.productsSwiper .swiper-button-next:after,
.productsSwiper .swiper-button-prev:after {
    font-size: 20px;
    font-weight: bold;
    color: var(--primary);
    transition: color 0.3s ease;
}

.productsSwiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--primary);
    opacity: 0.3;
    transition: all 0.3s ease;
}

.productsSwiper .swiper-pagination-bullet-active {
    opacity: 1;
    width: 30px;
    border-radius: 6px;
}

/* ========================================
}

.icon-mobile {
    background: #4ECDC4;
}

.icon-rocket {
    background: #FFD93D;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-subtitle {
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.3;
}

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

.section-description {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.8;
}

.about-text {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.8;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-box {
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
}

.stat-box:hover {
    transform: scale(1.05);
}

.stat-primary {
    background: var(--primary);
    color: white;
}

.stat-secondary {
    background: var(--accent-orange);
    color: white;
}

.stat-accent {
    background: var(--secondary);
    color: white;
}

.stat-highlight {
    background: var(--accent-green);
    color: white;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.9;
}

/* ========================================
   Vision, Mission & Core Values Section
======================================== */
.vision-mission-values {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.03) 0%, rgba(99, 102, 241, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.vision-mission-values .container {
    position: relative;
    z-index: 1;
}

/* Section Header */
.vmv-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 70px;
}

/* Vision & Mission - Card style (new UI) */
.vision-mission-values {
    padding: 140px 0;
    background: linear-gradient(180deg, #f0fdf4 0%, #ecfdf5 40%, #f8fafc 100%);
    position: relative;
}

.vision-mission-values::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    height: 60%;
    background: radial-gradient(ellipse at 100% 100%, rgba(16, 185, 129, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.vision-mission-values .container {
    max-width: 1200px;
}

.vm-section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.vm-cards-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 80px;
}

.vm-box {
    background: #fff;
    border-radius: 24px;
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(16, 185, 129, 0.12);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.vm-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: var(--emerald-gradient);
    opacity: 0.9;
}

.vm-box-mission::before {
    background: var(--gold-gradient);
}

.vm-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 56px rgba(16, 185, 129, 0.12);
    border-color: rgba(16, 185, 129, 0.25);
}

.vm-box-mission:hover {
    box-shadow: 0 24px 56px rgba(245, 158, 11, 0.12);
    border-color: rgba(245, 158, 11, 0.3);
}

.vm-box-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: #fff;
    margin-bottom: 24px;
    background: var(--emerald-gradient);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
}

.vm-box-mission .vm-box-icon {
    background: var(--gold-gradient);
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.3);
}

.vm-box-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-bright);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.vm-box-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin: 0;
}

.vm-cards-three {
    grid-template-columns: repeat(3, 1fr);
}

.vm-box-values::before {
    background: var(--violet-gradient);
}

.vm-box-values:hover {
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 24px 56px rgba(139, 92, 246, 0.12);
}

.vm-box-values .vm-box-icon {
    background: var(--violet-gradient);
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.3);
}

/* Core Values */
.values-wrapper {
    margin: 80px auto 0;
}

.values-header-modern {
    text-align: center;
    margin-bottom: 60px;
}

.values-header-modern .section-subtitle {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 25px;
    margin-bottom: 20px;
}

.values-heading {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.values-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.values-grid-home {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-card-home {
    background: white;
    border-radius: 24px;
    padding: 45px 35px;
    position: relative;
    overflow: hidden;
    border: 2px solid #e5e7eb;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-card-home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.value-card-home:hover {
    transform: translateY(-12px);
    border-color: var(--secondary);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.value-featured {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(139, 92, 246, 0.08));
    border-color: #6366f1;
}

.value-featured::before {
    transform: scaleX(1);
}

.value-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
}

.value-icon-home {
    width: 75px;
    height: 75px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

.icon-gradient-passion {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

.icon-gradient-customer {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.icon-gradient-quality {
    background: linear-gradient(135deg, #ec4899, #db2777);
}

.icon-gradient-team {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.icon-gradient-integrity {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.icon-gradient-innovation {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.value-card-home:hover .value-icon-home {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.value-icon-home i {
    font-size: 2rem;
    color: white;
}

.value-badge-home {
    padding: 6px 14px;
    background: #6366f1;
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
}

.value-number-large {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(139, 92, 246, 0.08));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    transition: all 0.4s ease;
}

.value-card-home:hover .value-number-large {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(139, 92, 246, 0.15));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: scale(1.1);
}

.value-card-home .value-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-bright);
    margin-bottom: 15px;
}

.value-card-home .value-text {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
}

.value-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.value-card-home:hover .value-shine {
    left: 100%;
}

/* Old value styles - keep for backward compatibility */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    max-width: 1100px;
}

.value-item:nth-child(4) {
    grid-column: 1 / 2;
    margin-left: auto;
}

.value-item:nth-child(5) {
    grid-column: 2 / 3;
    margin-right: auto;
}

.value-item {
    background: var(--bg-accent);
    border-radius: 20px;
    padding: 40px 30px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    text-align: center;
}

.value-item:hover {
    border-color: var(--secondary);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.value-number {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 5rem;
    font-weight: 900;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    transition: var(--transition);
    filter: drop-shadow(0 2px 4px rgba(99, 102, 241, 0.15));
}

.value-item:hover .value-number {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.4), rgba(139, 92, 246, 0.4));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(99, 102, 241, 0.25));
}

.value-icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 1.8rem;
    color: var(--primary);
    transition: var(--transition);
    border: 2px solid rgba(99, 102, 241, 0.1);
}

.value-item:hover .value-icon-circle {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
    border-color: var(--primary);
}

.value-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-bright);
    margin-bottom: 15px;
}

.value-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

/* ========================================
   Team In Action Section
======================================== */
.team-action {
    padding: 120px 0;
    background: var(--bg-primary);
}

.team-action .section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.team-action .section-description {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.team-photo {
    max-width: 900px;
    margin: 50px auto 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(79, 70, 229, 0.15);
    transition: var(--transition);
}

.team-photo:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--secondary);
}

.team-photo img {
    width: 100%;
    height: auto;
    display: block;
}

/* Roadmap - Chronicle Minimal */
/* Roadmap - Journey Chronicle (Full Width Rebuild) */
.roadmap-section-wrapper {
    padding: 140px 0;
    background: linear-gradient(180deg, #f0f9ff 0%, #e0f2fe 30%, #f8fafc 100%);
    position: relative;
}

.roadmap-section-wrapper::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 0;
    width: 30%;
    height: 60%;
    background: radial-gradient(ellipse at 0% 50%, rgba(6, 182, 212, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.roadmap-section-wrapper .section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.roadmap-section-wrapper .container {
    max-width: 1600px;
    /* Aligned with other full-width sections */
}

.roadmap-timeline {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 49px;
    top: 24px;
    bottom: 24px;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary), #f59e0b);
    border-radius: 3px;
    opacity: 0.4;
}

.roadmap-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 32px;
    align-items: start;
    position: relative;
    padding: 24px 0;
}

.roadmap-item:not(:last-child) {
    border-bottom: 1px dashed rgba(16, 185, 129, 0.15);
}

.roadmap-year {
    flex: none;
    font-size: 1.75rem;
    font-weight: 900;
    line-height: 1.2;
    color: var(--primary);
    letter-spacing: -0.03em;
    transition: var(--transition);
    text-align: left;
    padding-top: 4px;
}

.roadmap-item:nth-child(even) .roadmap-year {
    color: #d97706;
}

.roadmap-content {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    padding: 28px 32px;
    border-radius: 20px;
    border: 2px solid rgba(16, 185, 129, 0.12);
    position: relative;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.roadmap-item:nth-child(even) .roadmap-content {
    border-color: rgba(245, 158, 11, 0.15);
}

.roadmap-item:hover .roadmap-content {
    background: white;
    border-color: var(--primary);
    box-shadow: 0 12px 36px rgba(16, 185, 129, 0.15);
}

.roadmap-item:nth-child(even):hover .roadmap-content {
    border-color: #f59e0b;
    box-shadow: 0 12px 36px rgba(245, 158, 11, 0.12);
}

.roadmap-heading {
    font-size: 1.35rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.roadmap-content p,
.roadmap-description {
    font-size: 1rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 16px;
}

.roadmap-content .roadmap-tags {
    margin-top: 12px;
    margin-bottom: 0;
}

.roadmap-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.roadmap-tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(16, 185, 129, 0.1);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 20px;
    transition: var(--transition);
}

.roadmap-item:nth-child(even) .roadmap-tag {
    background: rgba(245, 158, 11, 0.12);
    color: #d97706;
}

.roadmap-tag:hover {
    background: var(--primary);
    color: white;
}

.roadmap-item:nth-child(even) .roadmap-tag:hover {
    background: #f59e0b;
    color: #fff;
}

/* ========================================
   Team In Action Section (Experts) – Green theme, distinct card design
======================================== */
.team-members {
    padding: 100px 0;
    background: linear-gradient(180deg, #ecfdf5 0%, #d1fae5 25%, #a7f3d0 50%, #d1fae5 75%, #ecfdf5 100%);
    position: relative;
    overflow: hidden;
}

.team-members::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 40%;
    height: 90%;
    background: radial-gradient(ellipse at 100% 50%, rgba(16, 185, 129, 0.15) 0%, transparent 65%);
    pointer-events: none;
}

.team-members .section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.team-members .section-title {
    color: #047857;
    font-weight: 800;
    text-shadow: 0 1px 2px rgba(6, 95, 70, 0.1);
}

/* Swiper Styles */
.teamSwiper {
    width: 100%;
    padding: 20px 0 60px;
    height: 400px;
    position: relative;
}

.teamSwiper .swiper-wrapper {
    height: 90%;
}

.teamSwiper .swiper-slide {
    height: auto;
    display: flex;
    justify-content: center;
}

/* Expert card: green border, different shape (rounded + top accent bar) */
.team-members .team-card {
    background: linear-gradient(165deg, #ffffff 0%, #f0fdf4 100%);
    border-radius: 20px 20px 16px 16px;
    padding: 0 30px 40px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.12), 0 0 0 3px rgba(16, 185, 129, 0.25);
    border: 2px solid #059669;
    height: 100%;
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

/* Green top accent bar – distinct from other sections */
.team-members .team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #10b981, #059669, #047857);
    border-radius: 20px 20px 0 0;
}

.team-members .team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 48px rgba(16, 185, 129, 0.25), 0 0 0 3px #10b981;
    border-color: #047857;
}

.team-members .team-avatar {
    width: 130px;
    height: 130px;
    margin: 28px auto 22px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #059669;
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.35), inset 0 0 0 2px rgba(255,255,255,0.6);
    background: #ecfdf5;
}

.team-members .team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.team-members .team-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #047857;
    margin-bottom: 8px;
}

.team-members .team-role {
    font-size: 0.95rem;
    color: #059669;
    font-weight: 700;
    margin-bottom: 15px;
}

.team-members .team-description {
    font-size: 0.9rem;
    color: #065f46;
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Swiper Navigation – green */
.teamSwiper .swiper-button-next,
.teamSwiper .swiper-button-prev {
    color: #047857;
    background: #ffffff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid #059669;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
    transition: var(--transition);
}

.teamSwiper .swiper-button-next:after,
.teamSwiper .swiper-button-prev:after {
    font-size: 20px;
    font-weight: bold;
}

.teamSwiper .swiper-button-next:hover,
.teamSwiper .swiper-button-prev:hover {
    background: #059669;
    color: #ffffff;
    border-color: #047857;
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.4);
}

/* Swiper Pagination – green */
.teamSwiper .swiper-pagination {
    bottom: 20px;
}

.teamSwiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #059669;
    opacity: 0.35;
    transition: var(--transition);
}

.teamSwiper .swiper-pagination-bullet-active {
    opacity: 1;
    width: 30px;
    border-radius: 5px;
    background: linear-gradient(90deg, #10b981, #047857);
}

/* ========================================
   Contact Section
======================================== */
.contact {
    padding: 100px 0;
    background: var(--bg-primary);
}

.contact-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

/* ========================================
   Contact Section
======================================== */
.contact {
    padding: 140px 0;
    background: linear-gradient(180deg, #ecfdf5 0%, #f0fdf4 50%, #ffffff 100%);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 60%;
    height: 50%;
    background: radial-gradient(ellipse at 50% 100%, rgba(6, 182, 212, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 0 auto;
}

.contact-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    padding: 60px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    border: 2px solid rgba(16, 185, 129, 0.2);
    box-shadow: var(--shadow-md), 0 4px 0 rgba(16, 185, 129, 0.08);
}

.contact-card:first-child:hover { border-color: var(--primary); box-shadow: var(--shadow-lg), 0 12px 0 rgba(16, 185, 129, 0.15); }
.contact-card:last-child:hover { border-color: var(--accent-cyan); box-shadow: var(--shadow-lg), 0 12px 0 rgba(6, 182, 212, 0.15); }

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

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 800;
    font-size: 1.6rem;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.logo:hover {
    opacity: 0.9;
}

.logo:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 4px;
    border-radius: var(--radius-md);
}

.logo-icon {
    width: 48px;
    /* Bigger icon container */
    height: 48px;
    background: var(--emerald-gradient);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    font-size: 1rem;
    box-shadow: 0 10px 25px var(--primary-glow);
}

.logo-text {
    color: var(--text-bright);
    letter-spacing: -0.5px;
}

.contact-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #fff;
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.35);
}

.contact-card:last-child .contact-icon {
    background: var(--cyan-gradient);
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.35);
}

.contact-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-bright);
    margin-bottom: 10px;
}

.contact-info {
    color: var(--text-muted);
    font-size: 1rem;
}

/* Core Values - Pro Stack Layout (From Reference) */
.values-wrapper {
    width: 100%;
    /* Fully expanded and edge-to-edge within container */
    margin: 60px auto 0;
    background: white;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.values-header-modern {
    text-align: center;
    padding: 80px 40px 40px;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
}

.value-card-home {
    display: flex;
    align-items: stretch;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
    background: white;
}

.value-card-home:last-child {
    border-bottom: none;
}

.value-icon-column {
    flex: 0 0 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    transition: var(--transition);
}

/* Alternating Colors: Emerald and Orange */
.value-card-home:nth-child(odd) .value-icon-column {
    background: var(--primary);
    /* Emerald Green */
}

.value-card-home:nth-child(even) .value-icon-column {
    background: #f59e0b;
    /* Vibrant Orange to match Mission */
}

.value-info {
    flex: 1;
    padding: 40px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.value-card-home .value-name {
    font-size: 1.6rem;
    font-weight: 900;
    color: #0f172a;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 15px;
}

.value-card-home .value-name::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #0f172a;
    transition: var(--transition);
}

.value-card-home:nth-child(even) .value-name::after {
    background: #f59e0b;
    /* Orange separator for matching rows */
}

.value-card-home .value-text {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.7;
    margin: 0;
}

.value-card-home:hover {
    background: #f8fafc;
}

.value-card-home:hover .value-icon-column {
    filter: brightness(1.1);
}

.value-number-large {
    display: none;
    /* Removed as per image style */
}

.value-icon-home {
    display: block !important;
    font-size: 3rem;
}

/* ========================================
   Footer
======================================== */
.footer {
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    border-top: 4px solid transparent;
    border-image: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent-violet)) 1;
    padding: 100px 0 40px;
    color: #e2e8f0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.5), rgba(245, 158, 11, 0.5), transparent);
    opacity: 0.6;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

.footer-brand .logo {
    margin-bottom: 20px;
    display: inline-flex;
}

.footer-description {
    color: #94a3b8;
    font-size: 1rem;
    line-height: 1.7;
}

.footer-brand .logo-text {
    color: #f8fafc;
}

.footer-brand .logo-icon {
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.4);
}

.footer-contact h4,
.footer-social h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 25px;
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #94a3b8;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.footer-contact i {
    color: var(--primary);
    margin-top: 3px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.4);
}

.social-links a:nth-child(2):hover {
    background: linear-gradient(135deg, #0ea5e9, #06b6d4);
    box-shadow: 0 8px 24px rgba(6, 182, 212, 0.4);
}

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

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #94a3b8;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-links a:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
    border-radius: 4px;
    color: var(--primary);
}

.footer-bottom p {
    color: #64748b;
    font-size: 0.85rem;
}

.social-links a:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* ========================================
   Animations
======================================== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.stats-grid .stat-box:nth-child(1) {
    transition-delay: 0.1s;
}

.stats-grid .stat-box:nth-child(2) {
    transition-delay: 0.2s;
}

.stats-grid .stat-box:nth-child(3) {
    transition-delay: 0.3s;
}

.stats-grid .stat-box:nth-child(4) {
    transition-delay: 0.4s;
}

/* ========================================
   Responsive Design
======================================== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-description {
        max-width: 100%;
    }

    .hero-image img {
        width: 400px;
        height: 400px;
    }

    .hero-illustration {
        width: 300px;
        height: 300px;
    }

    .illustration-circle {
        width: 220px;
        height: 220px;
    }

    .illustration-person {
        font-size: 5rem;
    }

    .about-stats-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .about-intro {
        max-width: 100%;
    }

    .stats-cards {
        justify-content: center;
    }

    .about-image img {
        max-width: 350px;
    }

    .about-stats-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .products-slider {
        padding: 60px 0;
    }

    .productsSwiper .swiper-button-next,
    .productsSwiper .swiper-button-prev {
        width: 45px;
        height: 45px;
    }

    .productsSwiper .swiper-button-next:after,
    .productsSwiper .swiper-button-prev:after {
        font-size: 18px;
    }

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

    .values-heading {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background: var(--bg-primary);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: var(--transition);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.05);
        z-index: 1000;
        border-left: 1px solid var(--border-color);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link::after {
        display: none;
    }

    .nav-link.active {
        background: rgba(16, 185, 129, 0.1);
        color: var(--secondary);
        padding: 10px 25px;
        border-radius: 8px;
    }

    .nav-toggle {
        display: block;
        z-index: 1001;
        color: var(--text-bright);
    }

    .lang-toggle {
        padding: 6px 10px;
    }

    .lang-toggle .lang-text {
        font-size: 0.8rem;
    }

    .hero {
        padding: 100px 0 40px;
    }

    .hero-welcome {
        font-size: 0.85rem;
        padding: 8px 18px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .hero-bg-full {
        filter: brightness(0.8);
    }

    .hero-overlay {
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
    }

    .hero-title {
        font-size: 2.5rem;
    }

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

    .products-slider {
        padding: 50px 0;
    }

    .product-card {
        padding: 15px;
    }

    .product-info h4 {
        font-size: 0.9rem;
    }

    .productsSwiper .swiper-button-next,
    .productsSwiper .swiper-button-prev {
        width: 40px;
        height: 40px;
    }

    .productsSwiper .swiper-button-next:after,
    .productsSwiper .swiper-button-prev:after {
        font-size: 16px;
    }

    .featured-services {
        padding: 60px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .service-card {
        padding: 35px 30px;
    }

    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    .service-title {
        font-size: 1.2rem;
    }

    .service-description {
        font-size: 0.9rem;
    }

    .vision-mission-values {
        padding: 60px 0;
    }

    .vm-cards-row,
    .vm-cards-three {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 60px;
    }

    .vm-box {
        padding: 36px 28px;
    }

    .values-grid-home {
        grid-template-columns: 1fr;
    }

    .values-heading {
        font-size: 2rem;
    }

    .value-card-home {
        padding: 40px 30px;
    }

    .value-icon-home {
        width: 65px;
        height: 65px;
    }

    .value-icon-home i {
        font-size: 1.7rem;
    }

    .vm-box-title {
        font-size: 1.5rem;
    }

    .vm-box-text {
        font-size: 0.95rem;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .value-item:nth-child(4),
    .value-item:nth-child(5) {
        margin: 0;
        grid-column: auto;
    }

    .value-item {
        padding: 35px 25px;
    }

    .value-number {
        font-size: 4rem;
        top: 15px;
        right: 20px;
    }

    .team-action {
        padding: 60px 0 40px;
    }

    .team-members {
        padding: 60px 0 80px;
    }

    .team-photo {
        max-width: 100%;
        margin: 40px auto 0;
        border-radius: 15px;
    }

    .roadmap-section-wrapper {
        padding: 60px 0;
    }

    .roadmap-item {
        grid-template-columns: 70px 1fr;
        gap: 20px;
        padding: 20px 0;
    }

    .roadmap-timeline::before {
        left: 34px;
        top: 16px;
        bottom: 16px;
    }

    .roadmap-year {
        font-size: 1.5rem;
    }

    .roadmap-content {
        padding: 20px 24px;
    }

    .roadmap-heading {
        font-size: 1.2rem;
    }

    .team-members .team-card {
        padding: 0 20px 30px;
    }

    .team-members .team-avatar {
        width: 100px;
        height: 100px;
    }

    .teamSwiper .swiper-button-next,
    .teamSwiper .swiper-button-prev {
        width: 40px;
        height: 40px;
    }

    .teamSwiper .swiper-button-next:after,
    .teamSwiper .swiper-button-prev:after {
        font-size: 18px;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 80px 0 30px;
    }

    .hero-welcome {
        font-size: 0.75rem;
        padding: 6px 14px;
        margin-bottom: 15px;
    }

    .hero-title {
        font-size: 1.6rem;
        line-height: 1.3;
    }

    .hero-title span {
        display: block;
    }

    .hero-description {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .btn-primary {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .hero-image {
        margin-top: 25px;
    }

    .hero-image img {
        width: 220px;
        height: 220px;
    }

    .products-slider {
        padding: 40px 0;
    }

    .products-slider .section-header {
        margin-bottom: 40px;
    }

    .product-card {
        padding: 12px;
    }

    .product-info h4 {
        font-size: 0.85rem;
    }

    .product-rating {
        font-size: 0.8rem;
    }

    .productsSwiper {
        padding: 15px 0 50px;
    }

    .productsSwiper .swiper-button-next,
    .productsSwiper .swiper-button-prev {
        display: none;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .hero-illustration {
        width: 250px;
        height: 250px;
    }

    .illustration-circle {
        width: 180px;
        height: 180px;
    }

    .values-heading {
        font-size: 1.7rem;
    }

    .value-card-home {
        padding: 35px 25px;
    }

    .value-number-large {
        font-size: 3rem;
        top: 15px;
        right: 20px;
    }

    .value-icon-home {
        width: 60px;
        height: 60px;
    }

    .value-icon-home i {
        font-size: 1.5rem;
    }

    .value-card-home .value-name {
        font-size: 1.1rem;
    }

    .value-card-home .value-text {
        font-size: 0.9rem;
    }

    .illustration-person {
        font-size: 4rem;
    }

    .float-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .service-card {
        padding: 30px 25px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .service-title {
        font-size: 1.1rem;
    }

    .service-description {
        font-size: 0.85rem;
    }

    .vm-box {
        padding: 28px 22px;
    }

    .vm-box-icon {
        width: 52px;
        height: 52px;
        font-size: 1.4rem;
    }

    .vm-box-title {
        font-size: 1.3rem;
    }

    .vm-box-text {
        font-size: 0.9rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .value-item:nth-child(4),
    .value-item:nth-child(5) {
        margin: 0;
        grid-column: auto;
    }

    .value-item {
        padding: 30px 25px;
    }

    .value-icon-circle {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .value-number {
        font-size: 3.5rem;
        top: 12px;
        right: 18px;
    }

    .value-name {
        font-size: 1.05rem;
    }

    .value-text {
        font-size: 0.85rem;
    }

    .team-members .team-card {
        padding: 0 25px 30px;
    }

    .teamSwiper .swiper-button-next,
    .teamSwiper .swiper-button-prev {
        display: none;
    }

    .roadmap-item {
        grid-template-columns: 60px 1fr;
        gap: 16px;
    }

    .roadmap-timeline::before {
        left: 29px;
    }

    .roadmap-year {
        font-size: 1.25rem;
    }

    .roadmap-heading {
        font-size: 1.1rem;
    }

    .roadmap-description {
        font-size: 0.85rem;
    }

    .roadmap-tag {
        font-size: 0.75rem;
        padding: 5px 12px;
    }

    .contact-card {
        padding: 30px;
        min-width: 100%;
    }
}