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

.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    z-index: 10000;
    font-weight: 600;
    border-radius: 0;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 0;
    outline: 3px solid var(--primary-dark);
    outline-offset: 2px;
}

:root {
    --primary-color: #e63946;
    --primary-dark: #d62839;
    --primary-light: #f77f7f;
    --secondary-color: #1d3557;
    --accent-color: #f77f00;
    --text-primary: #1d3557;
    --text-secondary: rgba(29, 53, 87, 0.75);
    --text-tertiary: rgba(29, 53, 87, 0.55);
    --bg-primary: #ffffff;
    --bg-secondary: #f5f7fa;
    --bg-card: #ffffff;
    --bg-card-hover: #f8f9fa;
    --border-color: rgba(230, 57, 70, 0.2);
    --border-hover: rgba(230, 57, 70, 0.4);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --gradient-primary: linear-gradient(135deg, #e63946 0%, #f77f7f 50%, #f77f00 100%);
    --gradient-subtle: linear-gradient(180deg, rgba(230, 57, 70, 0.08) 0%, transparent 100%);
    --gradient-hero: linear-gradient(135deg, rgba(230, 57, 70, 0.1) 0%, rgba(247, 127, 127, 0.05) 100%);
    
    --glass-bg: rgba(255, 255, 255, 0.72);
    --glass-bg-strong: rgba(255, 255, 255, 0.88);
    --glass-border: rgba(255, 255, 255, 0.6);
    --glass-border-soft: rgba(29, 53, 87, 0.08);
    --glass-shadow: 0 8px 32px rgba(29, 53, 87, 0.08);
    --glass-blur: 20px;
    --glass-blur-strong: 24px;
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-smooth: 0.35s var(--ease-smooth);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    overflow-x: hidden;
    width: 100%;
    position: relative;
    -webkit-overflow-scrolling: touch;
}

a, button, input, select, textarea, .btn, [class*="card"], [class*="dropdown"] {
    transition-duration: 0.35s;
    transition-timing-function: var(--ease-smooth);
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    overflow-x: hidden;
    overflow-y: auto;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: var(--bg-primary);
    font-size: 15px;
    transition: background-color 0.3s ease, color 0.3s ease;
    width: 100%;
    position: relative;
    box-sizing: border-box;
    -webkit-overflow-scrolling: touch;
}

body.nav-menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
    touch-action: none;
}

body.nav-menu-open .nav-menu {
    touch-action: pan-y;
}

* {
    box-sizing: border-box;
}

img, video, iframe {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
    width: 100%;
    box-sizing: border-box;
    position: relative;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100vw;
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur)) saturate(180%);
    -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(180%);
    z-index: 1000;
    transition: background var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth);
    border-bottom: 1px solid var(--glass-border-soft);
    box-shadow: 0 4px 24px rgba(29, 53, 87, 0.06);
    overflow: visible;
    box-sizing: border-box;
}

.navbar.scrolled {
    background: var(--glass-bg-strong);
    border-bottom-color: rgba(230, 57, 70, 0.12);
    box-shadow: var(--glass-shadow);
}

.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(29, 53, 87, 0.25);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-smooth), visibility var(--transition-smooth);
    z-index: 999;
    overflow: hidden;
    touch-action: none;
    pointer-events: none;
}

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

.navbar .container {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    padding: 1rem 40px;
    position: relative;
    z-index: 1001;
    min-height: 70px;
    overflow: visible;
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border-soft);
    padding: 0.6rem;
    cursor: pointer;
    transition: all var(--transition-smooth);
    z-index: 1002;
    border-radius: 0;
    width: 44px;
    height: 44px;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 12px rgba(29, 53, 87, 0.06);
}

.nav-toggle:hover {
    background: rgba(230, 57, 70, 0.08);
    border-color: var(--primary-dark);
}

.nav-toggle:active {
    transform: scale(0.95);
}

.nav-toggle span {
    width: 22px;
    height: 2px;
    background: var(--primary-color);
    transition: all var(--transition-smooth);
    display: block;
    border-radius: 0;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.nav-menu {
    position: fixed;
    left: -100%;
    top: 0;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: var(--glass-bg-strong);
    backdrop-filter: blur(var(--glass-blur-strong)) saturate(180%);
    -webkit-backdrop-filter: blur(var(--glass-blur-strong)) saturate(180%);
    list-style: none;
    margin: 0;
    padding: 5rem 0 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: left 0.4s var(--ease-smooth);
    z-index: 1002;
    box-shadow: 8px 0 48px rgba(29, 53, 87, 0.14);
    border-right: 1px solid var(--glass-border-soft);
    border-radius: 0;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

.nav-menu.active {
    left: 0;
}

.nav-menu li {
    width: 100%;
    margin: 0;
    padding: 0.25rem 1rem;
    border-bottom: none;
}

.nav-menu a {
    display: block;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.9rem 1.25rem;
    transition: all var(--transition-smooth);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    position: relative;
    border-left: 3px solid transparent;
    border-radius: 0;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: rgba(230, 57, 70, 0.08);
    border-radius: 0;
    transition: width var(--transition-smooth);
    z-index: 0;
}

.nav-menu a:hover::before,
.nav-menu a.active::before {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
    border-left-color: var(--primary-color);
    padding-left: 1.5rem;
}

.nav-menu a > * {
    position: relative;
    z-index: 1;
}

.nav-menu a.active {
    color: var(--primary-color);
    border-left-color: var(--primary-color);
    background: rgba(230, 57, 70, 0.06);
}

.nav-menu a.active::before {
    width: 100%;
}

.nav-dropdown-menu a {
    padding-left: 1.75rem;
    font-size: 0.9rem;
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.nav-dropdown-arrow {
    font-size: 0.7rem;
    transition: transform 0.25s ease;
    opacity: 0.8;
}

.nav-dropdown.open .nav-dropdown-arrow {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-smooth);
    background: rgba(255, 255, 255, 0.5);
    border-left: 3px solid var(--primary-color);
}

.nav-dropdown.open .nav-dropdown-menu {
    max-height: 320px;
}

.nav-dropdown-menu li {
    border-bottom: none;
}

.nav-dropdown-menu a {
    padding: 0.9rem 2rem 0.9rem 2.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0.02em;
    text-decoration: none;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.active {
    padding-left: 2.75rem;
}

.nav-brand {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1001;
    width: auto;
    pointer-events: auto;
    padding: 10px;
    min-width: 120px;
    min-height: 60px;
}

.logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    text-decoration: none;
    cursor: pointer;
    pointer-events: auto;
    position: relative;
    z-index: 1002;
    width: 100%;
    height: 100%;
    padding: 5px;
}

.logo-img {
    height: 55px;
    width: auto;
    pointer-events: none;
    user-select: none;
}

.nav-brand h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin: 0;
    transition: color 0.3s ease;
}

.logo-link:hover h2 {
    color: var(--primary-dark);
}

.language-switcher {
    position: relative;
    display: flex;
    justify-content: flex-end;
    z-index: 1003;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1rem;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border-soft);
    border-radius: 0;
    cursor: pointer;
    transition: all var(--transition-smooth);
    font-size: clamp(0.7rem, 0.8vw, 0.8rem);
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    min-width: fit-content;
    box-shadow: 0 2px 12px rgba(29, 53, 87, 0.06);
}

.lang-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    transition: left 0.3s ease;
    z-index: 0;
}

.lang-btn:hover::before {
    left: 0;
}

.lang-btn > * {
    position: relative;
    z-index: 1;
}

.lang-btn:hover {
    color: white;
    border-color: var(--primary-dark);
}

.lang-btn:hover {
    background: rgba(230, 57, 70, 0.12);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-sm);
}

.lang-code {
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 0.05em;
    font-size: clamp(0.65rem, 0.7vw, 0.7rem);
    white-space: nowrap;
}

.lang-arrow {
    font-size: 0.65rem;
    color: var(--text-tertiary);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.language-switcher.active .lang-arrow {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: var(--glass-bg-strong);
    backdrop-filter: blur(var(--glass-blur-strong)) saturate(180%);
    -webkit-backdrop-filter: blur(var(--glass-blur-strong)) saturate(180%);
    border-radius: 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px) scale(0.98);
    transition: opacity var(--transition-smooth), visibility var(--transition-smooth), transform var(--transition-smooth);
    z-index: 1003;
    border: 1px solid var(--glass-border-soft);
    overflow: hidden;
    padding: 0;
    box-shadow: var(--glass-shadow);
}

.language-switcher.active .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem 1.25rem;
    text-decoration: none;
    color: var(--text-primary);
    transition: all var(--transition-smooth);
    border-radius: 0;
    font-size: 0.9rem;
    font-weight: 500;
    position: relative;
    border-bottom: 1px solid var(--glass-border-soft);
    background: transparent;
}

.lang-option:last-child {
    border-bottom: none;
}

.lang-option::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: var(--primary-color);
    transition: width 0.2s ease;
    z-index: 0;
}

.lang-option > * {
    position: relative;
    z-index: 1;
}

.lang-option:hover {
    background: rgba(230, 57, 70, 0.05);
    color: var(--primary-color);
    padding-left: 2rem;
}

.lang-option:hover::before {
    width: 4px;
}

.lang-option.active {
    background: rgba(230, 57, 70, 0.1);
    color: var(--primary-color);
    font-weight: 700;
    padding-left: 2rem;
}

.lang-option.active::before {
    width: 4px;
}

.hero {
    position: relative;
    min-height: 100vh;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a1a1a;
    box-sizing: border-box;
    overflow: hidden;
    padding: 6rem 0 3rem;
    scroll-margin-top: 70px;
    scroll-padding-top: 70px;
}

.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent; 
    z-index: 1;
    pointer-events: none;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent; 
    pointer-events: none;
    z-index: 2;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(45deg, transparent 48%, rgba(230, 57, 70, 0.01) 49%, rgba(230, 57, 70, 0.01) 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(230, 57, 70, 0.01) 49%, rgba(230, 57, 70, 0.01) 51%, transparent 52%);
    background-size: 60px 60px;
    opacity: 0.15;
    pointer-events: none;
    z-index: 2;
    display: none; 
}

.hero-content {
    position: relative;
    z-index: 3;
    color: var(--text-primary);
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 0.6s ease-out;
}

.hero-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

.hero-title {
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #ffffff;
    text-align: center;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero-subtitle {
    font-size: clamp(0.95rem, 1.5vw, 1.15rem);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    font-weight: 400;
    color: #ffffff;
    max-width: 800px;
    text-align: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero-buttons {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.hero-btn {
    min-width: 180px;
    text-align: center;
}

.btn {
    padding: 0.75rem 1.75rem;
    border-radius: 0;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    transition: all var(--transition-smooth);
    display: inline-block;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 12px rgba(29, 53, 87, 0.08);
}

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

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

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 20px rgba(230, 57, 70, 0.25);
}

.btn-primary:hover {
    box-shadow: 0 8px 28px rgba(230, 57, 70, 0.35);
    color: white;
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: var(--glass-bg-strong);
    color: var(--primary-color);
    border: 1px solid var(--glass-border-soft);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 12px rgba(29, 53, 87, 0.08);
}

.btn-secondary:hover {
    background: rgba(230, 57, 70, 0.08);
    border-color: rgba(230, 57, 70, 0.25);
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.12);
    color: var(--primary-dark);
}

.btn-secondary:active {
    opacity: 0.95;
}

@keyframes scroll {
    0%, 100% { 
        opacity: 1; 
        transform: translateX(-50%) translateY(0); 
    }
    50% { 
        opacity: 0.4; 
        transform: translateX(-50%) translateY(12px); 
    }
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

section {
    padding: 2.5rem 0;
    position: relative;
    background: var(--bg-primary);
    transition: background-color 0.3s ease;
    width: 100%;
    box-sizing: border-box;
    overflow: visible;
    min-height: auto;
    scroll-margin-top: 120px;
    scroll-padding-top: 120px;
}

main#main-content {
    width: 100%;
    position: relative;
    overflow: visible;
}

.section-header {
    text-align: center;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    position: relative;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-header h2 {
    font-size: clamp(1.4rem, 2.2vw, 1.9rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
    position: relative;
    display: inline-block;
    line-height: 1.3;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 56px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    border-radius: 0;
    animation: expandLine 0.8s var(--ease-smooth) 0.3s forwards;
    transform-origin: center;
}

@keyframes expandLine {
    to {
        transform: translateX(-50%) scaleX(1);
    }
}

.section-subtitle {
    font-size: clamp(0.85rem, 0.95vw, 0.95rem);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0.75rem auto 0;
    line-height: 1.6;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.services-landing-section {
    padding-top: 100px;
    padding-bottom: 2.5rem;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    min-height: auto;
}

.services-landing-section .section-header {
    margin-bottom: 1.5rem;
}

.services-landing-section .section-header h2 {
    font-weight: 700;
    letter-spacing: -0.02em;
}

.services-landing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem;
    max-width: 1280px;
    margin: 0 auto;
}

.services-landing-card {
    display: flex;
    flex-direction: column;
    padding: 2rem 1.75rem;
    background: var(--glass-bg-strong);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border-soft);
    border-left: 3px solid var(--primary-color);
    border-radius: 0;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
    box-shadow: 0 2px 16px rgba(29, 53, 87, 0.06);
}

.services-landing-card:hover {
    border-color: rgba(230, 57, 70, 0.35);
    border-left-color: var(--primary-color);
    box-shadow: 0 8px 32px rgba(29, 53, 87, 0.1);
    transform: translateY(-2px);
}

.services-landing-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(230, 57, 70, 0.08);
    border: 1px solid rgba(230, 57, 70, 0.15);
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 0;
    transition: all 0.3s ease;
}

.services-landing-card:hover .services-landing-icon {
    background: rgba(230, 57, 70, 0.12);
    border-color: rgba(230, 57, 70, 0.25);
    color: var(--primary-color);
}

.services-landing-card h3 {
    font-size: clamp(1.15rem, 1.3vw, 1.4rem);
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.75rem 0;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.services-landing-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin: 0 0 1.25rem 0;
    flex: 1;
}

.services-landing-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: auto;
    transition: gap 0.2s ease, transform 0.2s ease;
}

