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

html {
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: rgb(200 16 46 / .3) #fff0
}

::-webkit-scrollbar {
    width: 6px
}

::-webkit-scrollbar-track {
    background: #fff0
}

::-webkit-scrollbar-thumb {
    background: rgb(200 16 46 / .3);
    border-radius: 3px
}

::-webkit-scrollbar-thumb:hover {
    background: rgb(200 16 46 / .5)
}

:root {
    --primary: #C8102E;
    --primary-dark: #A00D24;
    --primary-light: #E8384F;
    --primary-gradient: linear-gradient(135deg, #C8102E 0%, #A00D24 100%);
    --dark: #0F172A;
    --dark-secondary: #1E293B;
    --gray-900: #1E293B;
    --gray-800: #334155;
    --gray-700: #475569;
    --gray-600: #64748B;
    --gray-500: #94A3B8;
    --gray-400: #CBD5E1;
    --gray-300: #E2E8F0;
    --gray-200: #F1F5F9;
    --gray-100: #F8FAFC;
    --white: #FFFFFF;
    --accent-blue: #0EA5E9;
    --accent-green: #10B981;
    --accent-amber: #F59E0B;
    --accent-purple: #8B5CF6;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    --spacing-4xl: 6rem;
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    --shadow-primary: 0 10px 40px -10px rgba(200, 16, 46, 0.4);
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-card-hover: 0 20px 40px rgba(0, 0, 0, 0.12);
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
    --container-max: 1280px;
    --container-padding: 1.5rem
}

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

body {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-700);
    background-color: var(--white);
    overflow-x: hidden
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem)
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem)
}

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

h4 {
    font-size: 1.25rem
}

p {
    margin-bottom: 1rem
}

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding)
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgb(255 255 255 / .95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgb(0 0 0 / .05);
    transition: all var(--transition-base)
}

header.scrolled {
    box-shadow: var(--shadow-lg)
}

.header-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 1rem var(--container-padding);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem
}

.header-contact {
    display: none;
    align-items: center;
    gap: 1.5rem;
    margin-left: auto;
    margin-right: 1rem
}

.header-contact-item {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .5rem 1rem;
    color: var(--gray-700);
    font-size: .875rem;
    font-weight: 500;
    border-radius: var(--radius-lg);
    transition: all var(--transition-fast)
}

.header-contact-item:hover {
    background: var(--gray-100);
    color: var(--primary)
}

.header-contact-item svg {
    flex-shrink: 0;
    color: var(--primary)
}

.header-contact-item span {
    white-space: nowrap
}

.logo a {
    display: flex;
    align-items: center;
    gap: .75rem
}

.logo img {
    height: 45px;
    width: auto;
    transition: transform var(--transition-fast)
}

.logo:hover img {
    transform: scale(1.05)
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: #fff0;
    border: none;
    cursor: pointer;
    padding: .5rem;
    z-index: 2001;
    border-radius: var(--radius-md);
    transition: background var(--transition-fast)
}

.nav-toggle:hover {
    background: var(--gray-100)
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: all var(--transition-fast)
}

.nav-toggle span:nth-child(1) {
    transform: translateY(-6px)
}

.nav-toggle span:nth-child(3) {
    transform: translateY(6px)
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(0) rotate(45deg)
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-2px) rotate(-45deg)
}

nav {
    position: fixed;
    top: 80px;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: calc(100vh - 80px);
    background: var(--white);
    box-shadow: var(--shadow-2xl);
    transition: right var(--transition-base);
    z-index: 2000;
    overflow-y: auto
}

nav.active {
    right: 0
}

nav ul {
    list-style: none;
    padding: 2rem
}

nav ul li {
    margin-bottom: .5rem
}

nav ul li a {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--gray-700);
    border-radius: var(--radius-lg);
    transition: all var(--transition-fast);
    white-space: nowrap
}

nav ul li a:hover,
nav ul li a.active {
    background: var(--gray-100);
    color: var(--primary)
}

.nav-contact {
    padding: 1.5rem 2rem 2rem;
    border-top: 1px solid var(--gray-200);
    margin-top: 1rem
}

.nav-contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    margin-bottom: .75rem;
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    transition: all var(--transition-fast)
}

.nav-contact-item:hover {
    background: var(--primary);
    color: var(--white)
}

.nav-contact-item svg {
    flex-shrink: 0;
    color: var(--primary);
    transition: color var(--transition-fast)
}

.nav-contact-item:hover svg {
    color: var(--white)
}

