
@font-face {
    font-family: 'Cormorant Garamond';
    font-style: italic;
    font-weight: 400;
    font-display: swap;
    src: url('/media/fonts/cormorant-garamond-v21-latin-italic.woff2') format('woff2');
}

@font-face {
    font-family: 'Cormorant Garamond';
    font-style: italic;
    font-weight: 500;
    font-display: swap;
    src: url('/media/fonts/cormorant-garamond-v21-latin-500italic.woff2') format('woff2');
}

@font-face {
    font-family: 'Cormorant Garamond';
    font-style: italic;
    font-weight: 600;
    font-display: swap;
    src: url('/media/fonts/cormorant-garamond-v21-latin-600italic.woff2') format('woff2');
}

@font-face {
    font-family: 'Cormorant Garamond';
    font-style: italic;
    font-weight: 700;
    font-display: swap;
    src: url('/media/fonts/cormorant-garamond-v21-latin-700italic.woff2') format('woff2');
}

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

:root {
    --primary-red: #8b1a1a;
    --dark-red: #6b0f0f;
    --black: #000000;
    --dark-gray: #0f0f0f;
    --darker-gray: #080808;
    --white: #ffffff;
    --light-gray: #b0b0b0;
    --border-color: rgba(255, 255, 255, 0.08);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family:
        -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI",
        "Helvetica Neue", Arial, sans-serif;
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.98);
    padding: 22px 0;
    border-bottom: 1px solid rgba(139, 26, 26, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    transition:
        padding 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
    overflow: visible;
    transform: translate3d(0, 0, 0);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 74px;
    overflow: visible;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    position: relative;
    z-index: 10;
    transition: transform 0.3s ease;
    height: 100%;
}

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

.logo-image {
    height: 150px;
    width: auto;
    object-fit: contain;
    position: absolute;
    top: 68%;
    left: 0;
    transform: translateY(-50%);
    filter: drop-shadow(0 4px 12px rgba(139, 26, 26, 0.4));
    transition: all 0.3s ease;
}

.logo-image:hover {
    filter: drop-shadow(0 6px 16px rgba(139, 26, 26, 0.6));
}

.logo-icon {
    font-size: 1.5rem;
}

.logo-text {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    opacity: 0.7;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 8px;
    align-items: center;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    opacity: 0.85;
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover {
    opacity: 1;
    color: var(--white);
    background: rgba(255, 255, 255, 0.05);
}

.nav-link:hover::before {
    width: 60%;
}

.nav-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--primary-red) 0%, #a01f1f 100%);
    color: var(--white);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 26, 26, 0.4);
    position: relative;
    overflow: hidden;
}

.nav-contact-btn::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition:
        width 0.6s ease,
        height 0.6s ease;
}

.nav-contact-btn:hover::before {
    width: 300px;
    height: 300px;
}

.nav-contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(139, 26, 26, 0.6);
    background: linear-gradient(135deg, #a01f1f 0%, var(--primary-red) 100%);
}

.nav-contact-btn svg {
    position: relative;
    z-index: 1;
    animation: phoneRing 2s ease infinite;
}

.nav-contact-btn span {
    position: relative;
    z-index: 1;
}

@keyframes phoneRing {
    0%,
    100% {
        transform: rotate(0deg);
    }
    10%,
    30% {
        transform: rotate(-10deg);
    }
    20%,
    40% {
        transform: rotate(10deg);
    }
    50% {
        transform: rotate(0deg);
    }
}

.navbar::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(139, 26, 26, 0.6) 20%,
        rgba(139, 26, 26, 0.8) 50%,
        rgba(139, 26, 26, 0.6) 80%,
        transparent 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.navbar.scrolled::after {
    opacity: 1;
}

.burger-menu {
    width: 30px;
    height: 24px;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    z-index: 1001;
    display: none; 
}

.burger-menu span {
    width: 100%;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

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

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

.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(
        135deg,
        rgba(139, 26, 26, 0.98) 0%,
        rgba(0, 0, 0, 0.98) 100%
    );
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.fullscreen-menu.active {
    opacity: 1;
    visibility: visible;
}

.menu-content {
    text-align: center;
}

.menu-links {
    list-style: none;
    padding: 0;
    margin-bottom: 60px;
}

.menu-links li {
    margin: 30px 0;
    opacity: 0;
    transform: translateY(30px);
}

.fullscreen-menu.active .menu-links li {
    animation: fadeInUp 0.6s ease forwards;
}

.menu-links li:nth-child(1) {
    animation-delay: 0.1s;
}
.menu-links li:nth-child(2) {
    animation-delay: 0.15s;
}
.menu-links li:nth-child(3) {
    animation-delay: 0.2s;
}
.menu-links li:nth-child(4) {
    animation-delay: 0.25s;
}
.menu-links li:nth-child(5) {
    animation-delay: 0.3s;
}

.menu-link {
    font-size: 3.5rem;
    color: var(--white);
    text-decoration: none;
    font-weight: 300;
    transition: all 0.3s ease;
    display: inline-block;
    letter-spacing: -1px;
}

.menu-link:hover {
    color: var(--primary-red);
    transform: translateX(10px);
}

.menu-contact {
    opacity: 0;
}

.fullscreen-menu.active .menu-contact {
    animation: fadeInUp 0.6s ease 0.4s forwards;
}

.menu-phone {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.menu-call-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--primary-red) 0%, #a01f1f 100%);
    color: var(--white);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(139, 26, 26, 0.5);
    margin-bottom: 15px;
}

.menu-call-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(139, 26, 26, 0.7);
    background: linear-gradient(135deg, #a01f1f 0%, var(--primary-red) 100%);
}

.menu-call-btn svg {
    flex-shrink: 0;
}

.menu-emergency {
    font-size: 1.1rem;
    color: var(--light-gray);
}

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.6) 0%,
            rgba(0, 0, 0, 0.8) 50%,
            rgba(0, 0, 0, 0.95) 100%
        ),
        url("https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=2000&h=1200&fit=crop&q=80")
            center/cover;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        ellipse at 50% 0%,
        rgba(139, 26, 26, 0.15) 0%,
        transparent 60%
    );
    z-index: 0;
}

.hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, transparent 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px;
    max-width: 1200px;
    will-change: transform, opacity;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 60px;
    letter-spacing: -1px;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.brand-name {
    color: var(--primary-red);
}

.typewriter-container {
    text-align: center;
}

.typewriter-text {
    display: inline;
    opacity: 1;
    transform: translateY(0);
    transition:
        opacity 0.4s ease,
        transform 0.4s ease;
}

.typewriter-text.hero-visible {
    opacity: 1;
    transform: translateY(0);
}

.typewriter-cursor {
    display: none;
}

.title-line {
    display: block;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

.title-line:nth-child(1) {
    animation-delay: 0.2s;
}
.title-line:nth-child(2) {
    animation-delay: 0.4s;
}
.title-line:nth-child(3) {
    animation-delay: 0.6s;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    opacity: 0;
    animation: fadeInUp 1s ease 0.8s forwards;
}

.btn {
    padding: 16px 40px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-red) 0%, #a01f1f 100%);
    color: var(--white);
    box-shadow:
        0 4px 15px rgba(139, 26, 26, 0.4),
        0 0 20px rgba(139, 26, 26, 0.2);
}

.btn-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #a01f1f 0%, #c02525 100%);
    transform: translateY(-3px);
    box-shadow:
        0 8px 25px rgba(139, 26, 26, 0.5),
        0 0 40px rgba(139, 26, 26, 0.3);
}

.btn-hero {
    padding: 22px 50px;
    font-size: 1.3rem;
    font-weight: 700;
    box-shadow:
        0 6px 25px rgba(139, 26, 26, 0.5),
        0 0 50px rgba(139, 26, 26, 0.3);
    animation: glow-pulse-red 2s ease-in-out infinite;
}

@keyframes glow-pulse-red {
    0%,
    100% {
        box-shadow:
            0 6px 25px rgba(139, 26, 26, 0.5),
            0 0 30px rgba(139, 26, 26, 0.3);
    }
    50% {
        box-shadow:
            0 8px 35px rgba(139, 26, 26, 0.7),
            0 0 50px rgba(139, 26, 26, 0.5);
    }
}

.btn-hero:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow:
        0 12px 40px rgba(139, 26, 26, 0.6),
        0 0 60px rgba(139, 26, 26, 0.4);
}

.btn-hero svg {
    animation: phoneRing 1.5s ease-in-out infinite;
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.2);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-large {
    padding: 18px 50px;
    font-size: 1.1rem;
}

.section-dark {
    background: var(--dark-gray);
    padding: 120px 0;
}

.section-darker {
    background: var(--black);
    padding: 120px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-subtitle {
    font-size: 0.75rem;
    color: var(--light-gray);
    letter-spacing: 3px;
    margin-bottom: 20px;
    font-weight: 500;
    text-transform: uppercase;
}

.section-title {
    font-size: 4rem;
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -1px;
}

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

.service-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    transition: all 0.4s ease;
    position: relative;
}

.service-card:hover {
    background: rgba(139, 26, 26, 0.08);
    border-color: rgba(139, 26, 26, 0.3);
    transform: translateY(-5px);
}