.services-landing-card:hover .services-landing-link {
    gap: 0.75rem;
}

.services-landing-link i {
    transition: transform 0.2s ease;
}

.services-landing-card:hover .services-landing-link i {
    transform: translateX(2px);
}

@media (max-width: 1024px) {
    .services-landing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .services-landing-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    .services-landing-card {
        padding: 1.75rem 1.5rem;
    }
}

.mission-card {
    background: var(--glass-bg-strong);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1.5rem 1.25rem;
    border-radius: 0;
    text-align: center;
    transition: all var(--transition-smooth);
    border: 1px solid var(--glass-border-soft);
    opacity: 0;
    transform: translateY(10px);
    position: relative;
    overflow: visible;
    box-shadow: 0 4px 20px rgba(29, 53, 87, 0.08);
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--primary-color), var(--primary-light));
    border-radius: 0;
    transition: height var(--transition-smooth);
}

.mission-card.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.mission-card:hover {
    border-color: var(--primary-color);
}

.mission-card:hover::before {
    height: 100%;
}

.mission-card h3 {
    font-size: clamp(1rem, 1.1vw, 1.15rem);
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 700;
    transition: color 0.3s ease;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.3;
}

.mission-card:hover h3 {
    color: var(--primary-color);
}

.mission-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.9rem;
}

.vision-feature {
    background: transparent;
    padding: 0;
    border-radius: 0;
    border: none;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(10px);
    box-shadow: none;
    position: relative;
    text-align: center;
}

.vision-feature.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.vision-feature h3 {
    font-size: clamp(1rem, 1.1vw, 1.15rem);
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0;
}

.vision-feature p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.9rem;
    margin: 0;
}

.services-section {
    background: var(--bg-primary);
    padding: 2rem 0;
    position: relative;
    overflow: visible;
}

.service-card {
    background: var(--bg-card);
    margin-bottom: 2rem;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(10px);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.service-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.service-card.active {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.service-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    gap: 1.5rem;
}

.service-toggle {
    background: transparent;
    border: 2px solid var(--primary-color);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.service-toggle:hover {
    background: rgba(230, 57, 70, 0.05);
}

.service-toggle i {
    color: var(--primary-color);
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.service-card.active .service-toggle i {
    transform: rotate(180deg);
}

.about-section {
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
    padding: 100px 0 2.5rem;
    position: relative;
    overflow: visible;
}

.about-history {
    max-width: 1100px;
    margin: 0 auto 2.5rem auto;
    position: relative;
    z-index: 1;
    background: transparent;
    padding: 0;
    border: none;
}

.about-history-content {
    background: var(--glass-bg-strong);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    padding: 2.5rem 2.75rem;
    border: 1px solid var(--glass-border-soft);
    border-radius: 0;
    box-shadow: var(--glass-shadow);
}

.about-history-content h3 {
    font-size: clamp(1.5rem, 2.2vw, 2rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-align: center;
    letter-spacing: -0.02em;
    position: relative;
    padding-bottom: 0.75rem;
}

.about-history-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    border-radius: 0;
}

.about-history-text {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: clamp(0.9rem, 1vw, 1rem);
}

.about-history-header,
.about-history-evolution,
.about-history-era {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 1.25rem 0 0.75rem 0;
}
.about-history-header { margin-top: 0; }
.about-history-text p {
    margin-bottom: 1.25rem;
    text-align: left;
}

.about-history-text p:last-child {
    margin-bottom: 0;
}

.about-history-conclusion {
    margin-top: 1.75rem;
    padding-top: 1.75rem;
    border-top: 1px solid var(--glass-border-soft);
    text-align: center;
    font-size: clamp(0.95rem, 1.1vw, 1.1rem);
    line-height: 1.7;
    color: var(--text-secondary);
}

.about-history-conclusion strong {
    color: var(--text-primary);
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.company-name {
    color: var(--primary-color);
    font-size: clamp(1.1rem, 1.5vw, 1.35rem);
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    display: block;
    margin-top: 0.5rem;
}

.about-wrapper {
    display: block;
    max-width: 1100px;
    margin: 2.5rem auto 0;
    position: relative;
    z-index: 1;
    background: var(--glass-bg-strong);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    padding: 2.5rem;
    border: 1px solid var(--glass-border-soft);
    border-radius: 0;
    box-shadow: var(--glass-shadow);
}

.about-content {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    position: relative;
    z-index: 1;
}

.about-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.about-title {
    font-size: clamp(1.4rem, 2vw, 1.9rem);
    margin-bottom: 1.75rem;
    text-align: left;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.3;
    position: relative;
    padding-bottom: 0.75rem;
}

.about-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    border-radius: 0;
}

.about-feature {
    background: var(--primary-color);
    border: none;
    padding: 2.75rem;
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateX(-20px);
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.15);
    position: relative;
    overflow: hidden;
}

.about-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    transition: width 0.4s ease;
}

.about-feature:hover::before {
    width: 100%;
    opacity: 0.05;
}

.about-feature.visible {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.about-feature:hover {
    box-shadow: 0 8px 30px rgba(220, 38, 38, 0.25);
}

.about-feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.about-feature-icon i {
    font-size: 2.25rem;
    color: white;
    transition: all 0.4s ease;
    opacity: 1;
}

.about-feature:hover .about-feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255, 255, 255, 0.25);
}

.about-feature:hover .about-feature-icon i {
    transform: scale(1.1);
}

.about-feature-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.about-feature-content h3 {
    font-size: clamp(1.2rem, 1.3vw, 1.35rem);
    color: white;
    margin-bottom: 1rem;
    font-weight: 700;
    text-transform: none;
    letter-spacing: -0.01em;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.4;
}

.about-feature-content p {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    font-size: clamp(0.9rem, 1vw, 0.95rem);
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
    padding: 2rem;
    background: #ffffff;
    border-radius: 0;
    border: 1px solid #e0e0e0;
}

.stat-item {
    text-align: center;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    padding: 1.5rem;
    border-radius: 0;
    background: var(--glass-bg-strong);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border-soft);
    box-shadow: var(--glass-shadow);
}

.stat-item:hover {
    border-color: rgba(230, 57, 70, 0.25);
    box-shadow: var(--glass-shadow);
}

.stat-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.stat-number {
    font-size: clamp(2.5rem, 3.5vw, 3.5rem);
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: clamp(0.8rem, 0.95vw, 0.9rem);
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.4;
}

.about-highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 2rem;
    text-align: center;
    margin: 2.5rem 0;
    border-radius: 0;
    box-shadow: var(--glass-shadow);
    border: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
}

.about-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.05);
}

.about-highlight p {
    font-size: clamp(1rem, 1.3vw, 1.25rem);
    margin: 0;
    color: #ffffff;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    line-height: 1.4;
    position: relative;
    z-index: 1;
}

.team-section {
    background: var(--bg-secondary);
    padding: 2rem 0;
    position: relative;
    overflow: visible;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.team-grid::-webkit-scrollbar {
    height: 8px;
}

.team-grid::-webkit-scrollbar-track {
    background: transparent;
}

.team-grid::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 0;
}

.team-grid::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
        padding: 0 16px;
    }
    .team-section {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 12px;
    }
    .team-section {
        padding: 2.5rem 0;
    }
    .team-card-body {
        padding: 0.75rem 1rem;
    }
    .team-member h3 {
        font-size: 0.95rem;
    }
    .team-role {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }
    .team-social {
        gap: 0.5rem;
        margin-top: 0.5rem;
    }
    .team-social a {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }
}

.team-member {
    background: var(--bg-card);
    border-radius: 0;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--glass-border-soft);
    opacity: 0;
    transform: translateX(20px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(29, 53, 87, 0.06);
    display: flex;
    flex-direction: column;
}

.team-member.visible {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.team-member:hover {
    border-color: rgba(230, 57, 70, 0.25);
    box-shadow: 0 8px 24px rgba(29, 53, 87, 0.1);
    transform: translateY(-2px);
}

/* Full-width photo: same width as card */
.team-avatar {
    width: 100%;
    aspect-ratio: 1;
    min-height: 0;
    background: rgba(230, 57, 70, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.team-avatar i {
    font-size: clamp(2rem, 6vw, 3rem);
    color: var(--primary-color);
    opacity: 0.7;
}

.team-avatar-placeholder {
    background: rgba(230, 57, 70, 0.08);
}

.team-member:hover .team-avatar img {
    transform: scale(1.05);
}

/* Compact card body */
.team-card-body {
    padding: 1rem 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 0;
}

.team-member h3 {
    font-size: clamp(0.95rem, 1.1vw, 1.15rem);
    margin: 0 0 0.25rem 0;
    color: var(--text-primary);
    font-weight: 700;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    transition: color 0.3s ease;
}

.team-member:hover h3 {
    color: var(--primary-color);
}

.team-role {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 600;
    margin: 0 0 0.75rem 0;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: auto;
    padding-top: 0;
    border-top: none;
}

.team-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(230, 57, 70, 0.3);
    color: var(--primary-color);
    transition: all 0.25s ease;
    text-decoration: none;
    border-radius: 0;
    font-size: 0.9rem;
}

.team-social a:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(230, 57, 70, 0.3);
}

.partners-slider-wrapper {
    overflow: hidden;
    position: relative;
    padding: 2.5rem 0;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 50%, var(--bg-secondary) 100%);
    border-top: 1px solid var(--glass-border-soft);
    border-bottom: 1px solid var(--glass-border-soft);
}

.partners-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.partners-slider::before,
.partners-slider::after {
    content: '';
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.partners-slider::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-primary) 0%, rgba(255, 255, 255, 0.95) 30%, transparent 100%);
}

.partners-slider::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-primary) 0%, rgba(255, 255, 255, 0.95) 30%, transparent 100%);
}

.partners-track {
    display: flex;
    gap: 2.5rem;
    animation: slidePartners 40s linear infinite;
    will-change: transform;
}

.partners-track:hover {
    animation-play-state: paused;
}

.partner-logo-item {
    flex-shrink: 0;
    width: 160px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: var(--glass-bg-strong);
    backdrop-filter: blur(8px);
    border: 1px solid var(--glass-border-soft);
    border-radius: 0;
    transition: all var(--transition-smooth);
    text-decoration: none;
    cursor: pointer;
    color: inherit;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(29, 53, 87, 0.06);
}

.partner-logo-item::before {
    display: none;
}

.partner-logo-item:hover {
    border-color: rgba(230, 57, 70, 0.2);
    text-decoration: none;
    box-shadow: var(--glass-shadow);
    background: var(--glass-bg-strong);
}

.partner-logo-item:active {
    opacity: 0.95;
}

.partner-logo-item:focus {
    outline: 3px solid var(--primary-color);
    outline-offset: 3px;
    border: none;
    border-radius: 0;
}

.partner-logo-item img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(60%);
    opacity: 0.8;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    min-width: 110px;
    min-height: 55px;
    background: transparent;
    mix-blend-mode: normal;
}

.partner-logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
    filter: brightness(1.1);
}

.partner-logo-item img:not([src]) {
    display: none;
}

.partner-logo-item .logo-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.8rem;
    padding: 0.5rem;
    border-radius: 0;
    word-break: break-word;
    line-height: 1.3;
    font-weight: 600;
    letter-spacing: 0.5px;
}

@keyframes slidePartners {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .partners-slider-wrapper {
        padding: 1.5rem 0;
    }
    
    .partners-slider::before,
    .partners-slider::after {
        width: 50px;
    }
    
    .partners-track {
        gap: 1.5rem;
        animation-duration: 35s;
    }
    
    .partner-logo-item {
        width: 130px;
        height: 75px;
        padding: 0.75rem;
        border-radius: 0;
        background: transparent;
        border: none;
    }
    
    .partner-logo-item img {
        min-width: 90px;
        min-height: 45px;
    }
    
    .partner-logo-item:hover {
        box-shadow: none;
    }
    
    .partner-logo-item .logo-fallback {
        font-size: 0.7rem;
        padding: 0.4rem;
    }
}

@media (max-width: 480px) {
    .partners-slider-wrapper {
        padding: 1rem 0;
    }
    
    .partners-slider::before,
    .partners-slider::after {
        width: 30px;
    }
    
    .partners-track {
        gap: 1rem;
        animation-duration: 30s;
    }
    
    .partner-logo-item {
        width: 110px;
        height: 65px;
        padding: 0.6rem;
        border-radius: 0;
        background: transparent;
        border: none;
    }
    
    .partner-logo-item img {
        min-width: 80px;
        min-height: 40px;
    }
    
    .partner-logo-item:hover {
        box-shadow: 0 4px 12px rgba(230, 57, 70, 0.12);
    }
    
    .partner-logo-item .logo-fallback {
        font-size: 0.65rem;
        padding: 0.3rem;
    }
}

.partners-section {
    background: var(--bg-primary);
    padding: 2rem 0;
    position: relative;
    overflow: visible;
}

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

@media (max-width: 480px) {
    .partners-section {
        padding: 2.5rem 0;
    }
}

.partner-item {
    background: var(--bg-card);
    padding: 1.75rem 1.5rem;
    border-radius: 0;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    opacity: 0;
    transform: translateX(20px);
    position: relative;
    overflow: visible;
    flex: 0 0 240px;
    min-width: 240px;
    max-width: 240px;
}

.partner-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--primary-color);
    transition: height 0.3s ease;
}

.partner-item.visible {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.partner-item:hover {
    border-color: var(--primary-color);
}

.partner-item:hover::before {
    height: 100%;
}

.partner-item h4 {
    font-size: clamp(1rem, 1.1vw, 1.15rem);
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    font-weight: 700;
    transition: color 0.3s ease;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.3;
}

.partner-item:hover h4 {
    color: var(--primary-color);
}

.partner-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.9rem;
    margin: 0;
}

