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

:root {
    --primary-red: #1e3a8a;
    --primary-dark: #1a1a1a;
    --text-dark: #2d2d2d;
    --text-light: #666;
    --bg-light: #f5f5f5;
    --white: #ffffff;
    --border-light: #e0e0e0;
    --gradient-red: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%)
}

html {
    font-size: 1rem;
    scroll-behavior: smooth
}

body {
    font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease
}

a:hover {
    opacity: 0.8
}

.container {
    max-width: 87.5rem;
    margin: 0 auto;
    padding: 0 1.25rem
}

@media (max-width:768px) {
    .container {
        padding: 0 0.75rem
    }
}

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

.top-bar {
    background: #2d2d2d;
    padding: 0.625rem 0;
    font-size: 0.875rem
}

.top-bar__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem
}

.top-bar__contact {
    display: flex;
    align-items: center;
    gap: 2rem
}

.top-bar__item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease
}

.top-bar__item svg {
    color: #ff6b35;
    flex-shrink: 0
}

.top-bar__item:hover {
    color: #ff6b35
}

.top-bar__social {
    display: flex;
    align-items: center;
    gap: 0.75rem
}

.top-bar__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: all 0.3s ease;
    text-decoration: none
}

.top-bar__social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px)
}

.top-bar__social-link svg {
    width: 1rem;
    height: 1rem
}

.top-bar__social-link[aria-label="Facebook"] {
    background: #1877f2
}

.top-bar__social-link[aria-label="Facebook"]:hover {
    background: #166fe5
}

.top-bar__social-link[aria-label="Instagram"] {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%)
}

.top-bar__social-link[aria-label="LinkedIn"] {
    background: #0077b5
}

.top-bar__social-link[aria-label="LinkedIn"]:hover {
    background: #006399
}

.top-bar__social-link[aria-label="WhatsApp"] {
    background: #25d366
}

.top-bar__social-link[aria-label="WhatsApp"]:hover {
    background: #20ba5a
}

.header {
    background: var(--white);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 0.125rem 0.625rem rgba(0, 0, 0, 0.05)
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0.1875rem;
    background: var(--primary-red);
    z-index: 1001;
    width: 100%
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
    padding: 1.25rem 0;
    position: relative
}

.header__logo img {
    height: 4rem;
    width: auto
}

.nav {
    margin-left: auto
}

.nav__header {
    display: none
}

.nav__content {
    display: contents
}

.nav__header-logo,
.nav__logo-img {
    display: none
}

.nav__contact {
    display: none
}

.nav__list {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
    justify-content: flex-end
}

.nav__link {
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: 0.0625rem;
    color: var(--text-dark);
    transition: color 0.3s ease, transform 0.2s ease;
    position: relative;
    padding: 0.3125rem 0;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    text-decoration: none;
    display: inline-block
}

.nav__link span {
    display: inline
}

.nav__link button {
    all: unset;
    display: inline;
    cursor: pointer
}

.nav__link button span {
    display: inline
}

.nav__link--dropdown button {
    all: unset;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 0.125rem;
    background: var(--primary-red);
    transition: width 0.3s ease
}

.nav__link:hover {
    color: var(--primary-red);
    opacity: 1
}

.nav__link:hover::after {
    width: 100%
}

.nav__item--dropdown {
    position: relative
}

.nav__link--dropdown {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #f3f4f6;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    border: 0.0625rem solid #e5e7eb;
    position: relative
}

.nav__link--dropdown::after {
    display: none
}

.nav__link--dropdown:hover {
    background: #e5e7eb;
    color: var(--text-dark)
}

.nav__dropdown-icon {
    transition: transform 0.3s ease;
    flex-shrink: 0
}

.nav__item--dropdown:hover .nav__dropdown-icon {
    transform: rotate(90deg)
}

.nav__dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0.75rem;
    background: var(--white);
    border: 1px solid var(--border-light);
    list-style: none;
    min-width: 11rem;
    padding: 0.375rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-0.25rem);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    z-index: 1000
}

.nav__item--dropdown:hover .nav__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

.nav__dropdown-item {
    margin: 0
}

.nav__dropdown-link {
    display: block;
    padding: 0.625rem 1.25rem;
    color: var(--text-dark);
    font-size: 0.875rem;
    font-weight: 400;
    transition: background-color 0.2s ease, color 0.2s ease;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    letter-spacing: 0.01em
}

.nav__dropdown-link:hover {
    background-color: #fafafa;
    color: var(--primary-red);
    opacity: 1
}

.nav__dropdown-link::after {
    display: none
}

.header__social {
    display: flex;
    gap: 0.9375rem;
    align-items: center;
    margin-left: 2.5rem
}

.social-icon {
    color: var(--text-light);
    transition: color 0.3s ease
}

.social-icon:hover {
    color: var(--primary-red);
    opacity: 1
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 0.3125rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.3125rem
}

.menu-toggle span {
    width: 1.5625rem;
    height: 0.125rem;
    background: var(--text-dark);
    transition: all 0.3s ease
}

.hero-section {
    position: relative;
    min-height: 600px;
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 25%, #1e293b 50%, #0f172a 75%, #020617 100%);
    overflow: hidden
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(15, 23, 42, 0.2) 50%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 0;
    pointer-events: none
}

.slider-container {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 1280px;
    height: 100%;
    max-height: 500px;
    z-index: 1;
    background: transparent;
    border-radius: 1rem;
    overflow: visible;
    box-shadow: none
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 1rem;
    overflow: hidden;
    border: none;
    display: block
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    pointer-events: none;
    display: block
}

.slide.active {
    opacity: 1;
    z-index: 1;
    pointer-events: all
}

.slide__content {
    position: absolute;
    z-index: 3;
    text-align: left
}

.slide__content--right-bottom {
    right: 2.5rem;
    bottom: 2.5rem;
    left: auto;
    top: auto;
    z-index: 3
}

.slide__content--left-top {
    left: 2.5rem;
    top: 2.5rem;
    right: auto;
    bottom: auto;
    z-index: 3
}

.slide__content--center {
    left: 50%;
    bottom: 2.5rem;
    transform: translateX(-50%);
    right: auto;
    top: auto;
    z-index: 3;
    text-align: center
}

.slide__content--center .slide__title,
.slide__content--center .slide__subtitle {
    color: #FFD700;
    text-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.9), 0 0.25rem 1rem rgba(0, 0, 0, 0.7)
}

.slide__title {
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 0.5rem;
    text-transform: lowercase;
    text-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.8), 0 0.25rem 1rem rgba(0, 0, 0, 0.6);
    letter-spacing: 0.02em;
    font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, sans-serif
}

.slide__subtitle {
    font-size: clamp(0.875rem, 2vw, 1.25rem);
    font-weight: 400;
    font-style: italic;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.4;
    text-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.8), 0 0.25rem 1rem rgba(0, 0, 0, 0.6);
    letter-spacing: 0.01em;
    font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, sans-serif
}

.slide__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: transparent;
    display: block;
    overflow: hidden
}

.slide__image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    filter: brightness(1.1);
    border-radius: 1rem;
    display: block
}

.slide__image--quality .slide__image-img--quality {
    filter: none !important
}

.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 1.25rem;
    z-index: 10;
    pointer-events: none
}

.slider-btn {
    width: 3.125rem;
    height: 3.125rem;
    border-radius: 50%;
    background: rgba(45, 45, 45, 0.8);
    border: 0.125rem solid rgba(45, 45, 45, 0.9);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    backdrop-filter: blur(10px);
    outline: none
}

.slider-btn:focus-visible {
    outline: 0.125rem solid var(--white);
    outline-offset: 0.25rem
}

.slider-btn:hover {
    background: rgba(45, 45, 45, 1);
    border-color: rgba(45, 45, 45, 1);
    transform: scale(1.1)
}

.slider-btn:active {
    transform: scale(0.95)
}

.slider-dots {
    position: absolute;
    bottom: 1.875rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 10
}

.slider-dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 0.125rem solid rgba(45, 45, 45, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    outline: none
}

.slider-dot:focus-visible {
    outline: 0.125rem solid var(--white);
    outline-offset: 0.125rem
}

.slider-dot.active {
    background: rgba(45, 45, 45, 0.8);
    border-color: rgba(45, 45, 45, 1);
    transform: scale(1.2)
}

.slider-dot:hover {
    background: rgba(45, 45, 45, 0.6)
}

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

    .slide,
    .slider-btn,
    .slider-dot {
        transition: none
    }

    .slider-btn:hover,
    .slider-btn:active,
    .slider-dot.active {
        transform: none
    }

    .clients__grid {
        animation: none
    }
}

.clients {
    padding: 1.75rem 0;
    background: var(--white);
    overflow: hidden
}

.clients .container {
    overflow: hidden
}

.clients__grid {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    animation: scroll-left 60s linear infinite;
    width: max-content
}

.clients__grid:hover {
    animation-play-state: paused
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
    flex-shrink: 0;
    transition: transform 0.3s ease
}

.client-logo:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.05)
}

.client-logo img {
    max-height: 6.25rem;
    width: auto;
    filter: grayscale(100%) contrast(1.1) brightness(0.3);
    opacity: 0.85;
    transition: all 0.3s ease;
    object-fit: contain
}

.client-logo:hover img {
    filter: grayscale(60%) contrast(1.05) brightness(0.7);
    opacity: 0.95
}

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

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

.services {
    padding: 1.875rem 0 3.75rem;
    background: var(--bg-light)
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem
}

.services__grid--split {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.5rem
}

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

.services__right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem
}

.service-card--small {
    grid-column: span 1;
    min-height: 300px;
    max-height: 300px;
    display: flex;
    flex-direction: row
}

.service-card--large {
    grid-column: span 2;
    min-height: 300px;
    max-height: 300px;
    display: flex;
    flex-direction: row
}

.service-card__link {
    display: flex;
    text-decoration: none;
    color: inherit;
    height: 100%;
    flex: 1
}

