:root {
    --color-primary: #c18546;
    --color-bg: #f3f3f3;
    --text-color-main: #000000;
    --container-max-width: 1440px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color-main);
    background-color: var(--color-bg);
}

/* Header */
header {
    height: 144px;
    padding: 0 82px;
    display: flex;
    align-items: center;
}

.header-container {
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: bold;
    color: var(--color-primary);
    text-decoration: none;
}

nav {
    display: flex;
    align-items: center;
    gap: 40px;
    justify-content: center;
    flex: 1;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: #333;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0%;
    transition: color 0.3s;
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: flex-end;
}

/* Custom Dropdown */
.custom-dropdown {
    position: relative;
    width: 136px;
    height: 56px;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border: 1px solid #000000;
    background-color: var(--color-bg);
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    height: 56px;
    width: 136px;
}

.dropdown-toggle:hover {
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.dropdown-toggle:hover img {
    filter: invert(58%) sepia(37%) saturate(729%) hue-rotate(351deg) brightness(92%) contrast(88%);
}

.custom-dropdown.active .dropdown-toggle {
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.custom-dropdown.active .dropdown-toggle img {
    filter: invert(58%) sepia(37%) saturate(729%) hue-rotate(351deg) brightness(92%) contrast(88%);
}

/* .dropdown-toggle:hover {
    background: #f9f9f9;
} */

.globe-icon {
    font-size: 18px;
}

.current-lang {
    font-weight: 400;
    font-style: Regular;
    font-size: 20px;
    leading-trim: NONE;
    line-height: 24px;
    letter-spacing: 0%;

}

.arrow {
    font-size: 12px;
    transition: transform 0.3s;
}

.custom-dropdown.active .arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100%);
    left: 0;
    width: 136px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(8px);
    display: none;
    flex-direction: column;
    z-index: 1000;
}

.custom-dropdown.active .dropdown-menu {
    display: flex;
}

.dropdown-item {
    padding: 15px 20px;
    border: 1px solid transparent;
    background: transparent;
    text-align: left;
    cursor: pointer;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0%;
}

.dropdown-item:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.dropdown-item.active {
    color: var(--color-primary);
    font-weight: 500;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    color: #333;
    font-size: 18px;
}

.social-icons a img {
    transition: filter 0.3s ease;
}

.social-icons a:hover img {
    filter: invert(58%) sepia(37%) saturate(729%) hue-rotate(351deg) brightness(92%) contrast(88%);
}

