/* =====================================================
   MOUNT TRADING SOLUTIONS - Main Stylesheet
   Color: Professional Blue / Modern & Clean
   ===================================================== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Inter:wght@400;500;600;700;800&display=swap');

/* =====================================================
   CSS Variables
   ===================================================== */
:root {
    /* Primary Colors */
    --primary: #2563eb;
    --primary-light: #60a5fa;
    --primary-lighter: #dbeafe;
    --primary-dark: #1e3a5f;
    --primary-gradient: linear-gradient(135deg, #2563eb 0%, #60a5fa 100%);
    --primary-gradient-hover: linear-gradient(135deg, #1e3a5f 0%, #2563eb 100%);

    /* Accent Colors */
    --accent: #06b6d4;
    --accent-light: #67e8f9;
    --teal: #06b6d4;

    /* Neutral Colors */
    --text-primary: #1a1a2e;
    --text-secondary: #4a4a5a;
    --text-muted: #7a7a8a;

    /* Background Colors */
    --bg-primary: #f8fafc;
    --bg-secondary: #f1f5f9;
    --bg-card: #ffffff;
    --bg-dark: #0f172a;
    --bg-dark-secondary: #1e293b;

    /* Borders & Shadows */
    --border-color: #e2e8f0;
    --shadow-sm: 0 2px 8px rgba(37, 99, 235, 0.08);
    --shadow-md: 0 4px 20px rgba(37, 99, 235, 0.12);
    --shadow-lg: 0 8px 40px rgba(37, 99, 235, 0.16);
    --shadow-card: 0 4px 24px rgba(15, 23, 42, 0.06);

    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-secondary: 'DM Sans', sans-serif;

    /* Spacing */
    --section-padding: 100px;
    --container-width: 1200px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
}

/* Dark Mode */
[data-theme="dark"] {
    --text-primary: #e2e8f0;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;

    --bg-primary: #0f172a;
    --bg-secondary: #1e293b;
    --bg-card: #1e293b;

    --border-color: #334155;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.4);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.2);

    --primary: #60a5fa;
    --primary-light: #93c5fd;
    --primary-lighter: #1e3a5f;
    --primary-dark: #93c5fd;

    --accent: #22d3ee;
    --accent-light: #67e8f9;
}

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

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

body {
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    transition: background-color var(--transition-base), color var(--transition-base);
}

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

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

ul, ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

/* =====================================================
   Typography
   ===================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-primary);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 800;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
}

h4 {
    font-size: 1.125rem;
}

p {
    color: var(--text-secondary);
}

.lead {
    font-size: 1.125rem;
    line-height: 1.8;
}

.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* =====================================================
   Layout
   ===================================================== */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

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

.section-header {
    margin-bottom: 60px;
}

.section-header.center {
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header p {
    margin-top: 16px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    margin-bottom: 16px;
}

.section-label::before {
    content: '';
    width: 40px;
    height: 2px;
    background: var(--primary-gradient);
    border-radius: 2px;
}

/* =====================================================
   Buttons
   ===================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-primary);
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary-gradient);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    background: var(--primary-gradient-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(37, 99, 235, 0.4);
}

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

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
}

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

.btn-outline:hover {
    background: var(--primary);
    color: #ffffff;
}

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

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

.btn-lg {
    padding: 18px 36px;
    font-size: 1rem;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.875rem;
}

.btn .arrow {
    transition: transform var(--transition-fast);
}

.btn:hover .arrow {
    transform: translateX(4px);
}

/* =====================================================
   Header
   ===================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition-base);
}

body:has(.hero) .header:not(.scrolled) .logo-text,
body.has-hero .header:not(.scrolled) .logo-text,
body:has(.page-header) .header:not(.scrolled) .logo-text,
body.has-page-header .header:not(.scrolled) .logo-text {
    color: #ffffff;
}

body:has(.hero) .header:not(.scrolled) .logo-text span,
body.has-hero .header:not(.scrolled) .logo-text span,
body:has(.page-header) .header:not(.scrolled) .logo-text span,
body.has-page-header .header:not(.scrolled) .logo-text span {
    color: var(--primary-light);
}

body:has(.hero) .header:not(.scrolled) .nav-links a,
body.has-hero .header:not(.scrolled) .nav-links a,
body:has(.page-header) .header:not(.scrolled) .nav-links a,
body.has-page-header .header:not(.scrolled) .nav-links a {
    color: rgba(255, 255, 255, 0.7);
}

body:has(.hero) .header:not(.scrolled) .nav-links a:hover,
body:has(.hero) .header:not(.scrolled) .nav-links a.active,
body.has-hero .header:not(.scrolled) .nav-links a:hover,
body.has-hero .header:not(.scrolled) .nav-links a.active,
body:has(.page-header) .header:not(.scrolled) .nav-links a:hover,
body:has(.page-header) .header:not(.scrolled) .nav-links a.active,
body.has-page-header .header:not(.scrolled) .nav-links a:hover,
body.has-page-header .header:not(.scrolled) .nav-links a.active {
    color: var(--primary-light);
}

body:has(.hero) .header:not(.scrolled) .theme-toggle,
body.has-hero .header:not(.scrolled) .theme-toggle,
body:has(.page-header) .header:not(.scrolled) .theme-toggle,
body.has-page-header .header:not(.scrolled) .theme-toggle {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

body:has(.hero) .header:not(.scrolled) .theme-toggle:hover,
body.has-hero .header:not(.scrolled) .theme-toggle:hover,
body:has(.page-header) .header:not(.scrolled) .theme-toggle:hover,
body.has-page-header .header:not(.scrolled) .theme-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
}

body:has(.hero) .header:not(.scrolled) .mobile-menu-btn span,
body.has-hero .header:not(.scrolled) .mobile-menu-btn span,
body:has(.page-header) .header:not(.scrolled) .mobile-menu-btn span,
body.has-page-header .header:not(.scrolled) .mobile-menu-btn span {
    background: #ffffff;
}

.header.scrolled {
    background: rgba(248, 250, 252, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .header.scrolled {
    background: rgba(15, 23, 42, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-text {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
}

.logo-text span {
    color: var(--primary);
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-links a {
    font-family: var(--font-primary);
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 8px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: width var(--transition-base);
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links li {
    position: relative;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Theme Toggle */
.theme-toggle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    color: var(--text-primary);
    transition: all var(--transition-fast);
}

.theme-toggle:hover {
    background: var(--primary-lighter);
    color: var(--primary);
}

.theme-toggle svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.theme-toggle .sun-icon {
    display: none;
}

[data-theme="dark"] .theme-toggle .sun-icon {
    display: block;
}

[data-theme="dark"] .theme-toggle .moon-icon {
    display: none;
}

/* Dark Mode Overrides */
[data-theme="dark"] .theme-toggle:hover {
    background: rgba(96, 165, 250, 0.2);
    color: var(--primary-light);
}

[data-theme="dark"] .form-group input:focus,
[data-theme="dark"] .form-group textarea:focus,
[data-theme="dark"] .form-group select:focus {
    box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.25);
}

[data-theme="dark"] .form-group input.error,
[data-theme="dark"] .form-group textarea.error,
[data-theme="dark"] .form-group select.error {
    border-color: #ff6b7a;
    box-shadow: 0 0 0 3px rgba(255, 107, 122, 0.2);
}

[data-theme="dark"] .form-group input.success,
[data-theme="dark"] .form-group textarea.success {
    border-color: #5dd879;
}

[data-theme="dark"] .form-error-message {
    color: #ff6b7a;
}

[data-theme="dark"] .service-icon {
    background: rgba(96, 165, 250, 0.15);
}

[data-theme="dark"] .feature-icon {
    background: rgba(96, 165, 250, 0.15);
}

[data-theme="dark"] .features-image-box,
[data-theme="dark"] .about-image-main {
    background: rgba(96, 165, 250, 0.15);
    color: var(--text-muted);
}

[data-theme="dark"] .vision-card-icon,
[data-theme="dark"] .value-card-icon,
[data-theme="dark"] .contact-item-icon,
[data-theme="dark"] .benefit-icon,
[data-theme="dark"] .career-icon {
    background: rgba(96, 165, 250, 0.15);
}

[data-theme="dark"] .process-card:not(:last-child)::after {
    background: var(--border-color);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

/* =====================================================
   Hero Section
   ===================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    background: var(--bg-dark);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero-bg::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 60%;
    height: 100%;
    background: radial-gradient(ellipse, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

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

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

.hero-content {
    max-width: 600px;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.hero-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-lg);
}

.hero-image-glow {
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.5;
    filter: blur(20px);
}

.hero-float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-dark);
    padding: 12px 18px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    font-size: 0.875rem;
    font-weight: 600;
    animation: float 3s ease-in-out infinite;
}

.hero-float-card svg {
    color: var(--primary);
}

.hero-float-1 {
    top: 10%;
    right: -20px;
    animation-delay: 0s;
}

.hero-float-2 {
    bottom: 15%;
    left: -20px;
    animation-delay: 1.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(37, 99, 235, 0.15);
    border: 1px solid rgba(37, 99, 235, 0.3);
    border-radius: var(--radius-xl);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary-light);
    margin-bottom: 32px;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero h1 {
    color: #ffffff;
    margin-bottom: 24px;
}

.hero .lead {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.25rem;
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    gap: 48px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat-value {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 8px;
}

.hero-stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

/* =====================================================
   Partners Section
   ===================================================== */
.partners-section {
    padding: 3rem 0;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
}

.partners-label {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem 3rem;
}

.partner-logo {
    opacity: 0.6;
    transition: opacity var(--transition-base), filter var(--transition-base);
    filter: grayscale(100%);
}

.partner-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.partner-logo img {
    height: 40px;
    width: auto;
}

/* =====================================================
   Services Grid
   ===================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--border-color);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity var(--transition-base);
}

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

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background: var(--primary-lighter);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--primary);
}

.service-card h3 {
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.9375rem;
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: var(--primary);
    font-size: 0.9375rem;
}

.service-link:hover {
    gap: 10px;
}

/* =====================================================
   Why Choose Us / Features
   ===================================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all var(--transition-base);
}

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

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    background: var(--primary-lighter);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--primary);
}

.feature-card h4 {
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 0.9375rem;
    color: var(--text-muted);
}

/* =====================================================
   Process / Roadmap
   ===================================================== */
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.process-card {
    text-align: center;
    padding: 32px 24px;
    position: relative;
}

.process-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--primary-gradient);
    color: #ffffff;
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.process-card h4 {
    margin-bottom: 8px;
}

.process-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.process-card:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 52px;
    right: -12px;
    width: 24px;
    height: 2px;
    background: var(--border-color);
}