.faq-section {
    background: linear-gradient(to bottom, var(--bg-primary), rgba(230, 57, 70, 0.02), var(--bg-primary));
    padding: 2rem 0;
    position: relative;
    overflow: visible;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--glass-bg-strong);
    backdrop-filter: blur(12px);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all var(--transition-smooth);
    border: 1px solid var(--glass-border-soft);
    border-radius: 0;
    opacity: 0;
    transform: translateY(20px);
    box-shadow: 0 4px 20px rgba(29, 53, 87, 0.08);
}

.faq-item.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s var(--ease-smooth), transform 0.5s var(--ease-smooth);
}

.faq-item:hover {
    border-color: rgba(230, 57, 70, 0.2);
    box-shadow: var(--glass-shadow);
}

.faq-item.active {
    border-color: rgba(230, 57, 70, 0.3);
    box-shadow: var(--glass-shadow);
}

.faq-question {
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all var(--transition-smooth);
    background: transparent;
    position: relative;
    border-radius: 0;
}

.faq-question::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: transparent;
    transition: background 0.3s ease;
}

.faq-item.active .faq-question::before {
    background: var(--primary-color);
}

.faq-question:hover {
    background: rgba(230, 57, 70, 0.03);
}

.faq-question h3 {
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: 600;
    line-height: 1.6;
    transition: color 0.3s ease;
    margin: 0;
    padding-right: 1rem;
    flex: 1;
}

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

.faq-item.active .faq-question h3 {
    color: var(--primary-color);
    font-weight: 700;
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 300;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    line-height: 1;
    min-width: 32px;
    min-height: 32px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(230, 57, 70, 0.08);
    border-radius: 0;
    flex-shrink: 0;
}

.faq-question:hover .faq-toggle {
    background: rgba(230, 57, 70, 0.15);
    transform: scale(1.1);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg) scale(1.1);
    background: var(--primary-color);
    color: #ffffff;
    font-weight: 400;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 1.5rem;
    opacity: 0;
    background: rgba(230, 57, 70, 0.02);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem 1.5rem;
    opacity: 1;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 0.95rem;
    margin: 0;
    padding-top: 0.5rem;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 3rem 0;
    }
    
    .faq-container {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .faq-item {
        margin-bottom: 0.875rem;
        border-radius: 0;
    }
    
    .faq-question {
        padding: 1rem 1.25rem;
    }
    
    .faq-question h3 {
        font-size: 0.95rem;
        padding-right: 0.75rem;
    }
    
    .faq-toggle {
        min-width: 28px;
        min-height: 28px;
        font-size: 1.3rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.25rem 1.25rem 1.25rem;
    }
    
    .faq-answer {
        padding: 0 1.25rem;
    }
    
    .faq-answer p {
        font-size: 0.9rem;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 2.5rem 0;
    }
    
    .faq-item {
        margin-bottom: 0.75rem;
        border-width: 1.5px;
    }
    
    .faq-question {
        padding: 0.875rem 1rem;
    }
    
    .faq-question h3 {
        font-size: 0.9rem;
        padding-right: 0.5rem;
    }
    
    .faq-toggle {
        min-width: 26px;
        min-height: 26px;
        font-size: 1.2rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1rem 1rem 1rem;
    }
    
    .faq-answer {
        padding: 0 1rem;
    }
    
    .faq-answer p {
        font-size: 0.85rem;
        line-height: 1.6;
    }
}

.aktuale-page-section {
    padding: 2rem 0 3rem;
}

.aktuale-section {
    padding: 2rem 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    position: relative;
}
.aktuale-section .section-header { margin-bottom: 1.25rem; }

/* Full-width banner slideshow (Eventet Aktuale & Ofertat Lokale) */
.banner-section .section-header { margin-bottom: 1rem; }
.banner-slideshow-wrapper {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
}
.banner-slideshow {
    position: relative;
    width: 100%;
    min-height: 420px;
    overflow: hidden;
}
.banner-slides {
    position: relative;
    width: 100%;
    min-height: 420px;
    height: 420px;
}
.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-color: #1d3557;
    text-decoration: none;
    color: #fff;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}
.banner-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}
.banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 40%, rgba(0,0,0,0.15) 70%, transparent 100%);
    pointer-events: none;
}
.banner-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 1.5rem 5.5rem;
    text-align: center;
}
.banner-location {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
    opacity: 0.95;
}
.banner-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 800;
    margin: 0 0 1rem 0;
    line-height: 1.2;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}
.banner-promo {
    display: inline-block;
    background: rgba(29, 53, 87, 0.95);
    padding: 0.65rem 1.75rem;
    clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
    max-width: 95%;
    min-width: min(280px, 85vw);
}
.banner-promo span {
    font-size: clamp(0.8rem, 1.6vw, 0.95rem);
    font-weight: 500;
    line-height: 1.5;
    white-space: normal;
    display: inline-block;
    max-width: 100%;
}
.banner-loading, .banner-empty, .banner-error {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 320px;
    padding: 2rem;
    text-align: center;
    color: var(--text-secondary);
}
.banner-loading p, .banner-empty, .banner-error { margin-top: 0.5rem; }
.banner-controls {
    position: absolute;
    bottom: 1.75rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 1.25rem;
    z-index: 10;
    background: rgba(29, 53, 87, 0.92);
    border: 1px solid rgba(255,255,255,0.2);
    overflow: visible;
    min-width: min(420px, 92vw);
    max-width: 95%;
}
.banner-nav-btn {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border: none;
    background: transparent;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.banner-nav-btn:hover { background: rgba(255,255,255,0.15); }
.banner-nav-prev { border-right: 1px solid rgba(255,255,255,0.2); }
.banner-nav-next { border-left: 1px solid rgba(255,255,255,0.2); }
.banner-show-all-btn {
    padding: 0 1.25rem;
    height: 44px;
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 0;
    justify-content: center;
    background: transparent;
    color: #fff;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s;
}
.banner-show-all-btn:hover { background: rgba(255,255,255,0.1); color: #fff; }
.banner-dots {
    position: absolute;
    bottom: 0.35rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
    padding-top: 0.6rem;
}
.banner-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    padding: 0;
    transition: background 0.2s, transform 0.2s;
}
.banner-dot:hover { background: rgba(255,255,255,0.8); }
.banner-dot.active {
    background: #fff;
    transform: scale(1.2);
}

/* Ofertat Lokale homepage - card carousel (like Oferta Turistike) */
.oferta-lokale-section.offers-section {
    padding: 2rem 0;
}
.oferta-lokale-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
.oferta-lokale-carousel {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}
.oferta-lokale-track {
    display: flex;
    gap: 1rem;
    transition: transform 0.4s ease;
    will-change: transform;
}
.oferta-lokale-track .offer-card {
    flex: 0 0 calc(33.333% - 0.67rem);
    min-width: 0;
}
.oferta-lokale-carousel-btn {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border: 1px solid var(--glass-border-soft);
    background: var(--glass-bg);
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}
.oferta-lokale-carousel-btn:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}
.oferta-lokale-carousel-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}
.oferta-lokale-carousel-btn:disabled:hover {
    background: var(--glass-bg);
    color: var(--primary-color);
    border-color: var(--glass-border-soft);
}
.oferta-lokale-loading,
.oferta-lokale-empty,
.oferta-lokale-error {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 280px;
    width: 100%;
    color: var(--text-secondary);
}
.oferta-lokale-loading p { margin-top: 0.5rem; }
.oferta-lokale-track > .oferta-lokale-empty,
.oferta-lokale-track > .oferta-lokale-error {
    flex: 1 1 100%;
    text-align: center;
}
.oferta-lokale-footer {
    text-align: center;
    margin-top: 2rem;
}

@media (max-width: 1024px) {
    .oferta-lokale-track .offer-card {
        flex: 0 0 calc(33.333% - 0.67rem);
    }
}
@media (max-width: 768px) {
    .oferta-lokale-carousel-wrapper { gap: 0.35rem; }
    .oferta-lokale-track { gap: 0.75rem; }
    .oferta-lokale-track .offer-card {
        flex: 0 0 calc(100% - 0.5rem);
    }
    .oferta-lokale-carousel-btn {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
}
@media (max-width: 480px) {
    .oferta-lokale-track .offer-card {
        flex: 0 0 calc(100% - 0.5rem);
    }
}

@media (max-width: 768px) {
    .banner-slideshow, .banner-slides { min-height: 420px; height: 420px; }
    .banner-content { padding: 1.5rem 1rem 5.5rem; }
    .banner-title { font-size: clamp(1.25rem, 5vw, 1.75rem); }
    .banner-promo { min-width: min(260px, 90vw); padding: 0.6rem 1.25rem; }
    .banner-promo span { font-size: 0.8rem; }
    .banner-controls { bottom: 1.85rem; min-width: min(380px, 95vw); gap: 1rem; }
    .banner-nav-btn { width: 40px; height: 40px; font-size: 0.9rem; }
    .banner-show-all-btn { height: 40px; font-size: 0.85rem; padding: 0 1rem; }
}
@media (max-width: 480px) {
    .banner-slideshow, .banner-slides { min-height: 450px; height: 450px; }
    .banner-content { padding: 1rem 0.75rem 5rem; }
    .banner-location { font-size: 0.6rem; }
    .banner-promo { min-width: min(240px, 92vw); padding: 0.55rem 1rem; }
    .banner-promo span { font-size: 0.75rem; }
    .banner-controls { bottom: 1.75rem; min-width: min(320px, 96vw); gap: 1rem; }
    .banner-nav-btn { width: 38px; height: 38px; }
    .banner-show-all-btn { height: 38px; font-size: 0.8rem; padding: 0 0.75rem; }
}

.aktuale-slideshow {
    position: relative;
    max-width: 520px;
    margin: 0 auto;
    min-height: 420px;
    overflow: visible;
}

.aktuale-slides {
    position: relative;
    min-height: 420px;
    height: 420px;
    overflow: hidden;
}

/* Kur ka slide-a, kontejneri ka lartësi fikse që të gjitha të mbivendosen */
.aktuale-slideshow .aktuale-slides:has(.aktuale-slide) {
    height: 420px;
    min-height: 420px;
}

.aktuale-slideshow .aktuale-loading,
.aktuale-slideshow .aktuale-empty,
.aktuale-slideshow .aktuale-error {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 380px;
    padding: 2rem;
    text-align: center;
    color: var(--text-secondary);
}
.aktuale-slideshow .aktuale-loading p,
.aktuale-slideshow .aktuale-empty,
.aktuale-slideshow .aktuale-error {
    margin-top: 0.5rem;
}

/* Të gjitha rrëshqitjet në të njëjtin vend – një “dritare” e vetme, prerje në 420px */
.aktuale-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 420px;
    max-height: 420px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.aktuale-slide.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 1;
}

/* Kartë brenda slideshow: absolute në të njëjtin vend, display block (jo flex nga .aktuale-card) */
.aktuale-slideshow .aktuale-card {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 420px;
    min-height: 420px;
    max-height: 420px;
    width: 100%;
    max-width: 100%;
    display: block;
    box-sizing: border-box;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.aktuale-slideshow .aktuale-card::before {
    display: none;
}

.aktuale-slideshow .aktuale-card:hover {
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
    border-color: #e0e0e0;
}

.aktuale-slideshow .aktuale-card-image {
    height: 220px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: auto;
    background: #f8f9fa;
}

.aktuale-slideshow .aktuale-card-image::after {
    display: none;
}

.aktuale-slideshow .aktuale-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.aktuale-slideshow .aktuale-card-glass {
    top: 220px;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-top: 1px solid #f0f1f3;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    min-height: 0;
    overflow: hidden;
}

.aktuale-slideshow .aktuale-card-body {
    padding: 1.25rem 1.5rem 0.75rem;
    overflow: hidden;
    min-height: 0;
    flex: 1;
}

.aktuale-slideshow .aktuale-card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 0.5rem 0;
    letter-spacing: -0.01em;
    -webkit-line-clamp: 2;
    line-clamp: 2;
}

.aktuale-slideshow .aktuale-card-desc {
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    line-height: 1.5;
    font-size: 0.875rem;
    color: #6b7280;
}

.aktuale-slideshow .aktuale-card-meta {
    margin: 0.5rem 0 0;
    font-size: 0.8125rem;
    color: #9ca3af;
}

.aktuale-slideshow .aktuale-card-footer {
    padding: 1rem 1.5rem 1.25rem;
    border-top: 1px solid #f0f1f3;
    background: #fafbfc;
    flex-shrink: 0;
}

.aktuale-slideshow .aktuale-card-price {
    font-size: 1rem;
    font-weight: 700;
    color: #111827;
}

.aktuale-slideshow .aktuale-card-footer .btn {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 0;
    min-width: auto;
}

.aktuale-controls {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    margin-top: 1.25rem;
    flex-wrap: nowrap;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    background: rgba(29, 53, 87, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.12);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
    overflow: hidden;
    position: relative;
    z-index: 10;
}

.aktuale-controls .aktuale-nav-btn {
    order: 0;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: none;
    transition: background 0.2s ease;
}

.aktuale-controls .aktuale-nav-prev {
    border-right: 1px solid rgba(255, 255, 255, 0.25);
}