.service-card--small .service-card__content,
.service-card--large .service-card__content {
    flex: 0 0 33.33%;
    padding: 1.5rem;
    overflow: hidden;
    max-width: 33.33%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.service-card--small .service-card__text,
.service-card--large .service-card__text {
    display: none
}

.service-card__gradient-overlay {
    transition: opacity 0.3s ease
}

.service-card--small .service-card__content h2,
.service-card--large .service-card__content h2 {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    margin: 0 0 12px 0;
    line-height: 1.3
}

.service-card--small .service-card__content p,
.service-card--large .service-card__content p {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    margin: 0;
    line-height: 1.5
}

.service-card--small .service-card__image,
.service-card--large .service-card__image {
    flex: 0 0 66.67%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0
}

.service-card--small .service-card__image img,
.service-card--large .service-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center
}

.service-card--projects .service-card__gallery {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden
}

.service-card--projects .project-gallery-item {
    flex: 1;
    min-height: 150px;
    position: relative
}

.service-card--projects {
    background: transparent;
    border: none;
    min-height: 600px
}

.service-card {
    position: relative;
    border-radius: 0.75rem;
    overflow: hidden;
    min-height: 18.75rem;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer
}

.service-card:hover {
    transform: translateY(-0.3125rem);
    box-shadow: 0 0.9375rem 2.1875rem rgba(0, 0, 0, 0.15)
}

.service-card__content {
    padding: 2.5rem 1.875rem;
    position: relative;
    z-index: 2
}

.service-card__title {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 0.9375rem;
    line-height: 1.3
}

.service-card__text {
    font-size: 0.875rem;
    line-height: 1.6;
    opacity: 0.9
}

.service-card__subtitle {
    font-size: 0.875rem;
    font-weight: 400;
    margin-bottom: 0.625rem;
    opacity: 0.9
}

.service-card__detail {
    font-size: 0.75rem;
    opacity: 0.8;
    font-style: italic
}

.service-card__image {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 50%;
    height: 100%;
    z-index: 1
}

.service-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center
}

.service-card__gallery {
    position: absolute;
    inset: 0;
    z-index: 1
}

.service-card__gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center
}

.service-card--dark {
    background: linear-gradient(135deg, #2d3436 0%, #1e1e1e 100%);
    color: var(--white)
}

.service-card--warning {
    background: linear-gradient(135deg, #f39c12 0%, #d68910 100%);
    color: var(--white);
    grid-row: span 1
}

.service-card--light {
    background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
    color: var(--white)
}

.service-card--dark-catalog {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    color: var(--white)
}

.service-card--blue {
    background: linear-gradient(135deg, #4a69bd 0%, #3c5aa6 100%);
    color: var(--white)
}

.service-card--projects {
    background: var(--white);
    color: var(--text-dark);
    grid-row: span 2;
    min-height: 38.75rem
}

.service-card--projects .service-card__title {
    background: var(--white);
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    display: inline-block;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 0.0625rem 0.1875rem rgba(0, 0, 0, 0.1)
}

.service-card--dark-machine {
    background: linear-gradient(135deg, #2d3e50 0%, #1a252f 100%);
    color: var(--white);
    grid-column: span 2
}

.footer {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: var(--white);
    padding: 3.75rem 0 1.875rem
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem
}

.footer__logo img {
    height: 4rem;
    width: auto;
    margin-bottom: 1.25rem
}

.footer__text {
    font-size: 0.875rem;
    opacity: 0.8;
    line-height: 1.6
}

.footer__title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.25rem
}

.footer__links {
    list-style: none
}

.footer__links li {
    margin-bottom: 0.75rem
}

.footer__links a {
    font-size: 0.875rem;
    opacity: 0.8;
    transition: opacity 0.3s ease
}

.footer__links a:hover {
    opacity: 1
}

.footer__contact {
    list-style: none;
    font-size: 0.875rem;
    opacity: 0.8
}

.footer__contact li {
    margin-bottom: 0.75rem
}

.footer__social {
    display: flex;
    gap: 0.9375rem
}

.footer__social a {
    width: 2.25rem;
    height: 2.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: background 0.3s ease
}

.footer__social a:hover {
    background: var(--primary-red);
    opacity: 1
}

.footer__bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.875rem;
    opacity: 0.7
}

.about-hero {
    position: relative;
    min-height: 18rem;
    background: linear-gradient(135deg, #4a69bd 0%, #3c5aa6 50%, #2d3e50 100%);
    padding: 2.5rem 0;
    display: flex;
    align-items: center;
    overflow: hidden
}

.about-hero__background {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none
}

.about-hero__background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    opacity: 0.3
}

.about-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.6) 0%, rgba(15, 23, 42, 0.8) 100%)
}

.about-hero__overlay::after {
    content: attr(data-title);
    position: absolute;
    inset: 0;
    font-size: 8rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 0.5rem;
    white-space: nowrap;
    overflow: hidden;
    font-family: "Poppins", sans-serif;
    z-index: 2
}

.about-hero__content {
    position: relative;
    z-index: 2;
    text-align: left;
    color: var(--white);
    width: 100%
}

.about-hero__title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2
}

.about-hero__subtitle {
    font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
    font-weight: 400;
    opacity: 0.95;
    line-height: 1.6;
    max-width: 70rem
}

.about-content {
    padding: 3.75rem 0;
    background: var(--bg-light);
    position: relative
}

.about-content__wrapper {
    position: relative;
    max-width: 87.5rem;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center
}

.about-content__image {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 25rem;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.15)
}

.about-content__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center
}

.about-content__box {
    background: var(--white);
    padding: 3.125rem 3.75rem;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.1);
    max-width: 100%;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 95% 100%, 0 100%)
}

.about-content__text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-dark)
}

.about-content__text p {
    margin-bottom: 1.5rem
}

.about-content__text p:last-child {
    margin-bottom: 0
}

.active-areas {
    padding: 3.75rem 0;
    background: var(--white)
}

.active-areas__title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: left
}

.active-areas__content {
    max-width: 87.5rem
}

.active-areas__text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-dark);
    text-align: left;
    max-width: 100%
}

.about-content__heading {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.3
}

.statistics {
    padding: 3.75rem 0;
    background: var(--gradient-red);
    color: var(--white)
}

.statistics__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    text-align: center
}

.statistics__item {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center
}

.statistics__icon {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    color: var(--white);
    opacity: 0.9
}

.statistics__icon svg {
    width: 100%;
    height: 100%
}

.statistics__number {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    color: var(--white)
}

.statistics__label {
    font-size: clamp(0.75rem, 1.2vw, 0.9375rem);
    font-weight: 400;
    opacity: 0.95;
    line-height: 1.4;
    text-align: center
}

.experience {
    padding: 3.75rem 0;
    background: var(--bg-light)
}

.experience__content {
    max-width: 87.5rem;
    margin: 0 auto
}

.experience__content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-align: left
}

.experience__content p:last-child {
    margin-bottom: 0
}

.services-page {
    padding: 3.75rem 0;
    background: var(--bg-light)
}

.services-page__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 100%
}

.services-page .service-card {
    position: relative;
    border-radius: 0.75rem;
    overflow: hidden;
    min-height: 16rem;
    display: flex;
    align-items: center;
    box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease
}

.services-page .service-card:hover {
    transform: translateY(-0.25rem);
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.15)
}

.services-page .service-card__overlay {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 33.33%;
    z-index: 2;
    pointer-events: none
}

.services-page .service-card__content {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 33.33%;
    display: flex;
    align-items: center;
    padding: 2rem;
    z-index: 3
}

.services-page .service-card__title {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin: 0;
    text-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.3)
}

.services-page .service-card__image {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 66.67%;
    z-index: 1
}

.services-page .service-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center
}

.services-page .service-card--kutu-harf .service-card__overlay {
    background: linear-gradient(135deg, #2d3436 0%, #1e1e1e 100%)
}

.services-page .service-card--totem .service-card__overlay {
    background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%)
}

.services-page .service-card--pano .service-card__overlay {
    background: linear-gradient(135deg, #4a69bd 0%, #3c5aa6 100%);
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%)
}

.services-page .service-card--makine .service-card__overlay {
    background: linear-gradient(135deg, #2d3e50 0%, #1a252f 50%, #4a148c 100%)
}

.services-page .service-card--plexi .service-card__overlay {
    background: linear-gradient(135deg, #d4a574 0%, #c49464 100%)
}

.services-page .service-card--stand .service-card__overlay {
    background: linear-gradient(135deg, #6a1b9a 0%, #1a1a1a 100%)
}

.services-page .service-card {
    text-decoration: none;
    color: inherit
}

.service-detail-hero {
    position: relative;
    min-height: 18rem;
    background: linear-gradient(135deg, #4a69bd 0%, #3c5aa6 50%, #2d3e50 100%);
    padding: 2.5rem 0;
    display: flex;
    align-items: center;
    overflow: hidden
}

.service-detail-hero__background {
    position: absolute;
    inset: 0;
    z-index: 0
}

.service-detail-hero__background::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.6) 0%, rgba(15, 23, 42, 0.8) 100%);
    z-index: 1
}

.service-detail-hero__background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    opacity: 0.3;
    position: relative;
    z-index: 0
}

.service-detail-hero__background::after {
    content: attr(data-title);
    position: absolute;
    inset: 0;
    font-size: 8rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 0.5rem;
    white-space: nowrap;
    overflow: hidden;
    font-family: "Poppins", sans-serif;
    z-index: 2
}

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

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem
}

.breadcrumb__link {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9375rem;
    transition: color 0.3s ease;
    text-decoration: none
}

.breadcrumb__link:hover {
    color: var(--white)
}

.breadcrumb__link svg {
    width: 1.25rem;
    height: 1.25rem
}

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

.service-detail-hero__content {
    max-width: 87.5rem
}

.service-detail-hero__title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2
}

.service-detail-hero__description {
    font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    max-width: 70rem
}

.service-products {
    padding: 3.75rem 0;
    background: var(--white)
}

.service-products__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem
}

.service-product-card {
    background: var(--white);
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer
}

.service-product-card:hover {
    transform: translateY(-0.25rem);
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.15)
}

.service-product-card__image {
    width: 100%;
    height: 15rem;
    overflow: hidden;
    background: var(--bg-light)
}

.service-product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.3s ease
}

.service-product-card:hover .service-product-card__image img {
    transform: scale(1.05)
}

.service-product-card__title {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-dark);
    padding: 1rem;
    line-height: 1.5;
    text-align: center;
    margin: 0
}