/* =====================================================
   Stats Section
   ===================================================== */
.stats-section {
    background: var(--bg-dark);
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-value {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

.stats-section .stat-value {
    color: #ffffff;
    -webkit-text-fill-color: #ffffff;
}

.stat-label {
    font-size: 0.9375rem;
    color: var(--text-muted);
}

.stats-section .stat-label {
    color: rgba(255, 255, 255, 0.6);
}

/* =====================================================
   About / Company Section
   ===================================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image-main {
    aspect-ratio: 4/3;
    background: var(--primary-lighter);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    overflow: hidden;
}

.about-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.about-image-float {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-lg);
}

.about-image-float .stat-value {
    font-size: 2rem;
    margin-bottom: 4px;
}

.about-image-float .stat-label {
    font-size: 0.875rem;
}

.about-content h2 {
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 16px;
}

.about-content .btn {
    margin-top: 16px;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.value-item {
    display: flex;
    gap: 12px;
}

.value-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.value-icon svg {
    width: 100%;
    height: 100%;
    fill: var(--primary);
}

.value-item span {
    font-weight: 500;
    color: var(--text-primary);
}

/* =====================================================
   CTA Section
   ===================================================== */
.cta-section {
    background: var(--primary-gradient);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: -10%;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    color: #ffffff;
    margin-bottom: 16px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.125rem;
    margin-bottom: 32px;
}

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

/* =====================================================
   Client Showcase
   ===================================================== */
.client-showcase {
    text-align: center;
}

.client-logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.client-logo-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px 40px;
    transition: all var(--transition-base);
}

.client-logo-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.client-logo-item img {
    height: 40px;
    width: auto;
}

.client-text {
    margin-top: 16px;
    font-size: 0.9375rem;
    color: var(--text-muted);
}

/* Clients Showcase */
.clients-showcase {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.client-logo-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px 48px;
    text-align: center;
    transition: all var(--transition-base);
}

.client-logo-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.client-logo-svg {
    margin-bottom: 16px;
}

.client-logo-svg svg {
    width: 160px;
    height: 50px;
}

.client-name {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.client-location {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.clients-tagline {
    text-align: center;
    margin-top: 32px;
    color: var(--text-muted);
    font-style: italic;
}

/* =====================================================
   Page Header
   ===================================================== */
.page-header {
    background: var(--bg-dark);
    padding: 160px 0 80px;
    text-align: center;
}

.page-header h1 {
    color: #ffffff;
    margin-bottom: 16px;
}

.page-header .lead {
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

.page-header .section-label {
    color: var(--primary-light);
}

.page-header .section-label::before {
    background: var(--primary-light);
}

/* Breadcrumb Navigation */
.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.breadcrumb a:hover {
    color: var(--primary-light);
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
}

.breadcrumb-current {
    color: rgba(255, 255, 255, 0.9);
}

/* =====================================================
   Vision / Mission Cards
   ===================================================== */
.vision-mission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.vision-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
}

.vision-card-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background: var(--primary-lighter);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.vision-card-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--primary);
}

.vision-card h3 {
    margin-bottom: 16px;
}

/* Core Values Grid */
.core-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.value-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all var(--transition-base);
}

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