.service-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    border-radius: 16px;
    background: linear-gradient(
        135deg,
        rgba(139, 26, 26, 0.15) 0%,
        rgba(139, 26, 26, 0.05) 100%
    );
    border: 1px solid rgba(139, 26, 26, 0.2);
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    background: linear-gradient(
        135deg,
        rgba(139, 26, 26, 0.25) 0%,
        rgba(139, 26, 26, 0.1) 100%
    );
    border-color: rgba(139, 26, 26, 0.4);
    transform: scale(1.08);
    box-shadow: 0 8px 25px rgba(139, 26, 26, 0.25);
}

.service-icon.red {
    color: var(--primary-red);
}

.service-icon svg {
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon svg {
    transform: scale(1.05);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.service-card p {
    color: var(--light-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.feature-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(139, 26, 26, 0.06);
    border-color: rgba(139, 26, 26, 0.2);
    transform: translateY(-3px);
}

.feature-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.feature-icon.red {
    color: var(--primary-red);
}

.feature-item p {
    color: var(--light-gray);
    font-size: 0.88rem;
    line-height: 1.5;
}

.features-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 80px;
}

.trust-section {
    position: relative;
    padding: 120px 0 140px;
    background: #f5f5f5;
    text-align: center;
}

.wave-transition {
    position: absolute;
    left: 0;
    width: 100%;
    height: 120px;
    overflow: hidden;
    line-height: 0;
}

.wave-transition svg {
    width: 100%;
    height: 100%;
    display: block;
}

.wave-top {
    top: 0;
    transform: translateY(-99%);
}

.wave-top svg path {
    fill: #f5f5f5;
}

.wave-bottom {
    bottom: 0;
    transform: translateY(99%);
}

.wave-bottom svg path {
    fill: #0a0a0a;
}

.trust-content {
    max-width: 1000px;
    margin: 0 auto;
}

.trust-content .section-subtitle {
    color: #666;
    font-size: 0.9rem;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.trust-content .section-title {
    font-size: 3rem;
    color: var(--black);
    margin-bottom: 50px;
}

.reviews-carousel {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.reviews-wrapper {
    overflow: hidden;
    flex: 1;
    border-radius: 20px;
}

.reviews-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    touch-action: pan-y pinch-zoom;
    cursor: grab;
}

.reviews-track:active {
    cursor: grabbing;
}

.review-slide {
    min-width: 100%;
    padding: 10px;
    box-sizing: border-box;
}

.review-card {
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.review-card:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.review-stars {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 25px;
}

.review-stars span {
    color: #ffd700;
    font-size: 1.5rem;
}

.review-text {
    font-size: 1.2rem;
    line-height: 1.9;
    color: #333;
    margin-bottom: 25px;
    font-weight: 400;
    font-style: italic;
}

.review-author {
    font-size: 1rem;
    color: var(--primary-red);
    font-weight: 600;
}

.carousel-arrow {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--primary-red);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 26, 26, 0.3);
    flex-shrink: 0;
}

.carousel-arrow:hover {
    background: #a01f1f;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(139, 26, 26, 0.5);
}

.carousel-arrow:active {
    transform: scale(0.95);
}

.carousel-arrow svg {
    width: 24px;
    height: 24px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 35px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.dot:hover {
    background: #999;
}

.dot.active {
    background: var(--primary-red);
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(139, 26, 26, 0.4);
}

.locations-section {
    padding: 120px 0;
    background: var(--black);
    position: relative;
    overflow: hidden;
}

.locations-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        circle at 30% 50%,
        rgba(139, 26, 26, 0.1) 0%,
        transparent 50%
    );
    pointer-events: none;
}

.locations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.locations-content {
    padding-right: 40px;
}

.location-icon-wrapper {
    margin-bottom: 30px;
}

.location-main-icon {
    color: var(--primary-red);
    stroke-width: 1.5;
    animation: float 3s ease-in-out infinite;
}

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

.locations-title {
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 24px;
    color: var(--white);
}

.locations-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--light-gray);
    margin-bottom: 40px;
}

.locations-list {
    margin-bottom: 40px;
}

.locations-subtitle {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.locations-subtitle svg {
    color: var(--primary-red);
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    list-style: none;
    padding: 0;
}

.city-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--white);
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.city-item:hover {
    background: rgba(139, 26, 26, 0.1);
    border-color: rgba(139, 26, 26, 0.3);
    transform: translateX(5px);
}

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

.city-item span {
    font-weight: 500;
}

.locations-cta {
    margin-top: 40px;
}

.locations-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.response-time {
    margin-top: 16px;
    color: var(--light-gray);
    font-size: 0.95rem;
    font-style: italic;
}

.locations-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.locations-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.locations-image-wrapper:hover .locations-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(0, 0, 0, 0.7) 100%
    );
    display: flex;
    align-items: flex-end;
    padding: 40px;
}

.overlay-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(139, 26, 26, 0.9);
    backdrop-filter: blur(10px);
    padding: 16px 24px;
    border-radius: 50px;
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
}

.overlay-badge svg {
    width: 24px;
    height: 24px;
}

.gallery-section {
    padding: 120px 0;
    background: var(--dark-gray);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    height: 400px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(139, 26, 26, 0.3);
    border-color: rgba(139, 26, 26, 0.4);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:
        transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
        filter 0.4s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.15);
    filter: brightness(0.7);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 30px;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.95) 0%,
        rgba(0, 0, 0, 0.7) 50%,
        transparent 100%
    );
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
    opacity: 1;
}

.gallery-overlay h3 {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 12px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease 0.1s;
}

.gallery-item:hover .gallery-overlay h3 {
    transform: translateY(0);
    opacity: 1;
}

.gallery-overlay p {
    color: var(--primary-red);
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
    display: inline-block;
    padding: 8px 16px;
    background: rgba(139, 26, 26, 0.2);
    border-radius: 20px;
    border: 1px solid rgba(139, 26, 26, 0.3);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease 0.2s;
}

.gallery-item:hover .gallery-overlay p {
    transform: translateY(0);
    opacity: 1;
}

.gallery-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    border: 2px solid transparent;
    transition: border-color 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.gallery-item:hover::before {
    border-color: rgba(139, 26, 26, 0.5);
}

.gallery-grid-new {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.gallery-card {
    border-radius: 24px;
    overflow: hidden;
    background: #1a1a1a;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.gallery-card-content {
    display: flex;
    flex-direction: column;
    height: 520px;
}

.gallery-card-content .gallery-card-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.gallery-card-content .gallery-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-card-content:hover .gallery-card-image img {
    transform: scale(1.08);
}

.gallery-card-body {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    background: linear-gradient(
        180deg,
        rgba(80, 70, 90, 0.9) 0%,
        rgba(60, 55, 70, 0.95) 100%
    );
}

.gallery-card-body h3 {
    color: var(--white);
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 18px;
    line-height: 1.3;
}

.gallery-card-body p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 25px;
    flex: 1;
}

.gallery-card-link {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.gallery-card-link:hover {
    color: var(--white);
    gap: 12px;
}

.gallery-card-link span {
    transition: transform 0.3s ease;
}

.gallery-card-link:hover span {
    transform: translateX(4px);
}

.gallery-card-image-only {
    position: relative;
    height: 520px;
}

.gallery-card-fullimage {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-card-image-only:hover .gallery-card-fullimage {
    transform: scale(1.05);
}

.gallery-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 30px;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.9) 0%,
        rgba(0, 0, 0, 0.5) 60%,
        transparent 100%
    );
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-card-image-only:hover .gallery-card-overlay {
    transform: translateY(0);
    opacity: 1;
}

.gallery-card-overlay h3 {
    color: var(--white);
    font-size: 1.6rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease 0.1s;
}

.gallery-card-image-only:hover .gallery-card-overlay h3 {
    transform: translateY(0);
    opacity: 1;
}

@media (max-width: 1024px) {
    .gallery-grid-new {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .gallery-card-content,
    .gallery-card-image-only {
        height: 450px;
    }

    .gallery-card-content .gallery-card-image {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .gallery-grid-new {
        gap: 20px;
    }

    .gallery-card-content,
    .gallery-card-image-only {
        height: 400px;
    }

    .gallery-card-content .gallery-card-image {
        height: 180px;
    }

    .gallery-card-body {
        padding: 25px;
    }

    .gallery-card-body h3,
    .gallery-card-overlay h3 {
        font-size: 1.4rem;
    }

    .gallery-card-body p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .gallery-card-content,
    .gallery-card-image-only {
        height: 380px;
    }

    .gallery-card-body {
        padding: 20px;
    }

    .gallery-card-body h3,
    .gallery-card-overlay h3 {
        font-size: 1.25rem;
    }

    .gallery-card-overlay {
        padding: 30px 20px;
    }
}

.gallery-card-hover {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 450px;
    cursor: pointer;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
}

.gallery-card-hover:hover {
    transform: translateY(-8px) translateZ(0);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

.gallery-card-hover > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.gallery-card-hover:hover > img {
    transform: scale(1.05);
}

.gallery-card-content-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.95) 0%,
        rgba(0, 0, 0, 0.8) 50%,
        rgba(0, 0, 0, 0.4) 80%,
        transparent 100%
    );
    transition: padding 0.4s ease, background 0.4s ease;
}

.gallery-card-content-overlay h3 {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
    transition: all 0.3s ease;
}

.gallery-card-details {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.4s ease, margin-top 0.4s ease;
}

.gallery-card-hover:hover .gallery-card-details {
    max-height: 200px;
    opacity: 1;
    margin-top: 15px;
}

.gallery-card-details p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 18px 0;
}

.gallery-card-details .gallery-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-red);
    font-weight: 500;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.gallery-card-details .gallery-card-link:hover {
    gap: 14px;
    color: #ff4d4d;
}

