:root {
    --bg-main: #0E0E10;
    --bg-alt: #16161A;
    --bg-card: #1A1A20;

    --text-main: #fff;
    --text-muted: #A0A0B0;

    --accent: #F5B63A;
    --accent-hover: #D48E15;
    --border: #2A2A30;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);

    /* Single source of truth for hero image positioning */
    --hero-image-position: center 70%;
    --hero-image-position-mobile: 30% 80%;
    --hero-image-scale: 1.08;
    --hero-image-scale-mobile: 1.08;
    --hero-image-shift-x: 10%;
    --hero-image-shift-x-mobile: 0%;

}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

h1,
h2,
h3,
h4,
.logo {
    font-family: var(--font-heading);
    font-weight: 600;
}

/* =========================================================
   UTILITIES
   ========================================================= */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

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

.section {
    padding: 6rem 0;
}

.section-alt {
    background-color: var(--bg-alt);
}

.section-header {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.section-title {
    margin-bottom: 1rem;
    font-size: 2.5rem;
    color: #fff;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* Language display */
html[lang="cs"] .lang-en {
    display: none !important;
}

html[lang="en"] .lang-cs {
    display: none !important;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), #e39d22);
    color: var(--bg-main);
    box-shadow: 0 4px 15px rgba(245, 182, 58, 0.2);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #fcd279, var(--accent));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 182, 58, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: var(--accent);
    border: 1px solid var(--accent);
}

.btn-outline:hover {
    background-color: rgba(245, 182, 58, 0.1);
}

.btn-full {
    width: 100%;
}

.cta-mobile {
    display: none;
}

/* =========================================================
   HEADER
   ========================================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    padding: 1.5rem 0;
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

.header.scrolled {
    padding: 1rem 0;
    border-bottom-color: var(--border);
    background-color: rgba(14, 14, 16, 0.95);
    backdrop-filter: blur(10px);
}

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

.logo {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.logo .dot {
    color: var(--accent);
}

.nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav a {
    position: relative;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-main);
    transition: var(--transition);
}

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

.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 1px;
    background-color: var(--accent);
    transition: var(--transition);
}

.nav a:hover::after {
    width: 100%;
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
}

.lang-btn {
    padding: 0.2rem;
    border: none;
    background: none;
    color: var(--text-muted);
    cursor: pointer;
    font: inherit;
    transition: var(--transition);
}

.lang-btn:hover {
    color: var(--text-main);
}

.lang-btn.active {
    color: var(--accent);
}

.lang-divider {
    color: var(--border);
    user-select: none;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
}

/* ===== MOBILE MENU CLEAN VERSION ===== */

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    max-width: 85vw;
    height: 100vh;
    background-color: var(--bg-alt);
    z-index: 900;
    padding: 6.5rem 1.25rem 1.5rem;
    transition: right 0.3s ease;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    right: 0;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.mobile-nav-link {
    display: block;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.mobile-nav-link:hover {
    color: var(--accent);
}

/* ===== HAMBURGER CLEAN ===== */

.hamburger {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
    z-index: 1000;
}

.hamburger-box {
    width: 20px;
    height: 14px;
    position: relative;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background-color: var(--text-main);
    position: absolute;
    transition: all 0.2s ease;
}

.hamburger-inner {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger-inner::before {
    content: "";
    top: -6px;
}

.hamburger-inner::after {
    content: "";
    top: 6px;
}

.hamburger.active .hamburger-inner {
    background: transparent;
}

.hamburger.active .hamburger-inner::before {
    transform: rotate(45deg);
    top: 0;
}

.hamburger.active .hamburger-inner::after {
    transform: rotate(-45deg);
    top: 0;
}
/*
   ---------------------------------------------------------
   End of Mobile menu cleaned 
   ---------------------------------------------------------
   =========================================================
   HERO
   ========================================================= */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: var(--hero-image-position);
    transform: scale(var(--hero-image-scale)) translateX(var(--hero-image-shift-x));
/*    animation: zoom 20s infinite alternate ease-in-out;*/
}
/*
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(14, 14, 16, 0.88) 0%,
        rgba(14, 14, 16, 0.78) 38%,
        rgba(14, 14, 16, 0.45) 58%,
        rgba(14, 14, 16, 0.08) 82%,
        transparent 100%
    );
}
*/
.hero-glow-effect {
    position: absolute;
    top: 55%;
    left: 45%;
    z-index: 1;
    width: 35vw;
    height: 35vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 182, 58, 0.18) 0%, transparent 60%);
    pointer-events: none;
    mix-blend-mode: screen;
    animation: slow-glow 8s infinite alternate ease-in-out;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
}

