:root {
    --primary-color: #0052cc;
    --primary-dark: #003a99;
    --primary-light: #0066ff;
    --accent-color: #00d4aa;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --background-light: #f9fafb;
    --white: #ffffff;
    --border-light: #e5e7eb;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --brand-font: 'Zen Dots', cursive;
    --vn-font: 'Roboto', sans-serif;
}

/* Local Zen Dots Font */
@font-face {
    font-family: 'Zen Dots';
    src: url('../fonts/ZenDots-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

/* Brand Font for Headings - Zen Dots for both English and Vietnamese */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--brand-font);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* HEADER */
.header {
    background: var(--white);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    flex-shrink: 0;
}

.logo img {
    width: 40px;
    height: 40px;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
    font-family: var(--brand-font);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 3rem;
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color var(--transition);
}

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

.nav-cta {
    background: var(--primary-color) !important;
    color: var(--white) !important;
    padding: 0.6rem 1.5rem !important;
    border-radius: 6px;
    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--primary-dark) !important;
}

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

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.dropdown-toggle::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    transition: transform var(--transition);
}

.nav-dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

/* Hover bridge - invisible area to keep dropdown open while moving mouse */
.nav-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 0.75rem;
    cursor: pointer;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 0;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    list-style: none;
    margin: 0;
    padding: 0.75rem 0;
    min-width: 220px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    z-index: 1000;
    pointer-events: none;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.9rem;
    transition: color var(--transition), background var(--transition);
}

.dropdown-menu a:hover {
    background: var(--background-light);
    color: var(--primary-color);
}

.language-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
}

.lang-option {
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
}

.toggle-slider {
    width: 40px;
    height: 24px;
    background: var(--border-light);
    border-radius: 12px;
    position: relative;
    cursor: pointer;
    transition: var(--transition);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-dark);
}

/* HERO SECTION */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 160px 2rem 80px;
    margin-top: 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,50 Q300,100 600,50 T1200,50 L1200,0 L0,0 Z" fill="rgba(255,255,255,0.05)"></path></svg>');
    background-size: cover;
    pointer-events: none;
}

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

.hero-tagline {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    font-family: var(--brand-font);
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto 3rem;
    font-weight: 400;
    line-height: 1.7;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 4rem;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
}

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

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.05rem;
}

/* VALUE PROPOSITIONS */
.value-props-section {
    padding: 6rem 2rem;
    background: var(--background-light);
}

.value-props-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
}

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

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.value-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* SERVICES SECTION */
.services-section {
    padding: 6rem 2rem;
    background: var(--white);
}

.services-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.services-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-card-wrapper h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 0;
    margin-top: 0;
    font-weight: 600;
}

.service-block {
    background: var(--white);
    border: 1px solid var(--border-light);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.service-block-bg {
    background: white;
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    min-height: 180px;
    position: relative;
    padding: 0;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    overflow: hidden;
}

.service-block-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 82, 204, 0.2) 100%);
    z-index: 1;
}

.service-header-overlay {
    display: none;
}

.service-block-bg h3 {
    display: none;
}

.service-block:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.service-block-bg:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.service-icon-large {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.service-block h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.service-block p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding-left: 0;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: var(--text-light);
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.services-cta {
    text-align: center;
    margin-top: 2rem;
}

/* SOLUTIONS SECTION */
.solutions-section {
    padding: 6rem 2rem;
    background: var(--background-light);
}

.solutions-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.solution-item {
    background: var(--white);
    padding: 1.75rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
}

.solution-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.solution-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.solution-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ABOUT SECTION */
.about-section {
    padding: 6rem 2rem;
    background: var(--white);
}

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

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.about-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    padding: 2rem;
    background: var(--background-light);
    border-radius: var(--border-radius);
}

.highlight {
    text-align: center;
}

.number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.label {
    display: block;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.about-content .btn {
    margin-top: 1rem;
}

/* CONTACT SECTION */
.contact-section {
    padding: 6rem 2rem;
    background: var(--background-light);
}

.contact-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-section > p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-item strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.contact-item a, .contact-item p {
    color: var(--text-light);
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--primary-color);
}

.contact-benefits {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
}