.gallery-card-details .gallery-card-link span {
    transition: transform 0.3s ease;
}

.gallery-card-details .gallery-card-link:hover span {
    transform: translateX(4px);
}

@media (max-width: 1024px) {
    .gallery-card-hover {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .gallery-card-hover {
        height: 380px;
    }

    .gallery-card-content-overlay {
        padding: 25px;
    }

    .gallery-card-content-overlay h3 {
        font-size: 1.3rem;
    }

    .gallery-card-details p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .gallery-card-hover {
        height: 350px;
    }

    .gallery-card-content-overlay {
        padding: 20px;
    }

    .gallery-card-content-overlay h3 {
        font-size: 1.2rem;
    }
}

.about-section {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--black) 0%, var(--darker-gray) 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 26, 26, 0.3), transparent);
}

.about-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.4fr;
    gap: 80px;
    align-items: center;
}

.about-image-wrapper {
    max-width: 400px;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-image:hover img {
    transform: scale(1.02);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.5);
}

.about-image-accent {
    display: none;
}

.about-image-caption {
    text-align: center;
    margin-top: 30px;
}

.about-name {
    display: block;
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--white);
    letter-spacing: 2px;
    margin-bottom: 8px;
    font-family: inherit;
}

.about-role {
    display: inline-block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 500;
    position: relative;
    padding: 0 15px;
}

.about-role::before,
.about-role::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-red));
}

.about-role::before {
    right: 100%;
    background: linear-gradient(90deg, transparent, var(--primary-red));
}

.about-role::after {
    left: 100%;
    background: linear-gradient(90deg, var(--primary-red), transparent);
    font-weight: 500;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-text {
    text-align: left;
}

.about-subtitle {
    font-size: 0.85rem;
    letter-spacing: 3px;
    color: var(--primary-red);
    margin-bottom: 20px;
    font-weight: 500;
}

.about-title {
    font-size: 2.5rem;
    color: var(--white);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 25px;
}

.about-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.9;
}

.about-stats {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 40px;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.stat-row {
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    background: linear-gradient(135deg, var(--white) 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-suffix {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-red);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg, transparent, rgba(139, 26, 26, 0.5), transparent);
}

@media (max-width: 968px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-image-wrapper {
        max-width: 380px;
        margin: 0 auto;
    }

    .about-content {
        text-align: center;
    }

    .about-text {
        text-align: center;
    }

    .about-stats {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 80px 0;
    }

    .about-image-wrapper {
        max-width: 280px;
    }

    .about-content {
        gap: 30px;
    }

    .about-title {
        font-size: 1.8rem;
    }

    .about-description {
        font-size: 1rem;
    }

    .about-stats {
        flex-direction: column;
        gap: 25px;
        padding: 25px 0;
    }

    .stat-divider {
        width: 60px;
        height: 1px;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .about-name {
        font-size: 1.3rem;
    }

    .about-role::before,
    .about-role::after {
        width: 20px;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 60px 0;
    }

    .about-image-wrapper {
        max-width: 220px;
    }

    .about-title {
        font-size: 1.5rem;
    }

    .about-description {
        font-size: 0.95rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .about-name {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }

    .about-role {
        font-size: 0.65rem;
    }
}

.work-showcase {
    padding: 120px 0;
    margin-bottom: 80px;
    background: var(--black);
    position: relative;
}

.work-showcase::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(139, 26, 26, 0.5),
        transparent
    );
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.work-item {
    perspective: 1000px;
    text-decoration: none;
    color: inherit;
    display: block;
}

.work-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

.work-image-wrapper:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

.work-image-wrapper img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.work-image-wrapper:hover img {
    transform: scale(1.05);
}

.work-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 30px;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.95) 0%,
        rgba(0, 0, 0, 0.7) 50%,
        transparent 100%
    );
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.work-image-wrapper:hover .work-overlay {
    transform: translateY(0);
}

.work-label {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-red) 0%, #a01f1f 100%);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(139, 26, 26, 0.4);
}

.work-description {
    color: var(--light-gray);
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
}

.work-cta {
    position: absolute;
    bottom: 15px;
    right: 15px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-red);
    font-size: 0.85rem;
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
    transition: all 0.3s ease;
    z-index: 10;
    opacity: 0;
    transform: translateY(10px);
}

.work-item:hover .work-cta {
    opacity: 1;
    transform: translateY(0);
}

.work-cta svg {
    transition: transform 0.3s ease;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.5));
}

.work-item:hover .work-cta svg {
    transform: translateX(4px);
}

@media (max-width: 1024px) {
    .locations-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .locations-content {
        padding-right: 0;
    }

    .locations-image {
        height: 500px;
    }

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

    .gallery-item {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .locations-title {
        font-size: 2.5rem;
    }

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

    .locations-image {
        height: 400px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gallery-item {
        height: 320px;
    }

    .gallery-item:hover {
        transform: translateY(-5px) scale(1.01);
    }

    .gallery-overlay {
        padding: 30px 25px;
    }

    .gallery-overlay h3 {
        font-size: 1.3rem;
    }

    .gallery-overlay p {
        font-size: 1rem;
        padding: 6px 14px;
    }

    .gallery-section .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .locations-title {
        font-size: 2rem;
    }

    .locations-description {
        font-size: 1rem;
    }

    .locations-image {
        height: 300px;
    }

    .gallery-item {
        height: 280px;
    }

    .gallery-overlay {
        padding: 25px 20px;
    }

    .gallery-overlay h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    .gallery-overlay p {
        font-size: 0.9rem;
        padding: 5px 12px;
    }
}

.contact-form-section {
    padding: 120px 0;
    background: var(--black);
    position: relative;
    overflow: hidden;
}

.contact-form-section::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(
            ellipse at 30% 20%,
            rgba(139, 26, 26, 0.15) 0%,
            transparent 50%
        ),
        radial-gradient(
            ellipse at 70% 80%,
            rgba(139, 26, 26, 0.1) 0%,
            transparent 40%
        );
    animation: gradientMove 15s ease-in-out infinite;
    pointer-events: none;
}

@keyframes gradientMove {
    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(2%, 2%) rotate(1deg);
    }
    50% {
        transform: translate(-1%, 3%) rotate(-1deg);
    }
    75% {
        transform: translate(1%, -2%) rotate(0.5deg);
    }
}

.contact-form-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(139, 26, 26, 0.5),
        transparent
    );
}

.contact-decor {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.15;
}

.contact-decor-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: -100px;
    background: radial-gradient(circle, var(--primary-red) 0%, transparent 70%);
    animation: floatDecor1 8s ease-in-out infinite;
}

.contact-decor-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    right: -50px;
    background: radial-gradient(circle, var(--primary-red) 0%, transparent 70%);
    animation: floatDecor2 10s ease-in-out infinite;
}

.contact-decor-3 {
    width: 150px;
    height: 150px;
    top: 60%;
    left: 10%;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.1) 0%,
        transparent 70%
    );
    animation: floatDecor3 12s ease-in-out infinite;
}

@keyframes floatDecor1 {
    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, 20px) scale(1.1);
    }
}

@keyframes floatDecor2 {
    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-25px, -15px) scale(1.05);
    }
}

@keyframes floatDecor3 {
    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(15px, -10px) rotate(10deg);
    }
}

.contact-glow-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(40px);
}

.contact-glow-orb-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: 20%;
    background: radial-gradient(
        circle,
        rgba(139, 26, 26, 0.3) 0%,
        transparent 60%
    );
    animation: orbPulse1 6s ease-in-out infinite;
}

.contact-glow-orb-2 {
    width: 350px;
    height: 350px;
    bottom: -50px;
    left: 15%;
    background: radial-gradient(
        circle,
        rgba(139, 26, 26, 0.2) 0%,
        transparent 60%
    );
    animation: orbPulse2 8s ease-in-out infinite;
}

@keyframes orbPulse1 {
    0%,
    100% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

@keyframes orbPulse2 {
    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.15);
    }
}

.contact-form-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.contact-form-header .section-subtitle {
    color: var(--primary-red);
    font-size: 0.9rem;
    letter-spacing: 4px;
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(139, 26, 26, 0.5);
}

.contact-form-header .section-title {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--white) 0%, #ccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-description {
    color: var(--light-gray);
    font-size: 1.15rem;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

.contact-form-horizontal {
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(
        135deg,
        rgba(20, 20, 20, 0.9) 0%,
        rgba(15, 15, 15, 0.95) 100%
    );
    border: 1px solid rgba(139, 26, 26, 0.2);
    border-radius: 24px;
    padding: 50px;
    position: relative;
    z-index: 2;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.03),
        0 20px 50px rgba(0, 0, 0, 0.5),
        0 0 100px rgba(139, 26, 26, 0.1);
    backdrop-filter: blur(10px);
}

.contact-form-horizontal::before {
    content: "";
    position: absolute;
    top: -2px;
    left: 30px;
    right: 30px;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--primary-red),
        transparent
    );
    border-radius: 2px;
    opacity: 0.6;
}

.contact-form-horizontal::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 30px;
    right: 30px;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(139, 26, 26, 0.4),
        transparent
    );
    border-radius: 2px;
}

.contact-form-horizontal {
    --shine-position: -200%;
    animation: formShine 8s ease-in-out infinite;
}

@keyframes formShine {
    0%,
    90%,
    100% {
        --shine-position: -200%;
    }
    45%,
    55% {
        --shine-position: 200%;
    }
}