.hero-highlight {
    color: var(--accent);
    font-weight: 700;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.45);
}

.hero-headline {
    margin-bottom: 1.2rem;
    font-size: clamp(3.5rem, 8vw, 6rem);
    line-height: 1.08;
    letter-spacing: 1px;
    text-shadow: 0 6px 30px rgba(0, 0, 0, 0.65);
}

.hero-subheadline {
    margin-bottom: 1.8rem;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 400;
    color: var(--text-main);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.hero-description.highlight-text {
    max-width: 600px;
    margin-top: 2rem;
    margin-bottom: 1.8rem;
    padding-left: 1.5rem;
    border-left: 3px solid var(--accent);
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    font-style: italic;
    backdrop-filter: blur(3px);
}

.hero-description-mobile {
    display: none;
}

.hero-trust {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    opacity: 0.8;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    color: var(--accent);
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

/* =========================================================
   SECTIONS
   ========================================================= */
.why-raclette {
    background-color: var(--bg-alt);
}

.how-it-works,
.ideal-events,
.faq-section,
.experience-section,
.social-proof,
.footer,
.sales-section {
    background-color: var(--bg-main);
}

.gallery-section,
.packages-section {
    background-color: var(--bg-alt);
}

/* =========================================================
   CARDS / GRIDS
   ========================================================= */
.features-grid,
.sales-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.features-grid {
    gap: 3rem;
}

.sales-grid {
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card,
.sales-card,
.pricing-card,
.step {
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.feature-card {
    padding: 3rem 2rem;
    border-radius: 12px;
}

.feature-card:hover,
.sales-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(245, 182, 58, 0.2);
    border-radius: 50%;
    color: var(--accent);
    background: linear-gradient(135deg, rgba(245, 182, 58, 0.15), rgba(245, 182, 58, 0.05));
}

.feature-icon i {
    width: 28px;
    height: 28px;
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.feature-card p,
.step-content p,
.sales-card-content p {
    color: var(--text-muted);
}

.sales-section {
    padding-top: 3.5rem;
}

.sales-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 12px;
}

.sales-card-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-bottom: 1px solid var(--border);
}

.sales-card-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 2rem;
}

.sales-card-content h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
    line-height: 1.4;
    color: var(--text-main);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.step {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    overflow: hidden;
    padding: 2.5rem;
    border-radius: 12px;
}

.step:hover {
    border-color: rgba(245, 182, 58, 0.2);
}

.step::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent), transparent);
}

.step-num {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px rgba(245, 182, 58, 0.4);
}

.step-content h3 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

/* =========================================================
   VISUAL PROOF (NEW GALLERY)
   ========================================================= */
.visual-proof-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.visual-proof-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.visual-proof-img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.visual-proof-card:hover .visual-proof-img {
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .visual-proof-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* =========================================================
   REALIZATIONS PAGE
   ========================================================= */
.page-hero {
    padding: 8rem 0 3rem;
    background-color: var(--bg-main);
    text-align: center;
}

.page-hero h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.page-hero p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.realizations-block {
    padding: 4rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.realizations-block:last-child {
    border-bottom: none;
}

.realizations-header {
    margin-bottom: 2rem;
    text-align: left;
}

.realizations-header h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--accent);
}

.realizations-header p {
    color: var(--text-muted);
    font-size: 1rem;
}

.realizations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.realizations-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.realizations-grid img:hover {
    transform: scale(1.03);
}

@media (max-width: 768px) {
    .realizations-grid {
        grid-template-columns: 1fr;
    }
    .page-hero {
        padding: 6rem 0 2rem;
    }
}

/* =========================================================
   EVENT TAGS
   ========================================================= */
.events-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.event-tag {
    padding: 1rem 2rem;
    border: 1px solid var(--border);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.03);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 500;
    transition: var(--transition);
}

.event-tag:hover {
    transform: translateY(-3px);
    border-color: rgba(245, 182, 58, 0.3);
    background: rgba(245, 182, 58, 0.1);
    color: var(--accent);
}

/* =========================================================
   PRICING
   ========================================================= */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 2.5rem 1.5rem;
    border-radius: 16px;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.pricing-card.highlighted {
    transform: scale(1.05);
    border-color: var(--accent);
    background: linear-gradient(180deg, rgba(245, 182, 58, 0.05) 0%, var(--bg-card) 100%);
}

.pricing-card.highlighted:hover {
    transform: scale(1.05) translateY(-5px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    padding: 0.3rem 1.2rem;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--accent), #e39d22);
    color: var(--bg-main);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transform: translateX(-50%);
}