.nav-contact-item div {
    display: flex;
    flex-direction: column;
    gap: .125rem
}

.nav-contact-label {
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--gray-300);
    transition: color var(--transition-fast)
}

.nav-contact-item:hover .nav-contact-label {
    color: rgb(255 255 255 / .95)
}

.nav-contact-value {
    font-size: .9375rem;
    font-weight: 600;
    color: var(--dark);
    transition: color var(--transition-fast)
}

.nav-contact-item:hover .nav-contact-value {
    color: var(--white)
}

.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / .5);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all var(--transition-base);
    z-index: 30
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto
}

@media (min-width:1024px) {
    .nav-toggle {
        display: none
    }

    .header-contact {
        display: none
    }

    nav {
        position: static;
        width: auto;
        max-width: none;
        height: auto;
        background: #fff0;
        box-shadow: none;
        overflow: visible;
        z-index: 200
    }

    nav ul {
        display: flex;
        gap: .125rem;
        padding: 0
    }

    nav ul li {
        margin-bottom: 0
    }

    nav ul li a {
        padding: .5rem .75rem;
        font-size: .8125rem;
        font-weight: 500;
        border-radius: var(--radius-full);
        white-space: nowrap
    }

    nav ul li a:hover,
    nav ul li a.active {
        background: var(--primary);
        color: var(--white)
    }

    .nav-contact {
        display: none
    }

    .nav-overlay {
        display: none !important
    }
}

@media (min-width:1280px) {
    .header-contact {
        display: flex
    }

    nav ul {
        gap: .25rem
    }

    nav ul li a {
        padding: .625rem .875rem;
        font-size: .875rem
    }
}

@media (min-width:1370px) {
    nav ul {
        gap: .5rem
    }

    nav ul li a {
        padding: .625rem 1.25rem;
        font-size: .9375rem
    }
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark);
    overflow: hidden;
    padding: 8rem 0 4rem
}

.hero .container {
    position: relative;
    z-index: 2;
    text-align: center
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .5rem 1rem;
    background: rgb(200 16 46 / .15);
    border: 1px solid rgb(200 16 46 / .3);
    border-radius: var(--radius-full);
    color: var(--primary-light);
    font-size: .875rem;
    font-weight: 500;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease forwards
}

.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: var(--radius-full);
    animation: pulse 2s infinite
}

.hero h1 {
    color: var(--white);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero h1 span {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0;
    background-clip: text
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: var(--gray-400);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

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

.hero-mini {
    position: relative;
    padding: 10rem 0 4rem;
    background: var(--dark);
    overflow: hidden;
    min-height: auto
}

.hero-mini::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1
}

.hero-mini .container {
    position: relative;
    z-index: 2;
    text-align: center
}

.hero-mini h1 {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem
}

.hero-mini p {
    color: var(--gray-400);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto
}

.hero-trust-badges {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    width: 100%;
}

.decennial-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    text-align: left;
    max-width: 100%;
    transition: transform var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
}

.decennial-badge:hover {
    transform: translateY(-2px);
    border-color: rgba(200, 16, 46, 0.4);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
}

.decennial-badge-mark {
    background: var(--primary-gradient);
    color: var(--white);
    font-weight: 800;
    font-size: 0.85rem;
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    letter-spacing: 0.05em;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(200, 16, 46, 0.3);
}

.decennial-badge-text {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.decennial-badge-text span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gray-400);
    font-weight: 600;
}

.decennial-badge-text strong {
    font-size: 0.875rem;
    color: var(--white);
    font-weight: 600;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    margin-bottom: 1.5rem;
    font-size: .875rem
}

.breadcrumb a {
    color: var(--gray-500);
    transition: color var(--transition-fast)
}

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

.breadcrumb span {
    color: var(--gray-600)
}

.breadcrumb-separator {
    color: var(--gray-600)
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: 1rem 2rem;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
    white-space: nowrap
}

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 45px -10px rgb(200 16 46 / .5)
}

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

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px)
}

.btn-outline {
    background: #fff0;
    color: var(--white);
    border: 2px solid rgb(255 255 255 / .3)
}

.btn-outline:hover {
    background: var(--white);
    color: var(--dark);
    border-color: var(--white)
}

.btn-lg {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem
}

.btn-sm {
    padding: .625rem 1.25rem;
    font-size: .875rem
}

.btn-icon {
    width: 48px;
    height: 48px;
    padding: 0;
    border-radius: var(--radius-full)
}