.contact-form-horizontal::before {
    content: "";
    position: absolute;
    top: -2px;
    left: 30px;
    right: 30px;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--primary-red),
        transparent
    );
    border-radius: 2px;
    opacity: 0.6;
}

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

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

.form-row-submit {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 10px;
}

.form-row-upload {
    margin-bottom: 25px;
}

.form-row-upload .form-label {
    display: block;
    margin-bottom: 12px;
}

.file-upload-area {
    position: relative;
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.03);
}

.file-upload-area:hover {
    border-color: var(--primary-red);
    background: rgba(139, 26, 26, 0.1);
}

.file-upload-area.drag-over {
    border-color: var(--primary-red);
    background: rgba(139, 26, 26, 0.15);
    transform: scale(1.01);
}

.file-input-hidden {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.upload-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--light-gray);
    pointer-events: none;
}

.upload-placeholder svg {
    color: var(--primary-red);
    opacity: 0.7;
}

.upload-placeholder span {
    font-size: 0.95rem;
}

.upload-hint {
    font-size: 0.8rem !important;
    opacity: 0.6;
}

.file-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 15px;
}

.file-preview-item {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.file-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.file-preview-item .remove-file,
.file-preview-item .file-remove-btn {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 22px;
    height: 22px;
    background: rgba(139, 26, 26, 0.9);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.file-preview-item .remove-file:hover,
.file-preview-item .file-remove-btn:hover {
    background: #c02525;
    transform: scale(1.1);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
}

.contact-form-horizontal .form-group {
    transition: transform 0.3s ease;
}

.contact-form-horizontal .form-group:hover {
    transform: translateY(-2px);
}

.form-label {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition:
        color 0.3s ease,
        text-shadow 0.3s ease;
}

.contact-form-horizontal .form-group:hover .form-label {
    color: var(--primary-red);
    text-shadow: 0 0 10px rgba(139, 26, 26, 0.3);
}

.form-input,
.form-select {
    padding: 15px 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    color: var(--white);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.form-input:hover,
.form-select:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.form-input:focus,
.form-select:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-red);
    box-shadow:
        0 0 0 3px rgba(139, 26, 26, 0.2),
        0 0 20px rgba(139, 26, 26, 0.15),
        inset 0 0 20px rgba(139, 26, 26, 0.05);
    animation: inputGlow 1.5s ease-in-out infinite alternate;
}

@keyframes inputGlow {
    0% {
        box-shadow:
            0 0 0 3px rgba(139, 26, 26, 0.2),
            0 0 15px rgba(139, 26, 26, 0.1),
            inset 0 0 15px rgba(139, 26, 26, 0.03);
    }
    100% {
        box-shadow:
            0 0 0 3px rgba(139, 26, 26, 0.25),
            0 0 25px rgba(139, 26, 26, 0.2),
            inset 0 0 25px rgba(139, 26, 26, 0.06);
    }
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 16px;
    padding-right: 45px;
}

.form-select:focus {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%238B1A1A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
}

.form-select option {
    background: #1a1a1a;
    color: var(--white);
    padding: 12px;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary-red);
}

.form-checkbox label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.form-checkbox label:hover {
    color: var(--white);
}

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

.privacy-link:hover {
    color: #c02525;
    text-decoration: underline;
}

.btn-submit-form {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--primary-red) 0%, #a01f1f 100%);
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow:
        0 4px 20px rgba(139, 26, 26, 0.4),
        0 0 0 0 rgba(139, 26, 26, 0.4);
    position: relative;
    overflow: hidden;
    animation: buttonPulse 2.5s ease-in-out infinite;
}

@keyframes buttonPulse {
    0%,
    100% {
        box-shadow:
            0 4px 20px rgba(139, 26, 26, 0.4),
            0 0 0 0 rgba(139, 26, 26, 0.4);
    }
    50% {
        box-shadow:
            0 4px 20px rgba(139, 26, 26, 0.4),
            0 0 0 10px rgba(139, 26, 26, 0);
    }
}

.btn-submit-form::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.5s ease;
}

.btn-submit-form:hover::before {
    left: 100%;
}

.btn-submit-form:hover {
    background: linear-gradient(135deg, #a01f1f 0%, #c02525 100%);
    transform: translateY(-2px) scale(1.02);
    box-shadow:
        0 8px 30px rgba(139, 26, 26, 0.5),
        0 0 40px rgba(139, 26, 26, 0.3);
    animation: none;
}

.btn-submit-form:active {
    transform: translateY(0) scale(0.98);
}

.btn-submit-form svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.btn-submit-form:hover svg {
    transform: translateX(3px);
}

.map-section {
    position: relative;
    background: var(--black);
}

.map-container {
    position: relative;
    width: 100%;
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 400px;
    filter: grayscale(1) invert(1) brightness(1.1) contrast(0.9);
}

.map-overlay-info {
    position: absolute;
    top: 50%;
    left: 60px;
    transform: translateY(-50%);
    z-index: 10;
}

.map-info-card {
    background: rgba(0, 0, 0, 0.95);
    padding: 30px 35px;
    border-radius: 16px;
    border: 1px solid rgba(139, 26, 26, 0.4);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(139, 0, 0, 0.3),
        0 0 60px rgba(139, 0, 0, 0.15);
}

.map-info-card h3 {
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.map-info-card p {
    color: var(--light-gray);
    font-size: 0.95rem;
    margin-bottom: 5px;
    line-height: 1.6;
}

.map-info-card .btn-small {
    margin-top: 20px;
    padding: 12px 24px;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .map-overlay-info {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        padding: 30px 20px;
        background: var(--black);
    }

    .map-info-card {
        border-radius: 0;
        border: none;
        box-shadow: none;
        padding: 0;
        background: transparent;
        text-align: center;
    }

    .map-container iframe {
        height: 300px;
    }
}

.request-form {
    padding: 120px 0;
    background: var(--darker-gray);
}

.form-header {
    text-align: center;
    margin-bottom: 60px;
}

.form-header h2 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.form-header p {
    color: var(--light-gray);
    font-size: 1.1rem;
}

.form {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.02);
    padding: 60px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

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

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

.form-group label {
    display: block;
    margin-bottom: 12px;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--white);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--white);
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    background: rgba(255, 255, 255, 0.06);
}

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

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.checkbox-group label {
    margin-bottom: 0;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--light-gray);
}

.footer-new {
    background: #f5f5f5;
    padding: 80px 0 30px;
    border-top: 1px solid #e0e0e0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 50px;
    border-bottom: 1px solid #ddd;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-logo-img {
    height: 150px;
    width: auto;
    object-fit: contain;
    margin-bottom: 20px;
    align-self: flex-start;
}

.footer-tagline {
    color: #666;
    font-size: 1rem;
    line-height: 1.7;
    max-width: 300px;
}

.footer-heading {
    color: var(--black);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer-heading::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-red);
    border-radius: 2px;
}

.footer-hours-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    color: #555;
    font-size: 0.95rem;
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-row.highlight {
    color: var(--primary-red);
    font-weight: 600;
    background: linear-gradient(
        135deg,
        rgba(139, 26, 26, 0.08) 0%,
        rgba(139, 26, 26, 0.03) 100%
    );
    margin: 8px -12px 0;
    padding: 12px;
    border-radius: 8px;
    border-bottom: none;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #555;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 10px 14px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid transparent;
}

.contact-item:hover {
    color: var(--primary-red);
    background: rgba(139, 26, 26, 0.05);
    border-color: rgba(139, 26, 26, 0.15);
    transform: translateX(5px);
}

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

.contact-item.address {
    align-items: flex-start;
}

.contact-item.address svg {
    margin-top: 2px;
}

.address-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    line-height: 1.5;
}

.address-text span {
    color: #555;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    color: #888;
    font-size: 0.9rem;
}