.value-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--primary-lighter);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-card-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--primary);
}

.value-card h4 {
    margin-bottom: 8px;
}

.value-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* =====================================================
   Contact Page
   ===================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.contact-info h2 {
    margin-bottom: 16px;
}

.contact-info > p {
    margin-bottom: 32px;
}

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

.contact-item {
    display: flex;
    gap: 16px;
}

.contact-item-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: var(--primary-lighter);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item-icon svg {
    width: 22px;
    height: 22px;
    fill: var(--primary);
}

.contact-item h4 {
    margin-bottom: 4px;
}

.contact-item p {
    font-size: 0.9375rem;
}

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

.contact-item a:hover {
    text-decoration: underline;
}

/* Contact Form */
.contact-form {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-card);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input.error,
.form-group textarea.error,
.form-group select.error {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.15);
}

.form-group input.success,
.form-group textarea.success {
    border-color: #28a745;
}

.form-error-message {
    color: #dc3545;
    font-size: 0.8125rem;
    margin-top: 6px;
    display: none;
}

.form-group.has-error .form-error-message {
    display: block;
}

/* Map Embed */
.map-container {
    margin-top: 60px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* =====================================================
   Services Page - Detail Sections
   ===================================================== */
.service-category {
    padding: var(--section-padding) 0;
}

.service-category-header {
    margin-bottom: 48px;
}

.service-category-header h2 {
    margin-bottom: 16px;
}

.service-items-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-item-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid var(--border-color);
    transition: all var(--transition-base);
}