.contact-benefits h4 {
    margin-bottom: 1rem;
}

.contact-benefits ul {
    list-style: none;
}

.contact-benefits li {
    color: var(--text-light);
    padding: 0.5rem 0;
}

/* CONTACT FORM */
.contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    overflow: visible;
    z-index: 1;
    box-shadow: var(--shadow-md);
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-light);
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
    margin-bottom: 1rem;
    background-color: white;
    appearance: auto;
    -webkit-appearance: menulist;
}

.contact-form select {
    cursor: pointer;
    padding-right: 2rem;
}

.contact-form select option {
    padding: 0.5rem;
    background-color: white;
    color: var(--text-dark);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 82, 204, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form button {
    width: 100%;
}

/* PARTNERS SECTION */
.partners-section {
    padding: 4rem 2rem;
    background: var(--white);
    text-align: center;
    border-top: 1px solid var(--border-light);
}

.partners-section h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.partners-section > p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.partner-logo:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.partner-logo img {
    max-width: 80%;
    height: auto;
}

/* FOOTER */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 2rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-section h3, .footer-section h4 {
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color var(--transition);
}

.footer-section a:hover {
    color: var(--accent-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* RESPONSIVE */
/* BACKWARD COMPATIBILITY - Map old class names to new styles */
.what-we-do-section {
    padding: 6rem 2rem;
    background: var(--white);
}

.what-we-do-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.what-we-do-section .section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    border-top: 4px solid var(--primary-color);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

.service-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.learn-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: var(--transition);
}

.learn-more:hover {
    transform: translateX(3px);
}

/* Why Choose Us Section */
.why-choose-us-section {
    padding: 6rem 2rem;
    background: var(--background-light);
}

.why-choose-us-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.benefit-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Featured Projects */
.featured-projects-section {
    padding: 6rem 2rem;
    background: var(--white);
}

.featured-projects-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.featured-projects-section .section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.project-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

.project-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.project-content {
    padding: 1.5rem;
}

.project-content h3 {
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.project-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.project-details {
    color: var(--text-light);
    font-size: 0.9rem;
}

.project-cta {
    text-align: center;
    margin-top: 2rem;
}

/* Sectors Served */
.sectors-served-section {
    padding: 6rem 2rem;
    background: var(--white);
}

.sectors-served-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.sectors-served-section .section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.sector-card {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}

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

.sector-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.sector-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
}

/* Brand Partners */
.brand-partners-section {
    padding: 6rem 2rem;
    background: var(--background-light);
    border-top: 1px solid var(--border-light);
}

.brand-partners-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.brand-partners-section .section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

.brand-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: 1px solid var(--border-light);
}

.brand-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.brand-item img {
    max-width: 80%;
    height: auto;
    opacity: 0.8;
    transition: var(--transition);
}

.brand-item:hover img {
    opacity: 1;
}

/* About Section (OLD) */
.about-section {
    padding: 6rem 2rem;
    background: var(--white);
}

.about-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.stat-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.about-cta {
    text-align: center;
    margin-top: 2rem;
}

/* Final CTA Section */
.final-cta-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    text-align: center;
}

.final-cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.final-cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    color: var(--white);
    border: 2px solid var(--white);
}

.cta-buttons .btn-primary {
    background: var(--white);
    color: var(--primary-color);
}