/* Hero Section */
.hero {
    height: 814px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(20, 21, 49, 0.2);
    pointer-events: none;
    z-index: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.hero-title h1 {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 500;
    font-size: 100px;
    line-height: 120px;
    letter-spacing: 0;
    text-align: center;
    margin-bottom: 0;
}

.hero-subtitle {
    position: absolute;
    top: calc(50% + 160px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
}

.hero-subtitle p {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 500;
    font-size: 30px;
    line-height: 36px;
    letter-spacing: 0;
    text-align: center;
}

/* Hero Navigation Arrows */
.hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    background: transparent;
    border: none;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.hero-arrow:hover {
    background: #FFFFFF1A;
    border: 1px solid rgba(255, 255, 255);
    backdrop-filter: blur(8px);
}

.hero-arrow-left {
    left: 40px;
}

.hero-arrow-right {
    right: 40px;
}

/* Hero Progress Bar */
.hero-progress {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.hero-progress-bar {
    display: flex;
    width: 120px;
    height: 2px;
}

.hero-progress-segment {
    flex: 1;
    background: rgba(243, 243, 243, 0.3);
    transition: background 0.3s ease;
}

.hero-progress-segment.active {
    background: var(--color-primary);
}

:is(footer, section) h2 {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 500;
    font-size: 30px;
    line-height: 32px;
    letter-spacing: 0;
    text-transform: uppercase;
}

:is(section, footer) :is(a, p) {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0;
}



section p:not(:last-of-type) {
    margin-bottom: 20px;
}

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

.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 200px 82px;
}

.section-title {
    margin-bottom: 40px;
}

.section-title::after {
    content: '';
    display: block;
    width: 120px;
    height: 1px;
    background: var(--text-color-main);
    margin-top: 20px;
}

.section-content h3 {
    font-family: 'Adamina', serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0;
    margin-bottom: 20px;
}

.section-content h3:last-of-type {
    margin-bottom: 40px;
}

.section-content p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0;
    color: var(--text-color-main);
    margin-bottom: 15px;
}

.image-placeholder {
    width: 100%;
}

/* Central Section */
.central {
    background:
        linear-gradient(rgba(20, 21, 49, 0.7), rgba(20, 21, 49, 0.7)),
        url('../images/mission/image.webp');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.central h2 {
    margin-bottom: 40px;
}

.central h2::after {
    content: '';
    display: block;
    width: 120px;
    height: 1px;
    background: white;
    margin: 20px auto 0;
}

.central p {
    max-width: 844px;
    margin: 0 auto;
}

.central.сta p {
    max-width: 1060px;
}

.cta-button {
    margin-top: 60px;
    display: inline-block;
    padding: 15px 40px;
    border: 1px solid white;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0;
    transition: all 0.3s;
}

.cta-button:hover {
    color: var(--color-primary);
    border-color: var(--color-primary);
}

/* Why Clients Section */
.why-clients {
    padding: 200px 0;
    overflow: hidden;
}

.why-clients .section-title {
    margin-bottom: 100px;
    padding-left: 82px;
}

.why-clients .container {
    padding: 0;
}

.benefits-scroll-container {
    display: flex;
    gap: 20px;
    margin-top: 50px;
    overflow-x: auto;
    overflow-y: hidden;
    cursor: grab;
    user-select: none;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 20px;
    padding-left: 82px;
}

.benefits-scroll-container::-webkit-scrollbar {
    display: none;
}

.benefits-scroll-container.grabbing {
    cursor: grabbing;
}

.benefit-card {
    min-width: 304px;
    width: 304px;
    height: 403px;
    border: 1px solid #d9d9d9;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: border-color 0.3s, background-image 0.3s;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(20, 21, 49, 0) 30.66%, rgba(20, 21, 49, 0.4) 49.55%, rgba(20, 21, 49, 0.8) 97.85%), url('../images/cards/active.webp');
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.benefit-card:hover {
    border-color: transparent;
}

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

.benefit-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

.benefit-number {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 500;
    font-size: 30px;
    line-height: 32px;
    letter-spacing: 0;
    color: #000000;
    transition: color 0.3s ease;
}

.benefit-card:hover .benefit-number {
    color: #ffffff;
}

.benefit-arrow-wrapper {
    position: relative;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.benefit-arrow {
    position: absolute;
    top: 0;
    left: 0;
    width: 32px;
    height: 32px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.benefit-arrow-up {
    opacity: 1;
}

.benefit-arrow-down {
    display: none;
}

.benefit-card:hover .benefit-arrow-up {
    transform: rotate(180deg);
    filter: brightness(0) invert(1);
}

.benefit-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-rows: auto 0fr;
    transition: grid-template-rows 0.3s ease;
}

.benefit-card:hover .benefit-content {
    grid-template-rows: auto 1fr;
}

.benefit-card h4 {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 26px;
    letter-spacing: 0;
    text-align: left;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.benefit-card:hover h4 {
    color: #ffffff;
}

.benefit-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0;
    margin-top: 0;
    color: #ffffff;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, margin-top 0.3s ease;
}

.benefit-card:hover .benefit-subtitle {
    opacity: 1;
    margin-top: 40px;
}

/* Commitment Section */
.commitment .two-column {
    padding-top: 0;
}

.image-placeholder-dark {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #434343 0%, #000000 100%);
    border-radius: 4px;
}


/* Footer */
footer {
    padding: 200px 82px 40px;
    border-top: 1px solid #eee;
}

.footer-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 128px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-contacts {
    padding-top: 18px;
    display: grid;
    gap: 40px;
}

.footer-contacts h2 {
    font-size: 40px;
    line-height: 42px;
}

.footer-contacts h3 {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.contact-items-group {
    display: grid;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    color: #000000;
    cursor: pointer;
}

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

.contact-item:hover img {
    filter: invert(58%) sepia(37%) saturate(729%) hue-rotate(351deg) brightness(92%) contrast(88%);
}

.footer-links {
    padding-top: 28px;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-links a {
    color: #000000;
    text-decoration: none;
}

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

.footer-bottom {
    display: flex;
    justify-content: flex-end;
    gap: 40px;
    margin-top: 100px;
    padding-top: 20px;
}

.footer-bottom p {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0%;
    margin: 0;
}

/* Contacts Page Footer Styles */
.footer-contacts-page .footer-container {
    grid-template-columns: auto 1fr;
    gap: 100px;
}

.footer-contacts-page .footer-links {
    justify-self: end;
}

.footer-contacts-page .footer-links ul {
    display: flex;
    flex-direction: row;
    gap: 40px;
}

.footer-contacts-page .footer-links li {
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 968px) {
    header {
        height: 100px;
        padding: 0 40px;
    }

    .two-column,
    .footer-container {
        grid-template-columns: 1fr;
    }

    .why-clients {
        padding: 100px 0;
    }

    .why-clients .section-title {
        padding-left: 40px;
    }

    .benefits-scroll-container {
        padding-left: 40px;
    }

    nav ul {
        display: none;
    }

    .hero-content h1 {
        font-size: 40px;
    }
}

@media (max-width: 640px) {
    header {
        height: 80px;
        padding: 0 20px;
    }

    .why-clients {
        padding: 60px 0;
    }

    .why-clients .section-title {
        padding-left: 20px;
    }

    .benefits-scroll-container {
        padding-left: 20px;
    }

    .hero-content h1 {
        font-size: 32px;
    }
}

#nordic-precision.two-column {
    padding-top: 100px;
    padding-bottom: 100px;
}

#our-mission.central {
    background:
        linear-gradient(rgba(20, 21, 49, 0.7), rgba(20, 21, 49, 0.7)),
        url('../images/two-column/our-mission.webp');
    background-size: cover;
    background-position: center;
}

#building-projects.central {
    background:
        linear-gradient(rgba(20, 21, 49, 0.7), rgba(20, 21, 49, 0.7)),
        url('../images/mission/building-projects.webp');
    background-size: cover;
    background-position: center;
}

#vision.central {
    background:
        linear-gradient(rgba(20, 21, 49, 0.7), rgba(20, 21, 49, 0.7)),
        url('../images/mission/vision.webp');
    background-size: cover;
    background-position: center;
}

#thinking.central {
    background:
        linear-gradient(rgba(20, 21, 49, 0.7), rgba(20, 21, 49, 0.7)),
        url('../images/mission/vision.webp');
    background-size: cover;
    background-position: center;
}

/* Our Values Section */
.our-values {
    padding: 200px 82px;
}

.values-intro {
    font-family: 'Adamina', serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
}

p.values-intro.big-indent {
    margin-bottom: 100px;
}

.values-content {
    display: grid;
    grid-template-columns: 628px 1fr;
    gap: 20px;
    margin-bottom: 100px;
}

.values-image {
    background: #14153133;
}

.values-image img {
    display: block;
    width: 100%;
    height: auto;
    mix-blend-mode: multiply;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 628px;
}

.value-card {
    background-color: var(--color-bg);
    padding: 20px;
    transition: background-color 0.3s ease;
    height: 150px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto 1fr;
    gap: 10px 20px;
    border-bottom: 1px solid #D9D9D9;
}

.value-card:hover {
    background: linear-gradient(0deg, rgba(20, 21, 49, 0.7), rgba(20, 21, 49, 0.7));
}

.value-card:hover h3,
.value-card:hover p {
    color: #ffffff;
}

.value-card h3 {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 22px;
    letter-spacing: 0;
    text-transform: uppercase;
    margin-bottom: 0;
    grid-column: 1 / -1;
}

.value-card p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0;
    margin: 0;
    align-self: end;
}