.projects-page {
    padding: 3.75rem 0;
    background: var(--bg-light)
}

.projects-page__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem
}

.project-item {
    position: relative;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
    min-height: 24rem;
    background: #f5f5f5
}

.project-item:hover {
    transform: translateY(-0.25rem);
    box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.12)
}

.project-item__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden
}

.project-item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.3s ease
}

.project-item:hover .project-item__image img {
    transform: scale(1.05)
}

.project-item__overlay {
    display: none
}

.project-item__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    z-index: 2;
    display: flex;
    flex-direction: column
}

.project-item__title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.5rem;
    line-height: 1.4;
    padding: 0.5rem 0.75rem;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 0.25rem;
    display: inline-block;
    width: fit-content
}

.project-item__description {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    padding: 0.5rem 0.75rem;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 0.25rem;
    display: inline-block;
    width: fit-content
}

.project-detail {
    padding: 3.75rem 0;
    background: var(--white)
}

.project-detail__wrapper {
    display: grid;
    grid-template-columns: 1fr 0.5fr;
    gap: 3rem;
    align-items: start
}

.project-detail__media {
    display: flex;
    flex-direction: column;
    gap: 2.5rem
}

.project-detail__video {
    width: 100%
}

.video-container {
    position: relative;
    width: 100%;
    margin-bottom: 2rem;
    border-radius: 10px;
    overflow: hidden
}

.video-container iframe {
    width: 100%;
    border: none;
    display: block
}

.project-detail__gallery {
    width: 100%
}

.project-detail__gallery-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem
}

.project-detail__gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem
}

.gallery-item {
    position: relative;
    border-radius: 0.5rem;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    transition: transform 0.3s ease;
    background: var(--bg-light)
}

.gallery-item:hover {
    transform: scale(1.05)
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block
}

.project-detail__sidebar {
    position: sticky;
    top: 6rem
}

.project-detail__info {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 0.75rem;
    margin-bottom: 2rem
}

.project-detail__info-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem
}

.project-detail__description {
    margin-bottom: 2rem
}

.project-detail__description p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1rem
}

.project-detail__description p:last-child {
    margin-bottom: 0
}

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

.project-detail__features-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem
}

.project-detail__features-list {
    list-style: none;
    padding: 0;
    margin: 0
}

.project-detail__features-list li {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: var(--text-dark);
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem
}

.project-detail__features-list li::before {
    content: 'âœ“';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: bold
}

.project-detail__cta {
    width: 100%
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit
}

.btn--primary {
    background: var(--gradient-red);
    color: var(--white);
    width: 100%
}

.btn--primary:hover {
    transform: translateY(-0.125rem);
    box-shadow: 0 0.5rem 1rem rgba(139, 21, 56, 0.3)
}

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

.btn svg {
    width: 1.25rem;
    height: 1.25rem
}

.contact-page {
    padding: 4rem 0 5rem;
    background: var(--bg-light)
}

.contact-page__intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem
}

.contact-page__intro-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem
}

.contact-page__intro-text {
    font-size: 1.125rem;
    color: var(--text-gray);
    line-height: 1.7
}

.contact-page__wrapper {
    max-width: 87.5rem;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start
}

.contact-page__intro-text {
    font-size: 0.9375rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem
}

.contact-page__title {
    font-size: clamp(1.375rem, 2vw, 1.75rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.75rem
}

.contact-page__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 2.5rem;
    height: 2px;
    background: var(--gradient-red);
    border-radius: 2px
}

.contact-page__form-subtitle {
    font-size: 0.9375rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.6
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem
}

.contact-info__card {
    background: var(--white);
    border-radius: 0.5rem;
    padding: 1.25rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05)
}

.contact-info__card:hover {
    transform: translateY(-0.125rem);
    box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.1)
}

.contact-info__icon-wrapper {
    flex-shrink: 0
}

.contact-info__icon {
    width: 2.75rem;
    height: 2.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-red);
    border-radius: 0.5rem;
    color: var(--white);
    box-shadow: 0 0.25rem 0.75rem rgba(139, 21, 56, 0.2)
}

.contact-info__icon svg {
    width: 1.5rem;
    height: 1.5rem
}

.contact-info__content {
    flex: 1
}

.contact-info__label {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.375rem
}

.contact-info__text {
    font-size: 0.9375rem;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 0.125rem
}

.contact-info__subtext {
    font-size: 0.8125rem;
    color: var(--text-gray);
    line-height: 1.5
}

.contact-info__link {
    color: var(--primary-red);
    text-decoration: none;
    transition: color 0.3s ease
}

.contact-info__link:hover {
    color: var(--text-dark);
    text-decoration: underline
}

.contact-social {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0
}

.contact-social__title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem
}

.contact-social__links {
    display: flex;
    gap: 0.75rem
}

.contact-social__link {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 0.5rem;
    color: var(--text-dark);
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    text-decoration: none
}

.contact-social__link:hover {
    background: var(--gradient-red);
    color: var(--white);
    border-color: transparent;
    transform: translateY(-0.125rem);
    box-shadow: 0 0.25rem 0.75rem rgba(139, 21, 56, 0.2)
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem
}

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

.contact-form__group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem
}

.contact-form__label {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.25rem
}

.contact-form__label .required {
    color: var(--primary-red);
    font-weight: 700
}

.contact-form__input,
.contact-form__textarea {
    padding: 1rem 1.25rem;
    border: 2px solid #e0e0e0;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    color: var(--text-dark);
    background: var(--white);
    transition: all 0.3s ease;
    width: 100%
}

.contact-form__input::placeholder,
.contact-form__textarea::placeholder {
    color: #999
}

.contact-form__input:focus,
.contact-form__textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(139, 21, 56, 0.1)
}

.contact-form__textarea {
    resize: vertical;
    min-height: 8rem;
    font-family: inherit
}

.contact-form__button {
    padding: 1.125rem 2.5rem;
    background: var(--gradient-red);
    color: var(--white);
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 0.25rem 0.75rem rgba(139, 21, 56, 0.2)
}

.contact-form__button:hover {
    transform: translateY(-0.125rem);
    box-shadow: 0 0.5rem 1.25rem rgba(139, 21, 56, 0.3)
}

.contact-form__button:active {
    transform: translateY(0)
}

.contact-form__button svg {
    transition: transform 0.3s ease
}

.contact-form__button:hover svg {
    transform: translateX(0.25rem)
}

.contact-page__map {
    position: sticky;
    top: 2rem
}

.contact-page__map-text {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem
}

.map-container {
    width: 100%;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1)
}

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

@media (max-width:1200px) {
    .services__grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .service-card--dark-machine {
        grid-column: span 1
    }

    .clients__grid {
        grid-template-columns: repeat(4, 1fr)
    }
}

@media (max-width:1024px) {
    .services__grid--split {
        grid-template-columns: 1fr
    }

    .services__right {
        order: -1
    }

    .service-card--large {
        grid-column: span 2
    }
}

@media (max-width:992px) {
    .top-bar {
        display: none
    }

    .header {
        padding-bottom: 1.25rem
    }

    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 998;
        pointer-events: none
    }

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

    .nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 20rem;
        max-width: 85vw;
        height: 100vh;
        background: #fff;
        padding: 0;
        box-shadow: -0.625rem 0 2rem rgba(0, 0, 0, 0.25);
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        z-index: 999;
        overflow: hidden;
        margin: 0;
        display: flex;
        flex-direction: column
    }

    .nav.active {
        transform: translateX(0)
    }

    .nav__header {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        padding: 1.25rem 1.5rem;
        background: #1e3a8a;
        flex-shrink: 0;
        border-bottom: none
    }

    .nav__header-logo {
        display: flex;
        align-items: center
    }

    .nav__logo-img {
        height: 1.75rem;
        width: auto;
        display: block
    }

    .nav__close {
        display: flex;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.5rem;
        color: #fff;
        align-items: center;
        justify-content: center;
        transition: opacity 0.2s ease;
        outline: none
    }

    .nav__close:hover {
        opacity: 0.7
    }

    .nav__content {
        flex: 1;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
        min-height: 0
    }

    .nav__list {
        flex-direction: column;
        gap: 0;
        justify-content: flex-start;
        padding: 0;
        margin: 0;
        flex: 1
    }

    .nav__item {
        border-bottom: 0.0625rem solid #e5e7eb
    }

    .nav__item:first-child {
        border-top: none
    }

    .nav__item--dropdown {
        position: relative
    }

    .nav__link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1rem 1.5rem;
        width: 100%;
        font-size: 0.9375rem;
        font-weight: 600;
        color: var(--text-dark);
        transition: background-color 0.2s ease, color 0.2s ease;
        text-decoration: none;
        border: none;
        background: none;
        cursor: pointer;
        text-align: left;
        letter-spacing: 0.0625rem;
        font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif
    }

    .nav__link span {
        display: inline
    }

    .nav__link:hover,
    .nav__link:focus {
        background-color: #f9fafb;
        color: var(--text-dark)
    }

    .nav__link::after {
        display: none
    }

    .nav__link[href="index.html"],
    .nav__link[href*="index.html"] {
        color: var(--text-dark) !important;
        background-color: transparent !important
    }

    .nav__link--dropdown {
        padding-right: 1.5rem
    }

    .nav__dropdown-icon {
        transition: transform 0.3s ease;
        color: var(--text-dark);
        flex-shrink: 0;
        width: 0.75rem;
        height: 0.75rem;
        transform: rotate(0deg)
    }

    .nav__item--dropdown.active .nav__dropdown-icon {
        transform: rotate(90deg)
    }

    .nav__dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: transparent;
        margin: 0;
        padding: 0;
        border-radius: 0;
        min-width: auto;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease
    }

    .nav__item--dropdown.active .nav__dropdown {
        max-height: 12rem
    }

    .nav__dropdown-item {
        border-top: none
    }

    .nav__dropdown-link {
        padding: 0.875rem 1.5rem 0.875rem 3rem;
        color: var(--text-light);
        font-size: 0.875rem;
        display: block;
        transition: color 0.2s ease, background-color 0.2s ease;
        text-decoration: none;
        background-color: #f3f4f6;
        margin: 0.25rem 0.5rem;
        border-radius: 0.25rem;
        border: 0.0625rem solid #e5e7eb
    }

    .nav__dropdown-link:hover {
        background-color: #e5e7eb;
        color: var(--text-dark)
    }

    .nav__dropdown-link[href*="hakkimizda"] {
        background-color: #f3f4f6;
        color: var(--text-dark)
    }

    .nav__contact {
        padding: 1.5rem;
        background: #f9fafb;
        margin: 1rem;
        border-radius: 0.5rem;
        flex-shrink: 0
    }

    .nav__contact-title {
        font-size: 0.875rem;
        font-weight: 600;
        color: #1f2937;
        margin: 0 0 0.75rem 0
    }

    .nav__contact-info {
        display: flex;
        flex-direction: column;
        gap: 0.5rem
    }

    .nav__contact-info p {
        font-size: 0.75rem;
        color: #6b7280;
        margin: 0;
        line-height: 1.5;
        word-break: break-all
    }

    .menu-toggle {
        display: flex
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(0.4375rem, 0.4375rem)
    }

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

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(0.4375rem, -0.4375rem)
    }

    .hero-section {
        min-height: 400px;
        height: 400px
    }

    .slider-container {
        width: 100%;
        height: 100%;
        max-height: 400px
    }

    .slide__content--right-bottom {
        right: 1.5rem;
        bottom: 1.5rem
    }

    .slide__image img {
        width: 100%
    }

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

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

    .service-detail-hero {
        min-height: 16rem;
        padding: 2rem 0
    }

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

    .about-hero__overlay::after {
        font-size: 6rem
    }

    .service-detail-hero__background::after {
        font-size: 6rem
    }

    .project-detail__wrapper {
        grid-template-columns: 1fr;
        gap: 2rem
    }

    .project-detail__sidebar {
        position: static
    }

    .project-detail__gallery-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .project-detail {
        padding: 2.5rem 0
    }

    .project-detail__wrapper {
        gap: 2rem
    }
}