.service-item-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.service-item-card .service-icon {
    margin-bottom: 20px;
}

.service-item-card h4 {
    margin-bottom: 8px;
}

.service-item-card p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* =====================================================
   Careers Page
   ===================================================== */
.career-culture {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.career-culture-content h2 {
    margin-bottom: 20px;
}

.career-culture-content p {
    margin-bottom: 16px;
}

.career-culture-image {
    aspect-ratio: 4/3;
    background: var(--primary-lighter);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.875rem;
    overflow: hidden;
}

.career-culture-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.benefit-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all var(--transition-base);
}

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

.benefit-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--primary-lighter);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.benefit-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--primary);
}

.benefit-card h4 {
    margin-bottom: 8px;
}

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

/* Job Listings */
.job-listings {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Regular Job Card - Minimal Tags Style */
.job-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--border-color);
    transition: all var(--transition-base);
}

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

.job-card .job-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.job-card .job-description {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Job Meta Info with Icons */
.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.job-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.job-meta-item svg {
    width: 18px;
    height: 18px;
    fill: var(--primary);
    flex-shrink: 0;
}

/* Skills Tags */
.job-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.skill-tag {
    display: inline-block;
    padding: 6px 14px;
    background: var(--primary-lighter);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 500;
    border-radius: 20px;
    transition: all var(--transition-fast);
}

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

.job-actions {
    display: flex;
    justify-content: flex-end;
}

/* Featured Job Card - Banner Style */
.job-card.featured {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border: none;
    color: white;
    position: relative;
    overflow: hidden;
}

.job-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transform: translate(50%, -50%);
}