section {
    padding: var(--spacing-4xl) 0
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--spacing-3xl)
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .375rem 1rem;
    background: rgb(200 16 46 / .1);
    color: var(--primary);
    font-size: .875rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: .05em
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1rem;
    line-height: 1.2
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.7
}

.section-alt {
    background: var(--gray-100)
}

.section-dark {
    background: var(--dark)
}

.section-dark .section-label {
    background: rgb(255 255 255 / .1);
    color: var(--primary-light)
}

.section-dark .section-title {
    color: var(--white)
}

.section-dark .section-subtitle {
    color: var(--gray-400)
}

.stats {
    background: var(--gray-100);
    padding: var(--spacing-3xl) 0
}

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

.stat-card {
    position: relative;
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: all var(--transition-base);
    overflow: hidden
}

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

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

.stat-card:hover::before {
    transform: scaleX(1)
}

.stat-number {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0;
    background-clip: text;
    line-height: 1;
    margin-bottom: .5rem
}

.stat-label {
    font-size: .9375rem;
    color: var(--gray-600);
    font-weight: 500
}

@media (min-width:768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem
    }

    .stat-card {
        padding: 2.5rem 2rem
    }
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem
}

.service-card {
    position: relative;
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
    transition: all var(--transition-base);
    overflow: hidden
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-gradient);
    transform: scaleY(0);
    transition: transform var(--transition-base)
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card-hover);
    border-color: #fff0
}

.service-card:hover::before {
    transform: scaleY(1)
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: rgb(200 16 46 / .1);
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
    transition: all var(--transition-base)
}

.service-card:hover .service-icon {
    background: var(--primary);
    transform: scale(1.1)
}

.service-card:hover .service-icon svg {
    color: var(--white)
}

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

.service-card p {
    color: var(--gray-600);
    font-size: .9375rem;
    line-height: 1.7;
    margin-bottom: 0
}

.service-card .learn-more {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    margin-top: 1.5rem;
    color: var(--primary);
    font-weight: 600;
    font-size: .9375rem;
    transition: gap var(--transition-fast)
}

.service-card:hover .learn-more {
    gap: .75rem
}

@media (min-width:768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem
    }
}

@media (min-width:1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr)
    }
}

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

.project-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all var(--transition-base);
    cursor: pointer
}

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

.project-image {
    position: relative;
    height: 240px;
    background: linear-gradient(135deg, var(--gray-200) 0%, var(--gray-300) 100%);
    overflow: hidden
}

.project-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgb(0 0 0 / .6) 100%);
    opacity: 0;
    transition: opacity var(--transition-base);
    z-index: 1;
    pointer-events: none
}

.project-card:hover .project-image::before {
    opacity: 1
}

.project-image-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2
}

.project-image-icon {
    font-size: 3rem;
    margin-bottom: .5rem;
    display: block;
    opacity: .5
}

.project-content {
    padding: 1.5rem
}

.project-category {
    display: inline-block;
    padding: .375rem .875rem;
    background: rgb(200 16 46 / .1);
    color: var(--primary);
    font-size: .75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: .75rem;
    text-transform: uppercase;
    letter-spacing: .05em
}

.project-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: .5rem;
    line-height: 1.4
}

.project-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: .8125rem;
    color: var(--gray-500);
    margin-bottom: .75rem
}

.project-meta span {
    display: flex;
    align-items: center;
    gap: .375rem
}

.project-card>p,
.project-card .project-content>p {
    color: var(--gray-600);
    font-size: .9375rem;
    line-height: 1.6;
    margin-bottom: 0
}

@media (min-width:768px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (min-width:1024px) {
    .projects-grid {
        grid-template-columns: repeat(3, 1fr)
    }
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    justify-content: center;
    margin-bottom: 3rem
}

.filter-btn {
    padding: .625rem 1.5rem;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-full);
    font-family: var(--font-primary);
    font-size: .9375rem;
    font-weight: 500;
    color: var(--gray-600);
    cursor: pointer;
    transition: all var(--transition-fast)
}

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

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

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem
}

.value-card {
    display: flex;
    gap: 1.25rem;
    padding: 1rem;
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
    transition: all var(--transition-base)
}

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

.value-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--white);
    box-shadow: var(--shadow-md);
    border-radius: var(--radius-lg);
    font-size: 1.5rem
}

.value-content h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: .5rem
}

.value-content p {
    color: var(--gray-600);
    font-size: .9375rem;
    line-height: 1.6;
    margin-bottom: 0
}

@media (min-width:768px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (min-width:1024px) {
    .values-grid {
        grid-template-columns: repeat(3, 1fr)
    }
}

.contact-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem
}