@media (max-width:768px) {
    .services__grid {
        grid-template-columns: 1fr
    }

    .services__left {
        grid-template-columns: 1fr
    }

    .service-card--large {
        grid-column: span 1
    }

    .service-card--projects {
        grid-row: span 1;
        min-height: 18.75rem
    }

    .clients__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem
    }

    .hero-section {
        min-height: 350px;
        height: 350px
    }

    .slider-container {
        width: 100%;
        height: 100%;
        max-height: 350px
    }

    .slide__content--right-bottom {
        right: 1rem;
        bottom: 1rem
    }

    .slide__content--left-top {
        left: 1rem;
        top: 1rem
    }

    .slide__content--center {
        left: 50%;
        bottom: 1.5rem;
        transform: translateX(-50%)
    }

    .slide__image img {
        width: 100%
    }

    .slide__title {
        font-size: clamp(1.25rem, 3vw, 2rem);
        font-weight: 700
    }

    .slide__subtitle {
        font-size: clamp(0.75rem, 1.8vw, 1.125rem);
        font-weight: 400;
        font-style: italic
    }

    .slider-btn {
        width: 2.1875rem;
        height: 2.1875rem
    }

    .slider-controls {
        padding: 0 0.625rem
    }

    .slider-dots {
        bottom: 1rem;
        gap: 0.5rem
    }

    .slider-dot {
        width: 0.625rem;
        height: 0.625rem
    }

    .header__social {
        display: none
    }

    .about-hero {
        min-height: 30vh;
        height: 18rem
    }

    .about-content__wrapper {
        grid-template-columns: 1fr;
        gap: 2rem
    }

    .about-content__image {
        min-height: 20rem;
        order: 2
    }

    .about-content__box {
        padding: 2.5rem 2rem;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
        order: 1
    }

    .project-detail {
        padding: 2.5rem 0
    }

    .project-detail__wrapper {
        grid-template-columns: 1fr;
        gap: 1.5rem
    }

    .project-detail__sidebar {
        position: static
    }

    .project-detail__gallery-grid {
        grid-template-columns: 1fr
    }

    .project-detail__info {
        padding: 1.5rem
    }

    .video-container {
        border-radius: 0.5rem
    }

    .active-areas {
        padding: 3rem 0
    }

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

    .experience {
        padding: 3rem 0
    }

    .services-page {
        padding: 2.5rem 0
    }

    .services-page__grid {
        grid-template-columns: 1fr;
        gap: 1.25rem
    }

    .services-page .service-card {
        min-height: 12rem;
        flex-direction: row
    }

    .services-page .service-card__overlay {
        width: 33.33%;
        height: 100%;
        top: 0;
        left: 0;
        bottom: 0;
        z-index: 2;
        opacity: 1
    }

    .services-page .service-card--pano .service-card__overlay {
        clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%)
    }

    .services-page .service-card--plexi .service-card__overlay {
        clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%)
    }

    .services-page .service-card__content {
        width: 33.33%;
        height: 100%;
        padding: 1.25rem;
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        justify-content: center;
        align-items: center;
        z-index: 3
    }

    .services-page .service-card__image {
        width: 66.67%;
        height: 100%;
        opacity: 1;
        top: 0;
        right: 0;
        bottom: 0;
        z-index: 1
    }

    .services-page .service-card__image img {
        opacity: 1;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center
    }

    .services-page .service-card__title {
        font-size: clamp(1rem, 2.5vw, 1.25rem);
        line-height: 1.3;
        white-space: pre-line
    }

    .service-card--small .service-card__content,
    .service-card--large .service-card__content {
        max-width: 100%;
        padding: 1rem 1.25rem
    }

    .service-card--small .service-card__title {
        font-size: clamp(18px, 4vw, 24px) !important;
        max-width: 100%;
        overflow-wrap: break-word;
        word-wrap: break-word
    }

    .service-card--large .service-card__title {
        font-size: clamp(20px, 4.5vw, 28px) !important;
        max-width: 100%;
        overflow-wrap: break-word;
        word-wrap: break-word
    }

    .projects-page {
        padding: 2.5rem 0
    }

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

    .project-item {
        min-height: 16rem
    }

    .project-item__content {
        padding: 1.25rem
    }

    .project-item__title {
        font-size: 1.125rem;
        padding: 0.375rem 0.625rem
    }

    .project-item__description {
        font-size: 0.875rem;
        padding: 0.375rem 0.625rem
    }
}