.aktuale-controls .aktuale-nav-next {
    order: 2;
    border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.aktuale-controls .aktuale-nav-btn:hover {
    background: rgba(255, 255, 255, 0.12);
}

.aktuale-controls .aktuale-nav-btn:focus {
    outline: 2px solid rgba(255, 255, 255, 0.6);
    outline-offset: -2px;
}

.aktuale-controls .aktuale-show-all-btn {
    order: 1;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    height: 48px;
    padding: 0 1rem;
    background: transparent;
    border: none;
    border-radius: 0;
    color: #fff;
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: none;
    transition: background 0.2s ease;
}

.aktuale-controls .aktuale-show-all-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.aktuale-nav-btn {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border: none;
    border-radius: 0;
    background: rgba(29, 53, 87, 0.92);
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: background 0.2s ease, box-shadow 0.2s ease;
}

.aktuale-nav-btn:hover {
    background: var(--primary-color);
    box-shadow: 0 4px 12px rgba(230, 57, 70, 0.3);
}

.aktuale-nav-btn:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

@media (max-width: 640px) {
    .aktuale-slideshow {
        max-width: 100%;
        width: 100%;
        min-height: 400px;
    }
    .aktuale-slides,
    .aktuale-slideshow .aktuale-slides:has(.aktuale-slide) {
        height: 400px;
        min-height: 400px;
    }
    .aktuale-slide {
        height: 400px;
        max-height: 400px;
    }
    .aktuale-slideshow .aktuale-card {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 400px;
        min-height: 400px;
        max-height: 400px;
        width: 100%;
    }
    .aktuale-slideshow .aktuale-card-image {
        height: 180px;
    }
    .aktuale-slideshow .aktuale-card-glass {
        top: 180px;
    }
    .aktuale-slideshow .aktuale-card-body {
        padding: 1rem 1rem 0.5rem;
    }
    .aktuale-slideshow .aktuale-card-title {
        font-size: 1rem;
    }
    .aktuale-slideshow .aktuale-card-desc {
        font-size: 0.8125rem;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }
    .aktuale-slideshow .aktuale-card-footer {
        padding: 0.75rem 1rem 1rem;
    }
    .aktuale-controls {
        margin-top: 1rem;
        max-width: 100%;
    }
    .aktuale-controls .aktuale-nav-btn {
        width: 44px;
        height: 44px;
        font-size: 0.9rem;
    }
    .aktuale-controls .aktuale-show-all-btn {
        height: 44px;
        font-size: 0.8125rem;
        padding: 0 0.75rem;
    }
}

.aktuale-empty {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
}
.aktuale-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    min-height: 200px;
}
.aktuale-grid .aktuale-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 2rem;
    color: var(--text-secondary);
}
.aktuale-grid .aktuale-loading p { margin-top: 0.5rem; }

.aktuale-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 0;
    overflow: hidden;
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: relative;
    min-height: 320px;
    display: flex;
    flex-direction: column;
}
.aktuale-card::before {
    display: none;
}
.aktuale-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: #d1d5db;
}
.aktuale-card-link {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: block;
    color: inherit;
    cursor: pointer;
    overflow: hidden;
}
.aktuale-card-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 160px;
    background: #f3f4f6;
    overflow: hidden;
}
.aktuale-card-image::after {
    display: none;
}
.aktuale-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.aktuale-card-noimg {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: #9ca3af;
}

.aktuale-card-glass {
    position: absolute;
    top: 160px;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-top: 1px solid #f0f1f3;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    min-height: 0;
}
.aktuale-card-body {
    padding: 0.85rem 1rem 0.4rem;
    background: none;
    border: none;
    box-shadow: none;
    flex: 1;
    min-height: 0;
    overflow: hidden;
}
.aktuale-card-title {
    font-size: 0.9375rem;
    font-weight: 700;
    margin: 0 0 0.35rem 0;
    color: #111827;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.aktuale-card-desc {
    font-size: 0.8125rem;
    color: #6b7280;
    line-height: 1.4;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.aktuale-card-meta {
    margin: 0.35rem 0 0;
    font-size: 0.75rem;
    color: #9ca3af;
}
.aktuale-card-duration {
    white-space: nowrap;
}
.aktuale-card-footer {
    padding: 0.6rem 1rem 0.85rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    background: #f0f4f8;
    border-top: 1px solid #e5e7eb;
    box-shadow: none;
    flex-shrink: 0;
}
.aktuale-card-price-wrapper {
    flex: 1;
    min-width: 0;
}
.aktuale-card-price {
    font-size: 0.875rem;
    font-weight: 700;
    color: #111827;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.aktuale-card-price strong {
    font-weight: 700;
}
.aktuale-card-footer .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    width: auto;
    min-width: auto;
    padding: 0.5rem 0.85rem;
    font-size: 0.8125rem;
    font-weight: 600;
    text-align: center;
    border-radius: 0;
    border: none;
    white-space: nowrap;
}
.aktuale-card-rezervo {
    font-weight: 600;
}

@media (max-width: 1024px) {
    .aktuale-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .aktuale-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
}

.aktuale-pagination {
    margin-top: 1.5rem;
    justify-content: center;
}
.aktuale-error {
    text-align: center;
    color: var(--text-secondary);
}

.offers-section {
    padding: 2rem 0;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    position: relative;
    overflow: visible;
}

.booking-search-form {
    background: var(--glass-bg-strong);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--glass-border-soft);
    border-radius: 0;
    transition: all var(--transition-smooth);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 4px 20px rgba(29, 53, 87, 0.08);
}

.booking-search-form:hover {
    border-color: rgba(230, 57, 70, 0.15);
    box-shadow: var(--glass-shadow);
}

.search-form-single {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 1rem;
    margin-bottom: 0;
}

.search-form-single .search-field-full {
    flex: 1;
    min-width: 200px;
}

.reservations-search-single {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 1rem;
}

.reservations-search-single .reservations-search-field-full {
    flex: 1;
    min-width: 200px;
}

.search-field {
    display: flex;
    flex-direction: column;
}

.search-field label {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.35rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.search-field input,
.search-field select {
    padding: 0.6rem 0.85rem;
    border: 1px solid var(--glass-border-soft);
    border-radius: 0;
    font-size: 0.8rem;
    font-family: inherit;
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: all var(--transition-smooth);
    height: auto;
    min-height: 38px;
    box-sizing: border-box;
    width: 100%;
    box-shadow: 0 2px 6px rgba(29, 53, 87, 0.04);
}

.search-field input:hover,
.search-field select:hover {
    border-color: rgba(230, 57, 70, 0.25);
}

.search-field input:focus,
.search-field select:focus {
    outline: none;
    border-color: rgba(230, 57, 70, 0.5);
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.1);
    background: var(--bg-primary);
}

.search-field input::placeholder {
    color: var(--text-tertiary);
    opacity: 0.7;
}

.search-actions {
    grid-column: 1 / -1;
    display: flex;
    gap: 0.75rem;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.search-actions .btn {
    min-height: 38px;
    border-radius: 0;
    padding: 0.6rem 1.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    .booking-search-form {
        padding: 1rem;
        max-width: 100%;
    }
    
    .search-actions {
        flex-direction: row;
        flex-wrap: nowrap;
    }
    
    .search-actions .btn {
        width: auto;
        flex: 1 1 auto;
    }
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
    max-width: 1200px;
    min-height: 220px;
    margin-left: auto;
    margin-right: auto;
    align-items: stretch;
}

@media (max-width: 1024px) {
    .offers-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .offer-footer {
        padding: 0.5rem 0.65rem 0.75rem;
        gap: 0.5rem;
    }
    
    .offer-price {
        font-size: 0.85rem;
    }
    
    .offer-book-btn {
        padding: 0.4rem 0.5rem;
        font-size: 0.8rem;
        min-width: 2.25rem;
    }
}

.offer-card {
    background: var(--gradient-hero);
    border-radius: 0;
    overflow: hidden;
    box-shadow: var(--glass-shadow);
    transition: all var(--transition-smooth);
    height: 100%;
    border: 1px solid var(--glass-border-soft);
    position: relative;
    min-height: 320px;
}
.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    opacity: 0;
    transition: opacity var(--transition-smooth);
    border-radius: 0;
    z-index: 2;
    pointer-events: none;
}
.offer-card:hover::before {
    opacity: 1;
}

.offer-card-link {
    position: absolute;
    inset: 0;
    display: block;
    overflow: hidden;
    z-index: 1;
}

.offer-card-link:hover {
    text-decoration: none;
}

.offer-card:hover {
    box-shadow: var(--glass-shadow);
    border-color: rgba(230, 57, 70, 0.15);
}

.offer-image {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background: var(--gradient-hero);
}
.offer-image::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(29, 53, 87, 0.5), transparent);
    pointer-events: none;
}
.offer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.offer-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary-color);
}

.offer-glass {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 -4px 24px rgba(29, 53, 87, 0.08);
    border-radius: 0;
}

.offer-content {
    padding: 0.85rem 1.1rem 0.35rem;
    background: none;
    border: none;
    box-shadow: none;
}

.offer-content h3 {
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
    line-height: 1.25;
    font-weight: 700;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.offer-description {
    color: var(--text-secondary);
    margin-bottom: 0;
    line-height: 1.35;
    font-size: 0.82rem;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
}

.offer-details {
    display: none;
}

.offer-footer {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
    padding: 0.5rem 1.1rem 0.85rem;
    background: none;
    border: none;
}

.offer-price-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    min-width: 0;
    order: 1;
}

.offer-price {
    font-size: 0.95rem;
    color: var(--primary-color);
    white-space: nowrap;
    text-align: left;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
}

.offer-price strong {
    white-space: nowrap;
    display: inline;
    word-break: keep-all;
}

.offer-book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 2.5rem;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    white-space: nowrap;
    text-align: center;
    border-radius: 0;
    align-self: stretch;
    order: 2;
}

.offers-loading,
.offers-empty,
.offers-error {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: var(--text-secondary);
}

.offers-loading i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.related-offers-section {
    padding: 3rem 0;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 50%, var(--bg-secondary) 100%);
}

.related-offers-section .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.related-offers-title {
    font-size: clamp(1.5rem, 2.2vw, 2rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 2.5rem;
    text-align: center;
    position: relative;
    padding-bottom: 0.75rem;
}

.related-offers-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
}

.related-offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: stretch;
}

.related-offers-grid .offer-card {
    min-height: 280px;
}

.related-offers-grid .offer-card:hover {
    box-shadow: var(--glass-shadow);
    border-color: rgba(230, 57, 70, 0.2);
}

.related-offers-grid .offer-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.related-offers-grid .offer-card-link:hover {
    text-decoration: none;
    color: inherit;
}

.related-offers-grid .offer-image {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
}
.related-offers-grid .offer-image::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(29, 53, 87, 0.5), transparent);
    pointer-events: none;
}

.related-offers-grid .offer-content {
    padding: 0.75rem 1rem 0.25rem;
    background: none;
    border: none;
    box-shadow: none;
}

.related-offers-grid .offer-content h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
    line-height: 1.25;
    text-decoration: none !important;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-offers-grid .offer-description {
    color: var(--text-secondary);
    font-size: 0.8rem;
    line-height: 1.35;
    margin-bottom: 0;
    text-decoration: none !important;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
}

.related-offers-grid .offer-details {
    display: none;
}

.related-offers-grid .offer-footer {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 0.35rem 1rem 0.65rem;
    background: none;
    border: none;
}

.related-offers-grid .offer-price-wrapper {
    min-width: 0;
    justify-content: flex-start;
}

.related-offers-grid .offer-price {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: left;
    text-decoration: none !important;
}

.related-offers-grid .offer-price strong {
    font-weight: 700;
    text-decoration: none !important;
}

.related-offers-grid .offer-book-btn {
    width: 100%;
    align-self: stretch;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    background: var(--primary-color);
    color: white;
    border: 1px solid var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all var(--transition-smooth);
    text-align: center;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    white-space: nowrap;
}

.related-offers-grid .offer-book-btn:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    box-shadow: 0 4px 12px rgba(230, 57, 70, 0.35);
}

.related-offers-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
    margin-bottom: 2rem;
}

@media (max-width: 1024px) {
    .related-offers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .related-offers-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .related-offers-section {
        padding: 2rem 0;
    }
    
    .related-offers-title {
        margin-bottom: 2rem;
    }
    
    .related-offers-grid .offer-card {
        min-height: 260px;
    }
}

.offers-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    padding: 20px 0;
}

.pagination-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.pagination-btn {
    padding: 10px 16px;
    border: 1px solid var(--glass-border-soft);
    background: var(--glass-bg-strong);
    backdrop-filter: blur(8px);
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 0;
    transition: all var(--transition-smooth);
    box-shadow: 0 2px 8px rgba(29, 53, 87, 0.06);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-width: 44px;
    justify-content: center;
}

.pagination-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.pagination-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.pagination-ellipsis {
    padding: 10px 8px;
    color: var(--text-secondary);
    font-weight: 600;
}

@media (max-width: 768px) {
    .pagination-btn {
        padding: 8px 12px;
        font-size: 0.85rem;
        min-width: 40px;
    }
    
    .pagination-controls {
        gap: 6px;
    }
}

.booking-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    overflow-y: auto;
}

