
@font-face {
    font-family: 'TT Hoves Pro';
    src: url('../fonts/TT Hoves Pro Trial Hairline.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TT Hoves Pro';
    src: url('../fonts/TT Hoves Pro Trial Expanded ExtraLight.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TT Hoves Pro';
    src: url('../fonts/TT Hoves Pro Trial Expanded Light.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TT Hoves Pro';
    src: url('../fonts/TT Hoves Pro Trial Expanded DemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TT Hoves Pro';
    src: url('../fonts/TT Hoves Pro Trial Light Italic.ttf') format('truetype');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'TT Hoves Pro';
    src: url('../fonts/TT Hoves Pro Trial Medium Italic.ttf') format('truetype');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'TT Hoves Pro';
    src: url('../fonts/TT Hoves Pro Trial ExtraBold Italic.ttf') format('truetype');
    font-weight: 800;
    font-style: italic;
    font-display: swap;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #007acc;
    --secondary-color: #1e1e1e;
    --dark-bg: #1e1e1e;
    --light-bg: #252526;
    --text-dark: #d4d4d4;
    --text-light: #cccccc;
    --white: #ffffff;
    --transition: all 0.3s ease;
    --accent-yellow: #fcd200;
    --hero-overlay: rgba(0, 0, 0, 0.55);
    --hero-text: #ffffff;
    --scale-factor: 1;
    --fs-body: clamp(0.875rem, 0.8rem + 0.35vw, 0.95rem);
    --fs-small: clamp(0.75rem, 0.7rem + 0.25vw, 0.9rem);
    --fs-h1: clamp(1.8rem, 1.5rem + 1.8vw, 2.8rem);
    --fs-h2: clamp(1.5rem, 1.3rem + 1.4vw, 2.3rem);
    --fs-h3: clamp(1.2rem, 1.1rem + 0.9vw, 1.8rem);
    --fs-h4: clamp(1rem, 0.95rem + 0.6vw, 1.4rem);
    --fs-h5: clamp(0.95rem, 0.9rem + 0.45vw, 1.2rem);
    --fs-h6: clamp(0.85rem, 0.8rem + 0.3vw, 1rem);
}


@media (max-width: 1200px) {
    :root { --scale-factor: 0.9; }
}

@media (max-width: 992px) {
    :root { --scale-factor: 0.8; }
}

@media (max-width: 768px) {
    :root { --scale-factor: 0.7; }
}

@media (max-width: 576px) {
    :root { --scale-factor: 0.6; }
}


@media (max-width: 480px) {
    html, body {
        width: 100vw;
        max-width: 100vw;
        overflow-x: hidden;
        margin: 0;
        padding: 0;
    }
    
    * {
        max-width: 100vw;
        box-sizing: border-box;
    }
    
    .container {
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
    }
    

    section {
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
        position: relative;
    }
    

    .hero-trapezoid,
    .services-trapezoid {
        max-width: 100vw;
        overflow: hidden;
    }
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'TT Hoves Pro', 'Segoe UI', sans-serif;
    font-size: var(--fs-body);
    line-height: 1.3;
    color: var(--text-dark);
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*:before,
*:after {
    box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'TT Hoves Pro', sans-serif;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 0.6rem;
    font-stretch: expanded;
    -webkit-text-stroke: 0.2px currentColor;
    font-variation-settings: 'wght' 900;
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); }
h5 { font-size: var(--fs-h5); }
h6 { font-size: var(--fs-h6); }

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-fluid {
    width: 100%;
    padding: 0 20px;
}


.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary-color);
    color: var(--white);
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background: transparent;
    color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-outline {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    color: var(--primary-color);
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid var(--primary-color);
    transition: var(--transition);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-link {
    color: var(--primary-color);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-link:hover {
    gap: 15px;
}



.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar {
    padding: 20px 0;
}

.navbar-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 28px;
    font-weight: 900;
    color: var(--secondary-color);
    margin: 0;
    font-stretch: ultra-expanded;
    -webkit-text-stroke: 0.3px var(--secondary-color);
    text-shadow: 0.5px 0.5px 0px var(--secondary-color);
    font-variation-settings: 'wght' 900;
}

.logo a {
    display: flex;
    align-items: center;
}

.nav-menu-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-navigation .nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
}

.main-navigation .nav-menu li a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    position: relative;
}

.main-navigation .nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.main-navigation .nav-menu li a:hover::after,
.main-navigation .nav-menu li a.active::after {
    width: 100%;
}

.nav-extras {
    display: flex;
    gap: 20px;
    align-items: center;
}

.search-toggle,
.menu-toggle {
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 20px;
    color: var(--text-dark);
    transition: var(--transition);
}

.search-toggle:hover {
    color: var(--primary-color);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 30px;
    height: 25px;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--text-dark);
    transition: var(--transition);
    border-radius: 3px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}


.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-container {
    max-width: 800px;
    width: 100%;
    padding: 20px;
    position: relative;
}

.search-close {
    position: absolute;
    top: -50px;
    right: 20px;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 30px;
    cursor: pointer;
    transition: var(--transition);
}

.search-close:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

.search-form {
    display: flex;
    gap: 10px;
}

.search-field {
    flex: 1;
    padding: 20px 30px;
    font-size: 18px;
    border: none;
    border-radius: 50px;
    outline: none;
}

.search-submit {
    padding: 20px 40px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 18px;
}

.search-submit:hover {
    background: var(--secondary-color);
}


.mobile-menu {
    position: fixed;
    top: 80px;
    right: -100%;
    width: 300px;
    height: calc(100vh - 80px);
    background: var(--white);
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    z-index: 999;
    transition: var(--transition);
    overflow-y: auto;
    padding: 30px;
}

.mobile-menu.active {
    right: 0;
}

.mobile-nav-menu {
    list-style: none;
}

.mobile-nav-menu li {
    margin-bottom: 20px;
}

.mobile-nav-menu li a {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-dark);
    display: block;
    padding: 10px 0;
}