.contact-info {
    display: grid;
    gap: 1.5rem
}

.contact-card {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
    transition: all var(--transition-base)
}

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

.contact-card-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: rgb(200 16 46 / .1);
    border-radius: var(--radius-lg);
    font-size: 1.375rem
}

.contact-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: .375rem
}

.contact-card p {
    color: var(--gray-600);
    font-size: .9375rem;
    margin-bottom: 0;
    line-height: 1.5
}

.contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card)
}

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

.form-group {
    margin-bottom: 0
}

.form-group label {
    display: block;
    margin-bottom: .5rem;
    font-size: .9375rem;
    font-weight: 600;
    color: var(--dark)
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: .875rem 1rem;
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--dark);
    background: var(--gray-100);
    border: 2px solid #fff0;
    border-radius: var(--radius-lg);
    transition: all var(--transition-fast)
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    background: var(--white);
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgb(200 16 46 / .1)
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-500)
}

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

@media (min-width:768px) {
    .form-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .form-group.full-width {
        grid-column: 1 / -1
    }
}

@media (min-width:1024px) {
    .contact-section {
        grid-template-columns: 1fr 1.5fr;
        gap: 4rem
    }

    .contact-form {
        padding: 2.5rem
    }
}

.cta-section {
    background: var(--dark);
    position: relative;
    overflow: hidden
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 50%, rgb(200 16 46 / .2) 0%, transparent 50%), radial-gradient(ellipse at 70% 50%, rgb(200 16 46 / .15) 0%, transparent 50%)
}

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

.cta-content h2 {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 1rem
}

.cta-content p {
    color: var(--gray-400);
    font-size: 1.125rem;
    margin-bottom: 2rem
}

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

@keyframes footer-border-slide {
    0% {
        background-position: 0% 50%
    }

    50% {
        background-position: 100% 50%
    }

    100% {
        background-position: 0% 50%
    }
}

@keyframes icon-pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgb(200 16 46 / .4)
    }

    50% {
        box-shadow: 0 0 0 6px rgb(200 16 46 / 0)
    }
}

footer {
    background: linear-gradient(160deg, #0B1120 0%, #0F172A 50%, #141E30 100%);
    color: var(--gray-300);
    padding: 4rem 0 0;
    position: relative
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent-amber) 33%, var(--primary-light) 66%, var(--primary) 100%);
    background-size: 300% 100%;
    animation: footer-border-slide 5s ease infinite
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-bottom: 3rem
}

.footer-brand,.footer-column {
    background: rgb(255 255 255 / .03);
    border: 1px solid rgb(255 255 255 / .07);
    border-radius: var(--radius-xl);
    padding: 1.75rem;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px)
}

.footer-brand p {
    color: var(--gray-400);
    font-size: .9375rem;
    line-height: 1.7;
    margin-top: 1rem;
    margin-bottom: 1.5rem
}

.footer-logo {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1)
}

.footer-social {
    display: flex;
    gap: .75rem
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgb(255 255 255 / .08);
    border: 1px solid rgb(255 255 255 / .1);
    border-radius: var(--radius-lg);
    color: var(--gray-300);
    font-size: 1.125rem;
    transition: all 300ms ease
}

.footer-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgb(200 16 46 / .45)
}

.footer-column h3,
.footer-column h4 {
    color: var(--white);
    font-size: 1.0625rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: .625rem
}

.footer-column h3::after,
.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px
}

.footer-links {
    list-style: none
}

.footer-links li {
    margin-bottom: .75rem
}

.footer-links a {
    color: var(--gray-400);
    font-size: .9375rem;
    transition: all 300ms ease;
    position: relative;
    display: inline-block;
    padding-bottom: 1px
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-light);
    transition: width 300ms ease
}

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

.footer-links a:hover::after {
    width: 100%
}

.footer-contact-item {
    display: flex;
    gap: .75rem;
    margin-bottom: 1rem;
    font-size: .9375rem;
    align-items: flex-start
}

.footer-contact-item span:first-child {
    color: var(--primary-light);
    flex-shrink: 0;
}

.footer-bottom {
    padding: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    background: rgb(0 0 0 / .15);
    border-top: 1px solid rgb(255 255 255 / .08);
    z-index: -1;
}

.footer-bottom p {
    font-size: .875rem;
    color: var(--gray-600);
    margin: 0
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center
}

.footer-bottom-links a {
    color: var(--gray-500);
    font-size: .875rem;
    transition: color 300ms ease
}

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