/* Responsive */
@media (max-width: 768px) {
    .header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        z-index: 999;
        background: var(--white);
    }

    body {
        padding-top: 0;
    }

    .hero-section {
        margin-top: 70px;
    }

    .header-main {
        padding: 1rem 0;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 2rem 2rem;
        display: flex;
        opacity: 0;
        visibility: hidden;
        transform: translateX(-100%);
        transition: all 0.3s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        z-index: 998;
        overflow-y: auto;
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        padding: 1rem 0;
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        font-size: 1.1rem;
        display: block;
        padding: 0.5rem 0;
    }

    .nav-dropdown {
        position: static;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        box-shadow: none;
        background: rgba(0, 0, 0, 0.05);
        border: none;
        padding: 1rem 0 1rem 1.5rem;
        margin-top: 0.5rem;
        min-width: auto;
    }

    .nav-dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-menu li {
        border-bottom: none;
        padding: 0.5rem 0;
        margin-bottom: 0;
    }

    .nav-cta {
        background: var(--primary-color) !important;
        color: var(--white) !important;
        padding: 0.8rem 1.5rem !important;
        border-radius: 6px;
        margin-top: 1rem;
        display: inline-block;
    }

    .mobile-menu-toggle {
        display: block;
        z-index: 1001;
        order: 2;
    }

    .language-toggle {
        order: 3;
        flex-shrink: 0;
    }

    .logo {
        order: 1;
    }

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

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-stats {
        gap: 2rem;
    }

    .services-grid,
    .benefits-grid,
    .projects-grid,
    .machines-grid,
    .sectors-grid,
    .brands-grid,
    .solutions-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

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

    .hero-section {
        padding: 120px 1rem 60px;
    }

    section {
        padding: 3rem 1rem !important;
    }

    .hero-image {
        display: none;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer {
        padding: 3rem 1rem 1rem;
    }

    section {
        margin-top: 0;
    }
}

/* ===== JOBS PAGE STYLES ===== */

/* Jobs Selector Section */
.jobs-selector-section {
    padding: 4rem 2rem;
    background: var(--white);
    border-bottom: 2px solid var(--border-light);
}

.jobs-selector-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.job-selector-tabs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.job-tab {
    background: var(--background-light);
    border: 2px solid var(--border-light);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.job-tab:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.job-tab.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.job-tab.active .tab-meta {
    color: rgba(255, 255, 255, 0.9);
}

.tab-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.tab-meta {
    font-size: 0.85rem;
    color: var(--text-light);
}

.job-tab.active .tab-meta {
    color: rgba(255, 255, 255, 0.85);
}

/* Job Detail Section */
.job-detail-section {
    display: none;
}

.job-detail-section.active {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Jobs Hero Section */
.jobs-hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 160px 2rem 80px;
    margin-top: 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.jobs-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.jobs-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.jobs-hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
    font-weight: 400;
    line-height: 1.7;
}

/* Job Section */
.job-section {
    padding: 4rem 2rem;
    background: var(--white);
    border-bottom: 1px solid var(--border-light);
}

.job-section:nth-child(even) {
    background: var(--background-light);
}

.job-container {
    max-width: 900px;
    margin: 0 auto;
}

.job-header {
    margin-bottom: 2rem;
}

.job-title {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.job-meta {
    display: flex;
    gap: 2rem;
    font-size: 0.95rem;
    color: var(--text-light);
}

.job-location,
.job-type {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.job-location::before,
.job-type::before {
    font-size: 1.2rem;
}

.job-location::before {
    content: "📍";
}

.job-type::before {
    content: "⏰";
}

.job-company {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-light);
    font-size: 0.95rem;
    color: var(--text-light);
}

.job-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.job-description {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

.job-description h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.job-description h3:first-child {
    margin-top: 0;
}

.job-description p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.job-description ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.job-description li {
    color: var(--text-light);
    padding: 0.5rem 0;
    padding-left: 1.75rem;
    position: relative;
    line-height: 1.6;
}

.job-description li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

/* Job Application */
.job-application {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 2px solid var(--border-light);
}

.job-application h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

/* Application Form */
.application-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.application-form input,
.application-form textarea,
.application-form select {
    padding: 0.75rem;
    border: 1px solid var(--border-light);
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
}

.application-form input:focus,
.application-form textarea:focus,
.application-form select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 82, 204, 0.1);
    background-color: rgba(0, 82, 204, 0.02);
}

.application-form textarea {
    resize: vertical;
    min-height: 120px;
}

.application-form small {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: -0.75rem;
}

.submit-button {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 1rem;
}

.submit-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.submit-button:active {
    transform: translateY(0);
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 6px;
    font-weight: 500;
    text-align: center;
    display: none;
}

.form-message.success {
    display: block;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    display: block;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responsive */
@media (max-width: 768px) {
    .jobs-hero-title {
        font-size: 2rem;
    }

    .jobs-hero-subtitle {
        font-size: 1rem;
    }

    .job-title {
        font-size: 1.5rem;
    }

    .job-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .job-content {
        grid-template-columns: 1fr;
    }
}