.mobile-nav-menu li a:hover {
    color: var(--primary-color);
}



.hero-section {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 60px 0 40px;
    margin-top: 80px;
    overflow: hidden;
    width: 100%;
}

body.home .hero-section,
body.page-template-index .hero-section,
body.page-template-index-php .hero-section,
body.front-page .hero-section {
    margin-top: 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--hero-overlay);
    z-index: -1;
}

.hero-trapezoid {
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    height: 100%;
    background: linear-gradient(135deg, rgba(252, 210, 0, 0.15) 0%, rgba(252, 210, 0, 0.05) 100%);
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1;
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
}

.hero-container {
    position: relative;
    width: 100%;
    z-index: 10;
}

.hero-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    max-width: 1100px;
    color: var(--hero-text);
}

.hero-brand {
    display: inline-flex;
    align-items: center;
    padding: 12px 28px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(16, 24, 32, 0.35);
    backdrop-filter: blur(6px);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 14px;
    font-weight: 600;
    color: var(--hero-text);
}

.hero-brand--has-logo {
    padding: 0;
    border: none;
    background: none;
    backdrop-filter: none;
}

.hero-brand--has-logo .hero-brand-logo {
    max-height: 72px;
}

.hero-brand-logo {
    max-height: 120px;
    width: auto;
    display: block;
}

.hero-brand-text {
    color: var(--hero-text);
}

.hero-content {
    text-align: left;
    color: var(--hero-text);
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 80px;
}

.hero-content h1 {
    font-size: clamp(1.4rem, 4vw, 2.5rem);
    line-height: 1.0;
    text-transform: uppercase;
    font-family: 'TT Hoves Pro', 'Segoe UI', Arial, sans-serif;
    font-weight: bold;
    color: var(--hero-text);
    width: 100%;
    font-stretch: normal;
}

.hero-title {
    display: block;
    width: 100%;
    font-size: 1.2rem;
    letter-spacing: 0.05rem;
    white-space: nowrap;
    font-weight: 900;
    font-stretch: ultra-expanded;
}

.hero-title-line {
    display: block;
}

.hero-title-line--yellow {
    color: var(--accent-yellow);
}

.hero-title-line--white {
    color: var(--hero-text);
}

