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

body {
    font-family: Arial, sans-serif;
    color: #1e293b;
    transition: opacity 0.35s ease, transform 0.35s ease, filter 0.35s ease;
}

body.page-transition-out {
    opacity: 0;
    transform: translateY(18px);
    filter: blur(6px);
}

body.language-transition [data-key] {
    animation: languageFadeSwap 0.45s ease;
}

@keyframes languageFadeSwap {
    0% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
    35% {
        opacity: 0.15;
        transform: translateY(8px);
        filter: blur(3px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.navbar {
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    z-index: 1000;
}

.navbar-home {
    overflow: visible;
}

.navbar-home::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, transparent 0%, rgba(249,115,22,0.12) 22%, transparent 46%),
        linear-gradient(90deg, rgba(255,255,255,0.12), rgba(255,255,255,0));
    background-size: 220% 100%, 100% 100%;
    background-position: 100% 0, 0 0;
    pointer-events: none;
    animation: navbarGlowDrift 9s ease-in-out infinite;
}

.navbar-home .nav-container {
    position: relative;
    z-index: 1;
}

@keyframes navbarGlowDrift {
    0% {
        background-position: 100% 0, 0 0;
        opacity: 0.45;
    }
    50% {
        background-position: 0% 0, 0 0;
        opacity: 0.75;
    }
    100% {
        background-position: 100% 0, 0 0;
        opacity: 0.45;
    }
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.navbar nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #334155;
    margin-left: 25px;
    font-weight: 600;
    letter-spacing: 0.01em;
    padding: 10px 0;
    transition: color 0.3s ease, transform 0.3s ease;
}

.navbar nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 100%;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, #f97316, #fb923c);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.navbar nav a:hover {
    color: #f97316;
    transform: translateY(-1px);
}

.navbar nav a.active {
    color: #f97316;
}

.navbar nav a.active::after,
.navbar nav a:hover::after {
    transform: scaleX(1);
}

.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.hero-slider {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: var(--hero-bg-position, center center);
    z-index: 0;
    opacity: 1;
    transition: opacity 1s ease-in-out;
}

@media (max-width: 768px) {
    .hero-slider {
        background-position: var(--hero-bg-position-mobile, center center);
    }
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.20);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 999px;
    background: rgba(255,255,255,0.18);
    color: white;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    touch-action: manipulation;
    backdrop-filter: blur(8px);
    transition: background 0.3s ease, transform 0.3s ease;
}

.hero-nav:hover {
    background: rgba(249,115,22,0.85);
    transform: translateY(-50%) scale(1.05);
}

.hero-nav-prev {
    left: 24px;
}

.hero-nav-next {
    right: 24px;
}