.booking-modal-content {
    background: white;
    margin: 50px auto;
    padding: 30px;
    max-width: 600px;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.booking-modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.booking-modal-close:hover {
    color: var(--primary-color);
}

.booking-modal-content h2 {
    margin-bottom: 24px;
    color: var(--text-primary);
}

.booking-summary {
    background: var(--bg-secondary);
    padding: 16px;
    margin: 20px 0;
}

.booking-summary-content h4 {
    margin-bottom: 12px;
    color: var(--text-primary);
}

.booking-summary-content p {
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.booking-total {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 2px solid var(--border-color);
}

@media (max-width: 768px) {
    
    .contact-section {
        padding: 1.5rem 0;
    }
    
    .contact-section .section-header {
        margin-bottom: 0.75rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 0.75rem;
        align-items: stretch;
    }
    
    .contact-map-container {
        min-height: 220px;
    }
    
    .map-wrapper {
        min-height: 220px;
    }
    
    .google-map {
        min-height: 220px;
    }
    
    .contact-form-container {
        padding: 1rem 1.25rem;
    }
    
    .contact-form {
        gap: 0.6rem;
    }
    
    .contact-form .btn-primary {
        margin-top: 0;
        padding: 0.6rem 1.25rem;
        font-size: 0.7rem;
    }
    
    .form-group label {
        font-size: 0.7rem;
        margin-bottom: 0.25rem;
    }
    
    .form-group input,
    .form-group textarea,
    .custom-select-display {
        padding: 0.6rem;
        font-size: 0.7rem;
    }
    
    .form-group textarea {
        height: 50px;
    }
    
    .form-feedback {
        padding: 0.5rem 0.7rem;
        font-size: 0.7rem;
        margin-bottom: 0.15rem;
    }
    
    .form-feedback {
        padding: 0.75rem;
        font-size: 0.85rem;
        margin-bottom: 0.6rem;
    }
    
    .btn {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    
    .contact-section {
        padding: 1.5rem 0;
    }
    
    .contact-section .section-header {
        margin-bottom: 1rem;
    }
    
    .contact-section .section-header h2 {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }
    
    .contact-section .section-subtitle {
        font-size: 0.85rem;
        margin: 0.5rem auto 0;
    }
    
    .contact-content {
        margin-top: 1rem;
        gap: 1.25rem;
    }
    
    .contact-form-container {
        padding: 1.5rem 1.25rem;
    }
    
    .contact-form {
        gap: 0.85rem;
    }
    
    .contact-form .btn-primary {
        margin-top: 0.2rem;
    }
    
    .form-group label {
        font-size: 0.75rem;
        margin-bottom: 0.3rem;
    }
    
    .form-group input,
    .form-group textarea,
    .custom-select-display {
        padding: 0.65rem;
        font-size: 0.75rem;
    }
    
    .form-group textarea {
        height: 45px;
    }
    
    .form-feedback {
        padding: 0.5rem 0.65rem;
        font-size: 0.7rem;
        margin-bottom: 0.15rem;
    }
    
    .btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.75rem;
    }
    
    .contact-map-container,
    .map-wrapper,
    .google-map {
        min-height: 200px;
    }
    
    .contact-form-container {
        padding: 1.25rem 1rem;
    }
    
    .form-group textarea {
        min-height: 60px;
        max-height: 100px;
    }
}

.improved-booking-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-section {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 0;
    border: 1px solid var(--border-color);
}

.form-section-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.improved-booking-form .form-group {
    margin-bottom: 0;
}

.improved-booking-form .form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    text-transform: none;
    letter-spacing: 0;
}

.improved-booking-form .form-group label i {
    color: var(--primary-color);
    font-size: 1rem;
}

.improved-booking-form .form-group label .required {
    color: var(--primary-color);
    margin-left: 0.25rem;
}

.improved-booking-form .form-group input,
.improved-booking-form .form-group textarea {
    padding: 1rem 1.25rem;
    border: 1px solid var(--glass-border-soft);
    border-radius: 0;
    font-size: 1rem;
    transition: all var(--transition-smooth);
    background: var(--bg-primary);
    color: var(--text-primary);
    width: 100%;
    box-shadow: 0 2px 8px rgba(29, 53, 87, 0.04);
}

.improved-booking-form .form-group input:focus,
.improved-booking-form .form-group textarea:focus {
    outline: none;
    border-color: rgba(230, 57, 70, 0.5);
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.1);
}

.improved-booking-form .form-group input::placeholder,
.improved-booking-form .form-group textarea::placeholder {
    color: var(--text-tertiary);
    opacity: 0.7;
}

.checkbox-group {
    padding: 1rem 1.25rem;
    background: var(--glass-bg-strong);
    border: 1px solid var(--glass-border-soft);
    border-radius: 0;
    box-shadow: 0 2px 8px rgba(29, 53, 87, 0.04);
}

.checkbox-group label {
    font-weight: 500;
    cursor: pointer;
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.contact-section {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    padding: 2rem 0;
    position: relative;
    overflow: visible;
    scroll-margin-top: 100px;
}

.contact-section .section-header {
    margin-bottom: 1rem;
}

.contact-section .section-header h2 {
    font-size: clamp(1.3rem, 1.9vw, 1.7rem);
    margin-bottom: 0.4rem;
}

.contact-section .section-subtitle {
    font-size: clamp(0.85rem, 0.95vw, 1rem);
    margin: 0.4rem auto 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 1.5rem;
    margin-top: 1rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    align-items: stretch;
}

@media (min-width: 769px) {
    .contact-section {
        padding: 1.5rem 0;
    }
    
    .contact-section .section-header {
        margin-bottom: 0.75rem;
    }
    
    .contact-content {
        margin-top: 0.75rem;
        gap: 1.25rem;
    }
    
    .contact-form-container {
        padding: 1rem 1.5rem;
    }
    
    .contact-form {
        gap: 0.6rem;
    }
    
    .form-group label {
        margin-bottom: 0.25rem;
        font-size: 0.75rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea,
    .custom-select-display {
        padding: 0.6rem 0.75rem;
        font-size: 0.8rem;
    }
    
    .form-group textarea {
        height: 50px;
    }
    
    .contact-form .btn-primary {
        margin-top: 0;
        padding: 0.6rem 1.25rem;
        font-size: 0.75rem;
    }
    
    .form-feedback {
        padding: 0.55rem 0.75rem;
        font-size: 0.7rem;
        margin-bottom: 0.2rem;
    }
}

.contact-map-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: stretch;
}

.map-wrapper {
    width: 100%;
    height: 100%;
    border: 1px solid var(--glass-border-soft);
    border-radius: 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(29, 53, 87, 0.08);
    background: var(--bg-primary);
    display: flex;
    flex-direction: column;
}

.google-map {
    width: 100%;
    height: 100%;
    border: none;
    opacity: 1;
    flex: 1;
    min-height: 0;
}

.contact-form-container {
    background: var(--glass-bg-strong);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1.5rem 1.75rem;
    border-radius: 0;
    border: 1px solid var(--glass-border-soft);
    transition: all var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(29, 53, 87, 0.08);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.contact-form-container:hover {
    box-shadow: var(--glass-shadow);
    border-color: rgba(230, 57, 70, 0.12);
}

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

.contact-form .form-group:last-of-type {
    margin-bottom: 0;
}

.contact-form .form-group {
    flex-shrink: 0;
}

.contact-form .form-feedback {
    margin-bottom: 0.15rem;
}

.contact-form .btn-primary {
    margin-top: 0;
    align-self: flex-start;
    padding: 0.6rem 1.5rem;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.35rem;
    color: var(--text-primary);
    font-size: 0.8rem;
    text-transform: none;
    letter-spacing: 0;
}

.form-error {
    display: block;
    color: var(--primary-color);
    font-size: 0.8rem;
    margin-top: 0.4rem;
    min-height: 1.1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.form-error.show {
    opacity: 1;
}

.form-group input:invalid:not(:placeholder-shown):not(:focus),
.form-group textarea:invalid:not(:placeholder-shown):not(:focus) {
    border-color: #dc3545;
}

.form-group input:valid:not(:placeholder-shown):not(:focus),
.form-group textarea:valid:not(:placeholder-shown):not(:focus) {
    border-color: #d0d0d0;
}

.form-feedback {
    padding: 0.6rem 0.85rem;
    margin-bottom: 0.25rem;
    border: 1px solid;
    border-radius: 0;
    font-weight: 500;
    text-align: center;
    opacity: 0;
    transform: translateY(-5px);
    transition: all var(--transition-smooth);
    font-size: 0.75rem;
    flex-shrink: 0;
    min-height: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
}

.form-feedback.show {
    opacity: 1;
    transform: translateY(0);
    min-height: auto;
    visibility: visible;
    max-height: 200px;
    margin-bottom: 0.25rem;
}

.form-feedback.success {
    background: #f0f9f4;
    border-color: #28a745;
    color: #155724;
}

.form-feedback.error {
    background: #fff5f5;
    border-color: var(--primary-color);
    color: #c53030;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.65rem 0.9rem;
    border: 1px solid var(--glass-border-soft);
    border-radius: 0;
    font-family: inherit;
    font-size: 0.85rem;
    transition: all var(--transition-smooth);
    background: var(--bg-primary);
    color: var(--text-primary);
    width: 100%;
    box-sizing: border-box;
    line-height: 1.4;
    box-shadow: 0 2px 8px rgba(29, 53, 87, 0.04);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: rgba(230, 57, 70, 0.2);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(230, 57, 70, 0.5);
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.1);
    background: var(--bg-primary);
}

.custom-select-wrapper {
    position: relative;
    width: 100%;
}

.custom-select {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 0;
    height: 0;
}

.custom-select-display {
    padding: 0.6rem 0.75rem;
    border: 1px solid #d0d0d0;
    border-radius: 0;
    font-family: inherit;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    background: #ffffff;
    color: #333333;
    width: 100%;
    box-sizing: border-box;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 38px;
}

.custom-select-display:hover {
    border-color: #b0b0b0;
}

.custom-select-wrapper.active .custom-select-display {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(230, 57, 70, 0.1);
    background: #ffffff;
}

.custom-select-text {
    flex: 1;
    text-align: left;
}

.custom-select-text.placeholder {
    color: #999999;
    font-style: normal;
}

.custom-select-arrow {
    color: var(--primary-color);
    font-size: 0.9rem;
    transition: transform 0.3s ease;
    margin-left: 1rem;
}

.custom-select-wrapper.active .custom-select-arrow {
    transform: rotate(180deg);
}

.custom-select-dropdown {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: var(--glass-bg-strong);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border-soft);
    border-radius: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.custom-select-wrapper.active .custom-select-dropdown {
    max-height: 400px;
    opacity: 1;
    visibility: visible;
}

.custom-select-option {
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #333333;
    font-size: 0.9rem;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
}

.custom-select-option:first-child {
    color: #999999;
    font-style: normal;
}

.custom-select-option:last-child {
    border-bottom: none;
}

.custom-select-option:hover {
    background: rgba(230, 57, 70, 0.06);
    color: var(--text-primary);
}

.custom-select-option.selected {
    background: #f0f7ff;
    color: var(--primary-color);
    font-weight: 600;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-tertiary);
}

.form-group select:hover {
    border-color: #b0b0b0;
}

.form-group select option {
    background: #ffffff;
    color: #333333;
    padding: 0.5rem;
}

.form-group textarea {
    resize: none;
    height: 50px;
    font-family: inherit;
}

.date-time-group {
    display: flex;
    gap: 12px;
    align-items: flex-end;
}

.date-time-group .date-input-wrapper {
    flex: 1;
}

.date-time-group .time-input-wrapper {
    flex: 0 0 auto;
    min-width: 140px;
}

.date-time-group .time-label {
    font-size: 11px;
    font-weight: 500;
    color: #6b7280;
    margin-bottom: 6px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.date-time-group .time-label small {
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    color: #9ca3af;
}

input[type="time"] {
    width: 100%;
    border: 1px solid #d1d5db;
    padding: 12px 14px;
    font-size: 14px;
    font-family: inherit;
    background: white;
    color: #1a1a1a;
    outline: none;
    transition: all 0.2s ease;
    cursor: pointer;
}

input[type="time"]:hover {
    border-color: #9ca3af;
}

input[type="time"]:focus {
    border-color: var(--primary-color, #e63946);
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.1);
}

input[type="time"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.2s ease;
    filter: invert(0.4);
}

input[type="time"]::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}

input[type="date"] {
    border: 1px solid #d1d5db;
    padding: 12px 14px;
    font-size: 14px;
    font-family: inherit;
    background: white;
    color: #1a1a1a;
    outline: none;
    transition: all 0.2s ease;
    cursor: pointer;
}

input[type="date"]:hover {
    border-color: #9ca3af;
}

input[type="date"]:focus {
    border-color: var(--primary-color, #e63946);
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.1);
}

input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.2s ease;
}

input[type="date"]::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}

.voucher-invoice-wrapper input[type="time"] {
    width: 100%;
    border: 1px solid #d1d5db;
    padding: 12px 14px;
    font-size: 14px;
    background: white;
    color: #1a1a1a;
    transition: all 0.2s ease;
}

.voucher-invoice-wrapper input[type="time"]:hover {
    border-color: #9ca3af;
}

.voucher-invoice-wrapper input[type="time"]:focus {
    border-color: #e63946;
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.1);
}

.voucher-invoice-wrapper input[type="date"] {
    border: 1px solid #d1d5db;
    padding: 12px 14px;
    font-size: 14px;
    background: white;
    color: #1a1a1a;
    transition: all 0.2s ease;
}

.voucher-invoice-wrapper input[type="date"]:hover {
    border-color: #9ca3af;
}

.voucher-invoice-wrapper input[type="date"]:focus {
    border-color: #e63946;
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.1);
}

.footer {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, rgba(245, 247, 250, 0.95) 100%);
    color: var(--text-primary);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--glass-border-soft);
    position: relative;
}
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--glass-border-soft), transparent);
    opacity: 0.8;
}

.footer-content {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: start;
    width: 100%;
    max-width: 100%;
    grid-auto-flow: row;
}

@media (min-width: 1025px) {
    .footer .container .footer-content,
    footer .container .footer-content,
    .footer-content {
        display: grid !important;
        grid-template-columns: repeat(4, 1fr) !important;
        grid-auto-flow: row !important;
    }
}

footer .footer-content,
.footer .footer-content {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
}

@media (min-width: 1025px) {
    .footer-content,
    footer .footer-content,
    .footer .footer-content {
        grid-template-columns: repeat(4, 1fr) !important;
        display: grid !important;
    }
}