.hero-title .split-word,
.hero-title-line .split-word {
    display: inline-flex;
    flex-wrap: nowrap;
    gap: 0.02em;
}

.hero-title .split-char,
.hero-title-line .split-char {
    display: inline-block;
    transform-origin: left bottom;
    will-change: transform, opacity;
}

.stagger-char {
    display: inline-block;
    will-change: transform, opacity;
}

.stagger-word {
    display: inline-flex;
    flex-wrap: nowrap;
    gap: 0.02em;
}

.hero-description {
    font-size: 1.1rem;
    max-width: 520px;
    color: rgba(255, 255, 255, 0.85);
}

.hero-subtitle p {
    font-size: 1.1rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    position: relative;
    z-index: 20;
}

.hero-actions .btn-primary,
.hero-actions .btn-secondary {
    border-radius: 12px;
    padding: 16px 32px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.hero-actions .btn-primary {
    background: var(--accent-yellow);
    border: 2px solid var(--accent-yellow);
    color: #1a1a1a;
}

.hero-actions .btn-primary:hover {
    background: rgba(252, 210, 0, 0.2);
    border: 2px solid var(--accent-yellow);
    color: var(--accent-yellow);
    box-shadow: 0 0 20px rgba(252, 210, 0, 0.3), inset 0 0 20px rgba(252, 210, 0, 0.1);
    transform: translateY(-2px);
}

.hero-actions .btn-secondary {
    border: 2px solid var(--accent-yellow);
    color: var(--hero-text);
    background: rgba(255, 255, 255, 0.05);
}

.hero-actions .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid var(--accent-yellow);
    color: var(--accent-yellow);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2), inset 0 0 20px rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

.hero-scroll {
    position: absolute;
    bottom: 48px;
    left: 40px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.7);
}

.hero-scroll i {
    color: var(--accent-yellow);
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 80px 0 40px;
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
    }

    .hero-inner {
        align-items: center;
        text-align: center;
        width: 100%;
        max-width: 100%;
    }

    .hero-content {
        align-items: center;
        text-align: center;
        width: 100%;
        max-width: 100%;
    }

    .hero-description {
        max-width: none;
    }

    .hero-scroll {
        left: 50%;
        transform: translateX(-50%);
    }
    

    section,
    .container {
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
    }
}