@media (min-width:768px) {
    .footer-main {
        grid-template-columns: repeat(2, 1fr)
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left
    }
}

@media (min-width:1024px) {
    .footer-main {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 3rem
    }
}

.about-intro {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center
}

.about-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem
}

.about-content p {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 1.5rem
}

.about-image {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl)
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: var(--primary);
    border-radius: var(--radius-xl);
    z-index: -1
}

@media (min-width:1024px) {
    .about-intro {
        grid-template-columns: 1fr 1fr;
        gap: 4rem
    }
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gray-300)
}

.timeline-item {
    position: relative;
    padding-left: 60px;
    padding-bottom: 2.5rem
}

.timeline-item:last-child {
    padding-bottom: 0
}

.timeline-marker {
    position: absolute;
    left: 8px;
    top: 0;
    width: 26px;
    height: 26px;
    background: var(--white);
    border: 3px solid var(--primary);
    border-radius: var(--radius-full)
}

.timeline-content {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card)
}

.timeline-year {
    display: inline-block;
    padding: .25rem .75rem;
    background: var(--primary);
    color: var(--white);
    font-size: .875rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: .75rem
}

.timeline-content h3 {
    font-size: 1.125rem;
    margin-bottom: .5rem
}

.timeline-content p {
    color: var(--gray-600);
    font-size: .9375rem;
    margin-bottom: 0
}

@media (min-width:768px) {
    .timeline::before {
        left: 50%;
        transform: translateX(-50%)
    }

    .timeline-item {
        width: 50%;
        padding-left: 0;
        padding-right: 40px
    }

    .timeline-item:nth-child(even) {
        margin-left: 50%;
        padding-left: 40px;
        padding-right: 0
    }

    .timeline-marker {
        left: auto;
        right: -13px
    }

    .timeline-item:nth-child(even) .timeline-marker {
        left: -13px;
        right: auto
    }
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    counter-reset: process
}

.process-card {
    position: relative;
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
    transition: all var(--transition-base);
    counter-increment: process
}

.process-card::before {
    content: counter(process, decimal-leading-zero);
    position: absolute;
    top: -15px;
    left: 2rem;
    width: 40px;
    height: 40px;
    background: var(--primary-gradient);
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full)
}

.process-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px)
}

.process-card h3 {
    font-size: 1.25rem;
    margin-bottom: .75rem;
    padding-top: .5rem
}

.process-card p {
    color: var(--gray-600);
    margin-bottom: 0
}

@media (min-width:768px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (min-width:1024px) {
    .process-grid {
        grid-template-columns: repeat(4, 1fr)
    }
}

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

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

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px)
    }

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px)
    }

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

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: .5;
        transform: scale(1.1)
    }
}

@keyframes float {

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

    50% {
        transform: translateY(-10px)
    }
}

.fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards
}

.fade-in {
    animation: fadeIn 0.6s ease forwards
}

.reveal {
    opacity: 0;
    transition: all 0.8s cubic-bezier(.5, 0, 0, 1)
}

.reveal:nth-child(odd) {
    transform: translateX(-40px);
}

.reveal:nth-child(even) {
    transform: translateX(40px);
}

.reveal.active {
    opacity: 1;
    transform: translateX(0)
}

.service-card:nth-child(1) {
    animation-delay: 0.1s
}

.service-card:nth-child(2) {
    animation-delay: 0.15s
}

.service-card:nth-child(3) {
    animation-delay: 0.2s
}

.service-card:nth-child(4) {
    animation-delay: 0.25s
}

.service-card:nth-child(5) {
    animation-delay: 0.3s
}

.service-card:nth-child(6) {
    animation-delay: 0.35s
}

.project-card:nth-child(1) {
    animation-delay: 0.1s
}

.project-card:nth-child(2) {
    animation-delay: 0.15s
}

.project-card:nth-child(3) {
    animation-delay: 0.2s
}

.project-card:nth-child(4) {
    animation-delay: 0.25s
}

.project-card:nth-child(5) {
    animation-delay: 0.3s
}

.project-card:nth-child(6) {
    animation-delay: 0.35s
}

.stat-card:nth-child(1) {
    animation-delay: 0.1s
}

.stat-card:nth-child(2) {
    animation-delay: 0.15s
}

.stat-card:nth-child(3) {
    animation-delay: 0.2s
}

.stat-card:nth-child(4) {
    animation-delay: 0.25s
}

.text-center {
    text-align: center
}