.job-card.featured .featured-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.2);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.job-card.featured .featured-badge svg {
    width: 14px;
    height: 14px;
    fill: #fbbf24;
}

.job-card.featured .job-title {
    color: white;
    font-size: 1.5rem;
}

.job-card.featured .job-description {
    color: rgba(255,255,255,0.9);
}

.job-card.featured .job-meta {
    border-bottom-color: rgba(255,255,255,0.2);
}

.job-card.featured .job-meta-item {
    color: rgba(255,255,255,0.9);
}

.job-card.featured .job-meta-item svg {
    fill: rgba(255,255,255,0.9);
}

.job-card.featured .skill-tag {
    background: rgba(255,255,255,0.2);
    color: white;
}

.job-card.featured .skill-tag:hover {
    background: white;
    color: var(--primary);
}

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

.job-card.featured .btn-primary:hover {
    background: var(--primary-lighter);
    transform: translateX(4px);
}

/* Legacy support */
.job-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.job-tag svg {
    width: 16px;
    height: 16px;
    fill: var(--primary);
}

.job-description {
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Job Loading State */
.job-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
    color: var(--text-muted);
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--border-color);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 16px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.job-loading p {
    font-size: 0.95rem;
}

/* Job Empty State */
.job-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.job-empty svg {
    color: var(--primary);
    margin-bottom: 16px;
    opacity: 0.6;
}

.job-empty h3 {
    margin-bottom: 8px;
    color: var(--text-primary);
}

.job-empty p {
    color: var(--text-muted);
    max-width: 400px;
}

/* Application Form Placeholder */
.application-section {
    background: var(--primary-lighter);
    border-radius: var(--radius-lg);
    padding: 60px 40px;
    text-align: center;
    border: 2px dashed var(--primary-light);
}

.application-section h3 {
    margin-bottom: 16px;
}