.footer-bottom p {
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

body.aos-ready [data-aos] {
    opacity: 0;
    transition: all 0.6s ease;
}

body.aos-ready [data-aos].aos-animate {
    opacity: 1;
}

body.aos-ready [data-aos="fade-up"] {
    transform: translateY(50px);
}

body.aos-ready [data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

body.aos-ready [data-aos="zoom-in"] {
    transform: scale(0.9);
}

body.aos-ready [data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

body.aos-ready [data-aos="slide-left"] {
    transform: translateX(-100px);
}

body.aos-ready [data-aos="slide-left"].aos-animate {
    transform: translateX(0);
}

body.aos-ready [data-aos="slide-right"] {
    transform: translateX(100px);
}

body.aos-ready [data-aos="slide-right"].aos-animate {
    transform: translateX(0);
}

body.aos-ready [data-aos="zoom-bounce"] {
    transform: scale(0.5);
}

body.aos-ready [data-aos="zoom-bounce"].aos-animate {
    transform: scale(1);
    animation: zoomBounceAOS 0.6s ease;
}

@keyframes zoomBounceAOS {
    0% { transform: scale(0.5); }
    60% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

body.aos-ready [data-aos="rotate-in"] {
    transform: rotate(-15deg) scale(0.9);
}

body.aos-ready [data-aos="rotate-in"].aos-animate {
    transform: rotate(0) scale(1);
}

body.aos-ready [data-aos="flip-up"] {
    transform: perspective(600px) rotateX(90deg);
    transform-origin: center bottom;
}

body.aos-ready [data-aos="flip-up"].aos-animate {
    transform: perspective(600px) rotateX(0);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(10px);
    padding: 30px;
    z-index: 10000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.cookie-text h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--white);
}

.cookie-text p {
    color: var(--light-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

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

.cookie-btn {
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 500;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-accept-all {
    background: var(--primary-red);
    color: var(--white);
}

.cookie-accept-all:hover {
    background: #a01f1f;
    transform: translateY(-2px);
}

.cookie-necessary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-necessary:hover {
    background: rgba(255, 255, 255, 0.15);
}

.cookie-settings {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-settings:hover {
    background: rgba(255, 255, 255, 0.05);
}

.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cookie-modal.show {
    opacity: 1;
    visibility: visible;
}

.cookie-modal-content {
    background: var(--dark-gray);
    border-radius: 16px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-modal-header {
    padding: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-modal-header h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--white);
    margin: 0;
}

.cookie-close {
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cookie-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.cookie-modal-body {
    padding: 30px;
}

.cookie-category {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cookie-category:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.cookie-category-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cookie-category-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin: 0;
}

.cookie-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cookie-badge.required {
    background: var(--primary-red);
    color: var(--white);
}

.cookie-badge.optional {
    background: rgba(255, 255, 255, 0.1);
    color: var(--light-gray);
}

.cookie-description {
    color: var(--light-gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.cookie-switch {
    position: relative;
    display: inline-block;
    width: 52px;
    height: 28px;
}

.cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    transition: 0.3s;
    border-radius: 28px;
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background: white;
    transition: 0.3s;
    border-radius: 50%;
}

.cookie-switch input:checked + .cookie-slider {
    background: var(--primary-red);
}

.cookie-switch input:checked + .cookie-slider:before {
    transform: translateX(24px);
}

.cookie-switch input:disabled + .cookie-slider {
    background: var(--primary-red);
    opacity: 0.6;
    cursor: not-allowed;
}

.cookie-modal-footer {
    padding: 20px 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.cookie-save {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-save:hover {
    background: rgba(255, 255, 255, 0.15);
}

@media (max-width: 968px) {
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }

    .cookie-modal-content {
        margin: 20px;
    }

    .cookie-modal-header {
        padding: 20px;
    }

    .cookie-modal-body {
        padding: 20px;
    }

    .cookie-modal-footer {
        padding: 15px 20px;
        flex-direction: column;
    }

    .cookie-modal-footer .cookie-btn {
        width: 100%;
    }
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: glow-pulse 2s ease-in-out infinite;
}

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

.whatsapp-icon {
    width: 36px;
    height: 36px;
    color: white;
}

@keyframes glow-pulse {
    0%,
    100% {
        box-shadow:
            0 4px 20px rgba(37, 211, 102, 0.4),
            0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    50% {
        box-shadow:
            0 4px 30px rgba(37, 211, 102, 0.6),
            0 0 0 15px rgba(37, 211, 102, 0);
    }
}

@media (max-width: 1200px) {
    .hero-title {
        font-size: 4rem;
    }

    .section-title {
        font-size: 3rem;
    }

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

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

    
    .nav-menu {
        display: none;
    }

    .burger-menu {
        display: flex;
    }

    .hero-title {
        font-size: 2.2rem;
        min-height: 220px;
    }

    .section-title {
        font-size: 2rem;
    }

    .menu-link {
        font-size: 2rem;
    }

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

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

    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-right {
        flex-direction: column;
        gap: 15px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

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

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

    .features-cta .btn {
        width: 100%;
        max-width: 300px;
    }

    
    .contact-form-header .section-title {
        font-size: 2.2rem;
    }

    .contact-form-horizontal {
        padding: 30px;
    }

    
    .contact-decor,
    .contact-glow-orb {
        display: none;
    }

    
    .contact-form-horizontal .form-group:hover {
        transform: none;
    }

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

    .form-row-3 .form-group:first-child {
        grid-column: 1 / -1;
    }

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

    .form-row-submit {
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
    }

    .btn-submit-form {
        width: 100%;
        justify-content: center;
    }

    .trust-content .section-title {
        font-size: 2.5rem;
    }

    
    .reviews-carousel {
        gap: 15px;
        padding: 0 10px;
    }

    .reviews-wrapper {
        border-radius: 16px;
    }

    .carousel-arrow {
        width: 40px;
        height: 40px;
    }

    .carousel-arrow svg {
        width: 18px;
        height: 18px;
    }

    .review-slide {
        padding: 8px;
    }

    .review-card {
        padding: 30px 25px;
    }

    .review-text {
        font-size: 1rem;
    }

    .trust-content .section-title {
        font-size: 2rem;
    }

    .wave-transition {
        height: 80px;
    }

    
    .work-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .work-image-wrapper img {
        height: 350px;
    }

    .work-overlay {
        padding: 30px 20px;
    }

    
    .work-image-wrapper.in-view .work-overlay {
        transform: translateY(0);
    }

    .work-image-wrapper.in-view img {
        transform: scale(1.05);
    }

    
    .work-image-wrapper:hover .work-overlay {
        transform: translateY(100%);
    }

    .work-image-wrapper:hover img {
        transform: scale(1);
    }

    .work-image-wrapper.in-view:hover .work-overlay {
        transform: translateY(0);
    }

    .work-image-wrapper.in-view:hover img {
        transform: scale(1.05);
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 60px;
        height: 60px;
    }

    .whatsapp-icon {
        width: 32px;
        height: 32px;
    }

    
    .logo-image {
        height: 120px;
    }

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

    .footer-logo-img {
        height: 120px;
        margin-bottom: 20px;
        align-self: flex-start;
    }

    .footer-tagline {
        max-width: 100%;
    }

    .footer-heading::after {
        left: 0;
        transform: none;
    }

    .hours-row.highlight {
        margin: 8px 0 0;
    }

    .contact-item {
        justify-content: flex-start;
    }

    .contact-item:hover {
        transform: none;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: left;
        align-items: flex-start;
    }

    
    .nav-contact-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .nav-contact-btn svg {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
        min-height: 180px;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .menu-link {
        font-size: 1.5rem;
    }

    
    .contact-form-section {
        padding: 60px 0;
    }

    .contact-form-header .section-title {
        font-size: 1.8rem;
    }

    .contact-description {
        font-size: 1rem;
        padding: 0 10px;
    }

    .contact-form-horizontal {
        padding: 25px 20px;
        border-radius: 16px;
        margin: 0 10px;
    }

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

    .form-row-3 .form-group:first-child {
        grid-column: auto;
    }

    .form-label {
        font-size: 0.85rem;
    }

    .form-input,
    .form-select {
        padding: 14px 16px;
        font-size: 0.95rem;
    }

    .btn-submit-form {
        padding: 16px 30px;
        font-size: 1rem;
    }

    
    .reviews-carousel {
        flex-direction: row;
        gap: 0;
        padding: 0;
    }

    .carousel-arrow {
        display: none;
    }

    .reviews-wrapper {
        width: 100%;
        border-radius: 15px;
    }

    .review-slide {
        padding: 5px;
    }

    .review-card {
        padding: 25px 20px;
        border-radius: 15px;
    }

    .review-text {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .review-stars {
        margin-bottom: 15px;
    }

    .review-stars span {
        font-size: 1.1rem;
    }

    .review-author {
        font-size: 0.9rem;
    }

    .carousel-dots {
        margin-top: 20px;
        gap: 10px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    .trust-content .section-title {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }

    .trust-content .section-subtitle {
        font-size: 0.75rem;
    }

    .wave-transition {
        height: 60px;
    }

    .trust-section {
        padding: 80px 0 100px;
    }

    
    .work-showcase {
        padding: 80px 0;
    }

    .work-image-wrapper img {
        height: 280px;
    }

    .work-image-wrapper:hover {
        transform: scale(1.01);
    }

    .work-overlay {
        padding: 25px 15px;
    }

    .work-label {
        font-size: 0.8rem;
        padding: 8px 16px;
    }

    .work-description {
        font-size: 0.95rem;
    }

    
    .logo-image {
        height: 100px;
    }

    .footer-logo-img {
        height: 100px;
    }
}

.faq-section {
    padding: 100px 0;
    background: var(--darker-gray);
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(196, 30, 58, 0.3);
}

.faq-item.active {
    border-color: var(--primary-red);
    background: rgba(196, 30, 58, 0.05);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-red);
}

.faq-question svg {
    flex-shrink: 0;
    color: var(--primary-red);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition:
        max-height 0.4s ease,
        padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 28px 24px;
    color: var(--light-gray);
    font-size: 1rem;
    line-height: 1.7;
}

.address-link {
    color: var(--primary-red);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.3s ease;
}

.address-link:hover {
    color: var(--white);
}

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

    .faq-question {
        padding: 20px;
        font-size: 1rem;
    }

    .faq-answer p {
        padding: 0 20px 20px;
        font-size: 0.95rem;
    }
}

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

.card-3d {
    perspective: 1000px;
    transform-style: preserve-3d;
}

.card-3d-inner {
    transition: transform 0.15s ease-out;
    transform-style: preserve-3d;
    will-change: transform;
}

.card-3d-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.15) 0%,
        transparent 50%,
        transparent 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    border-radius: inherit;
    z-index: 10;
}

.card-3d:hover .card-3d-inner::before {
    opacity: 1;
}

.service-card,
.gallery-card-hover,
.gallery-item,
.faq-item,
.review-card,
.work-item,
.city-item,
.contact-form-horizontal,
.section-header,
.contact-form-header {
    opacity: 1 !important;
    visibility: visible !important;
}

.service-card:hover {
    transform: translateY(-5px);
}

.card-3d-shine {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(255, 255, 255, 0.15) 0%,
        transparent 50%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    border-radius: inherit;
    z-index: 5;
}

.card-3d:hover .card-3d-shine {
    opacity: 1;
}

.text-split-word .word:nth-child(1) .word-inner { transition-delay: 0.05s; }
.text-split-word .word:nth-child(2) .word-inner { transition-delay: 0.10s; }
.text-split-word .word:nth-child(3) .word-inner { transition-delay: 0.15s; }
.text-split-word .word:nth-child(4) .word-inner { transition-delay: 0.20s; }
.text-split-word .word:nth-child(5) .word-inner { transition-delay: 0.25s; }
.text-split-word .word:nth-child(6) .word-inner { transition-delay: 0.30s; }
.text-split-word .word:nth-child(7) .word-inner { transition-delay: 0.35s; }
.text-split-word .word:nth-child(8) .word-inner { transition-delay: 0.40s; }

.text-scramble {
    font-family: inherit;
}

.text-scramble .char {
    display: inline-block;
    will-change: transform, opacity;
}

.text-highlight {
    position: relative;
    display: inline;
}

.text-highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-red), #ff4444);
    transition: width 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.text-highlight.animate::after {
    width: 100%;
}

.btn-magnetic {
    position: relative;
    transition: transform 0.3s ease;
}

.btn-magnetic-inner {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: inherit;
    padding: inherit;
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
}

[data-aos="slide-left"] {
    opacity: 0;
    transform: translateX(-100px);
}

[data-aos="slide-left"].aos-animate {
    opacity: 1;
    transform: translateX(0);
}

[data-aos="slide-right"] {
    opacity: 0;
    transform: translateX(100px);
}

[data-aos="slide-right"].aos-animate {
    opacity: 1;
    transform: translateX(0);
}

[data-aos="zoom-bounce"] {
    opacity: 0;
    transform: scale(0.5);
}

[data-aos="zoom-bounce"].aos-animate {
    opacity: 1;
    transform: scale(1);
    animation: zoomBounce 0.6s ease forwards;
}

@keyframes zoomBounce {
    0% { transform: scale(0.5); }
    60% { transform: scale(1.1); }
    80% { transform: scale(0.95); }
    100% { transform: scale(1); }
}

[data-aos="rotate-in"] {
    opacity: 0;
    transform: rotate(-15deg) scale(0.9);
}

[data-aos="rotate-in"].aos-animate {
    opacity: 1;
    transform: rotate(0) scale(1);
}

[data-aos="flip-up"] {
    opacity: 0;
    transform: perspective(600px) rotateX(90deg);
    transform-origin: center bottom;
}

[data-aos="flip-up"].aos-animate {
    opacity: 1;
    transform: perspective(600px) rotateX(0);
}

.stagger-children > * {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.stagger-children.animate > *:nth-child(1) { transition-delay: 0.1s; }
.stagger-children.animate > *:nth-child(2) { transition-delay: 0.2s; }
.stagger-children.animate > *:nth-child(3) { transition-delay: 0.3s; }
.stagger-children.animate > *:nth-child(4) { transition-delay: 0.4s; }
.stagger-children.animate > *:nth-child(5) { transition-delay: 0.5s; }
.stagger-children.animate > *:nth-child(6) { transition-delay: 0.6s; }

.stagger-children.animate > * {
    opacity: 1;
    transform: translateY(0);
}

.parallax-slow {
    will-change: transform;
}

.parallax-medium {
    will-change: transform;
}

.parallax-fast {
    will-change: transform;
}

.icon-animate {
    transition: transform 0.3s ease;
}

.icon-animate:hover {
    animation: iconBounce 0.5s ease;
}

@keyframes iconBounce {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.2); }
    50% { transform: scale(0.9); }
    75% { transform: scale(1.1); }
}

.icon-rotate:hover {
    animation: iconRotate 0.6s ease;
}

@keyframes iconRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.icon-shake:hover {
    animation: iconShake 0.5s ease;
}

@keyframes iconShake {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(-3px) rotate(-5deg); }
    40% { transform: translateX(3px) rotate(5deg); }
    60% { transform: translateX(-3px) rotate(-3deg); }
    80% { transform: translateX(3px) rotate(3deg); }
}

.icon-pulse {
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.icon-key-unlock:hover {
    animation: keyUnlock 0.8s ease forwards;
}

@keyframes keyUnlock {
    0% { transform: rotate(0deg); }
    30% { transform: rotate(-15deg); }
    60% { transform: rotate(15deg) translateX(5px); }
    100% { transform: rotate(0deg) translateX(0); }
}

.icon-phone-ring {
    animation: phoneRingEnhanced 2s ease-in-out infinite;
}

@keyframes phoneRingEnhanced {
    0%, 100% { transform: rotate(0deg); }
    5% { transform: rotate(-10deg); }
    10% { transform: rotate(10deg); }
    15% { transform: rotate(-10deg); }
    20% { transform: rotate(10deg); }
    25% { transform: rotate(0deg); }
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-scale {
    transform: scale(0.95);
    opacity: 0.5;
    transition: transform 0.6s ease, opacity 0.6s ease;
}

.scroll-scale.visible {
    transform: scale(1);
    opacity: 1;
}

.blur-reveal {
    filter: blur(0);
    opacity: 1;
    transition: filter 0.8s ease, opacity 0.8s ease;
}

.blur-reveal.visible {
    filter: blur(0);
    opacity: 1;
}

.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--black);
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(139, 26, 26, 0.2);
    border-top-color: var(--primary-red);
    border-radius: 50%;
    animation: loaderSpin 1s linear infinite;
}

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

.btn-hover-fill {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-hover-fill::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
    z-index: -1;
}

.btn-hover-fill:hover::before {
    left: 100%;
}

.btn-glow-border {
    position: relative;
}

.btn-glow-border::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-red), #ff4444, var(--primary-red));
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    filter: blur(8px);
}

.btn-glow-border:hover::after {
    opacity: 1;
    animation: glowRotate 3s linear infinite;
}

@keyframes glowRotate {
    0% { filter: blur(8px) hue-rotate(0deg); }
    100% { filter: blur(8px) hue-rotate(360deg); }
}

.float-element {
    animation: floatGentle 6s ease-in-out infinite;
}

@keyframes floatGentle {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-10px) rotate(2deg); }
    66% { transform: translateY(-5px) rotate(-2deg); }
}

.float-element-2 {
    animation: floatGentle2 8s ease-in-out infinite;
}

@keyframes floatGentle2 {
    0%, 100% { transform: translateY(0) translateX(0); }
    25% { transform: translateY(-15px) translateX(5px); }
    50% { transform: translateY(-5px) translateX(-5px); }
    75% { transform: translateY(-10px) translateX(3px); }
}

.section-transition {
    position: relative;
}

.section-transition::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent, var(--black));
    pointer-events: none;
    z-index: 1;
}

.reveal-element {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-element.revealed {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.text-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.text-reveal.text-revealed {
    opacity: 1;
    transform: translateY(0);
}

.btn-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

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

.navbar {
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.navbar-scrolled {
    background: rgba(0, 0, 0, 0.95) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.navbar-hidden {
    transform: translateY(-100%);
}

@keyframes iconBounce {
    0% { transform: scale(0.3) rotate(-10deg); opacity: 0; }
    50% { transform: scale(1.1) rotate(5deg); }
    70% { transform: scale(0.9) rotate(-3deg); }
    100% { transform: scale(1) rotate(0); opacity: 1; }
}

.service-icon {
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.icon-animate {
    transition: transform 0.3s ease;
}

.service-card:hover .icon-animate {
    animation: iconPulse 0.6s ease;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.icon-phone-ring {
    animation: none;
    transition: transform 0.3s ease;
}

.btn-hero:hover .icon-phone-ring,
.nav-contact-btn:hover .icon-phone-ring {
    animation: phoneRing 0.5s ease;
}

@keyframes phoneRing {
    0%, 100% { transform: rotate(0); }
    20% { transform: rotate(-15deg); }
    40% { transform: rotate(15deg); }
    60% { transform: rotate(-10deg); }
    80% { transform: rotate(10deg); }
}

.btn-primary,
.btn-hero {
    position: relative;
    overflow: hidden;
}

.btn-primary::before,
.btn-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.5s ease;
}

.btn-primary:hover::before,
.btn-hero:hover::before {
    left: 100%;
}

.service-card,
.gallery-item,
.review-card {
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-card::after,
.gallery-item::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(139, 26, 26, 0.3) 50%,
        transparent 70%
    );
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.service-card:hover::after,
.gallery-item:hover::after {
    opacity: 1;
}

.services-grid .service-card:nth-child(1) { transition-delay: 0.1s; }
.services-grid .service-card:nth-child(2) { transition-delay: 0.2s; }
.services-grid .service-card:nth-child(3) { transition-delay: 0.3s; }
.services-grid .service-card:nth-child(4) { transition-delay: 0.4s; }
.services-grid .service-card:nth-child(5) { transition-delay: 0.5s; }
.services-grid .service-card:nth-child(6) { transition-delay: 0.6s; }

.faq-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    transform: translateX(10px);
    box-shadow: -5px 0 20px rgba(139, 26, 26, 0.2);
}

.city-item {
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.city-item:hover {
    transform: translateY(-5px) scale(1.02);
    background: rgba(139, 26, 26, 0.2);
}

.work-image-wrapper img,
.gallery-item img {
    transition: transform 0.5s ease;
}

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

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(139, 26, 26, 0.3);
}

.btn-submit-form {
    position: relative;
    transition: all 0.3s ease;
}

.btn-submit-form.loading {
    pointer-events: none;
    opacity: 0.7;
}

.btn-submit-form.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

@keyframes spin {
    to { transform: translateY(-50%) rotate(360deg); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.brand-name {
    background: linear-gradient(
        90deg,
        var(--primary-red),
        #ff4444,
        var(--primary-red)
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientMove 3s linear infinite;
}

@keyframes gradientMove {
    to {
        background-position: 200% center;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-20px); }
    60% { transform: translateX(-50%) translateY(-10px); }
}

.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

@media (max-width: 768px) {
    
    .card-3d,
    .service-card {
        perspective: none;
        transform-style: flat;
    }

    .card-3d-inner {
        transform: none !important;
    }

    .card-3d-shine {
        display: none;
    }

    
    .text-split .char {
        transition-delay: 0s !important;
    }

    
    .parallax-slow,
    .parallax-medium,
    .parallax-fast {
        transform: none !important;
    }

    
    .reveal-element {
        transform: translateY(20px);
    }

    
    .services-grid .service-card {
        transition-delay: 0s !important;
    }

    
    .navbar-hidden {
        transform: none;
    }
}

@media (max-width: 968px) {
    
    .work-grid {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }

    .work-image-wrapper {
        border-radius: 16px;
    }

    
    .gallery-section {
        padding: 80px 0;
    }
}

@media (max-width: 768px) {
    
    html {
        font-size: 15px;
    }

    .container {
        padding: 0 20px;
    }

    
    .nav-container {
        padding: 0 15px;
        height: 65px;
    }

    .logo-image {
        height: 120px;
        top: 60%;
    }

    .logo {
        margin-left: -10px;
    }

    
    .hero {
        min-height: 85vh;
        padding-top: 80px;
    }

    .hero-content {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
        min-height: auto;
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 30px;
    }

    .hero-buttons {
        gap: 15px;
    }

    .hero-buttons .btn {
        padding: 16px 28px;
        font-size: 1rem;
        border-radius: 12px;
    }

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

    .section-subtitle {
        font-size: 0.85rem;
        letter-spacing: 2px;
        margin-bottom: 12px;
    }

    .section-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    
    .gallery-grid-new {
        gap: 20px;
    }

    .gallery-card-hover {
        height: 320px;
        border-radius: 16px;
    }

    .gallery-card-content-overlay {
        padding: 20px;
    }

    .gallery-card-content-overlay h3 {
        font-size: 1.2rem;
    }

    .gallery-card-details p {
        font-size: 0.9rem;
    }

    
    .work-showcase {
        padding: 60px 0;
    }

    .work-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .work-image-wrapper {
        border-radius: 14px;
    }

    .work-image-wrapper img {
        height: 280px;
        object-fit: cover;
    }

    .work-overlay {
        padding: 20px;
    }

    .work-label {
        font-size: 1rem;
    }

    .work-description {
        font-size: 0.85rem;
    }

    
    .services-section {
        padding: 60px 0;
    }

    .services-grid {
        gap: 20px;
    }

    .service-card {
        padding: 30px 25px;
        border-radius: 16px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }

    .service-card h3 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }

    .service-card p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    
    .features-grid {
        gap: 20px;
    }

    .feature-card {
        padding: 25px 20px;
        border-radius: 14px;
    }

    
    .trust-section {
        padding: 60px 0;
    }

    .trust-content .section-title {
        font-size: 2rem;
    }

    
    .review-card {
        padding: 25px 20px;
        border-radius: 14px;
    }

    .review-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .reviewer-info {
        align-items: center;
    }

    .reviewer-name {
        font-size: 1.1rem;
    }

    .review-text {
        font-size: 0.95rem;
        text-align: center;
    }

    
    .faq-section {
        padding: 60px 0;
    }

    .faq-item {
        border-radius: 12px;
    }

    .faq-question {
        padding: 20px;
        font-size: 1rem;
    }

    .faq-answer p {
        padding: 0 20px 20px;
        font-size: 0.95rem;
    }

    
    .footer-new {
        padding: 50px 0 30px;
    }

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

    .footer-col {
        align-items: center;
    }

    .footer-logo-img {
        height: 80px;
    }

    .footer-tagline {
        font-size: 0.95rem;
        max-width: 300px;
    }

    .footer-heading {
        font-size: 1.1rem;
    }

    .footer-hours-list {
        width: 100%;
        max-width: 280px;
    }

    .hours-row {
        padding: 12px 0;
    }

    .footer-contact {
        align-items: center;
    }

    .contact-item {
        justify-content: center;
    }

    .address-text {
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding-top: 30px;
    }

    .footer-links {
        gap: 20px;
    }

    
    .btn {
        padding: 14px 28px;
        font-size: 1rem;
        border-radius: 12px;
    }

    .btn-primary {
        min-height: 52px;
    }

    
    .contact-form-section {
        padding: 60px 0;
    }

    .contact-form-horizontal {
        padding: 30px 20px;
        border-radius: 16px;
    }

    
    .standorte-section {
        padding: 60px 0;
    }

    .cities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .city-item {
        padding: 15px;
        font-size: 0.9rem;
    }

    
    .menu-link {
        font-size: 2rem;
    }

    .menu-links li {
        margin: 20px 0;
    }

    .menu-call-btn {
        padding: 16px 35px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .container {
        padding: 0 16px;
    }

    
    .nav-container {
        height: 60px;
    }

    .logo-image {
        height: 100px;
        top: 55%;
    }

    .logo {
        margin-left: -12px;
    }

    
    .hero {
        min-height: 80vh;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons .btn {
        padding: 14px 24px;
        font-size: 0.95rem;
    }

    
    .section-title {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 0.8rem;
    }

    
    .gallery-card-hover {
        height: 280px;
    }

    .work-image-wrapper img {
        height: 240px;
    }

    
    .service-card {
        padding: 25px 20px;
    }

    .service-icon {
        width: 50px;
        height: 50px;
    }

    .service-card h3 {
        font-size: 1.2rem;
    }

    
    .review-card {
        padding: 20px 16px;
    }

    .review-text {
        font-size: 0.9rem;
    }

    
    .faq-question {
        padding: 16px;
        font-size: 0.95rem;
    }

    .faq-answer p {
        padding: 0 16px 16px;
        font-size: 0.9rem;
    }

    
    .footer-logo-img {
        height: 70px;
    }

    .footer-tagline {
        font-size: 0.9rem;
    }

    
    .cities-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    
    .menu-link {
        font-size: 1.6rem;
    }

    .menu-phone {
        font-size: 1.5rem;
    }

    .menu-call-btn {
        padding: 14px 30px;
        font-size: 1.1rem;
    }
}

@media (max-width: 360px) {
    .hero-title {
        font-size: 1.4rem;
    }

    .section-title {
        font-size: 1.35rem;
    }

    .hero-buttons .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .gallery-card-hover {
        height: 250px;
    }

    .menu-link {
        font-size: 1.4rem;
    }
}

@media (hover: none) and (pointer: coarse) {
    
    .btn {
        min-height: 48px;
    }

    .nav-link {
        padding: 12px 16px;
    }

    .faq-question {
        min-height: 60px;
    }

    
    .gallery-card-details {
        max-height: 100px;
        opacity: 1;
        margin-top: 10px;
    }

    
    .gallery-card-hover:hover {
        transform: none;
    }

    .service-card:hover {
        transform: none;
    }

    .work-image-wrapper:hover {
        transform: none;
    }

    
    .work-overlay {
        opacity: 1;
        background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 50%, transparent 100%);
    }
}

@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding-top: 70px;
    }

    .hero-title {
        font-size: 1.8rem;
        min-height: auto;
    }

    .fullscreen-menu {
        overflow-y: auto;
    }

    .menu-links li {
        margin: 15px 0;
    }

    .menu-link {
        font-size: 1.5rem;
    }
}

@supports (padding: max(0px)) {
    .navbar {
        padding-left: max(15px, env(safe-area-inset-left));
        padding-right: max(15px, env(safe-area-inset-right));
    }

    .footer-new {
        padding-bottom: max(30px, env(safe-area-inset-bottom));
    }

    .fullscreen-menu {
        padding-left: max(20px, env(safe-area-inset-left));
        padding-right: max(20px, env(safe-area-inset-right));
        padding-bottom: max(20px, env(safe-area-inset-bottom));
    }
}

.service-page {
    padding-top: 100px;
    min-height: 100vh;
    background: var(--black);
    overflow-x: hidden;
}

.service-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.service-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.1);
    animation: heroImageReveal 1.5s ease forwards;
}

@keyframes heroImageReveal {
    to {
        opacity: 0.5;
        transform: scale(1);
    }
}

.service-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), var(--black));
}

.service-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 20px;
}