@media (max-width:480px) {
    .hero-section {
        min-height: 300px;
        height: 300px
    }

    .slider-container {
        width: 100%;
        height: 100%;
        max-height: 300px
    }

    .slide__content--right-bottom {
        right: 0.75rem;
        bottom: 0.75rem
    }

    .slide__content--left-top {
        left: 0.75rem;
        top: 0.75rem
    }

    .slide__content--center {
        left: 50%;
        bottom: 1.5rem;
        transform: translateX(-50%)
    }

    .slide__image img {
        width: 100%
    }

    .slide__title {
        font-size: clamp(1.125rem, 2.8vw, 1.75rem);
        font-weight: 700;
        margin-bottom: 0.375rem
    }

    .slide__subtitle {
        font-size: clamp(0.6875rem, 1.6vw, 0.9375rem);
        font-weight: 400;
        font-style: italic
    }

    .slider-btn {
        width: 2rem;
        height: 2rem
    }

    .slider-controls {
        padding: 0 0.5rem
    }

    .slider-dots {
        bottom: 0.75rem;
        gap: 0.5rem
    }

    .slider-dot {
        width: 0.5rem;
        height: 0.5rem
    }

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

    .footer__grid {
        grid-template-columns: 1fr
    }

    .services-page {
        padding: 2rem 0
    }

    .services-page__grid {
        gap: 1rem
    }

    .services-page .service-card {
        min-height: 10rem
    }

    .services-page .service-card__content {
        padding: 1rem
    }

    .services-page .service-card__title {
        font-size: clamp(0.875rem, 3vw, 1rem) !important;
        line-height: 1.2;
        max-width: 100%;
        overflow-wrap: break-word;
        word-wrap: break-word
    }

    .service-card--small .service-card__content,
    .service-card--large .service-card__content {
        max-width: 100%;
        padding: 0.75rem 1rem
    }

    .service-card--small .service-card__title {
        font-size: clamp(16px, 3.5vw, 20px) !important;
        max-width: 100%;
        overflow-wrap: break-word;
        word-wrap: break-word
    }

    .service-card--large .service-card__title {
        font-size: clamp(18px, 4vw, 22px) !important;
        max-width: 100%;
        overflow-wrap: break-word;
        word-wrap: break-word
    }

    .projects-page {
        padding: 2rem 0
    }

    .projects-page__grid {
        grid-template-columns: 1fr;
        gap: 1.25rem
    }

    .project-item {
        min-height: 14rem
    }

    .project-item__image {
        height: 14rem
    }

    .project-item__content {
        padding: 1rem
    }

    .project-item__title {
        font-size: 1rem;
        padding: 0.375rem 0.5rem;
        margin-bottom: 0.375rem
    }

    .project-item__description {
        font-size: 0.8125rem;
        padding: 0.375rem 0.5rem
    }

    .service-card__title {
        font-size: 24px
    }

    .service-card__text {
        font-size: 13px
    }

    .about-hero {
        min-height: 14rem;
        padding: 1.5rem 0
    }

    .contact-page {
        padding: 1.5rem 0 2rem
    }

    .contact-page__wrapper {
        gap: 2rem
    }

    .contact-page__title {
        font-size: 1.25rem;
        margin-bottom: 0.625rem
    }

    .contact-page__intro-text,
    .contact-page__map-text {
        font-size: 0.875rem;
        margin-bottom: 1.25rem
    }

    .contact-info {
        gap: 0.875rem
    }

    .contact-info__card {
        padding: 1rem;
        gap: 0.875rem
    }

    .contact-info__icon {
        width: 2.5rem;
        height: 2.5rem
    }

    .contact-info__icon svg {
        width: 1.375rem;
        height: 1.375rem
    }

    .contact-info__label {
        font-size: 0.8125rem
    }

    .contact-info__text {
        font-size: 0.8125rem
    }

    .contact-info__subtext {
        font-size: 0.75rem
    }

    .contact-social {
        margin-top: 1.25rem;
        padding-top: 1.25rem
    }

    .contact-social__title {
        font-size: 0.8125rem
    }

    .contact-social__link {
        width: 2.25rem;
        height: 2.25rem
    }

    .map-container iframe {
        height: 250px
    }

    .about-hero__overlay::after {
        font-size: 4rem;
        letter-spacing: 0.25rem
    }

    .service-detail-hero {
        min-height: 14rem;
        padding: 1.5rem 0
    }

    .service-detail-hero__background::after {
        font-size: 4rem;
        letter-spacing: 0.25rem
    }

    .about-hero__title {
        font-size: clamp(1.75rem, 4vw, 2.5rem)
    }

    .service-detail-hero__title {
        font-size: clamp(1.75rem, 4vw, 2.5rem)
    }

    .about-hero__subtitle {
        font-size: clamp(0.875rem, 1.5vw, 1rem)
    }

    .service-detail-hero__description {
        font-size: clamp(0.875rem, 1.5vw, 1rem)
    }

    .about-content {
        padding: 2.5rem 0
    }

    .about-content__wrapper {
        grid-template-columns: 1fr;
        gap: 1.5rem
    }

    .about-content__image {
        min-height: 18rem;
        order: 2
    }

    .about-content__box {
        padding: 2rem 2.5rem;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
        clip-path: none;
        order: 1
    }

    .active-areas {
        padding: 2.5rem 0
    }

    .active-areas__title {
        font-size: clamp(1.5rem, 2.5vw, 2rem);
        margin-bottom: 1.5rem
    }

    .active-areas__text {
        font-size: 0.9375rem
    }

    .statistics {
        padding: 2.5rem 0
    }

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

    .statistics__icon {
        width: 2.5rem;
        height: 2.5rem;
        margin-bottom: 0.5rem
    }

    .statistics__number {
        font-size: clamp(1.5rem, 3vw, 2rem)
    }

    .statistics__label {
        font-size: clamp(0.6875rem, 1.1vw, 0.875rem)
    }

    .experience {
        padding: 2.5rem 0
    }

    .experience__content p {
        font-size: 0.9375rem
    }

    .services-page {
        padding: 2rem 0
    }

    .services-page__grid {
        gap: 1rem
    }

    .services-page .service-card {
        min-height: 12rem
    }

    .services-page .service-card__content {
        padding: 1.25rem
    }

    .services-page .service-card__title {
        font-size: clamp(1.125rem, 2.5vw, 1.5rem)
    }

    .projects-page {
        padding: 2rem 0
    }

    .projects-page__grid {
        grid-template-columns: 1fr;
        gap: 1.25rem
    }

    .project-item {
        min-height: 16rem
    }

    .project-item__content {
        padding: 1.25rem
    }

    .project-item__title {
        font-size: 1.125rem
    }

    .project-item__description {
        font-size: 0.875rem
    }

    .contact-page {
        padding: 2rem 0 3rem
    }

    .contact-page__wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem
    }

    .contact-page__info {
        order: 1
    }

    .contact-page__map {
        order: 2;
        margin-top: 0;
        padding-top: 0
    }

    .contact-page__title {
        font-size: 1.5rem;
        margin-bottom: 0.75rem
    }

    .contact-page__intro-text {
        font-size: 0.9375rem;
        margin-bottom: 1.5rem
    }

    .contact-page__map-text {
        font-size: 0.9375rem;
        margin-bottom: 1.5rem
    }

    .contact-info {
        gap: 1rem;
        margin-bottom: 2rem
    }

    .contact-info__card {
        padding: 1.25rem;
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
        gap: 1rem
    }

    .contact-info__icon {
        width: 2.75rem;
        height: 2.75rem;
        flex-shrink: 0
    }

    .contact-info__icon svg {
        width: 1.5rem;
        height: 1.5rem
    }

    .contact-info__content {
        flex: 1
    }

    .contact-info__label {
        font-size: 0.875rem;
        margin-bottom: 0.25rem
    }

    .contact-info__text {
        font-size: 0.875rem;
        margin-bottom: 0.125rem
    }

    .contact-info__subtext {
        font-size: 0.8125rem
    }

    .contact-social {
        margin-top: 1.5rem;
        padding-top: 1.5rem
    }

    .contact-social__title {
        font-size: 0.875rem;
        margin-bottom: 0.75rem
    }

    .contact-social__links {
        justify-content: flex-start;
        gap: 0.625rem
    }

    .contact-social__link {
        width: 2.5rem;
        height: 2.5rem
    }

    .map-container {
        border-radius: 0.5rem;
        overflow: hidden;
        box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.06)
    }

    .map-container iframe {
        height: 300px;
        width: 100%;
        display: block
    }

    .references-page__grid {
        grid-template-columns: 1fr;
        gap: 1.25rem
    }

    .reference-logo {
        padding: 1.25rem;
        min-height: 7rem
    }

    .reference-logo img {
        max-height: 5rem
    }

    .blog-page__grid {
        grid-template-columns: 1fr;
        gap: 1.25rem
    }

    .blog-card__image {
        height: 10rem
    }

    .simple-video-wrapper {
        border-radius: 0.375rem
    }
}

.references-page {
    padding: 4rem 0 5rem;
    background: var(--bg-light)
}

.references-page__header {
    text-align: center;
    margin-bottom: 4rem
}

.references-page__title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem
}

.references-page__description {
    font-size: 1.125rem;
    color: var(--text-gray);
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto
}

.references-page__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2.5rem;
    align-items: center
}

.reference-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 0.75rem;
    box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 10rem
}

.reference-logo:hover {
    transform: translateY(-0.25rem);
    box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.12)
}

.reference-logo img {
    max-width: 100%;
    max-height: 8rem;
    width: auto;
    height: auto;
    filter: grayscale(100%) contrast(1.3) brightness(0.2);
    opacity: 0.9;
    transition: all 0.3s ease;
    object-fit: contain
}

.reference-logo:hover img {
    filter: grayscale(0%) contrast(1) brightness(1);
    opacity: 1
}

.blog-page {
    padding: 4rem 0 5rem;
    background: var(--bg-light)
}

.blog-page__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem
}

.blog-card {
    background: var(--white);
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease
}

.blog-card:hover {
    transform: translateY(-0.25rem);
    box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.12)
}

.blog-card__link {
    display: block;
    text-decoration: none;
    color: inherit
}

.blog-card__image {
    width: 100%;
    height: 12.5rem;
    overflow: hidden
}

.blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.3s ease
}

.blog-card:hover .blog-card__image img {
    transform: scale(1.05)
}

.blog-card__content {
    padding: 1.5rem
}

.blog-card__meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    color: var(--text-gray)
}

.blog-card__date {
    position: relative
}

.blog-card__date::after {
    content: 'â€¢';
    margin-left: 0.5rem
}

.blog-card__category {
    color: var(--primary-dark-blue);
    font-weight: 600
}

.blog-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    line-height: 1.4
}

.blog-card__excerpt {
    font-size: 0.9375rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem
}

.blog-card__footer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-dark-blue);
    font-weight: 600;
    font-size: 0.875rem
}

.blog-card__read-more {
    transition: transform 0.3s ease
}

.blog-card:hover .blog-card__read-more {
    transform: translateX(0.25rem)
}

.references-section {
    padding: 5rem 0;
    background: #e5e7eb
}

.references-section__header {
    text-align: center;
    margin-bottom: 4rem
}

.references-section__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem
}

.references-section__description {
    font-size: 1.125rem;
    color: #4a4a4a;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto
}

.references-section__features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 4rem
}

.references-feature-card {
    background: #fff;
    border-radius: 0.75rem;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease
}

.references-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12)
}

.references-feature-card__icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem
}

.references-feature-card__icon svg {
    width: 4rem;
    height: 4rem
}

.references-feature-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.75rem
}

.references-feature-card__text {
    font-size: 0.9375rem;
    color: #666;
    line-height: 1.5
}

.references-section__cta {
    background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%);
    border-radius: 1rem;
    padding: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem
}

.references-cta__content {
    flex: 1
}

.references-cta__title {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem
}

.references-cta__description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6
}

.references-cta__buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0
}

.references-cta__button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap
}

.references-cta__button svg {
    width: 1.25rem;
    height: 1.25rem
}

.references-cta__button--outline {
    background: #fff;
    color: #1e3a8a;
    border: 2px solid #1e3a8a
}

.references-cta__button--outline:hover {
    background: #f8f9fa;
    transform: translateY(-2px)
}

.references-cta__button--primary {
    background: #1e3a8a;
    color: #fff;
    border: 2px solid #fff
}

.references-cta__button--primary:hover {
    background: #2563eb;
    transform: translateY(-2px)
}

@media (max-width:992px) {
    .references-section {
        padding: 4rem 0
    }

    .references-section__title {
        font-size: 2rem
    }

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

    .references-section__cta {
        flex-direction: column;
        text-align: center;
        padding: 2.5rem
    }

    .references-cta__buttons {
        width: 100%;
        flex-direction: column
    }

    .references-cta__button {
        width: 100%;
        justify-content: center
    }
}

@media (max-width:768px) {
    .references-section {
        padding: 3rem 0
    }

    .references-section__header {
        margin-bottom: 3rem
    }

    .references-section__title {
        font-size: 1.75rem
    }

    .references-section__description {
        font-size: 1rem
    }

    .references-section__features {
        grid-template-columns: 1fr;
        gap: 1.25rem
    }

    .references-feature-card {
        padding: 2rem 1.5rem
    }

    .references-section__cta {
        padding: 2rem
    }

    .references-cta__title {
        font-size: 1.5rem
    }

    .references-cta__description {
        font-size: 1rem
    }

    .references-page {
        padding: 2.5rem 0 3rem
    }

    .references-page__header {
        margin-bottom: 2.5rem
    }

    .references-page__title {
        font-size: clamp(1.5rem, 4vw, 2rem)
    }

    .references-page__description {
        font-size: 1rem
    }

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

    .reference-logo {
        padding: 1.5rem;
        min-height: 8rem
    }

    .reference-logo img {
        max-height: 6rem
    }

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

    .simple-video-wrapper {
        border-radius: 0.375rem
    }
}