.services-grid-section {
    padding: 0;
    background: var(--light-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.service-item {
    padding: 80px 40px;
    text-align: center;
    background: var(--white);
    border: 1px solid #e0e0e0;
    transition: var(--transition);
}

.service-item:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.service-icon {
    font-size: clamp(2.5rem, 2.1rem + 2vw, 3.75rem);
    color: var(--primary-color);
    margin-bottom: 30px;
    transition: var(--transition);
}

.service-item:hover .service-icon {
    color: var(--white);
}

.service-item h3 {
    font-size: clamp(1.1rem, 1rem + 0.4vw, 1.5rem);
    margin-bottom: 15px;
}

.service-item p {
    font-size: clamp(0.95rem, 0.9rem + 0.2vw, 1.05rem);
    line-height: 1.4;
    opacity: 0.8;
}



.cta-section {
    padding: 50px 0;
    background: var(--secondary-color);
    text-align: center;
}

.cta-wrapper h2 {
    font-size: clamp(2.5rem, 2rem + 3vw, 4rem);
    color: var(--white);
    margin-bottom: 40px;
}



.why-choose-section {
    padding: 60px 0;
    background: var(--light-bg);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.section-header h2 {
    font-size: clamp(2.2rem, 1.9rem + 2vw, 3.25rem);
    margin-bottom: 20px;
    color: var(--secondary-color);
    font-weight: 900;
    font-stretch: ultra-expanded;
    -webkit-text-stroke: 0.5px var(--secondary-color);
    text-shadow: 1px 1px 0px var(--secondary-color);
    font-variation-settings: 'wght' 900;
}

.section-header p {
    font-size: clamp(1rem, 0.95rem + 0.3vw, 1.2rem);
    color: var(--text-light);
    line-height: 1.4;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-item {
    background: var(--white);
    padding: 50px 30px;
    text-align: center;
    border-radius: 10px;
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.feature-number {
    font-size: clamp(2.25rem, 1.9rem + 2.4vw, 3.25rem);
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 20px;
    opacity: 0.2;
}

.feature-item h3 {
    font-size: clamp(1.125rem, 1.05rem + 0.4vw, 1.5rem);
    color: var(--secondary-color);
}



.about-section {
    padding: 60px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}


.about-decoration {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.5;
}

.about-decoration--left {
    top: -100px;
    left: -150px;
    background: radial-gradient(circle, rgba(252, 210, 0, 0.15) 0%, transparent 70%);
}

.about-decoration--right {
    bottom: -100px;
    right: -150px;
    background: radial-gradient(circle, rgba(30, 30, 30, 0.08) 0%, transparent 70%);
}

.about-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}


.about-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, var(--accent-yellow), transparent);
    transform-origin: top center;
}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 80px;
}

.about-title {
    font-size: clamp(1.6rem, 4.5vw, 2.6rem);
    font-weight: 900;
    color: var(--secondary-color);
    text-transform: uppercase;
    line-height: 1.0;
    margin-bottom: 0;
    letter-spacing: 2px;
    font-stretch: ultra-expanded;
    -webkit-text-stroke: 0.5px var(--secondary-color);
    text-shadow: 1px 1px 0px var(--secondary-color);
    font-variation-settings: 'wght' 900;
}

.about-title-line {
    display: block;
    margin-bottom: 8px;
    font-weight: 900;
    font-stretch: ultra-expanded;
    -webkit-text-stroke: 0.5px var(--secondary-color);
    text-shadow: 1px 1px 0px var(--secondary-color);
    font-variation-settings: 'wght' 900;
}

.about-title-line--accent {
    color: var(--secondary-color);
    position: relative;
    font-weight: 900;
    font-stretch: ultra-expanded;
    -webkit-text-stroke: 0.5px var(--secondary-color);
    text-shadow: 1px 1px 0px var(--secondary-color);
    font-variation-settings: 'wght' 900;
}


.about-divider {
    width: 80px;
    height: 4px;
    background: var(--accent-yellow);
    margin: 40px 0;
    border-radius: 2px;
    transform-origin: center;
}

.about-text {
    font-size: 1.25rem;
    color: #555;
    line-height: 1.4;
    margin-bottom: 15px;
    max-width: 900px;
}

.about-text--highlight {
    font-weight: 600;
    color: #333;
    position: relative;
    padding: 24px 36px;
    background: linear-gradient(135deg, rgba(252, 210, 0, 0.08) 0%, rgba(252, 210, 0, 0.02) 100%);
    border-radius: 12px;
    border-left: 4px solid var(--accent-yellow);
    margin-top: 10px;
    max-width: 950px;
}

@media (max-width: 768px) {
    .about-section {
        padding: 40px 0;
    }
    
    .about-content {
        padding-top: 60px;
    }
    
    .about-line {
        height: 40px;
    }
    
    .about-title {
        letter-spacing: 1px;
    }
    
    .about-divider {
        width: 60px;
        margin: 30px 0;
    }
    
    .about-text--highlight {
        padding: 16px 20px;
    }
    
    .about-decoration {
        display: none;
    }
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 10px;
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-button {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--white);
    border: none;
    cursor: pointer;
    font-size: 24px;
    color: var(--primary-color);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-button:hover {
    transform: scale(1.1);
    background: var(--primary-color);
    color: var(--white);
}



.products-section {
    position: relative;
    height: 70vh;
    overflow: hidden;
}

.products-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.products-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.4) 100%);
    pointer-events: none;
}

@media (max-width: 768px) {
    .products-section {
        height: 50vh;
    }
}



.gallery-section {
    background: var(--secondary-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
}

.gallery-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(252, 210, 0, 0.4);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}


.mobile-gallery {
    display: none;
    position: relative;
    background: var(--secondary-color);
}

.carousel-container {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
}