.service-hero-content h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 25px;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeSlideUp 0.8s ease 0.3s forwards;
}

.service-hero-content p {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 650px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeSlideUp 0.8s ease 0.5s forwards;
}

.hero-line {
    width: 80px;
    height: 3px;
    background: var(--primary-red);
    margin: 30px auto 0;
    opacity: 0;
    transform: scaleX(0);
    animation: lineReveal 0.6s ease 0.8s forwards;
}

@keyframes lineReveal {
    to {
        opacity: 1;
        transform: scaleX(1);
    }
}

.service-content {
    padding: 100px 0;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-red);
    text-decoration: none;
    margin-bottom: 50px;
    font-size: 1.1rem;
    transition: gap 0.3s ease, transform 0.3s ease;
    opacity: 0;
    animation: fadeIn 0.6s ease 0.4s forwards;
}

.back-link:hover {
    gap: 15px;
    transform: translateX(-5px);
}

.back-link svg {
    transition: transform 0.3s ease;
}

.back-link:hover svg {
    transform: translateX(-3px);
}

.service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
}

.service-grid.reverse {
    direction: rtl;
}

.service-grid.reverse > * {
    direction: ltr;
}

.animate-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-left.visible,
.animate-right.visible,
.animate-up.visible {
    opacity: 1;
    transform: translate(0);
}