.application-section p {
    margin-bottom: 24px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* =====================================================
   Privacy Policy
   ===================================================== */
.privacy-content {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-content h2 {
    font-size: 1.5rem;
    margin-top: 40px;
    margin-bottom: 16px;
}

.privacy-content h3 {
    font-size: 1.125rem;
    margin-top: 24px;
    margin-bottom: 12px;
}

.privacy-content p {
    margin-bottom: 16px;
    line-height: 1.8;
}

.privacy-content ul {
    margin-bottom: 16px;
    padding-left: 24px;
}

.privacy-content ul li {
    color: var(--text-secondary);
    margin-bottom: 8px;
    padding-left: 8px;
    position: relative;
    list-style: disc;
}

.privacy-content a {
    color: var(--primary);
}

.privacy-content a:hover {
    text-decoration: underline;
}

/* =====================================================
   Footer
   ===================================================== */
.footer {
    background: var(--bg-dark);
    padding: 80px 0 0;
    color: rgba(255, 255, 255, 0.7);
}

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

.footer-brand .footer-logo {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
}

.footer-brand .footer-logo span {
    color: var(--primary-light);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9375rem;
    margin-bottom: 24px;
}

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

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.social-link svg {
    width: 18px;
    height: 18px;
    fill: #ffffff;
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

.footer h4 {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition-fast);
}

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

.footer-bottom {
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

/* =====================================================
   WhatsApp Floating Button
   ===================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all var(--transition-base);
    cursor: pointer;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: #ffffff;
}

.whatsapp-float .whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--bg-card);
    color: var(--text-primary);
    padding: 10px 16px;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

.whatsapp-float .whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent transparent var(--bg-card);
}

/* =====================================================
   Back to Top Button
   ===================================================== */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    z-index: 998;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.back-to-top svg {
    width: 20px;
    height: 20px;
    fill: var(--text-primary);
    transition: fill var(--transition-base);
}

.back-to-top:hover svg {
    fill: #ffffff;
}

/* =====================================================
   Cookie Consent Banner
   ===================================================== */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    color: rgba(255, 255, 255, 0.9);
    padding: 20px;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform var(--transition-base);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.cookie-consent.visible {
    transform: translateY(0);
}

.cookie-consent-inner {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-consent-text {
    flex: 1;
    min-width: 280px;
}

.cookie-consent-text p {
    font-size: 0.9375rem;
    margin: 0;
    line-height: 1.6;
}

.cookie-consent-text a {
    color: var(--primary-light);
    text-decoration: underline;
}

.cookie-consent-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-consent-buttons .btn {
    padding: 10px 24px;
    font-size: 0.875rem;
}

.cookie-consent-buttons .btn-secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.8);
}

.cookie-consent-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* =====================================================
   Honeypot Spam Protection
   ===================================================== */
.hp-field {
    position: absolute;
    left: -9999px;
    top: -9999px;
    opacity: 0;
    pointer-events: none;
    height: 0;
    overflow: hidden;
}

/* =====================================================
   Utility Classes
   ===================================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 48px; }

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 48px; }

.hidden { display: none; }

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =====================================================
   Skip to Content (Accessibility)
   ===================================================== */
.skip-to-content {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    z-index: 10000;
    transition: top var(--transition-fast);
    text-decoration: none;
    font-weight: 500;
}

.skip-to-content:focus {
    top: 16px;
}

/* =====================================================
   Focus Visible (Accessibility)
   ===================================================== */
:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* =====================================================
   Reduced Motion (Accessibility)
   ===================================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}

/* =====================================================
   Responsive Design
   ===================================================== */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }

    .services-grid,
    .process-grid,
    .stats-grid,
    .core-values-grid,
    .features-grid,
    .benefits-grid,
    .service-items-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid,
    .contact-grid,
    .career-culture {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .process-card::after {
        display: none;
    }
}

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

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

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

    .hero-image {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }

    .hero-float-card {
        display: none;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-card);
        flex-direction: column;
        padding: 24px;
        gap: 0;
        border-top: 1px solid var(--border-color);
        box-shadow: var(--shadow-lg);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 16px 0;
        border-bottom: 1px solid var(--border-color);
    }

    .mobile-menu-btn {
        display: flex;
    }

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

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

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

    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }

    .services-grid,
    .stats-grid,
    .vision-mission-grid,
    .core-values-grid,
    .features-grid,
    .benefits-grid,
    .service-items-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

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

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

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

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

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

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

    .job-card {
        padding: 24px;
    }

    .job-card .job-title {
        font-size: 1.2rem;
    }

    .job-card.featured .job-title {
        font-size: 1.3rem;
    }

    .job-meta {
        gap: 12px;
    }

    .job-meta-item {
        font-size: 0.85rem;
    }

    .job-skills {
        gap: 8px;
    }

    .skill-tag {
        padding: 5px 10px;
        font-size: 0.75rem;
    }

    .job-actions {
        width: 100%;
    }

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

    .whatsapp-float {
        bottom: 16px;
        right: 16px;
        width: 52px;
        height: 52px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }

    .whatsapp-float .whatsapp-tooltip {
        display: none;
    }

    .back-to-top {
        bottom: 80px;
        right: 16px;
        width: 40px;
        height: 40px;
    }

    .partners-logos {
        gap: 1.5rem 2rem;
    }

    .partner-logo img {
        height: 32px;
    }
}

@media (max-width: 768px) {
    .cookie-consent-inner {
        flex-direction: column;
        text-align: center;
    }

    .cookie-consent-buttons {
        width: 100%;
        justify-content: center;
    }
}

/* =====================================================
   Print Styles
   ===================================================== */
@media print {
    .header,
    .footer,
    .whatsapp-float,
    .back-to-top,
    .cookie-consent,
    .theme-toggle {
        display: none !important;
    }

    body {
        background: #ffffff;
        color: #000000;
    }

    a {
        color: #000000;
        text-decoration: underline;
    }

    .container {
        max-width: 100%;
        padding: 0;
    }
}