.footer-section {
    width: 100%;
    min-width: 0;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo-link {
    display: inline-block;
    transition: opacity 0.3s ease;
}

.footer-logo-link:hover {
    opacity: 0.8;
}

.footer-logo-img {
    height: 90px;
    width: auto;
    display: block;
    transition: all 0.3s ease;
}

.footer-logo-link:hover .footer-logo-img {
    opacity: 0.9;
}

.footer-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 0.9rem;
    margin-top: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
    display: inline-block;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.footer-quick-links a {
    text-decoration: none !important;
}

.footer-sublinks {
    list-style: none;
    margin: 0.5rem 0 0 0;
    padding-left: 1rem;
    border-left: 2px solid rgba(230, 57, 70, 0.25);
}

.footer-sublinks li {
    margin-bottom: 0.4rem;
}

.footer-sublinks a {
    font-size: 0.85rem;
    color: var(--text-tertiary);
}

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

.footer-section p a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section p a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.footer-contact {
    margin-top: 0.5rem;
}

.footer-contact-item {
    margin-bottom: 1rem;
    margin-top: 0;
}

.footer-contact-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-contact-link i {
    font-size: 1rem;
    color: var(--primary-color);
    width: 20px;
    text-align: center;
    transition: color 0.3s ease;
}

.footer-contact-link:hover {
    color: var(--primary-color);
}

.footer-contact-link:hover i {
    color: var(--primary-color);
}

.footer-section-social {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-section-social h4 {
    margin-bottom: 1rem;
    font-size: 1.15rem;
    color: var(--text-primary);
}

.footer-social-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 0;
}

.footer-social-link i {
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.footer-social-link:hover {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: white;
}

.footer-social-link:hover i {
    color: white;
}

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

@media (max-width: 1024px) and (min-width: 769px) {
    .footer-content,
    footer .footer-content,
    .footer .footer-content {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .footer-content,
    footer .footer-content,
    .footer .footer-content {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 2rem;
    }
    
    .footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-section h4 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .footer-content,
    footer .footer-content,
    .footer .footer-content {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem;
    }
    
    .footer-section h4 {
        font-size: 0.9rem;
    }
    
    .footer-section ul li {
        margin-bottom: 0.5rem;
    }
    
    .footer-section ul li a,
    .footer-section p,
    .footer-contact-link {
        font-size: 0.85rem;
    }
}

@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .hero-title {
        font-size: clamp(1.6rem, 3vw, 2.5rem);
    }
    
    .hero-subtitle {
        font-size: clamp(0.9rem, 1.3vw, 1.1rem);
    }
    
    .section-header h2 {
        font-size: clamp(1.6rem, 3vw, 2.2rem);
    }
    
    .about-title {
        font-size: clamp(1.4rem, 2.2vw, 1.9rem);
    }
    
    .mission-card h3 {
        font-size: clamp(1.1rem, 1.15vw, 1.2rem);
    }
    
    .vision-feature h3 {
        font-size: clamp(0.95rem, 1.05vw, 1.1rem);
    }
    
    .team-member h3 {
        font-size: clamp(1.05rem, 1.15vw, 1.2rem);
    }
    
    .partner-item h4 {
        font-size: clamp(0.95rem, 1.05vw, 1.1rem);
    }
    
    .lang-btn {
        padding: 0.6rem 0.9rem;
        font-size: clamp(0.65rem, 0.75vw, 0.75rem);
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-map-container {
        min-height: 400px;
    }

    .map-wrapper {
        min-height: 400px;
    }

    .google-map {
        min-height: 400px;
    }

    .service-card-header {
        padding: 1.75rem 2rem;
    }
}

@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
    }

    .container {
        padding: 0 30px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    section {
        padding: 5rem 0;
        scroll-margin-top: 80px;
    }
    
    .section-header {
        margin-bottom: 3rem;
        max-width: 100%;
    }
    
    .section-header h2 {
        font-size: clamp(1.5rem, 3vw, 2rem);
    }
    
    .section-subtitle {
        max-width: 100%;
        margin: 1.25rem auto 0;
    }
    
    .hero {
        padding: 6rem 0 4rem;
    }
    .hero-video {
        min-width: 100%;
        min-height: 100%;
    }
    .hero-video-overlay {
        background: transparent;
    }
    
    body {
        font-size: 14px;
    }
    
    .navbar .container {
        padding: 0.9rem 20px;
        grid-template-columns: auto 1fr auto;
        gap: 10px;
        min-height: 60px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .nav-toggle {
        width: 40px;
        height: 40px;
        padding: 0.5rem;
        z-index: 1002;
        flex-shrink: 0;
    }

    .nav-toggle span {
        width: 20px;
    }

    .nav-brand {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        z-index: 1001;
        width: auto;
    }

    .logo-img {
        height: 50px;
        max-width: 150px;
        width: auto;
    }
    
    .nav-brand {
        min-width: 140px;
        min-height: 70px;
        padding: 12px;
    }

    .nav-menu {
        width: 280px;
        padding: 4rem 0 2rem 0;
    }

    .language-switcher {
        z-index: 1003;
        flex-shrink: 0;
    }

    .lang-btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.7rem;
        min-width: auto;
    }

    .lang-code {
        display: none;
    }

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

    .lang-btn {
        padding: 0.55rem 0.85rem;
        font-size: clamp(0.65rem, 0.7vw, 0.7rem);
        gap: 0.4rem;
    }
    
    .lang-code {
        font-size: clamp(0.6rem, 0.65vw, 0.65rem);
    }
    
    .lang-dropdown {
        min-width: 180px;
        max-width: 220px;
    }
    
    .lang-option {
        padding: 0.75rem 1rem;
        font-size: clamp(0.75rem, 0.8vw, 0.8rem);
    }

    .hero {
        min-height: 100vh;
        height: auto;
        padding: 5rem 0 3rem 0;
    }

    .hero-content {
        max-width: 100%;
        padding: 0 20px;
    }

    .hero-center {
        width: 100%;
    }

    .hero-title {
        text-align: center;
        font-size: clamp(1.5rem, 2.5vw, 2rem);
        line-height: 1.25;
    }

    .hero-subtitle {
        text-align: center;
        font-size: clamp(0.9rem, 1.2vw, 1rem);
        line-height: 1.6;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .btn {
        font-size: clamp(0.85rem, 0.9vw, 0.9rem);
        padding: 1rem 2rem;
    }
    
    .section-header {
        margin-bottom: 3.5rem;
    }
    
    .section-header h2 {
        font-size: clamp(1.5rem, 2.5vw, 1.9rem);
        line-height: 1.3;
    }
    
    .section-subtitle {
        font-size: clamp(0.9rem, 1.1vw, 1rem);
    }
    
    .about-history-content {
        padding: 2rem 1.5rem;
    }
    
    .about-history-content h3 {
        font-size: clamp(1.5rem, 2.2vw, 1.9rem);
        margin-bottom: 1.5rem;
    }
    
    .about-history-text {
        font-size: clamp(0.9rem, 1vw, 0.95rem);
        line-height: 1.8;
    }
    
    .about-history-text p {
        margin-bottom: 1.25rem;
        text-align: left;
    }
    
    .about-history-conclusion {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
        font-size: clamp(0.95rem, 1.1vw, 1rem);
    }
    
    .company-name {
        font-size: clamp(1.1rem, 1.5vw, 1.3rem);
    }
    
    .mission-card {
        padding: 2rem 1.75rem;
    }
    
    .mission-card h3 {
        font-size: clamp(1.05rem, 1.1vw, 1.15rem);
    }
    
    .mission-card p {
        font-size: clamp(0.85rem, 0.9vw, 0.9rem);
    }
    
    .vision-feature h3 {
        font-size: clamp(0.95rem, 1vw, 1.05rem);
    }
    
    .vision-feature p {
        font-size: clamp(0.85rem, 0.9vw, 0.9rem);
    }

    .about-section {
        padding: 5rem 0;
    }

    .about-title {
        text-align: center;
        font-size: clamp(1.5rem, 2.4vw, 1.9rem);
        line-height: 1.3;
        margin-bottom: 2.5rem;
    }

    .about-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .about-feature {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.75rem;
        gap: 1.5rem;
        border-radius: 0;
    }

    .about-feature:hover {
    }

    .about-feature-icon {
        margin: 0 auto;
        width: 65px;
        height: 65px;
        border-radius: 0;
    }
    
    .about-feature-icon i {
        font-size: 2rem;
    }
    
    .about-feature-content h3 {
        font-size: clamp(1.1rem, 1.2vw, 1.25rem);
    }
    
    .about-feature-content p {
        font-size: clamp(0.9rem, 0.95vw, 0.95rem);
    }

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        margin-top: 2rem;
        padding: 2rem 1.5rem;
        border-radius: 0;
    }
    
    .stat-number {
        font-size: clamp(2.25rem, 3.5vw, 3rem);
    }
    
    .stat-label {
        font-size: clamp(0.8rem, 0.9vw, 0.9rem);
    }

    .about-highlight {
        text-align: center;
        padding: 0;
        margin-top: 2.5rem;
        border-radius: 0;
    }

    .about-highlight p {
        font-size: clamp(1.1rem, 1.8vw, 1.4rem);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .team-card-body {
        padding: 1rem 1.25rem;
    }
    
    .team-member h3 {
        font-size: clamp(1rem, 1.05vw, 1.1rem);
    }
    
    .team-role {
        font-size: clamp(0.85rem, 0.9vw, 0.9rem);
    }

    .partner-item {
        flex: 0 0 230px;
        min-width: 230px;
        max-width: 230px;
        padding: 2rem 1.75rem;
    }
    
    .partner-item h4 {
        font-size: clamp(0.95rem, 1vw, 1.05rem);
    }
    
    .partner-item p {
        font-size: clamp(0.8rem, 0.85vw, 0.85rem);
    }

    .service-card-header {
        padding: 1.5rem 1.75rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
    }
    
    section {
        padding: 4.5rem 0;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .contact-form-container {
        padding: 2rem 1.75rem;
    }
    
    .faq-question {
        padding: 0.875rem 1.25rem;
        font-size: clamp(0.9rem, 0.95vw, 0.95rem);
    }
    
    .faq-answer {
        padding: 0 1.25rem 0.875rem 1.25rem;
        font-size: clamp(0.85rem, 0.9vw, 0.9rem);
    }
    
    .gallery-item {
        height: 300px;
    }
}

@media (max-width: 480px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
    }

    body {
        font-size: 13px;
    }
    
    section {
        padding: 4rem 0;
        scroll-margin-top: 70px;
    }
    
    .hero {
        padding: 5rem 0 3rem 0;
        min-height: 80vh;
    }
    
    .hero-video-overlay {
        background: transparent;
    }
    
    .hero-content {
        padding: 0 20px;
    }
    
    .container {
        padding: 0 20px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .navbar .container {
        padding: 0.8rem 15px;
        grid-template-columns: auto 1fr auto;
        gap: 8px;
        min-height: 56px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .nav-toggle {
        width: 38px;
        height: 38px;
        padding: 0.45rem;
        flex-shrink: 0;
    }

    .nav-toggle span {
        width: 18px;
    }

    .nav-brand {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        z-index: 1001;
        width: auto;
    }

    .logo-img {
        height: 48px;
        max-width: 140px;
        width: auto;
    }
    
    .nav-brand {
        min-width: 130px;
        min-height: 65px;
        padding: 10px;
    }

    .nav-menu {
        width: 100%;
        max-width: 320px;
        padding: 3.5rem 0 2rem 0;
    }

    .nav-menu a {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }

    .language-switcher {
        z-index: 1003;
        flex-shrink: 0;
    }
    
    .lang-btn {
        padding: 0.45rem 0.7rem;
        font-size: 0.65rem;
        gap: 0.3rem;
        min-width: auto;
    }
    
    .lang-code {
        display: none;
    }
    
    .lang-arrow {
        font-size: 0.7rem;
    }
    
    .lang-dropdown {
        min-width: 160px;
        max-width: 200px;
        right: 0;
        left: auto;
    }
    
    .lang-option {
        padding: 0.65rem 0.9rem;
        font-size: 0.75rem;
        gap: 0.6rem;
    }
    
    .hero {
        min-height: 100vh;
        height: auto;
        padding: 5rem 0 3rem 0;
    }

    .hero-content {
        padding: 0 15px;
        max-width: 100%;
    }

    .hero-title {
        font-size: clamp(1.4rem, 2vw, 1.75rem);
        line-height: 1.3;
        margin-bottom: 1.25rem;
    }
    
    .hero-subtitle {
        font-size: clamp(0.85rem, 1.1vw, 0.95rem);
        margin-bottom: 2rem;
    }

    .about-history {
        margin-bottom: 3rem;
    }
    
    .about-history-content {
        padding: 1.5rem 1.25rem;
    }
    
    .about-history-content h3 {
        font-size: clamp(1.3rem, 1.8vw, 1.6rem);
        margin-bottom: 1.25rem;
    }
    
    .about-history-text {
        font-size: clamp(0.85rem, 0.95vw, 0.9rem);
        line-height: 1.7;
    }
    
    .about-history-text p {
        margin-bottom: 1rem;
    }
    
    .about-history-conclusion {
        margin-top: 1.25rem;
        padding-top: 1.25rem;
        font-size: clamp(0.9rem, 1vw, 0.95rem);
    }
    
    .company-name {
        font-size: clamp(1rem, 1.3vw, 1.15rem);
    }

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

    .btn {
        width: 100%;
        text-align: center;
        padding: 0.95rem 1.75rem;
        font-size: clamp(0.8rem, 0.85vw, 0.85rem);
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    .section-header h2 {
        font-size: clamp(1.4rem, 2.2vw, 1.75rem);
    }
    
    .section-subtitle {
        font-size: clamp(0.85rem, 1vw, 0.95rem);
    }
    
    .mission-card {
        padding: 1.75rem 1.5rem;
    }
    
    .mission-card h3 {
        font-size: clamp(1rem, 1.05vw, 1.1rem);
    }
    
    .mission-card p {
        font-size: clamp(0.8rem, 0.85vw, 0.85rem);
    }

    .service-card-header {
        padding: 1.25rem 1.5rem;
        gap: 1rem;
    }
    
    .vision-feature h3 {
        font-size: clamp(0.9rem, 0.95vw, 1rem);
    }
    
    .vision-feature p {
        font-size: clamp(0.8rem, 0.85vw, 0.85rem);
    }
    
    .about-section {
        padding: 3rem 0;
    }

    .about-title {
        font-size: clamp(1.4rem, 2.2vw, 1.7rem);
        margin-bottom: 2rem;
        text-align: center;
    }

    .about-title::after {
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
    }
    
    .about-feature {
        padding: 1.75rem 1.5rem;
        gap: 1.25rem;
        border-radius: 0;
    }

    .about-feature:hover {
    }
    
    .about-feature-icon {
        width: 60px;
        height: 60px;
        border-radius: 0;
    }
    
    .about-feature-icon i {
        font-size: 1.75rem;
    }
    
    .about-feature-content h3 {
        font-size: clamp(1.05rem, 1.1vw, 1.15rem);
    }
    
    .about-feature-content p {
        font-size: clamp(0.85rem, 0.9vw, 0.9rem);
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
        padding: 2rem 1.25rem;
        border-radius: 0;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: clamp(2rem, 3vw, 2.5rem);
    }
    
    .stat-label {
        font-size: clamp(0.75rem, 0.85vw, 0.85rem);
    }
    
    .about-highlight {
        padding: 0;
        margin-top: 2rem;
        border-radius: 0;
        text-align: center;
    }

    .about-highlight p {
        font-size: clamp(1rem, 1.5vw, 1.2rem);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .logo-img {
        height: 45px;
        max-width: 130px;
        width: auto;
    }
    
    .nav-brand {
        min-width: 120px;
        min-height: 60px;
        padding: 8px;
    }

    .nav-menu {
        width: 100%;
    }

    .nav-brand h2 {
        font-size: 0.9rem;
    }
    
    .team-card-body {
        padding: 0.875rem 1rem;
    }
    
    .team-member h3 {
        font-size: clamp(0.95rem, 1vw, 1.05rem);
    }
    
    .team-role {
        font-size: clamp(0.8rem, 0.85vw, 0.85rem);
    }

    .partner-item {
        flex: 0 0 220px;
        min-width: 220px;
        max-width: 220px;
        padding: 1.75rem 1.5rem;
    }
    
    .partner-item h4 {
        font-size: clamp(0.9rem, 0.95vw, 1rem);
    }
    
    .partner-item p {
        font-size: clamp(0.75rem, 0.8vw, 0.8rem);
    }
    
    .contact-form-container {
        padding: 1.75rem 1.5rem;
    }
    
    .form-group label {
        font-size: clamp(0.8rem, 0.85vw, 0.85rem);
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: clamp(0.85rem, 0.9vw, 0.9rem);
        padding: 0.9rem;
    }
    
    .faq-question {
        padding: 0.875rem 1.125rem;
        font-size: clamp(0.85rem, 0.9vw, 0.9rem);
    }
}

.offer-hero {
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    background: var(--bg-secondary);
    position: relative;
    border-radius: 0;
    overflow: hidden;
}
.offer-hero-inner {
    width: 100%;
    margin: 0 auto;
    position: relative;
    border-radius: 0;
    overflow: hidden;
}
.offer-hero-single,
.offer-hero-slideshow {
    width: 100%;
    aspect-ratio: 16/9;
    max-height: 320px;
    overflow: hidden;
    position: relative;
    border-radius: 0;
}
.offer-hero-single img,
.offer-hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.offer-hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}
.offer-hero-slide.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 1;
}
.offer-hero-prev,
.offer-hero-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border: none;
    background: rgba(0,0,0,0.4);
    color: #fff;
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}
.offer-hero-prev:hover,
.offer-hero-next:hover {
    background: rgba(0,0,0,0.6);
}
.offer-hero-prev { left: 12px; }
.offer-hero-next { right: 12px; }
.offer-hero-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
}
.offer-hero-dot {
    width: 10px;
    height: 10px;
    border: none;
    border-radius: 0;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    padding: 0;
    transition: background 0.2s ease;
}
.offer-hero-dot:hover,
.offer-hero-dot.active {
    background: #fff;
}
.offer-hero-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    max-height: 280px;
    background: var(--gradient-hero);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--primary-color);
}

.offer-detail-section {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 50%, var(--bg-secondary) 100%);
    padding: 2.5rem 0;
    min-height: 50vh;
}
.offer-detail-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 2.5rem;
    padding: 0 20px;
    align-items: start;
}
.offer-detail-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.offer-detail-left .offer-detail-title {
    margin-bottom: 0;
}