.text-left {
    text-align: left
}

.text-right {
    text-align: right
}

.text-primary {
    color: var(--primary)
}

.text-dark {
    color: var(--dark)
}

.text-muted {
    color: var(--gray-600)
}

.text-white {
    color: var(--white)
}

.bg-primary {
    background-color: var(--primary)
}

.bg-dark {
    background-color: var(--dark)
}

.bg-light {
    background-color: var(--gray-100)
}

.bg-white {
    background-color: var(--white)
}

.mt-1 {
    margin-top: .5rem
}

.mt-2 {
    margin-top: 1rem
}

.mt-3 {
    margin-top: 1.5rem
}

.mt-4 {
    margin-top: 2rem
}

.mt-5 {
    margin-top: 3rem
}

.mb-1 {
    margin-bottom: .5rem
}

.mb-2 {
    margin-bottom: 1rem
}

.mb-3 {
    margin-bottom: 1.5rem
}

.mb-4 {
    margin-bottom: 2rem
}

.mb-5 {
    margin-bottom: 3rem
}

.py-1 {
    padding-top: .5rem;
    padding-bottom: .5rem
}

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

.py-3 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem
}

.py-4 {
    padding-top: 2rem;
    padding-bottom: 2rem
}

.py-5 {
    padding-top: 3rem;
    padding-bottom: 3rem
}

.d-flex {
    display: flex
}

.flex-wrap {
    flex-wrap: wrap
}

.align-center {
    align-items: center
}

.justify-center {
    justify-content: center
}

.justify-between {
    justify-content: space-between
}

.gap-1 {
    gap: .5rem
}

.gap-2 {
    gap: 1rem
}

.gap-3 {
    gap: 1.5rem
}

.gap-4 {
    gap: 2rem
}

.hidden {
    display: none
}

.visible {
    visibility: visible
}

.invisible {
    visibility: hidden
}

@media (max-width:767px) {
    .hide-mobile {
        display: none !important
    }
}

@media (min-width:768px) {
    .hide-tablet {
        display: none !important
    }
}

@media (min-width:1024px) {
    .hide-desktop {
        display: none !important
    }
}

::-webkit-scrollbar {
    width: 10px
}

::-webkit-scrollbar-track {
    background: var(--gray-100)
}

::-webkit-scrollbar-thumb {
    background: var(--gray-400);
    border-radius: 5px
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gray-500)
}

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

::-moz-selection {
    background: var(--primary);
    color: var(--white)
}

@media print {

    header,
    footer,
    .btn,
    nav {
        display: none !important
    }

    body {
        color: #000;
        background: #fff
    }

    .hero {
        min-height: auto;
        padding: 2rem 0
    }
}

.project-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-base), visibility var(--transition-base)
}

.project-modal.active {
    opacity: 1;
    visibility: visible
}

.project-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(0 0 0 / .8);
    /* backdrop-filter: blur(4px); */
    /* -webkit-backdrop-filter: blur(4px) */
}

.project-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(.9);
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    background: var(--white);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-2xl);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform var(--transition-base)
}

.project-modal.active .project-modal-content {
    transform: translate(-50%, -50%) scale(1)
}

.project-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    z-index: 10;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-lg)
}

.project-modal-close:hover {
    background: var(--primary);
    color: var(--white);
    transform: rotate(90deg)
}

.project-modal-close svg {
    width: 20px;
    height: 20px
}

.project-modal-header {
    padding: 2rem 2rem 1.5rem;
    border-bottom: 1px solid var(--gray-200);
    flex-shrink: 0
}

.project-modal-header .project-category {
    display: inline-block;
    padding: .375rem .875rem;
    background: rgb(200 16 46 / .1);
    color: var(--primary);
    font-size: .75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: .75rem;
    text-transform: uppercase;
    letter-spacing: .05em
}

.project-modal-header h2 {
    font-size: 1.75rem;
    color: var(--dark);
    margin-bottom: .75rem;
    line-height: 1.3
}

.project-modal-header .project-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: .875rem;
    color: var(--gray-500)
}

.project-modal-header .project-meta span {
    display: flex;
    align-items: center;
    gap: .375rem
}

.project-modal-body {
    padding: 2rem;
    overflow-y: auto;
    overflow-x: hidden;
    flex: 1;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--gray-200)
}

.project-modal-body::-webkit-scrollbar {
    width: 8px
}

.project-modal-body::-webkit-scrollbar-track {
    background: var(--gray-200);
    border-radius: var(--radius-full)
}

.project-modal-body::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: var(--radius-full)
}