.value-arrow {
    width: 24px;
    height: 24px;
    align-self: end;
    justify-self: end;
    filter: invert(58%) sepia(37%) saturate(729%) hue-rotate(351deg) brightness(92%) contrast(88%);
    transition: transform 0.3s ease, filter 0.3s ease;
}

.value-card:hover .value-arrow {
    transform: rotate(180deg);
}

.values-footer {
    font-family: 'Adamina', serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0;
    text-align: center;
    max-width: 844px;
    margin: 0 auto;
}

/* Our Clients & Partners Section */
.clients-partners {
    padding: 200px 0;
}

.clients-partners .container {
    padding: 0 82px;
}

.clients-partners .section-title {
    margin-bottom: 80px;
}

/* Brand Slider */
.brands-slider {
    overflow: hidden;
    width: calc(100% + 164px);
    margin-left: -82px;
}

.brands-track {
    display: flex;
    gap: 60px;
    animation: scroll-brands 30s linear infinite;
    width: max-content;
}

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

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

.brand-logo {
    flex-shrink: 0;
    width: 304px;
    height: 304px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.brand-logo:hover img {
    filter: grayscale(0%);
}

/* Three Column Section */
.three-column-section {
    padding: 100px 82px 200px 82px;
}

.three-column {
    display: grid;
    grid-template-columns: 304px 628px 1fr;
    gap: 20px;
    align-items: end;
    transition: grid-template-columns 0.4s ease;
}

/* Transform layout when a service is selected */
.three-column.service-selected {
    grid-template-columns: 520px 412px 1fr;
}

.column-left {
    width: 304px;
    display: flex;
    flex-direction: column;
    align-self: stretch;
    position: relative;
    transition: width 0.4s ease;
}

.three-column.service-selected .column-left {
    width: 520px;
}

.column-left .section-title {
    margin-bottom: 40px;
}

.column-left h3 {
    font-family: 'Adamina', serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0;
    margin-bottom: 20px;
}

.column-left p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0;
    margin-top: auto;
}