.offer-detail-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    height: 100%;
}

.offer-detail-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--text-primary);
    margin: 0 0 1rem 0;
    line-height: 1.3;
    position: relative;
    padding-bottom: 0.75rem;
}

.offer-detail-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    border-radius: 0;
}

.offer-detail-description {
    font-size: clamp(0.95rem, 1.1vw, 1.05rem);
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    white-space: normal;
}

.offer-detail-description p {
    margin-bottom: 1rem;
}

.offer-detail-description p:last-child {
    margin-bottom: 0;
}

.offer-desc-line {
    margin-bottom: 0.85rem;
    line-height: 1.75;
}

.offer-desc-line:last-child {
    margin-bottom: 0;
}

.offer-desc-line i.fas,
.offer-desc-line i.far,
.offer-desc-line i.fab {
    color: var(--primary-color);
    font-size: 1rem;
    margin-right: 0.35rem;
    vertical-align: middle;
}

.offer-desc-line.offer-desc-line-empty {
    margin-bottom: 0.5rem;
}

.offer-desc-line.offer-desc-line-empty i {
    display: none;
}

.offer-detail-info {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
    background: var(--glass-bg-strong);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 0;
    border: 1px solid var(--glass-border-soft);
    box-shadow: var(--glass-shadow);
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-primary);
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--glass-border-soft);
    transition: background 0.2s ease;
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-item:hover {
    background: rgba(230, 57, 70, 0.06);
}

.detail-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
    width: 24px;
    flex-shrink: 0;
}

.detail-item span {
    font-size: 0.95rem;
    line-height: 1.5;
}

.detail-item strong {
    color: var(--text-primary);
    font-weight: 600;
    margin-right: 0.5rem;
}

.offer-detail-price {
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--glass-shadow);
}

.price-label {
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0.95;
}

.price-value {
    font-size: clamp(1.25rem, 1.8vw, 1.5rem);
    font-weight: 800;
}

.offer-booking-form {
    padding: 2rem;
    background: var(--glass-bg-strong);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border-radius: 0;
    border: 1px solid var(--glass-border-soft);
    box-shadow: var(--glass-shadow);
}

.offer-booking-form h3 {
    font-size: clamp(1.3rem, 1.8vw, 1.6rem);
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    font-weight: 800;
    position: relative;
    padding-bottom: 0.75rem;
}

.offer-booking-form h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    border-radius: 0;
}

.offer-booking-form .form-group {
    margin-bottom: 1.25rem;
}

.offer-booking-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.offer-booking-form input,
.offer-booking-form textarea,
.offer-booking-form select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--glass-border-soft);
    border-radius: 0;
    font-family: inherit;
    font-size: 0.95rem;
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: all var(--transition-smooth);
}

.offer-booking-form input:focus,
.offer-booking-form textarea:focus,
.offer-booking-form select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.12);
}

.offer-booking-form input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-right: 0.5rem;
    cursor: pointer;
    accent-color: var(--primary-color);
    flex-shrink: 0;
}

.offer-booking-form label:has(input[type="checkbox"]) {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
}

.offer-booking-form textarea {
    resize: vertical;
    min-height: 100px;
}

.offer-booking-form .btn-primary {
    background: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
    padding: 0.75rem 1.5rem;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all var(--transition-smooth);
    width: 100%;
    margin-top: 0.25rem;
    border-radius: 0;
}

.offer-booking-form .btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    box-shadow: 0 4px 12px rgba(230, 57, 70, 0.35);
}

#bookingMessage {
    padding: 0.75rem 1rem;
    border-radius: 0;
    font-size: 0.85rem;
    line-height: 1.4;
    margin-top: 0.75rem;
    border: 1px solid transparent;
}

@media (max-width: 968px) {
    .offer-detail-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .offer-detail-left {
        gap: 1.5rem;
    }
    
    .offer-hero-single,
    .offer-hero-slideshow {
        max-height: 280px;
    }
    
    .offer-detail-content {
        gap: 1.5rem;
    }
    
    .offer-booking-form {
        padding: 1.25rem;
    }
    
    .offer-booking-form .form-group {
        margin-bottom: 0.75rem;
    }
}

@media (max-width: 768px) {
    .offer-detail-section {
        padding: 2rem 0;
    }
    
    .offer-detail-wrapper {
        padding: 0 15px;
        gap: 1.5rem;
    }
    
    .offer-hero-single,
    .offer-hero-slideshow {
        max-height: 240px;
    }
    .offer-hero {
        padding: 0 15px;
    }
    
    .offer-detail-left {
        gap: 1.25rem;
    }
    
    .offer-detail-title {
        font-size: clamp(1.5rem, 2.5vw, 2rem);
    }
    
    .offer-detail-info {
        padding: 0;
    }
    
    .detail-item {
        padding: 0.875rem 1rem;
    }
    
    .offer-detail-price {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        padding: 1.25rem;
    }
    
    .price-value {
        font-size: 1.75rem;
    }
    
    .offer-booking-form {
        padding: 1rem;
    }
    
    .offer-booking-form h3 {
        font-size: clamp(1.1rem, 1.4vw, 1.3rem);
        margin-bottom: 0.875rem;
    }
    
    .offer-booking-form .form-group {
        margin-bottom: 0.65rem;
    }
    
    .offer-booking-form label {
        font-size: 0.8rem;
        margin-bottom: 0.3rem;
    }
    
    .offer-booking-form input,
    .offer-booking-form textarea,
    .offer-booking-form select {
        padding: 0.5rem 0.65rem;
        font-size: 0.85rem;
    }
    
    .offer-booking-form textarea {
        min-height: 60px;
    }
    
    .offer-booking-form .btn-primary {
        padding: 0.65rem 1.25rem;
        font-size: 0.8rem;
    }
}

.about-hero-image {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
    margin-bottom: 2.5rem;
    border-radius: 0;
    border: 1px solid var(--glass-border-soft);
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: var(--glass-shadow);
}

.about-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(139, 46, 39, 0.85) 100%);
    padding: 2rem;
    color: white;
    text-align: center;
}

.about-hero-overlay h2 {
    font-size: clamp(1.5rem, 2.5vw, 2.25rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.about-hero-overlay p {
    font-size: clamp(0.95rem, 1.1vw, 1.1rem);
    opacity: 0.95;
    color: #ffffff;
}

.about-mission-vision-block {
    margin-bottom: 2.5rem;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.about-mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.about-mission-vision-card {
    background: var(--glass-bg-strong);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border-soft);
    border-radius: 0;
    padding: 1.75rem 1.5rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(29, 53, 87, 0.08);
    transition: all var(--transition-smooth);
}
.about-mission-vision-card:hover {
    box-shadow: var(--glass-shadow);
    border-color: rgba(230, 57, 70, 0.12);
}

.about-mission-vision-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: #fff;
    font-size: 1.25rem;
    border-radius: 0;
    box-shadow: 0 4px 16px rgba(230, 57, 70, 0.25);
    transition: all var(--transition-smooth);
}
.about-mission-vision-card:hover .about-mission-vision-icon {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.35);
}

.about-mission-vision-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.about-mission-vision-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

@media (max-width: 768px) {
    .about-mission-vision-grid {
        grid-template-columns: 1fr;
    }
}

.about-history {
    background: var(--glass-bg-strong);
    padding: 0;
    border-radius: 0;
    border: 1px solid var(--glass-border-soft);
    margin-bottom: 2.5rem;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 4px 20px rgba(29, 53, 87, 0.08);
    overflow: hidden;
}

.about-history-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2.5rem;
    margin-bottom: 1.75rem;
    align-items: start;
}

.about-history-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 0;
    border: 1px solid var(--glass-border-soft);
    background: var(--gradient-hero);
    box-shadow: 0 4px 20px rgba(29, 53, 87, 0.08);
}

.about-history-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about-history-image:hover img {
    transform: scale(1.05);
}

.about-gallery-section {
    margin: 2.5rem 0;
    padding: 1.5rem 0;
}

.about-gallery-title {
    font-size: clamp(1.4rem, 1.8vw, 1.8rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-primary);
    position: relative;
    padding-bottom: 0.75rem;
}

.about-gallery-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
}

.about-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.about-gallery-item {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 0;
    border: 1px solid var(--glass-border-soft);
    cursor: pointer;
    transition: all var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(29, 53, 87, 0.08);
}

.about-gallery-item:hover {
    border-color: rgba(230, 57, 70, 0.25);
    box-shadow: var(--glass-shadow);
}

.about-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.about-gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    padding: 1.5rem;
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.about-gallery-overlay p {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.about-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.about-feature-card {
    background: var(--glass-bg-strong);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border-radius: 0;
    overflow: hidden;
    transition: all var(--transition-smooth);
    border: 1px solid var(--glass-border-soft);
    box-shadow: 0 4px 20px rgba(29, 53, 87, 0.08);
}

.about-feature-card:hover {
    border-color: rgba(230, 57, 70, 0.2);
    box-shadow: var(--glass-shadow);
}

.about-feature-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.about-feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about-feature-card:hover .about-feature-image img {
    transform: scale(1.1);
}

.about-feature-card .about-feature-content {
    padding: 1.5rem;
    text-align: center;
}

.about-feature-card .about-feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
}

.about-feature-card .about-feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.about-feature-card h3 {
    font-size: clamp(1rem, 1.1vw, 1.15rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.about-feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.9rem;
}

@media (max-width: 1024px) {
    .about-history-layout {
        grid-template-columns: 1fr;
    }
    
    .about-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-hero-image {
        height: 280px;
    }
    
    .about-hero-overlay {
        padding: 1.5rem;
    }
    
    .about-hero-overlay h2 {
        font-size: clamp(1.3rem, 2vw, 1.6rem);
    }
    
    .about-hero-overlay p {
        font-size: clamp(0.85rem, 1vw, 0.95rem);
    }
    
    .about-history-content {
        padding: 1.75rem 1.5rem;
    }
    
    .about-history-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-history-image {
        height: 280px;
    }
    
    .about-gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .about-features-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .about-wrapper {
        padding: 1.75rem 1.5rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.5rem;
    }
}

.reservations-page,
.aktuale-page {
    min-height: 100vh;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
    padding-top: 100px;
}

.reservations-hero {
    position: relative;
    overflow: hidden;
    padding: 6.5rem 0 4rem;
    color: white;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.92) 0%, rgba(214, 40, 57, 0.9) 100%);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: var(--glass-shadow);
}