.project-modal-body::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark)
}

.project-modal-body h3 {
    font-size: 1.125rem;
    color: var(--dark);
    margin-bottom: .75rem;
    margin-top: 1.5rem
}

.project-modal-body h3:first-child {
    margin-top: 0
}

.project-modal-body p {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 1rem
}

.project-modal-body ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem
}

.project-modal-body ul li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: .75rem;
    color: var(--gray-600);
    line-height: 1.6
}

.project-modal-body ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: .5rem;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: var(--radius-full)
}

.project-modal-images {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0
}

.project-modal-image {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: transform var(--transition-fast)
}

.project-modal-image:hover {
    transform: scale(1.05)
}

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

.project-modal-cta {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-200);
    text-align: center
}

body.modal-open {
    overflow: hidden
}

@media (max-width:768px) {
    .project-modal-content {
        width: 95%;
        max-height: 95vh
    }

    .project-modal-header {
        padding: 1.5rem 1.5rem 1rem
    }

    .project-modal-header h2 {
        font-size: 1.375rem
    }

    .project-modal-body {
        padding: 1.5rem
    }

    .project-modal-close {
        top: .75rem;
        right: .75rem
    }
}

.image-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    background: rgb(0 0 0 / .95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-base), visibility var(--transition-base)
}

.image-lightbox.active {
    opacity: 1;
    visibility: visible
}

.image-lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center
}

.image-lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-2xl)
}

.image-lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    z-index: 10;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-lg)
}

.image-lightbox-close:hover {
    background: var(--primary);
    color: var(--white);
    transform: rotate(90deg)
}

.image-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-lg)
}

.image-lightbox-nav:hover {
    background: var(--primary);
    color: var(--white)
}

.image-lightbox-nav.prev {
    left: 2rem
}

.image-lightbox-nav.next {
    right: 2rem
}

@media (max-width:768px) {
    .image-lightbox-close {
        top: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px
    }

    .image-lightbox-nav {
        width: 40px;
        height: 40px
    }

    .image-lightbox-nav.prev {
        left: 1rem
    }

    .image-lightbox-nav.next {
        right: 1rem
    }
}

.partners-section {
    padding: var(--spacing-4xl) 0;
    background: var(--gray-100);
    overflow: hidden
}

.partners-slider {
    margin-top: var(--spacing-3xl);
    position: relative;
    overflow: hidden;
    padding: var(--spacing-xl) 0
}

.partners-track {
    display: flex;
    gap: var(--spacing-3xl);
    animation: scroll 30s linear infinite;
    width: fit-content
}

.partner-logo {
    flex-shrink: 0;
    width: 200px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base)
}

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

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%) opacity(.6);
    transition: filter var(--transition-base)
}

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

@keyframes scroll {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

.partners-slider:hover .partners-track {
    animation-play-state: paused
}

@media (max-width:768px) {
    .partner-logo {
        width: 150px;
        height: 80px;
        padding: var(--spacing-md)
    }

    .partners-track {
        gap: var(--spacing-xl)
    }
}

.location-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--spacing-2xl);
    margin-bottom: var(--spacing-xl);
    box-shadow: var(--shadow-card);
    transition: all var(--transition-base);
    border: 1px solid var(--gray-200)
}

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

.location-info {
    width: 100%
}

.location-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: var(--spacing-lg);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm)
}

.location-title::before {
    content: '';
    width: 4px;
    height: 24px;
    background: var(--primary);
    border-radius: var(--radius-full)
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md)
}

.location-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    padding: var(--spacing-sm) 0
}

.location-item svg {
    flex-shrink: 0;
    margin-top: 2px
}

.location-item span {
    color: var(--gray-700);
    line-height: 1.6
}

.location-item strong {
    color: var(--dark);
    font-weight: 600
}

.location-item a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition-fast)
}

.location-item a:hover {
    color: var(--primary-dark);
    text-decoration: underline
}

@media (max-width:768px) {
    .location-card {
        padding: var(--spacing-lg)
    }

    .location-title {
        font-size: 1.25rem
    }

    .location-item {
        flex-direction: row;
        align-items: flex-start
    }
}

.image-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    background: rgb(0 0 0 / .95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base)
}

.image-lightbox.active {
    opacity: 1;
    visibility: visible
}

.image-lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center
}

.image-lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--radius-lg)
}

.image-lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(255 255 255 / .1);
    border: none;
    border-radius: var(--radius-full);
    color: var(--white);
    cursor: pointer;
    transition: all var(--transition-fast);
    backdrop-filter: blur(10px)
}