/* Service content blocks - only one visible at a time */
.service-content {
    display: none;
}

.service-content.active {
    display: flex;
    flex-direction: column;
    flex: 1;
    height: 100%;
}

.service-content .section-title {
    flex-shrink: 0;
}

.service-content h3 {
    flex-shrink: 0;
}

.service-content p {
    margin-top: auto;
}

.column-middle {
    width: 628px;
    height: 576px;
    position: relative;
    transition: width 0.4s ease;
}

.three-column.service-selected .column-middle {
    width: 412px;
}

.column-middle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

/* Service images - only one visible at a time */
.service-image {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
}

.service-image.active {
    display: block;
}

.column-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-self: stretch;
    /* Take full height */
    position: relative;
}

/* Service descriptions pinned to top of right column */
.service-description {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0;
    color: #000000;
}

.service-description.active {
    display: block;
}

/* Push services-reset button to bottom (first visible element) */
.column-right .services-reset {
    margin-top: auto;
}

.text-block {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0;
    cursor: pointer;
    transition: color 0.3s ease;
    color: #000000;
    /* Black by default (all active look) */
}

/* When a service is selected, inactive items become gray */
.three-column.service-selected .text-block {
    color: #999999;
}

/* Active item is always black */
.three-column.service-selected .text-block.active {
    color: #000000;
}

.three-column.service-selected .text-block:hover {
    color: var(--color-primary);
}

.three-column .text-block:hover {
    color: var(--color-primary);
}

.services-reset {
    display: block;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 20px;
    text-align: left;
    padding: 0;
    margin-bottom: 20px;
    color: #999999;
    transition: color 0.3s ease;
    line-height: 40px;
}

.services-reset:hover {
    color: var(--color-primary);
}

/* When a service is selected, hide the reset button */
.three-column:not(.service-selected) .services-reset {
    visibility: hidden;
    height: 0;
    margin-bottom: 0;
    overflow: hidden;
}

/* When a service is selected, show the reset button */
.three-column.service-selected .services-reset {
    visibility: visible;
    height: 40px;
    margin-bottom: 20px;
    font-family: Inter;
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    color: #C8C6C6;

}

/* Contact Hero Section */
.contact-hero {
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.contact-hero-container {
    position: relative;
    width: 1440px;
    height: 571px;
    padding: 0 0 60px 60px;
    display: flex;
    align-items: flex-end;
}

.contact-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 1;
    z-index: 0;
}