.reservations-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?w=1920&h=600&fit=crop') center/cover;
    opacity: 0.15;
    z-index: 0;
}

.reservations-hero > .container {
    position: relative;
    z-index: 1;
}

.reservations-hero h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
}

.reservations-hero p {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    opacity: 0.95;
}

.reservations-search-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.reservations-search-box {
    background: var(--glass-bg-strong);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border-radius: 0;
    box-shadow: var(--glass-shadow);
    border: 1px solid var(--glass-border-soft);
    padding: 2rem;
    margin-bottom: 3rem;
    margin-top: -80px;
    position: relative;
    z-index: 10;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    transition: border-color var(--transition-smooth), box-shadow var(--transition-smooth);
}

.reservations-search-box:hover {
    border-color: rgba(230, 57, 70, 0.2);
    box-shadow: 0 12px 40px rgba(29, 53, 87, 0.12);
}

.reservations-search-form {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.reservations-search-form.reservations-search-single {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 1rem;
    margin-bottom: 0;
}
.reservations-search-form.reservations-search-single .reservations-search-field-full {
    flex: 1;
    min-width: 220px;
}
.reservations-search-form.reservations-search-single .reservations-search-actions {
    grid-column: unset;
    margin-top: 0;
    display: flex;
    gap: 0.75rem;
    justify-content: flex-end;
    flex-shrink: 0;
}

.reservations-search-field {
    display: flex;
    flex-direction: column;
}

.reservations-search-field label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.reservations-search-field input,
.reservations-search-field select {
    padding: 0.75rem 1rem;
    border: 1px solid var(--glass-border-soft);
    border-radius: 0;
    font-size: 0.9rem;
    font-family: inherit;
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: all var(--transition-smooth);
    width: 100%;
    box-shadow: 0 2px 8px rgba(29, 53, 87, 0.04);
}

.reservations-search-field input:focus,
.reservations-search-field select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.12);
}

.reservations-search-actions {
    grid-column: 1 / -1;
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 0.5rem;
}

.reservations-search-actions .btn {
    padding: 0.75rem 2rem;
    font-size: 0.9rem;
    min-width: 140px;
    border-radius: 0;
}

.reservations-results {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.reservations-offers-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    margin-bottom: 3rem;
}

.reservation-offer-card {
    transition: border-color var(--transition-smooth), box-shadow var(--transition-smooth);
    border: 1px solid var(--glass-border-soft);
    border-radius: 0;
    overflow: hidden;
    box-shadow: var(--glass-shadow);
    background: var(--gradient-hero);
    display: flex;
    flex-direction: column;
    position: relative;
    min-height: 280px;
}

.reservation-offer-card:hover {
    border-color: rgba(230, 57, 70, 0.35);
    box-shadow: var(--glass-shadow);
}

.reservation-offer-image {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background: var(--gradient-hero);
}

.reservation-offer-image::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(29, 53, 87, 0.5), transparent);
    pointer-events: none;
}

.reservation-offer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.reservation-offer-image > div {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reservation-offer-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-top: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 -4px 20px rgba(29, 53, 87, 0.06);
}

.reservation-offer-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
    line-height: 1.25;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.reservation-offer-description {
    color: var(--text-secondary);
    font-size: 0.8rem;
    line-height: 1.4;
    margin-bottom: 0.25rem;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
}

.reservation-offer-footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.25rem;
}

.reservation-offer-price-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex: 1;
    min-width: 0;
}

.reservation-offer-price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: left;
}

.reservation-offer-price small {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-secondary);
}

.reservation-book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: 2.25rem;
    flex-shrink: 0;
    padding: 0.5rem 0.65rem;
    font-size: 0.9rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: border-color var(--transition-smooth), box-shadow var(--transition-smooth), background var(--transition-smooth);
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
    white-space: nowrap;
}

.reservation-book-btn:hover {
    box-shadow: 0 4px 16px rgba(230, 57, 70, 0.35);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
}

.reservations-loading {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-secondary);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.reservations-loading i {
    font-size: 2.5rem;
    color: var(--primary-color);
    animation: spin 1s linear infinite;
}

.reservations-loading p { font-size: 1.1rem; margin: 0; }

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.reservations-empty {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-secondary);
}

.reservations-empty i {
    font-size: 4rem;
    color: var(--text-tertiary);
    margin-bottom: 1rem;
}

@media (max-width: 1024px) {
    .reservations-search-form {
        grid-template-columns: repeat(2, 1fr);
    }
    .reservations-offers-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .reservations-search-box {
        margin-top: -40px;
        padding: 1.5rem;
    }
    .reservations-search-form {
        grid-template-columns: 1fr;
        gap: 0.875rem;
    }
    .reservations-search-form.reservations-search-single {
        flex-direction: column;
        align-items: stretch;
    }
    .reservations-search-form.reservations-search-single .reservations-search-actions {
        justify-content: center;
    }
    .reservations-search-field label { font-size: 0.7rem; margin-bottom: 0.35rem; }
    .reservations-search-field input,
    .reservations-search-field select {
        padding: 0.65rem 0.75rem;
        font-size: 0.85rem;
    }
    .reservations-search-actions { flex-direction: column; }
    .reservations-search-actions .btn { width: 100%; }
    .reservations-offers-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
    .reservation-offer-card { min-height: 260px; }
}

.sig-page {
    padding-top: 100px;
    padding-bottom: 4rem;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 50%, var(--bg-secondary) 100%);
}
.sig-intro {
    max-width: 800px;
    margin: 0 auto 2.5rem;
    padding: 0 20px;
    text-align: center;
}
.sig-intro h1 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--text-primary);
    margin-bottom: 1rem;
}
.sig-intro p {
    color: var(--text-secondary);
    line-height: 1.8;
}
.sig-cards {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    gap: 1.5rem;
}
.sig-card {
    background: var(--glass-bg-strong);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border-soft);
    border-radius: 0;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(29, 53, 87, 0.08);
    transition: all var(--transition-smooth);
}
.sig-card:hover {
    border-color: rgba(230, 57, 70, 0.2);
    box-shadow: var(--glass-shadow);
}
.sig-card h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.sig-card h3 i {
    font-size: 1.1rem;
}
.sig-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

.tb-page,
.re-page {
    padding-top: 100px;
    padding-bottom: 4rem;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 40%, var(--bg-primary) 100%);
    min-height: 60vh;
}

.service-page-hero {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto 2.5rem;
    height: 320px;
    overflow: hidden;
    border: 1px solid var(--glass-border-soft);
    background: var(--gradient-hero);
    box-shadow: var(--glass-shadow);
}

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

.service-content {
    max-width: 900px;
    margin: 0 auto 3rem;
    padding: 0 20px;
}

.service-content h2 {
    font-size: clamp(1.6rem, 2.5vw, 2rem);
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    font-weight: 800;
}

.service-content h3 {
    font-size: clamp(1.2rem, 1.5vw, 1.35rem);
    color: var(--text-primary);
    margin: 2rem 0 0.75rem;
    font-weight: 700;
}

.service-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.service-content ul {
    margin: 1rem 0 1.5rem;
    padding-left: 1.5rem;
    color: var(--text-secondary);
    line-height: 1.9;
}

.service-content ul li {
    margin-bottom: 0.5rem;
}

.service-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 2fr));
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.service-feature-card {
    background: var(--glass-bg-strong);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border-soft);
    padding: 1.5rem 1.25rem;
    box-shadow: 0 4px 20px rgba(29, 53, 87, 0.08);
    transition: border-color var(--transition-smooth), box-shadow var(--transition-smooth);
}

.service-feature-card:hover {
    border-color: rgba(230, 57, 70, 0.2);
    box-shadow: var(--glass-shadow);
}

.service-feature-card i {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    display: block;
}

.service-feature-card h4 {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.service-feature-card p {
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

.service-cta {
    text-align: center;
    margin: 2.5rem 0;
}

.service-cta .btn {
    margin: 0 0.5rem 0.5rem;
}

.service-contact-box {
    max-width: 640px;
    margin: 3rem auto 0;
    padding: 2rem;
    background: var(--glass-bg-strong);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border-soft);
    box-shadow: var(--glass-shadow);
}

.service-contact-box h3 {
    font-size: 1.35rem;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    margin-top: 0;
}

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

.service-contact-box label {
    display: block;
    margin-bottom: 0.35rem;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.service-contact-box input,
.service-contact-box textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--glass-border-soft);
    font-size: 0.95rem;
    font-family: inherit;
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: border-color var(--transition-smooth);
}

.service-contact-box input:focus,
.service-contact-box textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(230, 57, 70, 0.1);
}

.service-contact-box textarea {
    min-height: 120px;
    resize: vertical;
}

@media (max-width: 768px) {
    .service-page-hero {
        height: 260px;
        margin-bottom: 2rem;
    }
    .service-features-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin: 2rem 0;
    }
    .service-contact-box {
        padding: 1.5rem;
        margin-top: 2rem;
    }
}

@media (max-width: 480px) {
    .service-page-hero {
        height: 220px;
    }
    .service-content h2 {
        font-size: 1.5rem;
    }
    .service-content h3 {
        font-size: 1.2rem;
        margin-top: 1.5rem;
    }
}

.sig-cta {
    text-align: center;
    margin-top: 3rem;
}

@media (max-width: 480px) {
    .faq-answer {
        padding: 0 1.125rem 0.875rem 1.125rem;
        font-size: clamp(0.8rem, 0.85vw, 0.85rem);
    }
    
    .gallery-item {
        height: 280px;
    }
    
    .footer-content,
    footer .footer-content,
    .footer .footer-content {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 2rem;
    }
    
    .footer-logo-img {
        height: 60px;
    }
    
    .footer-social-links {
        gap: 0.85rem;
    }
    
    .footer-social-link {
        width: 36px;
        height: 36px;
    }
    
    .footer-social-link i {
        font-size: 1rem;
    }
    
    .footer-contact-link {
        font-size: clamp(0.85rem, 0.9vw, 0.9rem);
        gap: 0.6rem;
    }
    
    .footer-contact-link i {
        font-size: 0.9rem;
        width: 18px;
    }
    
    section {
        padding: 4rem 0;
    }
}

.gallery-section {
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.gallery-slideshow-empty {
    text-align: center;
    padding: 3rem;
    color: var(--text-secondary);
}

.gallery-slideshow-wrap {
    margin-top: 2.5rem;
    overflow: hidden;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-slideshow-track {
    display: flex;
    gap: 1.25rem;
    width: max-content;
    will-change: transform;
    transition: transform 0.6s ease-in-out;
}

.gallery-slide-item {
    flex: 0 0 auto;
    width: min(360px, calc((100vw - 2rem - 2.5rem) / 3));
    min-width: 260px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--glass-border-soft);
    background: var(--glass-bg-strong);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 0;
    cursor: default;
    height: 280px;
    box-shadow: 0 4px 20px rgba(29, 53, 87, 0.08);
}

.gallery-slide-item .gallery-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.gallery-slide-item .gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-slide-item:hover .gallery-image img {
    transform: scale(1.1);
}

.gallery-slide-item:hover {
    border-color: rgba(230, 57, 70, 0.25);
    box-shadow: var(--glass-shadow);
}

.gallery-slide-item .gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    color: white;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.gallery-slide-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-slide-item .gallery-overlay h3 {
    font-size: 1.25rem;
    margin: 0 0 0.35rem 0;
    font-weight: 700;
    color: white;
}

.gallery-page-hero {
    padding: 2.5rem 0 1.25rem 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.gallery-filter-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1rem;
    border: 1px solid var(--glass-border-soft);
    background: var(--glass-bg-strong);
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    border-radius: 0;
    transition: all 0.2s ease;
}

.gallery-filter-pill:hover {
    border-color: rgba(230, 57, 70, 0.35);
    transform: translateY(-1px);
}

.gallery-filter-pill.active {
    background: rgba(230, 57, 70, 0.12);
    border-color: rgba(230, 57, 70, 0.35);
    color: var(--text-primary);
}

.gallery-page-content {
    padding: 1.5rem 0 4rem 0;
    background: var(--bg-secondary);
}

.gallery-page-empty {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--text-secondary);
}

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

.gallery-card {
    border: 1px solid var(--glass-border-soft);
    background: var(--glass-bg-strong);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(29, 53, 87, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.gallery-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--glass-shadow);
    border-color: rgba(230, 57, 70, 0.25);
}

.gallery-card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #0b1220;
}

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

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

.gallery-card-body {
    padding: 1.1rem 1.1rem 1.25rem 1.1rem;
}

.gallery-card-title {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.25;
}

.gallery-card-desc {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.55;
    font-size: 0.95rem;
}

.gallery-card-meta {
    margin-top: 0.9rem;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.gallery-card-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.3rem 0.6rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: rgba(230, 57, 70, 0.95);
    background: rgba(230, 57, 70, 0.12);
    border: 1px solid rgba(230, 57, 70, 0.25);
    border-radius: 0;
}

@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .gallery-card-image {
        height: 210px;
    }
}

.gallery-slide-item .gallery-overlay p {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.9;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .gallery-slideshow-track {
        gap: 1rem;
    }
    .gallery-slide-item {
        width: min(200px, calc((100vw - 2rem - 1rem) / 2));
        min-width: 140px;
        height: 220px;
    }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--glass-border-soft);
    background: var(--glass-bg-strong);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 0;
    cursor: default;
    transition: all var(--transition-smooth);
    opacity: 0;
    transform: translateY(10px);
    height: 280px;
    box-shadow: 0 4px 20px rgba(29, 53, 87, 0.08);
}

.gallery-item.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.gallery-item:hover {
    border-color: rgba(230, 57, 70, 0.25);
    box-shadow: var(--glass-shadow);
}

.gallery-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

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

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    color: white;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: white;
}

.gallery-overlay p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    opacity: 0.9;
    line-height: 1.6;
}