.image-lightbox-close:hover {
    background: var(--primary);
    transform: rotate(90deg)
}

.image-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(255 255 255 / .1);
    border: none;
    border-radius: var(--radius-full);
    color: var(--white);
    cursor: pointer;
    transition: all var(--transition-fast);
    backdrop-filter: blur(10px)
}

.image-lightbox-nav:hover {
    background: var(--primary)
}

.image-lightbox-nav.prev {
    left: 2rem
}

.image-lightbox-nav.next {
    right: 2rem
}

.partners-section {
    background: var(--white);
    padding: var(--spacing-3xl) 0;
    overflow: hidden
}

.partners-slider {
    overflow: hidden;
    padding: 2rem 0
}

.partners-track {
    display: flex;
    gap: 3rem;
    animation: scroll 30s linear infinite
}

.partner-logo {
    flex-shrink: 0;
    width: 180px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(100%);
    opacity: .6;
    transition: all var(--transition-fast)
}

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

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain
}

@keyframes scroll {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

.text-center {
    text-align: center
}

.mt-5 {
    margin-top: 3rem
}

.modal-open {
    overflow: hidden
}

.nav-contact-label {
    color: var(--gray-600) !important
}

.nav-contact-item:hover .nav-contact-label {
    color: rgb(255 255 255 / .9) !important
}

footer {
    color: var(--gray-400)
}

footer p {
    color: var(--gray-500)
}

.footer-links a {
    color: var(--gray-400)
}

.footer-social a {
    color: var(--gray-400)
}

.footer-bottom p {
    color: var(--gray-500)
}

@media (max-width:768px) {
    .project-modal-content {
        width: 95%;
        max-height: 95vh
    }

    .project-modal-header {
        padding: 2rem 1.5rem 1rem
    }

    .project-modal-body {
        padding: 0 1.5rem 1.5rem
    }

    .project-modal-images {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr))
    }

    .image-lightbox-nav {
        width: 40px;
        height: 40px
    }

    .image-lightbox-nav.prev {
        left: 1rem
    }

    .image-lightbox-nav.next {
        right: 1rem
    }

    .image-lightbox-close {
        top: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px
    }
}

.hero,
.project-card,
.service-card,
.value-card {
    will-change: transform
}

@media (prefers-reduced-motion:reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important
    }
}

@media print {

    header,
    footer,
    .nav-toggle,
    .hero-buttons,
    .cta-section {
        display: none
    }

    body {
        font-size: 12pt;
        line-height: 1.5
    }

    h1 {
        font-size: 24pt
    }

    h2 {
        font-size: 18pt
    }

    h3 {
        font-size: 14pt
    }
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .trust-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .trust-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

/* Partners Horizontal Slider Ticker */
.partners-slider {
    padding: 1rem 0;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.partners-slider::before,
.partners-slider::after {
    content: "";
    height: 100%;
    position: absolute;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.partners-slider::before {
    left: 0;
    top: 0;
    background: linear-gradient(to right, var(--white) 0%, rgba(255, 255, 255, 0) 100%);
}

.partners-slider::after {
    right: 0;
    top: 0;
    background: linear-gradient(to left, var(--white) 0%, rgba(255, 255, 255, 0) 100%);
}

.partners-track {
    display: flex;
    width: max-content;
    gap: 1.5rem;
    animation: partnersScroll 30s linear infinite;
}

.partners-slider:hover .partners-track {
    animation-play-state: paused;
}

.partners-track .trust-card {
    width: 280px;
    flex-shrink: 0;
    margin: 0;
}

@media (max-width: 768px) {
    .partners-track .trust-card {
        width: 180px;
    }
}

@keyframes partnersScroll {

    0% {
        transform: translateX(0);
    }

    100% {
        /* We scroll by half of the total width (since items are duplicated) */
        transform: translateX(calc(-50% - 0.75rem));
    }
}


.trust-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 1rem 1rem;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    border: 1px solid var(--gray-200);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

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

.trust-logo {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.2rem;
}

.trust-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: all var(--transition-fast);
}

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

.trust-logo.text-logo {
    color: var(--gray-500);
    transition: all var(--transition-fast);
}

.trust-card:hover .trust-logo.text-logo {
    color: var(--primary);
    transform: scale(1.05);
}

.trust-card h4 {
    font-size: 0.875rem;
    color: var(--dark);
    margin-bottom: 0;
    font-weight: 600;
    line-height: 1.3;
}