.service-text h2 {
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 25px;
    position: relative;
}

.service-text h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease 0.3s;
}

.animate-left.visible .service-text h2::after,
.animate-right.visible .service-text h2::after,
.service-text.visible h2::after {
    transform: scaleX(1);
}

.service-text p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.9;
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.service-text ul {
    list-style: none;
    padding: 0;
    margin: 35px 0;
}

.service-text ul li {
    color: rgba(255, 255, 255, 0.85);
    padding: 15px 0;
    padding-left: 40px;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.5s ease, transform 0.5s ease, background 0.3s ease;
}

.service-text ul li:hover {
    background: rgba(139, 26, 26, 0.1);
    padding-left: 45px;
}

.service-text ul li.visible {
    opacity: 1;
    transform: translateX(0);
}

.service-text ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: rgba(139, 26, 26, 0.2);
    border-radius: 50%;
}

.service-text ul li::after {
    content: "\2713";
    position: absolute;
    left: 6px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-red);
    font-weight: bold;
    font-size: 0.9rem;
}

.service-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.service-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 26, 26, 0.1), transparent);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-image:hover::before {
    opacity: 0;
}

.service-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.service-image:hover img {
    transform: scale(1.05);
}

.image-container {
    position: relative;
}

.floating-keys {
    position: absolute;
    bottom: -20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
    z-index: 1;
    pointer-events: none;
}