.carousel-slide {
    min-width: 100%;
    position: relative;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(252, 210, 0, 0.9);
    color: var(--secondary-color);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.carousel-btn:hover {
    background: var(--accent-yellow);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn-prev {
    left: 20px;
}

.carousel-btn-next {
    right: 20px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 20px;
    background: var(--secondary-color);
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicator.active,
.carousel-indicator:hover {
    background: var(--accent-yellow);
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .desktop-gallery {
        display: none;
    }
    
    .mobile-gallery {
        display: block;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .carousel-btn-prev {
        left: 10px;
    }
    
    .carousel-btn-next {
        right: 10px;
    }
}



.testimonials-section {
    padding: 50px 0;
    background-color: var(--secondary-color);
}

.testimonials-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 60px;
    letter-spacing: 1px;
    font-stretch: ultra-expanded;
    -webkit-text-stroke: 0.5px var(--white);
    text-shadow: 1px 1px 0px rgba(0,0,0,0.5);
    font-variation-settings: 'wght' 900;
}

.clients-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.clients-row {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    align-items: center;
}

.client-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: transform 0.3s ease;
}

.client-item:hover {
    transform: scale(1.05);
}

.client-logo {
    max-width: 120px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.client-item:hover .client-logo {
    filter: grayscale(0%);
    opacity: 1;
}

@media (max-width: 992px) {
    .clients-row {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 576px) {
    .clients-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-title {
        font-size: 1.8rem;
    }
    
    .client-logo {
        max-width: 100px;
        max-height: 50px;
    }
}



.services-section {
    position: relative;
}

.services-hero {
    position: relative;
    height: 70vh;
    overflow: hidden;
}

.services-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.services-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%);
}


.services-trapezoid {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    background: var(--accent-yellow);
    clip-path: polygon(25% 0, 100% 0, 100% 100%, 0% 100%);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 5%;
    z-index: 2;
    transform-origin: right center;
}



.services-trapezoid-content {
    max-width: 450px;
    text-align: left;
    padding: 40px;
    position: relative;
    z-index: 2;
}

.trapezoid-title {
    margin-bottom: 30px;
}

.trapezoid-title .title-large {
    display: block;
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--secondary-color);
    letter-spacing: 1px;
    margin-bottom: 5px;
    font-stretch: ultra-expanded;
    -webkit-text-stroke: 0.3px var(--secondary-color);
    text-shadow: 0.5px 0.5px 0px var(--secondary-color);
    font-variation-settings: 'wght' 900;
}

.trapezoid-title .title-highlight {
    display: block;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--secondary-color);
    letter-spacing: 1px;
    font-stretch: ultra-expanded;
    -webkit-text-stroke: 0.3px var(--secondary-color);
    text-shadow: 0.5px 0.5px 0px var(--secondary-color);
    font-variation-settings: 'wght' 900;
}

.trapezoid-title .title-highlight sup {
    font-size: 0.6em;
}

.trapezoid-info {
    margin-bottom: 15px;
}

.trapezoid-info .info-label {
    font-size: 0.85rem;
    color: var(--secondary-color);
    opacity: 0.8;
    margin-bottom: 2px;
    letter-spacing: 1px;
}

.trapezoid-info .info-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary-color);
    letter-spacing: 0.5px;
}

.trapezoid-btn {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 30px;
    background: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.trapezoid-btn:hover {
    background: var(--secondary-color);
    color: var(--accent-yellow);
}

.services-content {
    background: var(--white);
    padding: 60px 0;
}

.services-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.services-title {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 900;
    color: var(--secondary-color);
    text-transform: uppercase;
    line-height: 1.0;
    margin-bottom: 20px;
    letter-spacing: 1px;
    font-stretch: ultra-expanded;
    -webkit-text-stroke: 0.5px var(--secondary-color);
    text-shadow: 1px 1px 0px var(--secondary-color);
    font-variation-settings: 'wght' 900;
}

.services-title-line {
    display: block;
}

.services-description {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.4;
    max-width: 700px;
    margin: 0 auto;
}


.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.service-card {
    text-align: center;
    padding: 30px 20px;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(2rem, 1.7rem + 1.5vw, 3rem);
    color: var(--accent-yellow);
}

.service-svg-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0);
}

.service-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.3;
    margin-bottom: 5px;
}