.fixed-actions {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 1rem
}

.fixed-action-btn {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    position: relative
}

.fixed-action-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2)
}

.fixed-action-btn svg {
    width: 1.5rem;
    height: 1.5rem
}

.fixed-action-btn--whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%)
}

.fixed-action-btn--whatsapp:hover {
    background: linear-gradient(135deg, #128c7e 0%, #25d366 100%)
}

.fixed-action-btn--phone {
    background: #dc2626
}

.fixed-action-btn--phone:hover {
    background: #b91c1c
}

.fixed-action-btn--scroll {
    background: #1e3a8a
}

.fixed-action-btn--scroll:hover {
    background: #1e40af
}

@media (max-width:768px) {
    .fixed-actions {
        right: 1rem;
        bottom: 1rem;
        gap: 0.75rem
    }

    .fixed-action-btn {
        width: 3rem;
        height: 3rem
    }

    .fixed-action-btn svg {
        width: 1.25rem;
        height: 1.25rem
    }

    .references-page {
        padding: 2.5rem 0 3rem
    }

    .references-page__header {
        margin-bottom: 2.5rem
    }

    .references-page__title {
        font-size: clamp(1.5rem, 4vw, 2rem)
    }

    .references-page__description {
        font-size: 1rem
    }

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

    .reference-logo {
        padding: 1.5rem;
        min-height: 8rem
    }

    .reference-logo img {
        max-height: 6rem
    }
}

.blog-detail-content {
    padding: 4rem 0 5rem;
    background: var(--bg-light);
    width: 100%;
    overflow-x: hidden
}

.blog-detail__wrapper {
    display: grid;
    grid-template-columns: 1fr 20rem;
    gap: 3rem;
    align-items: start;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box
}

.blog-article {
    background: var(--white);
    border-radius: 1rem;
    padding: 3rem;
    box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box
}

.blog-article__meta {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 0.0625rem solid var(--border-light);
    font-size: 0.875rem;
    color: var(--text-light);
    flex-wrap: wrap
}

.blog-article__date {
    display: flex;
    align-items: center;
    gap: 0.5rem
}

.blog-article__category {
    background: var(--gradient-red);
    color: var(--white);
    padding: 0.375rem 1rem;
    border-radius: 1.5rem;
    font-weight: 600;
    font-size: 0.8125rem
}

.blog-article__author {
    color: var(--text-dark);
    font-weight: 500
}

.blog-article__body {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-dark)
}

.blog-article__intro {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-left: 0.25rem solid var(--primary-red);
    border-radius: 0.5rem
}

.blog-article__body h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 2.5rem 0 1.25rem;
    line-height: 1.3
}

.blog-article__body h2:first-of-type {
    margin-top: 0
}

.blog-article__body h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 2rem 0 1rem;
    line-height: 1.3
}

.blog-article__body p {
    margin-bottom: 1.5rem;
    line-height: 1.8
}

.blog-article__body ul,
.blog-article__body ol {
    margin: 1.5rem 0;
    padding-left: 2rem
}

.blog-article__body li {
    margin-bottom: 0.75rem;
    line-height: 1.7
}

.blog-article__body strong {
    font-weight: 600;
    color: var(--text-dark)
}

.blog-article__video {
    margin: 3rem 0;
    padding: 2rem 0;
    border-top: 0.0625rem solid var(--border-light);
    border-bottom: 0.0625rem solid var(--border-light)
}

.blog-article__video h3 {
    margin-top: 0;
    margin-bottom: 1.5rem
}

.blog-video-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 0.75rem;
    overflow: hidden;
    background: #000;
    box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.15)
}

.blog-video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block
}

.blog-article__gallery {
    margin: 3rem 0;
    padding: 2rem 0;
    border-top: 0.0625rem solid var(--border-light);
    width: 100%;
    overflow: hidden
}

.blog-article__gallery h3 {
    margin-top: 0;
    margin-bottom: 1.5rem
}

.blog-gallery-scroll {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-red) #e5e7eb;
    padding: 0.5rem 0;
    width: 100%;
    max-width: 100%
}

.blog-gallery-scroll::-webkit-scrollbar {
    height: 0.5rem
}

.blog-gallery-scroll::-webkit-scrollbar-track {
    background: #e5e7eb;
    border-radius: 0.25rem
}

.blog-gallery-scroll::-webkit-scrollbar-thumb {
    background: var(--primary-red);
    border-radius: 0.25rem
}

.blog-gallery-scroll::-webkit-scrollbar-thumb:hover {
    background: #1e40af
}

.blog-gallery-item {
    position: relative;
    flex: 0 0 auto;
    width: 18rem;
    min-width: 18rem;
    max-width: 18rem;
    border-radius: 0.5rem;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: transform 0.3s ease;
    background: var(--bg-light)
}

.blog-gallery-item:hover {
    transform: translateY(-0.25rem);
    box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.15)
}

.blog-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    transition: transform 0.3s ease
}

.blog-gallery-item:hover img {
    transform: scale(1.05)
}

.blog-detail__sidebar {
    position: sticky;
    top: 6rem
}

.blog-sidebar__title {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 0.125rem solid var(--primary-red)
}

.blog-sidebar__list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem
}

.blog-sidebar__item {
    display: flex;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 1rem;
    border-radius: 0.5rem;
    background: var(--white);
    box-shadow: 0 0.0625rem 0.25rem rgba(0, 0, 0, 0.06)
}

.blog-sidebar__item:hover {
    transform: translateX(0.25rem);
    box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.1)
}

.blog-sidebar__image {
    width: 6rem;
    height: 6rem;
    border-radius: 0.5rem;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--bg-light)
}

.blog-sidebar__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.3s ease
}

.blog-sidebar__item:hover .blog-sidebar__image img {
    transform: scale(1.05)
}

.blog-sidebar__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.blog-sidebar__item-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    line-height: 1.4;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.blog-sidebar__item:hover .blog-sidebar__item-title {
    color: var(--primary-red)
}

.blog-sidebar__item-date {
    font-size: 0.8125rem;
    color: var(--text-light)
}

@media (max-width:992px) {
    .blog-article {
        padding: 2.5rem
    }

    .blog-gallery-item {
        width: 16rem
    }
}

@media (max-width:768px) {
    .blog-detail-content {
        padding: 2.5rem 0 3rem
    }

    .blog-detail__wrapper {
        gap: 1.5rem
    }

    .blog-article {
        padding: 2rem 1.5rem
    }

    .blog-sidebar__title {
        font-size: 1.25rem;
        margin-bottom: 1.25rem
    }

    .blog-sidebar__list {
        gap: 1rem
    }

    .blog-sidebar__item {
        padding: 0.875rem
    }

    .blog-sidebar__image {
        width: 5rem;
        height: 5rem
    }

    .blog-sidebar__item-title {
        font-size: 0.875rem
    }

    .blog-article__meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem
    }

    .blog-article__intro {
        font-size: 1rem;
        padding: 1.25rem
    }

    .blog-article__body {
        font-size: 1rem
    }

    .blog-article__body h2 {
        font-size: 1.5rem;
        margin: 2rem 0 1rem
    }

    .blog-article__body h3 {
        font-size: 1.25rem;
        margin: 1.5rem 0 0.75rem
    }

    .blog-gallery-item {
        width: 14rem;
        min-width: 14rem;
        max-width: 14rem
    }

    .blog-article__video,
    .blog-article__gallery {
        margin: 2rem 0;
        padding: 1.5rem 0
    }
}

@media (max-width:480px) {
    .blog-detail-content {
        padding: 2rem 0 2.5rem
    }

    .blog-detail__wrapper {
        gap: 1.5rem
    }

    .blog-article {
        padding: 1.5rem 1.25rem;
        border-radius: 0.75rem
    }

    .blog-article__meta {
        font-size: 0.8125rem;
        gap: 0.75rem
    }

    .blog-article__intro {
        font-size: 0.9375rem;
        padding: 1rem
    }

    .blog-article__body {
        font-size: 0.9375rem
    }

    .blog-article__body h2 {
        font-size: 1.375rem
    }

    .blog-article__body h3 {
        font-size: 1.125rem
    }

    .blog-video-container {
        border-radius: 0.5rem
    }

    .blog-sidebar__title {
        font-size: 1.125rem
    }

    .blog-sidebar__item {
        padding: 0.75rem;
        gap: 0.75rem
    }

    .blog-sidebar__image {
        width: 4rem;
        height: 4rem
    }

    .blog-sidebar__item-title {
        font-size: 0.8125rem
    }

    .blog-sidebar__item-date {
        font-size: 0.75rem
    }
}

.slider-container {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 1280px;
    height: 100%;
    max-height: 500px;
    z-index: 1;
    background: transparent;
    border-radius: 1rem;
    overflow: visible;
    box-shadow: none
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 1rem;
    overflow: hidden;
    border: none;
    display: block
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    pointer-events: none
}

.slide.active {
    opacity: 1;
    z-index: 1;
    pointer-events: all
}

.slide__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden
}

.slide__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    filter: brightness(1.1);
    border-radius: 1rem
}

.slide__content {
    position: absolute;
    z-index: 3;
    text-align: left
}

.slide__content--right-bottom {
    right: 2.5rem;
    bottom: 2.5rem;
    left: auto;
    top: auto;
    z-index: 3
}

.slide__content--left-top {
    left: 2.5rem;
    top: 2.5rem;
    right: auto;
    bottom: auto;
    z-index: 3
}

.slide__content--center {
    left: 50%;
    bottom: 2.5rem;
    transform: translateX(-50%);
    right: auto;
    top: auto;
    z-index: 3;
    text-align: center
}

.slide__content--center .slide__title,
.slide__content--center .slide__subtitle {
    color: #FFD700;
    text-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.9), 0 0.25rem 1rem rgba(0, 0, 0, 0.7)
}

.slide__title {
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 0.5rem;
    text-transform: lowercase;
    text-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.8), 0 0.25rem 1rem rgba(0, 0, 0, 0.6);
    letter-spacing: 0.02em;
    font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, sans-serif
}