.floating-key {
    opacity: 0;
    transform: translateY(-30px);
    transition: opacity 0.4s ease, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.floating-key svg {
    width: 28px;
    height: 28px;
    fill: var(--primary-red);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.image-container:hover .floating-key {
    opacity: 1;
    transform: translateY(0);
}

.image-container:hover .floating-key:nth-child(1) {
    transition-delay: 0s;
}

.image-container:hover .floating-key:nth-child(2) {
    transition-delay: 0.08s;
}

.image-container:hover .floating-key:nth-child(3) {
    transition-delay: 0.16s;
}

.service-cta {
    text-align: center;
    padding: 60px 50px;
    background: #111;
    border-radius: 16px;
    margin-top: 80px;
    border-left: 4px solid var(--primary-red);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.service-cta:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(139, 26, 26, 0.2);
    border-left-color: #fff;
}

.service-cta h3 {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.service-cta:hover h3 {
    color: var(--primary-red);
}

.service-cta p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 30px;
    font-size: 1rem;
}

.service-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

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

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@media (max-width: 968px) {
    .service-grid {
        display: flex;
        flex-direction: column;
        gap: 50px;
    }

    .service-grid .service-image,
    .service-grid .image-container {
        order: -1;
    }

    .service-grid.reverse {
        direction: ltr;
    }

    .service-hero-content h1 {
        font-size: 2.2rem;
    }

    .service-hero-content p {
        font-size: 1.1rem;
    }

    .service-hero {
        height: 60vh;
        min-height: 400px;
    }

    .service-cta {
        padding: 50px 30px;
    }
}

@media (max-width: 768px) {
    .service-page {
        padding-top: 80px;
    }

    .service-hero {
        height: 55vh;
        min-height: 350px;
    }

    .service-hero-content h1 {
        font-size: 1.9rem;
        margin-bottom: 18px;
    }

    .service-hero-content p {
        font-size: 1rem;
        padding: 0 15px;
    }

    .hero-line {
        width: 60px;
        margin-top: 20px;
    }

    .service-content {
        padding: 60px 0;
    }

    .back-link {
        margin-bottom: 35px;
        font-size: 1rem;
    }

    .service-grid {
        gap: 40px;
        margin-bottom: 70px;
    }

    .service-text h2 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .service-text p {
        font-size: 1rem;
        line-height: 1.8;
        margin-bottom: 20px;
    }

    .service-text ul {
        margin: 25px 0;
    }

    .service-text ul li {
        padding: 12px 0 12px 35px;
        font-size: 0.95rem;
    }

    .service-text ul li::before {
        width: 20px;
        height: 20px;
    }

    .service-text ul li::after {
        left: 5px;
        font-size: 0.8rem;
    }

    .service-image {
        border-radius: 18px;
    }

    .service-cta {
        padding: 45px 25px;
        border-radius: 22px;
        margin-top: 60px;
    }

    .service-cta h3 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .service-cta p {
        font-size: 1rem;
        margin-bottom: 28px;
    }

    .floating-keys {
        bottom: -15px;
        gap: 15px;
    }

    .floating-key svg {
        width: 22px;
        height: 22px;
    }
}

@media (max-width: 480px) {
    .service-page {
        padding-top: 70px;
    }

    .service-hero {
        height: 50vh;
        min-height: 300px;
    }

    .service-hero-content {
        padding: 0 15px;
    }

    .service-hero-content h1 {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }

    .service-hero-content p {
        font-size: 0.9rem;
    }

    .hero-line {
        width: 50px;
        height: 2px;
        margin-top: 18px;
    }

    .service-content {
        padding: 45px 0;
    }

    .back-link {
        margin-bottom: 28px;
        font-size: 0.95rem;
        gap: 8px;
    }

    .back-link svg {
        width: 18px;
        height: 18px;
    }

    .service-grid {
        gap: 30px;
        margin-bottom: 50px;
    }

    .service-text h2 {
        font-size: 1.5rem;
        margin-bottom: 18px;
    }

    .service-text h2::after {
        width: 40px;
        bottom: -8px;
    }

    .service-text p {
        font-size: 0.95rem;
        line-height: 1.75;
        margin-bottom: 18px;
    }

    .service-text ul {
        margin: 20px 0;
    }

    .service-text ul li {
        padding: 10px 0 10px 32px;
        font-size: 0.9rem;
    }

    .service-text ul li::before {
        width: 18px;
        height: 18px;
    }

    .service-text ul li::after {
        left: 4px;
        font-size: 0.75rem;
    }

    .service-image {
        border-radius: 14px;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    }

    .service-cta {
        padding: 35px 20px;
        border-radius: 18px;
        margin-top: 45px;
    }

    .service-cta h3 {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }

    .service-cta p {
        font-size: 0.95rem;
        margin-bottom: 22px;
    }

    .service-cta .btn {
        padding: 14px 28px;
        font-size: 1rem;
    }
}

@media (hover: none) and (pointer: coarse) {
    .service-text ul li {
        padding-left: 35px;
    }

    .service-text ul li:hover {
        padding-left: 35px;
        background: transparent;
    }

    .service-image:hover img {
        transform: none;
    }

    .service-image:hover::before {
        opacity: 0;
    }
}

.legal-page {
    padding-top: 120px;
    padding-bottom: 80px;
    min-height: 100vh;
    background: var(--black);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.legal-header {
    margin-bottom: 50px;
    text-align: center;
}

.legal-header h1 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 15px;
}

.legal-header p {
    color: var(--light-gray);
    font-size: 1rem;
}

.legal-section {
    margin-bottom: 40px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.legal-section h2 {
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-red);
    display: inline-block;
}

.legal-section h3 {
    font-size: 1.1rem;
    color: var(--white);
    margin: 25px 0 15px;
}

.legal-section p,
.legal-section li {
    color: var(--light-gray);
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-section ul {
    list-style: none;
    padding-left: 0;
}

.legal-section ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.legal-section ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: var(--primary-red);
    border-radius: 50%;
}

.legal-section a {
    color: var(--primary-red);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.3s ease;
}

.legal-section a:hover {
    color: var(--white);
}

.contact-info {
    background: rgba(139, 0, 0, 0.1);
    border-left: 4px solid var(--primary-red);
    padding: 25px;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
}

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

.contact-info p:last-child {
    margin-bottom: 0;
}

.contact-info strong {
    color: var(--white);
}

.highlight-box {
    background: rgba(139, 0, 0, 0.1);
    border-left: 4px solid var(--primary-red);
    padding: 20px;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
}

.highlight-box p {
    margin-bottom: 0;
}

.placeholder {
    background: rgba(255, 193, 7, 0.1);
    border: 1px dashed rgba(255, 193, 7, 0.5);
    padding: 15px;
    border-radius: 8px;
    color: #ffc107;
    font-style: italic;
}

.legal-page .back-link {
    color: var(--light-gray);
    opacity: 1;
    animation: none;
}

.legal-page .back-link:hover {
    color: var(--primary-red);
}

.legal-page .back-link svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 768px) {
    .legal-page {
        padding-top: 100px;
    }

    .legal-header h1 {
        font-size: 1.8rem;
    }

    .legal-section {
        padding: 20px;
    }

    .legal-section h2 {
        font-size: 1.2rem;
    }
}