.pricing-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.price {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
    color: var(--accent);
    font-size: 1.1rem;
}

.package-features {
    flex-grow: 1;
    margin-bottom: 1.5rem;
    list-style: none;
}

.package-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.package-features i {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--accent);
}

/* =========================================================
   FAQ / SOCIAL PROOF / EXPERIENCE
   ========================================================= */
.faq-item {
    transition: var(--transition);
}

.faq-item:hover {
    transform: scale(1.01);
    background: rgba(255, 255, 255, 0.05) !important;
    border-color: rgba(245, 182, 58, 0.2) !important;
}

.experience-content {
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-main);
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.8;
    text-align: center;
}

.social-proof {
    padding: 4rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.trust-brands {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4rem;
    opacity: 0.6;
}

.trust-brands i {
    width: 48px;
    height: 48px;
    color: var(--text-muted);
}

/* =========================================================
   CONTACT / FORM
   ========================================================= */
.contact-section {
    background-image: linear-gradient(rgba(14, 14, 16, 0.95), rgba(14, 14, 16, 0.85)), url("assets/racle_hero.png");
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

.contact-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--bg-card);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.contact-info {
    padding: 4rem;
    background: rgba(255, 255, 255, 0.02);
}

.contact-info .section-title {
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
    text-align: left;
}

.contact-info p {
    margin-bottom: 3rem;
    color: var(--text-muted);
}

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

.method {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
}

.method i {
    color: var(--accent);
}

.contact-form-container {
    padding: 4rem;
    background: var(--bg-main);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.7rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

input,
.form-select {
    width: 100%;
    padding: 1.2rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.02);
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

input:focus,
.form-select:focus {
    outline: none;
    border-color: var(--accent);
    background-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 0 3px rgba(245, 182, 58, 0.1);
}

.form-select {
    appearance: none;
    padding-right: 2.5rem;
    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='%23A0A0B0' 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 1rem center;
    background-size: 1em;
}

.form-select option {
    background-color: var(--bg-card);
    color: var(--text-main);
}

::-webkit-calendar-picker-indicator {
    cursor: pointer;
    filter: invert(1);
    opacity: 0.5;
}

::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
    padding-top: 5rem;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand p {
    max-width: 300px;
    margin-top: 1rem;
    color: var(--text-muted);
}

.footer h4 {
    margin-bottom: 1.5rem;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.2rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: var(--text-muted);
    transition: var(--transition);
}

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

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    color: #fff;
    transition: var(--transition);
}

.social-icons a:hover {
    transform: translateY(-3px);
    border-color: transparent;
    background: linear-gradient(135deg, var(--accent), #e39d22);
    color: var(--bg-main);
}

.footer-bottom {
    padding: 2rem 0;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.9rem;
    text-align: center;
}

/* =========================================================
   ANIMATIONS
   ========================================================= */
@keyframes zoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

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

@keyframes slow-glow {
    0% {
        transform: scale(1) translate(0, 0);
        opacity: 0.4;
    }
    50% {
        transform: scale(1.2) translate(3%, -3%);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.05) translate(-2%, 2%);
        opacity: 0.5;
    }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1000px) {
    .section {
        padding: 4rem 0;
    }

    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 950px) {
    .nav {
        display: none;
    }

    .hero-description-desktop {
        display: none;
    }

    .hero-description-mobile {
        display: block;
    }
    
    .hamburger {
        display: inline-block;
    }
    
    .header-actions {
        gap: 1rem;
    }
}

@media (max-width: 900px) {
    .pricing-card {
        padding: 2.5rem 1.5rem;
        text-align: center;
        align-items: center;
    }

    .pricing-card .package-features {
        text-align: left;
        align-items: flex-start;
    }

    .pricing-card.highlighted {
        transform: none;
    }

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


}

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

@media (max-width: 768px) {
    .logo {
        font-size: 1.25rem;
        letter-spacing: 0.5px;
    }

    .cta-desktop {
        display: none;
    }

    .cta-mobile {
        display: inline-flex;
    }

    .header {
        padding: 0.6rem 0 !important;
    }

    .header-container {
        gap: 0.75rem;
    }

    .header-actions {
        gap: 0.35rem;
    }

    .logo img {
        height: 16px !important;
    }

    .lang-switcher {
        gap: 0.3rem;
        font-size: 0.8rem;
    }

    .header .btn.btn-primary {
        padding: 0.5rem 0.8rem !important;
/*        border-radius: 999px;*/
        font-size: 0.8rem !important;
        white-space: nowrap;
    }

    .hero {
        align-items: flex-start;
        height: auto;
        min-height: auto;
        padding: 70px 0 32px !important;
    }

    .hero-bg img {
        object-position: var(--hero-image-position-mobile);
        transform: scale(var(--hero-image-scale-mobile)) translateX(var(--hero-image-shift-x-mobile));
        animation: none;
    }
  .hero-overlay {
    background: linear-gradient(
      to bottom,
      rgba(14, 14, 16, 0.72) 0%,
      rgba(14, 14, 16, 0.68) 18%,
      rgba(14, 14, 16, 0.78) 42%,
      rgba(14, 14, 16, 0.88) 68%,
      rgba(14, 14, 16, 0.94) 100%
    );
  }
/*
    .hero-overlay {
        background: linear-gradient(
            to bottom,
            rgba(14, 14, 16, 0.82) 0%,
            rgba(14, 14, 16, 0.55) 38%,
            rgba(14, 14, 16, 0.72) 100%
        );
    }
*/
    .hero-glow-effect {
        display: none;
    }

    .hero-content {
        max-width: 92%;
    }

    .hero-headline {
        margin-bottom: 0.8rem;
        font-size: 2.35rem !important;
        line-height: 1.02;
        letter-spacing: 0;
    }

    .hero-subheadline {
        margin-bottom: 1rem;
        font-size: 1.15rem;
        line-height: 1.35;
    }

    .hero-description {
        max-width: 100%;
        margin-bottom: 1.25rem;
        color: rgba(255, 255, 255, 0.78);
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .hero-description.highlight-text {
        margin: 2rem auto;
        padding-left: 1rem;
    }

    .hero-actions {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .hero-actions .btn {
        padding: 0.85rem 1.2rem;
        font-size: 0.95rem;
    }

    .hero-trust {
        margin-top: 0.5rem;
        font-size: 0.8rem;
        line-height: 1.4;
    }

    .scroll-indicator {
        display: none;
    }

    .section {
        padding: 3rem 0 !important;
    }

    .section-header {
        margin-bottom: 2rem;
    }

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

    .section-subtitle {
        font-size: 1rem;
        line-height: 1.5;
    }

    .feature-card {
        padding: 1.5rem 1.25rem;
    }

    .feature-card h3 {
        font-size: 1.25rem;
    }

    .feature-card p {
        font-size: 0.98rem;
    }

    .process-steps {
        gap: 1rem;
    }

    .step {
        gap: 0.8rem;
        padding: 1.4rem 1.2rem;
        border-radius: 10px;
    }

    .step-num {
        font-size: 2.2rem;
    }

    .step-content h3 {
        font-size: 1.15rem;
        line-height: 1.35;
    }

    .gallery-carousel-wrapper {
        padding: 0;
    }


    .events-list {
        gap: 0.8rem;
    }

    .event-tag {
        padding: 0.7rem 1rem;
        font-size: 0.95rem;
    }

    .pricing-card {
        padding: 1.6rem 1.1rem;
    }

    .pricing-card h3 {
        font-size: 1.25rem;
    }

    .price {
        margin-bottom: 1.25rem;
        padding-bottom: 1.25rem;
        font-size: 1rem;
    }

    .package-features li {
        margin-bottom: 0.75rem;
        font-size: 0.95rem;
    }

    .faq-grid {
        gap: 1rem !important;
    }

    .faq-item {
        padding: 1.1rem !important;
    }

    .faq-item h3 {
        font-size: 1rem !important;
        line-height: 1.35;
    }

    .faq-item p {
        font-size: 0.95rem;
        line-height: 1.5;
    }

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

    .contact-card {
        max-width: 100% !important;
        border-radius: 12px;
    }

    .contact-form-container {
        padding: 1.5rem !important;
    }

    .contact-form-container .section-title {
        margin-bottom: 0.75rem !important;
        font-size: 1.55rem !important;
        line-height: 1.2;
    }

    .contact-form-container p {
        margin-bottom: 1.25rem !important;
        font-size: 0.95rem;
    }

    .form-group {
        margin-bottom: 1rem;
    }

    .form-row {
        gap: 1rem;
    }

    label {
        margin-bottom: 0.45rem;
        font-size: 0.9rem;
    }

    input,
    .form-select {
        padding: 0.9rem 1rem;
        border-radius: 8px;
        font-size: 0.95rem;
    }

    .contact-form .btn.btn-primary.btn-full {
        padding: 0.9rem 1rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 600px) {
    .step,
    .form-row {
        grid-template-columns: 1fr;
    }

    .step {
        flex-direction: column;
        gap: 1rem;
    }

    .contact-trust-block {
        flex-direction: column !important;
        gap: 1.5rem !important;
        padding: 1rem 0 !important;
    }
}