@media (max-width: 768px) {
    .hero-nav {
        width: 44px;
        height: 44px;
        font-size: 24px;
    }

    .hero-nav-prev {
        left: 12px;
    }

    .hero-nav-next {
        right: 12px;
    }
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-title-text {
    display: inline-block;
    will-change: clip-path, opacity, filter, transform;
}

.hero-content h1.hero-title-typing .hero-title-text {
    clip-path: inset(0 100% 0 0);
    opacity: 0.2;
    filter: blur(8px);
    transform: translateY(8px);
    animation: heroTypingReveal var(--typing-duration, 1.9s) cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes heroTypingReveal {
    from {
        clip-path: inset(0 100% 0 0);
        opacity: 0.2;
        filter: blur(8px);
        transform: translateY(8px);
    }
    to {
        clip-path: inset(0 0 0 0);
        opacity: 1;
        filter: blur(0);
        transform: translateY(0);
    }
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

.btn {
    background: #f97316;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}

.btn:hover {
    background: #ea580c;
}

.site-footer {
    position: relative;
    background:
        radial-gradient(circle at top right, rgba(255,255,255,0.22), transparent 28%),
        linear-gradient(135deg, #f97316 0%, #ea580c 55%, #c2410c 100%);
    color: white;
    overflow: hidden;
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: auto auto -70px -70px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    pointer-events: none;
}

.footer-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 28px 0;
    z-index: 1;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 18px;
}

.footer-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    padding: 10px;
    border-radius: 18px;
    background: rgba(255,255,255,0.16);
    box-shadow: 0 18px 40px rgba(124,45,18,0.22);
}

.footer-copy strong {
    display: block;
    margin-bottom: 6px;
    font-size: 1.15rem;
    letter-spacing: 0.03em;
}

.footer-company {
    margin: 0 0 8px;
    font-size: 0.8rem;
    line-height: 1.6;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.84);
}

.footer-copy p,
.footer-designer {
    margin: 0;
    color: rgba(255,255,255,0.92);
}

.footer-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    white-space: nowrap;
    border-radius: 999px;
    background: rgba(255,255,255,0.96);
    color: #c2410c;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 14px 30px rgba(124,45,18,0.18);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.footer-contact-btn:hover {
    transform: translateY(-2px);
    background: #fff7ed;
    box-shadow: 0 18px 36px rgba(124,45,18,0.24);
}

.footer-policy-btn {
    background: rgba(255,255,255,0.18);
    color: white;
    border: 1px solid rgba(255,255,255,0.22);
    box-shadow: none;
}

.footer-policy-btn:hover {
    background: rgba(255,255,255,0.28);
    box-shadow: none;
}

.footer-designer {
    display: inline-block;
    padding: 12px 18px;
    border-radius: 999px;
    border: 1px solid rgba(255,244,214,0.45);
    background: rgba(120,53,15,0.26);
    color: #fff4d6;
    text-decoration: none;
    backdrop-filter: blur(8px);
    white-space: nowrap;
    transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.footer-designer:hover {
    transform: translateY(-2px);
    background: rgba(120,53,15,0.4);
    border-color: rgba(255,244,214,0.65);
    box-shadow: 0 16px 30px rgba(83,31,7,0.2);
}

.logo img {
    height: 60px;
}

.services {
    padding: 100px 0;
    background:
        radial-gradient(circle at top, rgba(249,115,22,0.08), transparent 42%),
        linear-gradient(180deg, #f8fafc 0%, #edf3f7 100%);
}

.why-us {
    padding: 100px 0;
    background:
        radial-gradient(circle at bottom right, rgba(15,23,42,0.06), transparent 35%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 56px;
    letter-spacing: -0.02em;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.card {
    background: white;
    padding: 30px;
    width: 300px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: 0.3s;
}

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

.card h3 {
    margin-bottom: 15px;
    color: #f97316;
}

.feature-grid {
    gap: 34px;
}

.feature-card {
    position: relative;
    width: 100%;
    min-height: 210px;
    padding: 34px 30px 30px;
    border-radius: 24px;
    border: 1px solid rgba(249,115,22,0.12);
    box-shadow: 0 22px 50px rgba(15,23,42,0.08);
    overflow: hidden;
}

.feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 30px;
    width: 72px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, #f97316, #fb923c);
}

.feature-card::after {
    content: "";
    position: absolute;
    right: -26px;
    bottom: -36px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(249,115,22,0.14), rgba(249,115,22,0) 70%);
    pointer-events: none;
}

.feature-card h3 {
    font-size: 1.95rem;
    line-height: 1.2;
    margin-bottom: 18px;
    max-width: 12ch;
}

.feature-card p {
    color: #334155;
    font-size: 1.02rem;
    line-height: 1.7;
    max-width: 28ch;
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 28px 60px rgba(15,23,42,0.12);
}

@media (max-width: 900px) {
    .service-cards {
        grid-template-columns: 1fr;
    }

    .footer-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-designer {
        white-space: normal;
    }

    .footer-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .logo {
        margin: 0 auto;
    }

    .logo img {
        height: 45px;
    }

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

    .feature-card {
        min-height: auto;
    }

    .feature-card h3,
    .feature-card p {
        max-width: none;
    }
}

.nav-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hamburger {
    width: 28px;
    height: 22px;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: calc(50% - 11px);
    z-index: 2000;
    transition: transform 0.15s ease;
}

.hamburger span {
    height: 3px;
    width: 100%;
    background: #ea580c;
    border-radius: 3px;
    transition: 0.3s ease;
}

.hamburger:active {
    transform: scale(0.9);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 900px) {
    .hamburger {
        display: flex;
    }

    .navbar nav a {
        margin-left: 0;
    }

    nav {
        position: fixed;
        top: 80px;
        left: 5%;
        width: 90%;
        background: white;
        border-radius: 12px;
        padding: 30px 0;
        box-shadow: 0 30px 60px rgba(0,0,0,0.15);

        transform: translateY(-20px);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
        text-align: center;
    }

    nav.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    nav a {
        display: block;
        padding: 15px 0;
        opacity: 0;
        transform: translateY(10px);
        transition: 0.3s ease;
        text-align: center;
        width: 100%;
        justify-content: center;
    }

    .navbar nav a::after {
        left: 50%;
        width: 120px;
        transform: translateX(-50%) scaleX(0);
        transform-origin: center;
    }

    .navbar nav a:hover::after,
    .navbar nav a.active::after {
        transform: translateX(-50%) scaleX(1);
    }

    nav.active a {
        opacity: 1;
        transform: translateY(0);
    }

    nav.active a:nth-child(1) { transition-delay: 0.1s; }
    nav.active a:nth-child(2) { transition-delay: 0.2s; }
    nav.active a:nth-child(3) { transition-delay: 0.3s; }
    nav.active a:nth-child(4) { transition-delay: 0.4s; }
}

.page-hero {
    background: linear-gradient(135deg, #f97316, #ea580c);
    padding: 160px 0 120px 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 -10px 40px rgba(0,0,0,0.1);
    animation: fadeInHero 1s ease forwards;
}

.page-hero::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    top: -150px;
    right: -150px;
}

.page-hero h1 {
    font-size: 50px;
    font-weight: 700;
    text-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.page-hero p {
    opacity: 0.9;
    margin-top: 15px;
    font-size: 18px;
}

.page-section {
    padding: 80px 0;
    background: #f8fafc;
}

.page-content {
    max-width: 900px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-size: 18px;
    line-height: 1.7;
}

.page-content h2 {
    margin-top: 30px;
    color: #f97316;
}

.country-list {
    margin-left: 20px;
    line-height: 1.8;
}

.contact-section {
    padding: 120px 0;
    background:
        radial-gradient(circle at top left, rgba(249,115,22,0.08), transparent 30%),
        linear-gradient(180deg, #f8fafc 0%, #edf3f7 100%);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
}

.contact-card {
    position: relative;
    background: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, #ffffff 100%);
    backdrop-filter: blur(12px);
    padding: 52px;
    border-radius: 28px;
    border: 1px solid rgba(249,115,22,0.12);
    box-shadow: 0 28px 65px rgba(15,23,42,0.08);
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.contact-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 52px;
    width: 90px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, #f97316, #fb923c);
}

.contact-card::after {
    content: "";
    position: absolute;
    right: -44px;
    bottom: -54px;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(249,115,22,0.12), rgba(249,115,22,0) 70%);
    pointer-events: none;
}

.contact-card:hover {
    transform: translateY(-8px);
    border-color: rgba(249,115,22,0.22);
    box-shadow: 0 34px 75px rgba(15,23,42,0.12);
}

.contact-card h2 {
    margin-bottom: 38px;
    color: #f97316;
    font-size: 2rem;
    line-height: 1.15;
    position: relative;
    z-index: 1;
}

.contact-item {
    margin-bottom: 25px;
}

.contact-item strong {
    display: block;
    margin-bottom: 5px;
    color: #1e293b;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
    transition: 0.4s;
    min-height: 450px;
}

.map-container:hover {
    transform: scale(1.02);
}

@media (max-width: 900px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
}

.map-container iframe {
    filter: grayscale(20%) contrast(1.05);
}

.contact-grid {
    display: grid;
    gap: 18px;
}

.contact-box {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 18px 20px;
    border-radius: 18px;
    border: 1px solid rgba(148,163,184,0.14);
    background: rgba(255,255,255,0.72);
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    z-index: 1;
}

.contact-box:hover {
    transform: translateX(6px);
    background: rgba(249,115,22,0.08);
    border-color: rgba(249,115,22,0.2);
    box-shadow: 0 16px 32px rgba(15,23,42,0.08);
}

.contact-box span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    font-size: 22px;
    background: rgba(249,115,22,0.1);
    border-radius: 14px;
}

.contact-box .whatsapp-icon svg {
    display: block;
    width: 24px;
    height: 24px;
    transform: translateX(1px);
}

.contact-box strong {
    display: block;
    margin-bottom: 6px;
    color: #0f172a;
    font-size: 0.98rem;
    letter-spacing: 0.01em;
}

.contact-box p {
    color: #334155;
    line-height: 1.75;
}

@media (max-width: 768px) {
    .footer-brand {
        align-items: flex-start;
    }

    .footer-logo {
        width: 54px;
        height: 54px;
    }

    .contact-card {
        padding: 34px 24px;
        border-radius: 22px;
    }

    .contact-card::before {
        left: 24px;
        width: 72px;
    }

    .contact-card h2 {
        font-size: 1.7rem;
    }

    .contact-box {
        padding: 16px;
        gap: 14px;
    }
}

.about-section {
    padding: 120px 0;
    background: linear-gradient(to bottom, #f8fafc, #eef2f7);
}

.about-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text h2 {
    margin-bottom: 30px;
    color: #f97316;
    font-size: 28px;
    font-weight: 700;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #1e293b;
    font-weight: 400;
    font-size: 16.5px;
}

.about-stats {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    animation: fadeUp 1.2s ease forwards;
}

.stat-box {
    position: relative;
    background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, #ffffff 100%);
    padding: 42px 38px;
    border-radius: 24px;
    border: 1px solid rgba(249,115,22,0.12);
    text-align: center;
    box-shadow: 0 22px 50px rgba(15,23,42,0.08);
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    width: 100%;
    max-width: 430px;
}

.stat-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 78px;
    height: 4px;
    transform: translateX(-50%);
    border-radius: 999px;
    background: linear-gradient(90deg, #f97316, #fb923c);
}

.stat-box::after {
    content: "";
    position: absolute;
    right: -30px;
    bottom: -42px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(249,115,22,0.14), rgba(249,115,22,0) 70%);
    pointer-events: none;
}

.stat-box:hover {
    transform: translateY(-10px);
    border-color: rgba(249,115,22,0.22);
    box-shadow: 0 30px 65px rgba(15,23,42,0.12);
}

.stat-box h3 {
    font-size: 48px;
    color: #f97316;
    font-weight: 700;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.stat-box p {
    color: #334155;
    font-size: 1rem;
    letter-spacing: 0.01em;
    position: relative;
    z-index: 1;
}

.count-suffix {
    display: inline-block;
    margin-left: 2px;
    opacity: 0;
    transform: translateY(8px) scale(0.85);
    animation: suffixPop 0.35s ease forwards;
}

@keyframes suffixPop {
    0% {
        opacity: 0;
        transform: translateY(8px) scale(0.85);
    }
    70% {
        opacity: 1;
        transform: translateY(-2px) scale(1.08);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.countries-section {
    padding: 60px 0 40px 0;
}

.countries-section h2 {
    text-align: center;
    margin-bottom: 50px;
    color: #f97316;
}

.countries-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(180px, 220px));
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.countries-grid div {
    position: relative;
    background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, #ffffff 100%);
    padding: 22px 20px;
    border-radius: 18px;
    border: 1px solid rgba(249,115,22,0.1);
    text-align: center;
    box-shadow: 0 16px 35px rgba(15,23,42,0.07);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.countries-grid div::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: linear-gradient(180deg, #f97316, #fb923c);
}

.countries-grid div:hover {
    transform: translateY(-6px);
    background: rgba(249,115,22,0.06);
    border-color: rgba(249,115,22,0.18);
    box-shadow: 0 24px 45px rgba(15,23,42,0.1);
}

.country-note {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    color: #475569;
}

@media (max-width: 900px) {
    .about-container {
        grid-template-columns: 1fr;
    }

    .stat-box {
        padding: 34px 24px;
    }

    .stat-box h3 {
        font-size: 42px;
    }

    .countries-grid {
        grid-template-columns: minmax(180px, 220px);
    }
}

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

.about-text {
    animation: fadeUp 0.8s ease forwards;
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

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

.about-section {
    padding: 80px 0 40px 0;
    background: linear-gradient(to bottom, #f8fafc, #eef2f7);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(249,115,22,0.08) 0%, transparent 70%);
    top: -200px;
    right: -200px;
}

.europe-map {
    margin-top: 30px;
    text-align: center;
}

.europe-map img {
    filter: grayscale(100%);
    width: 800px;
    max-width: 90%;
    opacity: 0.9;
    transition: 0.5s ease;
}

.europe-map img:hover {
    filter: grayscale(0%);
    transform: scale(1.03);
}

.reveal-left,
.reveal-right {
    opacity: 0;
    transition: all 0.8s ease;
}

.reveal-left {
    transform: translateX(-60px);
}

.reveal-right {
    transform: translateX(60px);
}

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

.map-container iframe {
    transition: transform 0.6s ease;
}

.map-container:hover iframe {
    transform: scale(1.02);
}

@keyframes fadeInHero {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-logo {
    width: 180px;
    margin-bottom: 30px;
    filter: drop-shadow(0 10px 25px rgba(0,0,0,0.2));
    animation: floatLogo 4s ease-in-out infinite;
}

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

.hero h1 {
    color: #ea580c;
    text-shadow:
        0 3px 8px rgba(0,0,0,0.42),
        0 14px 30px rgba(0,0,0,0.34),
        0 0 1px rgba(255,255,255,0.24),
        1px 1px 0 rgba(120,53,15,0.28);
}

.services-detail-section {
    padding: 100px 0;
    background:
        radial-gradient(circle at top left, rgba(249,115,22,0.08), transparent 28%),
        linear-gradient(180deg, #f8fafc 0%, #eef4f8 100%);
}

.service-block {
    position: relative;
    background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, #ffffff 100%);
    padding: 42px 42px 38px;
    margin-bottom: 40px;
    border-radius: 26px;
    border: 1px solid rgba(249,115,22,0.12);
    box-shadow: 0 24px 55px rgba(15,23,42,0.08);
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.service-block-expandable {
    transform-origin: top center;
}

.service-block-expandable.expanded {
    transform: scale(1.025);
    border-color: rgba(249,115,22,0.28);
    box-shadow: 0 38px 85px rgba(15,23,42,0.16);
    z-index: 3;
    padding-top: 92px;
}

.service-block-expandable.gallery-open {
    transform: scale(1.02);
}

.service-block-expandable.is-transitioning {
    pointer-events: none;
}

.service-block::before {
    content: "";
    position: absolute;
    top: 0;
    left: 42px;
    width: 84px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, #f97316, #fb923c);
}

.service-block::after {
    content: "";
    position: absolute;
    right: -40px;
    bottom: -48px;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(249,115,22,0.12), rgba(249,115,22,0) 70%);
    pointer-events: none;
}

.service-block:hover {
    transform: translateY(-10px);
    border-color: rgba(249,115,22,0.22);
    box-shadow: 0 32px 70px rgba(15,23,42,0.12);
}

.service-block h2 {
    color: #ea580c;
    margin-bottom: 20px;
    font-size: 2rem;
    line-height: 1.2;
    max-width: 18ch;
    position: relative;
    z-index: 1;
}

.service-intro-copy {
    position: relative;
    z-index: 1;
    transition: opacity 0.35s ease, transform 0.35s ease, max-height 0.35s ease, margin 0.35s ease;
    max-height: 600px;
}

.service-intro-copy.is-hidden {
    opacity: 0;
    transform: translateY(-16px);
    max-height: 0;
    margin: 0;
    overflow: hidden;
}

.service-intro-toggle {
    position: absolute;
    top: 26px;
    right: 26px;
    z-index: 2;
    border: 0;
    border-radius: 999px;
    padding: 10px 16px;
    background: linear-gradient(135deg, #fff1e8 0%, #ffd8bf 100%);
    color: #b45309;
    font-weight: 700;
    font-size: 0.92rem;
    cursor: pointer;
    border: 1px solid rgba(249,115,22,0.24);
    box-shadow: 0 12px 26px rgba(249,115,22,0.18);
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
    animation: serviceIntroButtonCue 1.9s ease-in-out infinite;
}

.service-intro-toggle:hover {
    transform: translateY(-2px);
    background: #f97316;
    color: white;
    box-shadow: 0 18px 34px rgba(249,115,22,0.24);
}

.service-block-expandable.expanded .service-intro-toggle {
    background: #ea580c;
    color: white;
    animation: none;
}

@keyframes serviceIntroButtonCue {
    0% {
        transform: translateY(0) scale(1);
        box-shadow: 0 12px 26px rgba(249,115,22,0.18), 0 0 0 0 rgba(249,115,22,0.22);
    }
    50% {
        transform: translateY(-3px) scale(1.04);
        box-shadow: 0 18px 36px rgba(249,115,22,0.3), 0 0 0 10px rgba(249,115,22,0.08);
    }
    100% {
        transform: translateY(0) scale(1);
        box-shadow: 0 12px 26px rgba(249,115,22,0.18), 0 0 0 0 rgba(249,115,22,0);
    }
}

.service-intro-gallery {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 18px;
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.service-intro-gallery[hidden] {
    display: none;
}

.service-intro-gallery-secondary {
    opacity: 0;
    transform: translateY(26px) scale(0.98);
}

.service-intro-gallery-secondary.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.service-gallery-item {
    border: 0;
    padding: 0;
    background: transparent;
    cursor: zoom-in;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(15,23,42,0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 54px rgba(15,23,42,0.16);
}

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

.service-intro-gallery-secondary .service-gallery-item img {
    height: 240px;
}

.service-image-lightbox {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(15,23,42,0.78);
    backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    z-index: 2100;
}

.service-image-lightbox.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.service-image-lightbox img {
    width: min(960px, 100%);
    max-height: calc(100vh - 48px);
    border-radius: 28px;
    object-fit: contain;
    box-shadow: 0 30px 70px rgba(0,0,0,0.32);
    background: white;
}

.service-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border: 0;
    border-radius: 999px;
    background: rgba(255,255,255,0.16);
    color: white;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    backdrop-filter: blur(10px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.2);
    transition: transform 0.25s ease, background 0.25s ease;
}

.service-lightbox-nav:hover {
    transform: translateY(-50%) scale(1.06);
    background: rgba(249,115,22,0.9);
}

.service-lightbox-prev {
    left: 28px;
}

.service-lightbox-next {
    right: 28px;
}

.service-block p,
.service-block li {
    position: relative;
    z-index: 1;
    color: #334155;
    font-size: 1.02rem;
    line-height: 1.8;
}

.service-block ul {
    padding-left: 0;
    list-style: none;
}

.service-block li {
    margin-bottom: 14px;
    padding-left: 30px;
}

.service-block li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(180deg, #f97316, #fb923c);
    box-shadow: 0 0 0 6px rgba(249,115,22,0.12);
}

.service-block p + p {
    margin-top: 14px;
}

@media (max-width: 768px) {
    .service-block {
        padding: 34px 24px 30px;
        border-radius: 22px;
    }

    .service-block::before {
        left: 24px;
        width: 70px;
    }

    .service-block h2 {
        font-size: 1.65rem;
        max-width: none;
    }

    .service-intro-toggle {
        position: static;
        align-self: flex-end;
        margin-bottom: 18px;
        padding: 9px 14px;
        font-size: 0.88rem;
    }

    .service-block-expandable.expanded {
        padding-top: 34px;
    }

    .service-block-expandable {
        display: flex;
        flex-direction: column;
    }

    .service-intro-gallery {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .service-gallery-item img {
        height: auto;
        max-height: 320px;
    }

    .service-intro-gallery-secondary .service-gallery-item img {
        height: auto;
    }

    .service-image-lightbox {
        padding: 16px;
    }

    .service-image-lightbox img {
        border-radius: 20px;
        width: min(100%, 98vw);
        max-height: calc(100vh - 20px);
    }

    .service-lightbox-nav {
        width: 48px;
        height: 48px;
        font-size: 24px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
    }

    .service-lightbox-nav:hover,
    .service-lightbox-nav:active {
        transform: translateX(-50%);
    }

    .service-lightbox-prev {
        top: 20px;
        bottom: auto;
    }

    .service-lightbox-next {
        top: auto;
        bottom: 20px;
    }
}

body.menu-open {
    overflow: hidden;
}

html, body {
    overflow-x: hidden;
}

.lang-switch {
    margin-left: 20px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px;
    border: 1px solid rgba(255,255,255,0.28);
    border-radius: 999px;
    background: linear-gradient(135deg, #f97316, #ea580c);
    box-shadow: 0 10px 24px rgba(234,88,12,0.22), inset 0 1px 0 rgba(255,255,255,0.16);
    transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}

.lang-switch:hover {
    filter: brightness(1.03);
    box-shadow: 0 14px 28px rgba(234,88,12,0.28), inset 0 1px 0 rgba(255,255,255,0.16);
}

.lang-switch.switching {
    animation: langSwitchPulse 0.45s ease;
}

@keyframes langSwitchPulse {
    0% {
        transform: scale(1) rotate(0deg);
        box-shadow: 0 0 0 rgba(234,88,12,0);
    }
    40% {
        transform: scale(0.96);
        box-shadow: 0 0 0 8px rgba(255,255,255,0.08);
    }
    100% {
        transform: scale(1) rotate(0deg);
        box-shadow: 0 0 0 rgba(234,88,12,0);
    }
}

.lang-switch-option {
    appearance: none;
    border: 0;
    background: transparent;
    color: rgba(255,255,255,0.88);
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1;
    min-width: 36px;
    padding: 8px 10px;
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.lang-switch-option:hover {
    color: #ffffff;
}

.lang-switch-option.is-active {
    background: #ffffff;
    color: #ea580c;
    box-shadow: 0 3px 10px rgba(15,23,42,0.12);
}

/* Varsayılan: Desktop */
.desktop-lang {
    display: inline-flex;
}

.mobile-lang {
    display: none;
}

/* Mobil */
@media (max-width: 900px) {

    .desktop-lang {
        display: none;
    }

    .mobile-lang {
        display: inline-flex;
        margin: 20px auto 0 auto;
        width: fit-content;
        text-align: center;
    }
}

#nav-menu .lang-switch {
    width: fit-content;
    margin: 20px auto 0 auto;
    text-align: center;
    display: none;
}

@media (max-width: 768px) {

    #lang-switch-desktop {
        display: none;
    }

    #nav-menu .lang-switch {
        display: inline-flex;
        margin-top: 20px;
        text-align: center;
    }
}

.lang-de .page-hero h1 {
    font-size: 2.6rem;
}

.scroll-to-top {
    position: fixed;
    right: 24px;
    bottom: 40px;
    width: 60px;
    height: 60px;
    border: 0;
    border-radius: 999px;
    background: #ea580c;
    color: white;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 16px 35px rgba(15,23,42,0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease, background 0.3s ease;
    z-index: 1100;
    touch-action: manipulation;
}

.service-shortcut-button {
    position: fixed;
    right: 24px;
    bottom: 116px;
    width: 60px;
    height: 60px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, #fb923c 0%, #ea580c 100%);
    color: white;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    cursor: pointer;
    box-shadow: 0 16px 35px rgba(15,23,42,0.22);
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease, box-shadow 0.3s ease;
    z-index: 1100;
    touch-action: manipulation;
}

.service-shortcut-button.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.service-shortcut-button:hover {
    box-shadow: 0 20px 42px rgba(234,88,12,0.3);
}

.service-shortcut-pill {
    position: absolute;
    right: 74px;
    top: 50%;
    transform: translateY(-50%);
    padding: 11px 16px;
    border-radius: 16px;
    background: rgba(255,255,255,0.94);
    color: #9a3412;
    font-size: 0.86rem;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 14px 32px rgba(15,23,42,0.14);
    border: 1px solid rgba(249,115,22,0.14);
    pointer-events: none;
    opacity: 0;
    transform: translateY(-50%) translateX(10px) scale(0.96);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.service-shortcut-pill::after {
    content: "";
    position: absolute;
    right: -6px;
    top: 50%;
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.94);
    border-top: 1px solid rgba(249,115,22,0.14);
    border-right: 1px solid rgba(249,115,22,0.14);
    transform: translateY(-50%) rotate(45deg);
}

.service-shortcut-button.visible .service-shortcut-pill {
    opacity: 1;
    transform: translateY(-50%) translateX(0) scale(1);
}

.service-shortcut-button::before {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: inherit;
    border: 1px solid rgba(249,115,22,0.24);
    opacity: 0;
    animation: serviceShortcutPulse 1.9s ease-in-out infinite;
}

@keyframes serviceShortcutPulse {
    0% {
        opacity: 0;
        transform: scale(0.92);
    }
    45% {
        opacity: 1;
        transform: scale(1.08);
    }
    100% {
        opacity: 0;
        transform: scale(1.2);
    }
}

.service-block-highlight {
    animation: serviceCardHighlight 2.2s ease;
}

.service-block-persistent-highlight {
    animation: serviceCardPersistentPulse 1.8s ease-in-out infinite;
}

@keyframes serviceCardPersistentPulse {
    0% {
        border-color: rgba(249,115,22,0.16);
        box-shadow:
            0 0 0 0 rgba(251,146,60,0),
            0 0 0 rgba(249,115,22,0),
            0 24px 55px rgba(15,23,42,0.08);
    }
    50% {
        border-color: rgba(249,115,22,0.34);
        box-shadow:
            0 0 0 8px rgba(251,146,60,0.1),
            0 0 34px rgba(249,115,22,0.18),
            0 24px 55px rgba(15,23,42,0.08);
    }
    100% {
        border-color: rgba(249,115,22,0.16);
        box-shadow:
            0 0 0 0 rgba(251,146,60,0),
            0 0 0 rgba(249,115,22,0),
            0 24px 55px rgba(15,23,42,0.08);
    }
}

@keyframes serviceCardHighlight {
    0% {
        box-shadow:
            0 0 0 0 rgba(249,115,22,0),
            0 24px 55px rgba(15,23,42,0.08);
        border-color: rgba(249,115,22,0.12);
    }
    25% {
        box-shadow:
            0 0 0 10px rgba(251,146,60,0.12),
            0 0 42px rgba(249,115,22,0.22),
            0 34px 75px rgba(15,23,42,0.14);
        border-color: rgba(249,115,22,0.36);
    }
    100% {
        box-shadow:
            0 0 0 0 rgba(249,115,22,0),
            0 24px 55px rgba(15,23,42,0.08);
        border-color: rgba(249,115,22,0.12);
    }
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: #c2410c;
}

@media (max-width: 768px) {
    .service-shortcut-button {
        right: 16px;
        bottom: 92px;
        width: 52px;
        height: 52px;
        font-size: 0.82rem;
    }

    .service-shortcut-pill {
        right: 62px;
        padding: 10px 13px;
        font-size: 0.78rem;
        max-width: 132px;
        white-space: normal;
        text-align: center;
        line-height: 1.2;
    }

    .scroll-to-top {
        right: 16px;
        bottom: 30px;
        width: 52px;
        height: 52px;
        font-size: 24px;
    }
}