.contact-hero-text {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-hero-text h1 {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 500;
    font-size: 30px;
    line-height: 32px;
    letter-spacing: 0;
    text-transform: uppercase;
    margin: 0;
    color: #ffffff;
}

.contact-hero-text p {
    font-family: 'Adamina', serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0;
    margin: 0;
    color: #ffffff;
}

/* Contact Content Section */
.contact-content-section {
    padding: 100px 82px 200px 82px;
    background-color: var(--color-bg);
}

.contact-content-grid {
    display: grid;
    grid-template-columns: 412px auto;
    gap: 20px;
    align-items: start;
}

.contact-button-column {
    display: flex;
    align-items: flex-start;
}

.contact-cta-button {
    display: inline-block;
    background: transparent;
    border: 1px solid #000000;
    padding: 15px 30px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0;
    color: #000000;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    text-decoration: none;
}

.contact-cta-button:hover {
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
}

.contact-text-column {
    width: 844px;
}

.contact-text-column p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0;
    margin: 0;
}

.contact-text-column p:first-child {
    font-family: 'Adamina', sans-serif;
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 40px;
}

/* Info Section */
.info-section {
    padding: 0 82px 200px 82px;
    background-color: var(--color-bg);
}

.info-grid {
    display: grid;
    grid-template-columns: 412px 1fr;
    gap: 20px;
    align-items: start;
}

.info-image-column {
    width: 412px;
    height: 412px;
}

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

.info-content-column {
    display: flex;
    flex-direction: column;
}

.info-content-column .section-title {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 500;
    font-size: 30px;
    line-height: 32px;
    letter-spacing: 0;
    text-transform: uppercase;
    margin: 0 0 20px 0;
}

.info-content-column .section-title::after {
    display: none;
}

.info-content-column h3 {
    font-family: 'Adamina', serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0;
    margin: 0 0 40px 0;
}

.info-content-column p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0;
    margin: 0;
}

.photo-contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.photo-contact-item:last-child {
    margin-bottom: 0;
}

.photo-contact-item img {
    width: 24px;
    height: 24px;
}

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

.photo-contact-item:hover img {
    filter: invert(58%) sepia(37%) saturate(729%) hue-rotate(351deg) brightness(92%) contrast(88%);
}

/* Map Section */
.map-section {
    padding: 0 82px 0 82px;
    background-color: var(--color-bg);
}

.map-grid {
    display: grid;
    grid-template-columns: 412px 1fr;
    gap: 20px;
    align-items: start;
}

.map-placeholder-column {
    width: 412px;
    height: 844px;
    display: flex;
    flex-direction: column;
}

.company-info-title {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 500;
    font-size: 30px;
    line-height: 32px;
    letter-spacing: 0;
    text-transform: uppercase;
    margin: 0 0 40px 0;
}

.company-info-title::after {
    content: '';
    display: block;
    width: 120px;
    height: 1px;
    background: var(--text-color-main);
    margin-top: 20px;
}

.company-info-groups {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.company-info-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.company-info-label {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0;
    color: #000000;
}

.company-info-value {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0;
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.company-info-value:hover {
    color: var(--color-primary);
}

.company-social-buttons {
    display: flex;
    gap: 40px;
    margin-top: auto;
}

.company-social-button {
    display: inline-block;
    background: transparent;
    border: 1px solid #000000;
    padding: 15px 30px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0;
    color: #000000;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    text-decoration: none;
}

.company-social-button:hover {
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
}

.map-column {
    width: 844px;
    height: 844px;
}

.map-column iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* Numbers Section */
.numbers-section {
    padding: 100px 82px 0 82px;
    background-color: var(--color-bg);
}

.section-title-centered {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 500;
    font-size: 30px;
    line-height: 32px;
    letter-spacing: 0;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 80px;
}

.section-title-centered::after {
    content: '';
    display: block;
    width: 120px;
    height: 1px;
    background: var(--text-color-main);
    margin: 20px auto 0;
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.number-item {
    padding: 20px 20px 0;
}

.number {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 500;
    font-size: 70px;
    line-height: 72px;
    letter-spacing: 0%;
    text-align: center;
    color: var(--color-primary);
    margin-bottom: 40px;
}

.number-label {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 26px;
    letter-spacing: 0%;
    text-align: center;
    color: var(--text-color-main);
    padding: 0 20px;
}