.slide__subtitle {
    font-size: clamp(0.875rem, 2vw, 1.25rem);
    font-weight: 400;
    font-style: italic;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.4;
    text-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.8), 0 0.25rem 1rem rgba(0, 0, 0, 0.6);
    letter-spacing: 0.01em;
    font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, sans-serif
}

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

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

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

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

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

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

@media (max-width:768px) {
    .slider-container {
        width: 90%;
        height: 65%;
        max-height: 22rem
    }

    .slide__content--right-bottom {
        right: 1rem;
        bottom: 1rem
    }

    .slide__content--left-top {
        left: 1rem;
        top: 1rem
    }

    .slide__content--center {
        left: 50%;
        bottom: 1.5rem;
        transform: translateX(-50%)
    }

    .slide__image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        display: block
    }

    .slide__image img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
        display: block
    }

    .slide__title {
        font-size: clamp(1rem, 2.5vw, 1.5rem);
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 0.375rem
    }

    .slide__subtitle {
        font-size: clamp(0.75rem, 1.8vw, 1rem);
        font-weight: 400;
        font-style: italic;
        line-height: 1.3
    }

    .slider-btn {
        width: 2.1875rem;
        height: 2.1875rem
    }

    .slider-controls {
        padding: 0 0.625rem
    }

    .slider-dots {
        bottom: 1rem;
        gap: 0.5rem
    }

    .slider-dot {
        width: 0.625rem;
        height: 0.625rem
    }
}

@media (max-width:480px) {
    .slider-container {
        width: 92%;
        height: 60%;
        max-height: 18rem
    }

    .slide__content--right-bottom {
        right: 0.75rem;
        bottom: 0.75rem
    }

    .slide__content--left-top {
        left: 0.75rem;
        top: 0.75rem
    }

    .slide__content--center {
        left: 50%;
        bottom: 1.5rem;
        transform: translateX(-50%)
    }

    .slide__image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        display: block
    }

    .slide__image img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
        display: block
    }

    .slide__title {
        font-size: clamp(0.875rem, 2.2vw, 1.25rem);
        font-weight: 700;
        margin-bottom: 0.25rem;
        line-height: 1.2
    }

    .slide__subtitle {
        font-size: clamp(0.625rem, 1.4vw, 0.8125rem);
        font-weight: 400;
        font-style: italic;
        line-height: 1.3
    }

    .slider-btn {
        width: 2rem;
        height: 2rem
    }

    .slider-controls {
        padding: 0 0.5rem
    }

    .slider-dots {
        bottom: 0.75rem;
        gap: 0.5rem
    }

    .slider-dot {
        width: 0.5rem;
        height: 0.5rem
    }
}

@media (max-width:768px) {
    .service-card--small .service-card__title {
        font-size: clamp(22px, 5vw, 28px) !important;
        max-width: 100%;
        overflow-wrap: break-word;
        word-wrap: break-word;
        white-space: normal
    }

    .service-card--large .service-card__title {
        font-size: clamp(24px, 5.5vw, 32px) !important;
        max-width: 100%;
        overflow-wrap: break-word;
        word-wrap: break-word;
        white-space: normal
    }
}

@media (max-width:480px) {
    .service-card--small .service-card__title {
        font-size: clamp(20px, 4.5vw, 24px) !important;
        max-width: 100%;
        overflow-wrap: break-word;
        word-wrap: break-word;
        white-space: normal
    }

    .service-card--large .service-card__title {
        font-size: clamp(22px, 5vw, 28px) !important;
        max-width: 100%;
        overflow-wrap: break-word;
        word-wrap: break-word;
        white-space: normal
    }
}

.slide__image--quality {
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat
}

.slide__image--quality .slide__image-img--quality {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: auto;
    filter: none !important;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    border-radius: 1rem;
    display: block
}

.slide__content--left-top {
    left: 2.5rem !important;
    top: 2.5rem !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
    text-align: left !important
}

.slide__content--left-center {
    left: 2.5rem !important;
    top: 50% !important;
    right: auto !important;
    bottom: auto !important;
    transform: translateY(-50%) !important;
    text-align: left !important
}

.slide__content--left-bottom {
    left: 2.5rem !important;
    bottom: 2.5rem !important;
    right: auto !important;
    top: auto !important;
    transform: none !important;
    text-align: left !important
}

.slide__content--center-top {
    left: 50% !important;
    top: 2.5rem !important;
    right: auto !important;
    bottom: auto !important;
    transform: translateX(-50%) !important;
    text-align: center !important
}

.slide__content--center-center {
    left: 50% !important;
    top: 50% !important;
    right: auto !important;
    bottom: auto !important;
    transform: translate(-50%, -50%) !important;
    text-align: center !important
}

.slide__content--center-bottom {
    left: 50% !important;
    bottom: 2.5rem !important;
    right: auto !important;
    top: auto !important;
    transform: translateX(-50%) !important;
    text-align: center !important
}

.slide__content--right-top {
    right: 2.5rem !important;
    top: 2.5rem !important;
    left: auto !important;
    bottom: auto !important;
    transform: none !important;
    text-align: right !important
}

.slide__content--right-center {
    right: 2.5rem !important;
    top: 50% !important;
    left: auto !important;
    bottom: auto !important;
    transform: translateY(-50%) !important;
    text-align: right !important
}

@media (max-width:768px) {

    .slide__content--left-top,
    .slide__content--left-center,
    .slide__content--left-bottom {
        left: 1rem !important
    }

    .slide__content--right-top,
    .slide__content--right-center,
    .slide__content--right-bottom {
        right: 1rem !important
    }

    .slide__content--center-top,
    .slide__content--center-bottom,
    .slide__content--left-bottom,
    .slide__content--right-bottom {
        bottom: 1rem !important
    }

    .slide__content--center-top,
    .slide__content--left-top,
    .slide__content--right-top {
        top: 1rem !important
    }
}

@media (max-width:480px) {

    .slide__content--left-top,
    .slide__content--left-center,
    .slide__content--left-bottom {
        left: 0.75rem !important
    }

    .slide__content--right-top,
    .slide__content--right-center,
    .slide__content--right-bottom {
        right: 0.75rem !important
    }

    .slide__content--center-top,
    .slide__content--center-bottom,
    .slide__content--left-bottom,
    .slide__content--right-bottom {
        bottom: 0.75rem !important
    }

    .slide__content--center-top,
    .slide__content--left-top,
    .slide__content--right-top {
        top: 0.75rem !important
    }
}

/* Common Page Layout Utilities - Moved from inline styles across multiple pages */
.page-section--detail {
    padding: 60px 0;
    background: #f8fafc
}

.page-wrapper--sidebar {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto
}

.page-article {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08)
}

.page-article__body {
    line-height: 1.8;
    color: #334155
}

.page-article__intro {
    font-size: 18px;
    color: #475569;
    font-weight: 500;
    margin-bottom: 30px;
    padding: 20px;
    background: #f1f5f9;
    border-left: 4px solid var(--primary-red, #0066cc);
    border-radius: 4px
}

.page-article__content {
    font-size: 16px;
    color: #334155
}

.page-article__video {
    margin: 40px 0
}

.page-article__video h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1e293b
}

.page-video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15)
}

.page-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none
}

.page-article__gallery {
    margin: 40px 0
}

.page-article__gallery h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1e293b
}

.page-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px
}

.page-gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    transition: transform 0.3s ease
}

.page-gallery-item:hover {
    transform: scale(1.05)
}

.page-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.page-sidebar {
    position: sticky;
    top: 6rem
}

.page-sidebar__section {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px
}

.page-sidebar__title {
    font-size: 20px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 15px
}

.page-sidebar__content {
    font-size: 15px;
    color: #475569;
    line-height: 1.6
}

.page-cta {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%);
    border-radius: 12px;
    margin-top: 30px
}

.page-cta__title {
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px
}

.page-cta__text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    line-height: 1.6
}

@media (max-width:992px) {
    .page-wrapper--sidebar {
        grid-template-columns: 1fr;
        gap: 30px
    }

    .page-sidebar {
        position: static
    }

    .page-article {
        padding: 30px
    }

    .page-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px
    }
}

@media (max-width:768px) {
    .page-section--detail {
        padding: 40px 0
    }

    .page-article {
        padding: 25px
    }

    .page-article__intro {
        font-size: 16px;
        padding: 15px
    }

    .page-gallery-grid {
        grid-template-columns: 1fr
    }
}

/* Home Page Specific Styles - Moved from home.php inline styles */
.services--performance {
    min-height: 800px;
    contain: layout style paint;
    content-visibility: auto
}

.services__grid--performance {
    min-height: 800px;
    contain: layout style
}

.services__left--performance {
    min-height: 800px;
    contain: layout style
}

.service-card--home-small {
    background: transparent;
    height: 300px;
    max-height: 300px;
    overflow: hidden;
    display: block;
    contain: layout style paint;
    position: relative;
    border-radius: 0.75rem
}

.service-card--home-small .service-card__link {
    display: block;
    height: 100%;
    width: 100%;
    overflow: hidden;
    position: relative;
    text-decoration: none
}

.service-card--home-small .service-card__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0
}

.service-card--home-small .service-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    background: #f5f5f5
}

.service-card--home-small .service-card__content {
    position: absolute;
    right: 0;
    top: 0;
    padding: 1.5rem 2rem;
    z-index: 2;
    max-width: 60%;
    width: auto
}

.service-card--home-large {
    background: transparent;
    height: 300px;
    max-height: 300px;
    overflow: hidden;
    display: block;
    contain: layout style paint;
    position: relative;
    border-radius: 0.75rem
}

.service-card--home-large .service-card__link {
    display: block;
    height: 100%;
    width: 100%;
    overflow: hidden;
    position: relative;
    text-decoration: none
}

.service-card--home-large .service-card__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0
}

.service-card--home-large .service-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    background: #f5f5f5
}

.service-card--home-large .service-card__content {
    position: absolute;
    right: 0;
    top: 0;
    padding: 1.5rem 2rem;
    z-index: 2;
    max-width: 60%;
    width: auto
}

.service-card--projects-home {
    height: 530px;
    max-height: 530px;
    min-height: 530px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    contain: layout style paint
}

.service-card--projects-home .service-card__link {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden
}

.service-card--projects-home .service-card__content {
    flex: 0 0 auto;
    padding: 1.5rem 1.5rem 1rem 1.5rem
}