.service-list li strong {
    color: var(--accent-yellow);
    font-weight: 600;
}


.services-cta {
    text-align: center;
}

.services-btn {
    display: inline-block;
    padding: 16px 40px;
    border: 2px solid var(--accent-yellow);
    background: transparent;
    color: var(--secondary-color);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.services-btn:hover {
    background: var(--accent-yellow);
    color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(252, 210, 0, 0.3);
}


@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .services-trapezoid {
        width: 60%;
    }
    

    
    .trapezoid-title .title-large {
        font-size: 1.5rem;
    }
    
    .trapezoid-title .title-highlight {
        font-size: 1.7rem;
    }
}

@media (max-width: 768px) {
    .services-hero {
        height: auto;
        min-height: 50vh;
    }
    
    .services-trapezoid {
        position: relative;
        width: 100%;
        clip-path: polygon(0 10%, 100% 0, 100% 100%, 0% 100%);
        padding: 60px 20px 40px;
        justify-content: center;
    }
    

    
    .services-trapezoid-content {
        text-align: center;
        padding: 20px;
    }
    
    .trapezoid-title .title-large {
        font-size: 1.3rem;
    }
    
    .trapezoid-title .title-highlight {
        font-size: 1.5rem;
    }
    
    .trapezoid-info .info-value {
        font-size: 1rem;
    }
    
    .services-content {
        padding: 40px 0;
    }
    

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .service-card {
        padding: 15px 10px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 16px;
    }
    
    .service-title {
        font-size: 0.75rem;
        margin-bottom: 12px;
        line-height: 1.2;
    }
    
    .service-list li {
        font-size: 0.7rem;
        line-height: 1.3;
        margin-bottom: 4px;
    }
    
    .services-btn {
        padding: 14px 32px;
    }
}

.map-section {
    background: var(--secondary-color);
    position: relative;
}


.map-block {
    position: relative;
    overflow: hidden;
    height: 70vh;
}

.map-block--carretera {
    height: 50vh;
}

.map-image-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    transform-origin: center center;
    font-size: 16px;
}


.map-pin {
    position: absolute;
    top: 67%;
    left: 65%;
    transform: translate(-50%, -50%);
    z-index: 10;

}

.map-pin-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5em;
    height: 5em;
    background: var(--accent-yellow);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.4;
    animation: mapPinPulse 2s infinite ease-out;
}

.map-pin-marker {
    position: relative;
    width: 3.75em;
    height: 3.75em;
    background: var(--accent-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0.25em 0.9375em rgba(252, 210, 0, 0.4);
    border: 0.1875em solid var(--white);
}

.map-pin-logo {
    width: 2em;
    height: 2em;
    filter: brightness(0) saturate(100%) invert(13%) sepia(10%) saturate(669%) hue-rotate(169deg) brightness(97%) contrast(93%);
}

@keyframes mapPinPulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.6;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.2;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.6);
        opacity: 0;
    }
}

.map-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.map-block--carretera .map-image {
    object-fit: contain;
    object-position: center;
    background: var(--secondary-color);
}


.map-content {
    background: var(--secondary-color);
    padding: 50px 20px;
    position: relative;
}

.map-content-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}


.map-line {
    display: none;
}

.map-line--top {
    display: none;
}

.map-line--bottom {
    display: none;
}

.map-title {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 900;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
    font-stretch: ultra-expanded;
    -webkit-text-stroke: 0.5px var(--white);
    text-shadow: 1px 1px 0px rgba(0,0,0,0.5);
    font-variation-settings: 'wght' 900;
}

.map-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.4;
    max-width: 650px;
    margin: 0 auto 24px;
}

.map-btn {
    display: inline-block;
    padding: 14px 36px;
    border: 2px solid var(--accent-yellow);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 4px;
    transition: all 0.3s ease;
    background: transparent;
}

.map-btn:hover {
    background: var(--accent-yellow);
    color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(252, 210, 0, 0.2);
}