.service-card--projects-home .service-card__gallery {
    flex: 1 1 auto;
    overflow: hidden;
    min-height: 0;
    display: flex;
    flex-direction: column;
    contain: layout style
}

.service-card--catalog {
    height: 250px;
    max-height: 250px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    contain: layout style paint
}

.service-card--catalog .service-card__link {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden
}

.service-card--catalog .service-card__content {
    flex: 0 0 auto;
    overflow: hidden;
    padding: 1.5rem
}

.service-card--catalog .service-card__subtitle,
.service-card--catalog .service-card__text {
    margin: 0 0 0.25rem 0;
    font-size: 0.875rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.service-card--catalog .service-card__detail {
    margin: 0;
    font-size: 0.75rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.service-card--catalog .service-card__image {
    flex: 1 1 auto;
    aspect-ratio: 3/2;
    overflow: hidden;
    min-height: 0;
    max-height: 100%;
    background-color: #f8fafc;
    contain: layout style
}

.service-card--catalog .service-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.services__right--home {
    min-height: 800px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    contain: layout style
}

.empty-state-clients,
.empty-state-services {
    text-align: center;
    padding: 40px;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center
}

.empty-state-clients {
    font-size: 16px;
    min-height: 200px
}

.empty-state-services {
    grid-column: 1/-1;
    min-height: 400px
}

.empty-state-clients p,
.empty-state-services p {
    margin: 0
}

.project-gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4
}

.project-gallery-item--border {
    border-top: 2px solid rgba(255, 255, 255, 0.1)
}

.project-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.client-logo {
    text-decoration: none;
    cursor: pointer
}

.client-logo img {
    width: 200px;
    height: 120px;
    object-fit: contain
}

/* Services Page Specific Styles - Moved from services.php */
.services-page {
    padding: 60px 0;
    background: var(--bg-light)
}

@media (min-width:1400px) {
    .services-page .container {
        max-width: 1400px;
        margin: 0 auto;
        padding-left: 20px;
        padding-right: 20px
    }
}

@media (min-width:1200px) and (max-width:1399px) {
    .services-page .container {
        max-width: 1200px;
        margin: 0 auto;
        padding-left: 20px;
        padding-right: 20px
    }
}

@media (min-width:993px) and (max-width:1199px) {
    .services-page .container {
        max-width: 100%;
        margin: 0 auto;
        padding-left: 20px;
        padding-right: 20px
    }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 0;
    margin: 0
}

@media (min-width:1200px) {
    .services-grid {
        gap: 20px
    }
}

.services-page .service-card {
    position: relative;
    overflow: hidden !important;
    border-radius: 0.75rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: transparent !important;
    width: 100%;
    will-change: transform;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    margin: 0 !important;
    padding: 0 !important;
    display: block;
    contain: layout style paint;
    height: auto;
    min-height: 300px
}

.services-page .service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15)
}

.services-page .service-card__link {
    display: block !important;
    position: relative;
    width: 100% !important;
    height: 100% !important;
    text-decoration: none;
    overflow: hidden !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0 !important;
    padding: 0 !important
}

.services-page .service-card__link img {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    display: block !important;
    background: transparent !important;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: auto;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    margin: 0 !important;
    padding: 0 !important;
    filter: none !important
}

.services-page .service-card:hover .service-card__link img {
    filter: none !important
}

.service-card__title {
    position: absolute;
    right: 24px;
    top: 24px;
    color: #ffffff;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
    padding: 16px 24px;
    border-radius: 12px;
    max-width: 60%;
    word-wrap: break-word;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease
}

.service-card:hover .service-card__title {
    transform: scale(1.05);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4)
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #64748b
}

.empty-state i {
    font-size: 48px;
    margin-bottom: 20px;
    opacity: 0.5
}

.empty-state h2 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--text-dark)
}

.empty-state p {
    font-size: 16px
}

@media (max-width:992px) {
    .services-page .container {
        padding-left: 20px;
        padding-right: 20px
    }

    .service-card__title {
        font-size: 18px !important;
        right: 20px;
        top: 20px;
        padding: 14px 20px;
        max-width: 65%
    }
}

@media (max-width:768px) {
    .services-page {
        padding: 20px 0
    }

    .services-page .container {
        padding-left: 12px;
        padding-right: 12px
    }

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

    .services-page .service-card {
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        overflow: hidden !important;
        margin: 0 !important;
        padding: 0 !important;
        height: auto !important;
        min-height: 200px !important
    }

    .services-page .service-card__link {
        height: 240px;
        border-radius: 8px;
        overflow: hidden !important;
        margin: 0 !important;
        padding: 0 !important
    }

    .services-page .service-card__link img {
        border-radius: 8px;
        image-rendering: auto;
        object-fit: cover !important;
        width: 100% !important;
        height: 100% !important;
        max-width: 100% !important;
        max-height: 100% !important;
        display: block !important;
        margin: 0 !important;
        padding: 0 !important;
        background: transparent !important;
        filter: none !important
    }

    .service-card__title {
        font-size: 16px !important;
        right: 16px;
        top: 16px;
        padding: 12px 16px;
        max-width: 70%
    }
}

@media (max-width:480px) {
    .services-page {
        padding: 16px 0
    }

    .services-page .container {
        padding-left: 8px;
        padding-right: 8px
    }

    .services-grid {
        gap: 6px
    }

    .services-page .service-card {
        overflow: hidden !important;
        margin: 0 !important;
        padding: 0 !important;
        height: auto !important;
        min-height: 180px !important
    }

    .services-page .service-card__link {
        height: 220px;
        overflow: hidden !important;
        margin: 0 !important;
        padding: 0 !important
    }

    .services-page .service-card__link img {
        width: 100% !important;
        height: 100% !important;
        max-width: 100% !important;
        max-height: 100% !important;
        object-fit: cover !important;
        display: block !important;
        margin: 0 !important;
        padding: 0 !important;
        background: transparent !important;
        filter: none !important
    }

    .service-card__title {
        font-size: 14px !important;
        right: 12px;
        top: 12px;
        padding: 10px 14px;
        border-radius: 8px;
        max-width: 75%
    }
}

/* Services Section Desktop - Remove Side Padding */
@media (min-width:992px) {
    .services .container {
        padding-left: 0 !important;
        padding-right: 0 !important
    }
}

/* Services & Index Page Mobile Optimization - High Quality & Compact */
@media (max-width:768px) {
    .services {
        padding: 1.25rem 0 2.5rem
    }

    .services__grid {
        gap: 0.5rem
    }

    .services__left {
        gap: 0.5rem
    }

    .services__right {
        gap: 0.5rem
    }

    .services-page {
        padding: 1.25rem 0
    }

    .services-page__grid {
        gap: 0.5rem
    }

    .services-page .service-card {
        min-height: auto;
        border-radius: 0.5rem;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
        will-change: transform;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        overflow: hidden !important;
        margin: 0 !important;
        padding: 0 !important
    }

    .services-page .service-card__link {
        height: 240px;
        display: block;
        position: relative;
        overflow: hidden !important;
        border-radius: 0.5rem;
        margin: 0 !important;
        padding: 0 !important
    }

    .services-page .service-card__link img {
        width: 100% !important;
        height: 100% !important;
        max-width: 100% !important;
        max-height: 100% !important;
        image-rendering: -webkit-optimize-contrast;
        image-rendering: auto;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        transform: translateZ(0);
        display: block !important;
        margin: 0 !important;
        padding: 0 !important;
        background: transparent !important
    }

    .service-card {
        border-radius: 0.5rem !important;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08) !important;
        overflow: hidden !important;
        margin: 0 !important;
        padding: 0 !important
    }

    .service-card--small,
    .service-card--large {
        min-height: auto !important;
        border-radius: 0.5rem;
        margin-bottom: 0 !important;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
        overflow: hidden !important;
        margin: 0 !important;
        padding: 0 !important
    }

    .service-card--small .service-card__image,
    .service-card--large .service-card__image {
        background: transparent !important;
        overflow: hidden !important;
        margin: 0 !important;
        padding: 0 !important
    }

    .service-card--small .service-card__image img,
    .service-card--large .service-card__image img {
        width: 100% !important;
        height: 100% !important;
        max-width: 100% !important;
        max-height: 100% !important;
        object-fit: cover !important;
        object-position: center !important;
        image-rendering: -webkit-optimize-contrast;
        image-rendering: auto;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        transform: translateZ(0);
        background: transparent !important;
        display: block !important;
        margin: 0 !important;
        padding: 0 !important
    }

    .service-card--small .service-card__link,
    .service-card--large .service-card__link {
        overflow: hidden !important;
        margin: 0 !important;
        padding: 0 !important
    }

    .service-card--small .service-card__link img,
    .service-card--large .service-card__link img {
        width: 100% !important;
        height: 100% !important;
        max-width: 100% !important;
        max-height: 100% !important;
        object-fit: cover !important;
        object-position: center !important;
        background: transparent !important;
        display: block !important;
        margin: 0 !important;
        padding: 0 !important
    }

    .service-card:hover {
        transform: translateY(-2px) !important
    }
}

@media (max-width:480px) {
    .services {
        padding: 1rem 0 2rem
    }

    .services__grid {
        gap: 0.375rem
    }

    .services__left {
        gap: 0.375rem
    }

    .services__right {
        gap: 0.375rem
    }

    .services-page {
        padding: 1rem 0
    }

    .services-page__grid {
        gap: 0.375rem
    }

    .services-page .service-card {
        overflow: hidden !important;
        margin: 0 !important;
        padding: 0 !important
    }

    .services-page .service-card__link {
        height: 220px;
        overflow: hidden !important;
        margin: 0 !important;
        padding: 0 !important
    }

    .services-page .service-card__link img {
        width: 100% !important;
        height: 100% !important;
        max-width: 100% !important;
        max-height: 100% !important;
        display: block !important;
        margin: 0 !important;
        padding: 0 !important
    }

    .service-card {
        border-radius: 0.5rem !important;
        overflow: hidden !important;
        margin: 0 !important;
        padding: 0 !important
    }

    .service-card:hover {
        transform: translateY(-1px) !important
    }
}