@media (max-width: 768px) {
    .map-content {
        padding: 40px 20px;
    }
    
    .map-line {
        display: none;
    }
    
    .map-line--top {
        display: none;
    }
    
    .map-line--bottom {
        display: none;
    }
    
    .map-title {
        letter-spacing: 2px;
    }
    
    .map-btn {
        padding: 12px 28px;
        font-size: 0.8rem;
    }
    

    .map-image-wrapper {
        font-size: 12px;
    }
    

}



.clients-section {
    padding: 50px 0;
    background: var(--light-bg);
}

.section-label {
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 10px;
    color: var(--text-light);
    margin-bottom: 60px;
    text-transform: uppercase;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
}

.client-logo {
    background: var(--white);
    padding: 40px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    transition: var(--transition);
    text-align: center;
}

.client-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.client-logo span {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
}



.projects-section {
    padding: 60px 0;
    background: var(--white);
}

.project-filters {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 30px;
    background: transparent;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.project-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}

.project-image {
    position: relative;
    overflow: hidden;
    padding-bottom: 75%;
}

.project-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.project-item:hover .project-image img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0;
    transition: var(--transition);
}

.project-item:hover .project-overlay {
    opacity: 1;
}

.project-info {
    color: var(--white);
}

.project-category {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--primary-color);
    display: block;
    margin-bottom: 10px;
}

.project-info h3 {
    font-size: 20px;
    margin: 0;
}



.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.testimonial-item {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    transition: var(--transition);
}

.testimonial-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.testimonial-content p {
    font-size: 16px;
    line-height: 1.4;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    gap: 20px;
    align-items: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.author-info p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}



.site-footer {
    background: var(--secondary-color);
    color: var(--white);
}

.footer-main {
    padding: 60px 0;
}

.footer-content-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
}


.footer-form-column {
    padding-right: 40px;
}

.footer-title {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 40px;
    letter-spacing: 1px;
    font-stretch: ultra-expanded;
    -webkit-text-stroke: 0.5px var(--white);
    text-shadow: 1px 1px 0px rgba(0,0,0,0.5);
    font-variation-settings: 'wght' 900;
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form label {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

.contact-form input {
    width: 100%;
    padding: 12px 0;
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--accent-yellow);
    color: var(--white);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.contact-form input:focus {
    border-bottom-color: #fff;
}

.contact-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.btn-submit {
    margin-top: 20px;
    padding: 15px 40px;
    background: transparent;
    border: 2px solid var(--accent-yellow);
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: var(--accent-yellow);
    color: var(--secondary-color);
}


.footer-info-column {
    background: #2a2a2a;
    padding: 40px;
    text-align: center;
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-logo img {
    max-width: 180px;
    height: auto;
}

.footer-subtitle {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
}

.footer-address {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.3;
    margin-bottom: 25px;
}

.contact-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 15px;
}

.contact-phone,
.contact-email {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 5px;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: var(--accent-yellow);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #fff;
    transform: translateY(-3px);
}


.footer-bottom {
    background: var(--accent-yellow);
    padding: 15px 0;
    text-align: center;
}

.footer-bottom .copyright {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--secondary-color);
    letter-spacing: 1px;
    margin: 0;
}

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent-yellow);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--white);
    transform: translateY(-5px);
}



@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .projects-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .testimonials-slider {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .clients-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .footer-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-form-column {
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .main-navigation {
        display: none;
    }
    
    .services-grid,
    .features-grid,
    .projects-grid,
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
    
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-info-column {
        padding: 30px 20px;
    }
}

.site-header--landing {
    display: none;
}

body.home .mobile-menu,
body.front-page .mobile-menu {
    display: none;
}
.btn-translate-custom {
    background-color: #0073aa; /* Ajusta al color de tu tema */
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.3s ease;
}

.btn-translate-custom:hover {
    background-color: #005177;
    transform: translateY(-2px);
}

.landing-header {
    position: relative;
}

.btn-translate {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 9999;
    background-color: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
    padding: 12px 24px;
    border-radius: 50px;
    cursor: pointer;
    font-family: 'TT Hoves Pro', sans-serif;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    text-decoration: none;
}

.btn-translate:hover {
    background-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.6);
    color: white;
}

.btn-translate:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .btn-translate {
        top: 15px;
        right: 15px;
        padding: 10px 16px;
        font-size: 13px;
    }
}
