:root {
    --color-primary: #0056b3;
    --color-primary-dark: #004494;
    --color-primary-light: #4a90d9;
    --color-secondary: #1e293b;
    --color-accent: #f59e0b;
    --color-accent-dark: #d97706;
    --color-bg: #ffffff;
    --color-bg-alt: #f1f5f9;
    --color-bg-dark: #0f172a;
    --color-text: #334155;
    --color-text-light: #64748b;
    --color-white: #ffffff;
    --color-border: #e2e8f0;
    --font-family: 'Inter', system-ui, -apple-system, sans-serif;
    --radius: 12px;
    --shadow: 0 4px 20px rgba(0,0,0,0.06);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

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

img, svg, video, picture {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    font-size: 15px;
}

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

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

.btn-secondary {
    background: var(--color-secondary);
    color: var(--color-white);
    border-color: var(--color-secondary);
}

.btn-secondary:hover {
    background: #334155;
}

.btn-accent {
    background: var(--color-accent);
    color: var(--color-white);
    border-color: var(--color-accent);
}

.btn-accent:hover {
    background: var(--color-accent-dark);
    border-color: var(--color-accent-dark);
}

.btn-outline {
    background: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

.btn-outline:hover {
    background: var(--color-white);
    color: var(--color-secondary);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--color-white);
    border-color: #25D366;
}

.btn-whatsapp:hover {
    background: #128C7E;
    border-color: #128C7E;
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

/* Top Bar */
.top-bar {
    background: #0f172a;
    color: rgba(255,255,255,0.8);
    padding: 10px 0;
    font-size: 13px;
}

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

.top-bar-left {
    display: flex;
    gap: 24px;
}

.top-bar-left span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-bar-right {
    display: flex;
    gap: 16px;
    align-items: center;
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    gap: 4px;
    background: rgba(255,255,255,0.15);
    padding: 3px;
    border-radius: 6px;
}

.lang-btn {
    background: none;
    border: none;
    color: rgba(255,255,255,0.7);
    font-size: 11px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

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

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

/* Translated content visibility */
.lang-de .lang-de,
.lang-en .lang-en,
.lang-tr .lang-tr {
    display: inline !important;
}

.lang-de .lang-en,
.lang-de .lang-tr,
.lang-en .lang-de,
.lang-en .lang-tr,
.lang-tr .lang-de,
.lang-tr .lang-en {
    display: none !important;
}

/* For block-level elements */
h1 .lang-de, h1 .lang-en, h1 .lang-tr,
h2 .lang-de, h2 .lang-en, h2 .lang-tr,
h3 .lang-de, h3 .lang-en, h3 .lang-tr,
p .lang-de, p .lang-en, p .lang-tr,
div .lang-de, div .lang-en, div .lang-tr,
li .lang-de, li .lang-en, li .lang-tr,
a .lang-de, a .lang-en, a .lang-tr,
span.section-tag .lang-de, span.section-tag .lang-en, span.section-tag .lang-tr,
button .lang-de, button .lang-en, button .lang-tr,
strong .lang-de, strong .lang-en, strong .lang-tr {
    display: inline;
}

/* Default: hide all lang spans until body class is set */
body:not(.lang-de):not(.lang-en):not(.lang-tr) .lang-en,
body:not(.lang-de):not(.lang-en):not(.lang-tr) .lang-tr {
    display: none !important;
}

.top-bar-right a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.top-bar-right a:hover {
    color: var(--color-white);
}

/* Header */
.header {
    position: sticky;
    top: 0;
    background: var(--color-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    z-index: 1000;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--color-text);
}

.logo-icon {
    font-size: 28px;
    color: var(--color-primary);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-text strong {
    font-size: 16px;
    color: var(--color-primary);
}

.logo-text small {
    font-size: 12px;
    color: var(--color-text-light);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 4px;
}

.nav-list a {
    text-decoration: none;
    color: var(--color-text);
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition);
    padding: 8px 14px;
    border-radius: 8px;
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--color-primary);
    background: rgba(198,40,40,0.06);
}

.has-dropdown {
    position: relative;
}

.has-dropdown > a {
    display: flex;
    align-items: center;
    gap: 4px;
}

.has-dropdown > a i {
    font-size: 10px;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--color-white);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius);
    padding: 8px;
    min-width: 220px;
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
    transition: var(--transition);
    list-style: none;
    z-index: 100;
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.dropdown a {
    display: block;
    padding: 10px 14px;
    border-radius: 6px;
    font-size: 14px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-toggle,
.nav-close {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--color-text);
}

/* Hero */
.hero {
    position: relative;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #2563eb 100%);
    color: var(--color-white);
    padding: 80px 0 60px;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    position: relative;
    z-index: 3;
}

.hero-image {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
    animation: float 6s ease-in-out infinite;
}

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

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(37,99,235,0.3) 0%, transparent 50%);
    z-index: 1;
}

#hero-canvas {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

#hero-canvas canvas {
    width: 100% !important;
    height: 100% !important;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero-badge i {
    color: #ffc107;
}

.hero h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-accent {
    color: var(--color-accent);
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 36px;
    max-width: 560px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.hero-features {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 14px;
}

.hero-feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--color-accent);
    flex-shrink: 0;
}

.hero-feature strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
}

.hero-feature span {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
}

/* Section */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--color-secondary);
}

.section-header p {
    color: var(--color-text-light);
    font-size: 17px;
}

/* Services */
.section-services {
    background: var(--color-bg-alt);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--color-white);
    padding: 36px 28px;
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--color-text);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--color-border);
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary-light);
}

.service-image {
    width: calc(100% + 56px);
    margin: -36px -28px 20px -28px;
    height: 180px;
    overflow: hidden;
    border-radius: var(--radius) var(--radius) 0 0;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.service-icon {
    font-size: 40px;
    margin-bottom: 16px;
    color: var(--color-primary);
    width: 64px;
    height: 64px;
    background: rgba(198,40,40,0.08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--color-secondary);
}

.service-card p {
    color: var(--color-text-light);
    font-size: 15px;
    margin-bottom: 16px;
}

.service-link {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Why Us */
.section-why {
    background: var(--color-white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.why-card {
    background: var(--color-bg-alt);
    padding: 36px 28px;
    border-radius: var(--radius);
    border: 1px solid var(--color-border);
    transition: var(--transition);
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.why-icon {
    font-size: 28px;
    color: var(--color-primary);
    width: 56px;
    height: 56px;
    background: rgba(198,40,40,0.08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.why-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--color-secondary);
}

.why-card p {
    color: var(--color-text-light);
    font-size: 14px;
    line-height: 1.7;
}

/* Gastro Section */
.section-gastro {
    background: var(--color-bg-alt);
}

.gastro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.gastro-content .section-tag {
    margin-bottom: 16px;
}

.gastro-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--color-secondary);
}

.gastro-content p {
    color: var(--color-text-light);
    font-size: 16px;
    margin-bottom: 24px;
    line-height: 1.7;
}

.gastro-list {
    list-style: none;
    margin-bottom: 28px;
}

.gastro-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--color-text);
    font-size: 15px;
}

.gastro-list li i {
    color: var(--color-primary);
    font-size: 14px;
}

.gastro-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.gastro-image img {
    width: 100%;
    max-width: 450px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
}

/* Process */
.section-process {
    background: var(--color-white);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 64px;
    height: 64px;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: 0 4px 20px rgba(198,40,40,0.25);
}

.process-step h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--color-secondary);
}

.process-step p {
    color: var(--color-text-light);
    font-size: 14px;
}

/* Brands */
.section-brands {
    background: var(--color-bg-alt);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.brand-item {
    background: var(--color-white);
    padding: 20px;
    border-radius: var(--radius);
    text-align: center;
    font-weight: 600;
    color: var(--color-text-light);
    border: 1px solid var(--color-border);
    transition: var(--transition);
}

.brand-item:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    transform: translateY(-2px);
}

/* About Section */
.section-about {
    background: var(--color-bg-alt);
}

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

.about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
}

.about-image-main {
    grid-column: 1 / -1;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image-main img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.about-image-cert {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--color-border);
}

.about-image-cert img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.about-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.about-content p {
    color: var(--color-text-light);
    margin-bottom: 16px;
    line-height: 1.7;
}

.about-list {
    list-style: none;
    margin-top: 24px;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--color-text);
    font-weight: 500;
}

.about-list li i {
    color: var(--color-primary);
    font-size: 18px;
}

/* CTA Banner */
.section-cta-banner {
    padding: 60px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #2563eb 100%);
    position: relative;
}

.section-cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.cta-text {
    color: var(--color-white);
    flex: 1;
}

.cta-text h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.cta-text p {
    color: rgba(255,255,255,0.8);
    font-size: 16px;
}

.cta-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Price Examples Section */
.section-prices {
    background: var(--color-white);
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.price-card {
    background: var(--color-bg-alt);
    border-radius: var(--radius);
    padding: 28px;
    border: 1px solid var(--color-border);
}

.price-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--color-border);
}

.price-header h3 {
    font-size: 20px;
    color: var(--color-text);
}

.price-tag {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
}

.price-list {
    list-style: none;
}

.price-list li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-text-light);
    font-size: 15px;
    border-bottom: 1px dashed var(--color-border);
}

.price-list li:last-child {
    border-bottom: none;
}

.price-list li i {
    color: var(--color-success);
    font-size: 14px;
}

.price-desc {
    color: var(--color-text-light);
    font-size: 14px;
    line-height: 1.6;
    margin-top: 8px;
}

.price-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--color-bg-alt);
    padding: 20px;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid var(--color-border);
}

.price-note i {
    color: var(--color-primary);
    font-size: 20px;
}

.price-note p {
    color: var(--color-text-light);
    font-size: 15px;
}

/* Districts Section */
.section-districts {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
    color: var(--color-white);
    position: relative;
}

.section-districts::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.section-districts .section-header h2,
.section-districts .section-header .section-tag {
    color: var(--color-white);
}

.districts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 32px;
    position: relative;
}

.district-item {
    background: rgba(255,255,255,0.1);
    padding: 14px 16px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.1);
    flex-wrap: wrap;
}

.district-item small,
.brand-card small {
    display: block;
    width: 100%;
    color: rgba(255,255,255,0.6);
    font-size: 12px;
    font-weight: 400;
    margin-top: 2px;
}

.brand-card small {
    color: var(--color-text-light);
    margin-top: 4px;
}

.district-item:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

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

.districts-cta {
    text-align: center;
    position: relative;
}

/* Brands Grid Large */
.brands-grid-large {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    margin-bottom: 32px;
}

.brand-card {
    background: var(--color-white);
    padding: 16px;
    border-radius: var(--radius);
    text-align: center;
    font-weight: 600;
    color: var(--color-text);
    border: 1px solid var(--color-border);
    transition: var(--transition);
    font-size: 14px;
}

.brand-card:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

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

/* Advantages Section */
.section-advantages {
    background: var(--color-bg-alt);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.advantage-card {
    background: var(--color-white);
    padding: 32px;
    border-radius: var(--radius);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.advantage-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.advantage-number {
    width: 40px;
    height: 40px;
    background: var(--gradient);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 16px;
}

.advantage-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--color-text);
}

.advantage-card p {
    color: var(--color-text-light);
    font-size: 15px;
    line-height: 1.6;
}

/* Blog Tips Section */
.section-blog-tips {
    background: var(--color-white);
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.tip-card {
    background: var(--color-bg-alt);
    padding: 24px;
    border-radius: var(--radius);
    border: 1px solid var(--color-border);
    transition: var(--transition);
}

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

.tip-number {
    width: 36px;
    height: 36px;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 12px;
}

.tip-card h3 {
    font-size: 17px;
    margin-bottom: 10px;
    color: var(--color-text);
}

.tip-card p {
    color: var(--color-text-light);
    font-size: 14px;
    line-height: 1.6;
}

.tips-footer {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: var(--color-white);
    padding: 24px 32px;
    border-radius: var(--radius);
    text-align: center;
}

.tips-footer i {
    margin-right: 8px;
}

.tips-footer p {
    font-size: 16px;
    font-weight: 500;
}

/* FAQ Section */
.section-faq {
    background: var(--color-bg-alt);
}

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

.faq-item {
    background: var(--color-white);
    border-radius: var(--radius);
    margin-bottom: 12px;
    border: 1px solid var(--color-border);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text);
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--color-bg-alt);
}

.faq-question i {
    color: var(--color-primary);
    transition: transform 0.3s;
}

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

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

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

.faq-answer p {
    padding: 0 24px 20px;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* Final CTA Section */
.section-final-cta {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #2563eb 100%);
    position: relative;
    padding: 80px 0;
}

.section-final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.final-cta-box {
    text-align: center;
    color: var(--color-white);
    position: relative;
}

.final-cta-box h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.final-cta-phone {
    font-size: 32px;
    margin-bottom: 8px;
}

.final-cta-phone a {
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 700;
}

.final-cta-sub {
    color: rgba(255,255,255,0.8);
    font-size: 16px;
    margin-bottom: 32px;
}

.final-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-telegram {
    background: #0088cc;
    color: var(--color-white);
    border-color: #0088cc;
}

.btn-telegram:hover {
    background: #0077b3;
    border-color: #0077b3;
}

/* Testimonials */
.section-testimonials {
    background: var(--color-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Swipe styles for mobile */
.testimonials-grid,
.services-grid,
.price-grid {
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.testimonials-grid::-webkit-scrollbar,
.services-grid::-webkit-scrollbar,
.price-grid::-webkit-scrollbar {
    display: none;
}

.testimonials-grid.active {
    cursor: grabbing;
    cursor: -webkit-grabbing;
}

.testimonial {
    background: var(--color-bg-alt);
    padding: 32px;
    border-radius: var(--radius);
    border: 1px solid var(--color-border);
    user-select: none;
    -webkit-user-select: none;
}

.testimonial-stars {
    color: #ffc107;
    font-size: 14px;
    margin-bottom: 16px;
    display: flex;
    gap: 4px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--color-text);
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial-author strong {
    display: block;
    color: var(--color-secondary);
}

.testimonial-author span {
    font-size: 14px;
    color: var(--color-text-light);
}

/* Footer */
.footer {
    background: #0f172a;
    color: rgba(255,255,255,0.7);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.3fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand .logo-text strong {
    color: var(--color-primary-light);
}

.footer-brand .logo-text small {
    color: rgba(255,255,255,0.5);
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-links h4,
.footer-contact h4 {
    color: var(--color-white);
    font-size: 16px;
    margin-bottom: 20px;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a,
.footer-contact a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--color-white);
}

.footer-contact ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.footer-contact ul li i {
    color: var(--color-primary-light);
    font-size: 14px;
    width: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--color-white);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    z-index: 998;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 100px;
    right: 24px;
    z-index: 999;
    font-family: var(--font-family);
}

.chat-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: var(--color-white);
    border: none;
    box-shadow: 0 4px 20px rgba(0,86,179,0.35);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    transition: var(--transition);
    position: relative;
}

.chat-toggle:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 28px rgba(0,86,179,0.45);
}

.chat-toggle .chat-icon-close {
    display: none;
    font-size: 20px;
}

.chat-widget.active .chat-toggle .chat-icon-open {
    display: none;
}

.chat-widget.active .chat-toggle .chat-icon-close {
    display: flex;
}

.chat-box {
    position: absolute;
    bottom: 76px;
    right: 0;
    width: 360px;
    max-width: calc(100vw - 48px);
    background: var(--color-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-border);
    overflow: hidden;
    opacity: 0;
    transform: translateY(16px) scale(0.96);
    pointer-events: none;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    max-height: 520px;
}

.chat-widget.active .chat-box {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.chat-header {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: var(--color-white);
    padding: 16px 20px;
}

.chat-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-avatar {
    width: 42px;
    height: 42px;
    background: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--color-primary);
    flex-shrink: 0;
}

.chat-header-info strong {
    display: block;
    font-size: 15px;
}

.chat-status {
    font-size: 12px;
    color: rgba(255,255,255,0.85);
    display: flex;
    align-items: center;
    gap: 4px;
}

.chat-status::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 280px;
    max-height: 360px;
}

.chat-message {
    display: flex;
    flex-direction: column;
    gap: 4px;
    max-width: 85%;
}

.chat-message-bot {
    align-self: flex-start;
}

.chat-message-user {
    align-self: flex-end;
}

.chat-bubble {
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 14px;
    line-height: 1.5;
    word-break: break-word;
}

.chat-message-bot .chat-bubble {
    background: var(--color-bg-alt);
    color: var(--color-text);
    border-bottom-left-radius: 4px;
}

.chat-message-user .chat-bubble {
    background: var(--color-primary);
    color: var(--color-white);
    border-bottom-right-radius: 4px;
}

.chat-time {
    font-size: 11px;
    color: var(--color-text-light);
    padding: 0 4px;
}

.chat-form {
    display: flex;
    gap: 8px;
    padding: 12px 16px;
    border-top: 1px solid var(--color-border);
    background: var(--color-white);
}

.chat-form input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid var(--color-border);
    border-radius: 24px;
    font-family: var(--font-family);
    font-size: 14px;
    outline: none;
    transition: var(--transition);
}

.chat-form input:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(198,40,40,0.08);
}

.chat-form button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
    transition: var(--transition);
}

.chat-form button:hover {
    background: var(--color-primary-dark);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #2563eb 100%);
    color: var(--color-white);
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-header h1 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 12px;
}

.page-header p {
    color: rgba(255,255,255,0.8);
    font-size: 17px;
}

/* Content Sections */
.content-section {
    padding: 80px 0;
}

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

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.content-text h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--color-secondary);
}

.content-text p {
    color: var(--color-text-light);
    margin-bottom: 16px;
    font-size: 16px;
}

.content-text ul {
    margin: 20px 0 0 20px;
    color: var(--color-text-light);
}

.content-text li {
    margin-bottom: 10px;
}

/* Service Detail */
.service-detail {
    padding: 60px 0;
    border-bottom: 1px solid var(--color-border);
}

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

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.service-detail:nth-child(even) .service-detail-grid {
    direction: rtl;
}

.service-detail:nth-child(even) .service-detail-content {
    direction: ltr;
}

.service-detail h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--color-secondary);
}

.service-detail p {
    color: var(--color-text-light);
    margin-bottom: 16px;
}

.service-detail ul {
    margin-left: 20px;
    color: var(--color-text-light);
}

.service-detail li {
    margin-bottom: 8px;
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--color-secondary);
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    align-items: flex-start;
}

.contact-icon {
    font-size: 20px;
    width: 48px;
    height: 48px;
    background: var(--color-bg-alt);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--color-primary);
}

.contact-item div strong {
    display: block;
    margin-bottom: 4px;
    color: var(--color-secondary);
}

.contact-item div a {
    color: var(--color-primary);
    text-decoration: none;
}

.contact-item div p {
    color: var(--color-text-light);
    font-size: 15px;
}

.contact-form {
    background: var(--color-white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--color-border);
}

.contact-form h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--color-secondary);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 14px;
    color: var(--color-secondary);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    font-family: var(--font-family);
    font-size: 15px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(198,40,40,0.1);
}

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

/* Legal pages */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 24px;
    font-weight: 700;
    margin: 40px 0 16px;
    color: var(--color-secondary);
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    color: var(--color-text-light);
    margin-bottom: 16px;
    font-size: 15px;
}

.legal-content ul {
    margin: 0 0 16px 20px;
    color: var(--color-text-light);
}

.legal-content li {
    margin-bottom: 8px;
}

/* Price Cards */
.price-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.price-card {
    background: var(--color-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--color-border);
    overflow: hidden;
    transition: var(--transition);
}

.price-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.price-card-header {
    background: var(--color-bg-alt);
    padding: 28px;
    text-align: center;
    border-bottom: 1px solid var(--color-border);
}

.price-card-header h3 {
    font-size: 20px;
    color: var(--color-secondary);
    margin-bottom: 8px;
}

.price-card-header .price {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-primary);
}

.price-card-header .price span {
    font-size: 16px;
    font-weight: 400;
    color: var(--color-text-light);
}

.price-card-body {
    padding: 28px;
}

.price-card-body ul {
    list-style: none;
}

.price-card-body li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--color-border);
    font-size: 14px;
}

.price-card-body li i {
    color: var(--color-primary);
    font-size: 12px;
}

.price-card-footer {
    padding: 0 28px 28px;
}

.price-card-footer .btn {
    width: 100%;
    justify-content: center;
}

/* Blog Cards */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.blog-card {
    background: var(--color-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--color-border);
    overflow: hidden;
    transition: var(--transition);
    text-decoration: none;
    color: var(--color-text);
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.blog-image {
    height: 200px;
    background: linear-gradient(135deg, var(--color-bg-alt), var(--color-white));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--color-primary);
}

.blog-content {
    padding: 24px;
}

.blog-date {
    font-size: 12px;
    color: var(--color-text-light);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-content h3 {
    font-size: 18px;
    color: var(--color-secondary);
    margin-bottom: 10px;
}

.blog-content p {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
    .why-grid,
    .content-grid,
    .contact-grid,
    .gastro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .services-grid,
    .process-grid,
    .testimonials-grid,
    .price-grid,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .brands-grid {
        grid-template-columns: repeat(4, 1fr);
    }

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

    .service-detail-grid {
        grid-template-columns: 1fr;
        direction: ltr !important;
    }

    .service-detail:nth-child(even) .service-detail-grid {
        direction: ltr;
    }

    .gastro-image {
        order: -1;
    }

    .gastro-image-inner {
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero {
        padding: 70px 0 50px;
    }

    .hero-features {
        gap: 20px;
    }

    .section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .services-grid,
    .why-grid,
    .process-grid,
    .testimonials-grid,
    .price-grid,
    .blog-grid,
    .brands-grid,
    .advantages-grid,
    .tips-grid {
        grid-template-columns: 1fr;
    }

    /* Swipeable grids on mobile */
    .services-grid,
    .testimonials-grid,
    .price-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 16px;
        padding-bottom: 16px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .services-grid .service-card,
    .testimonials-grid .testimonial,
    .price-grid .price-card {
        flex: 0 0 85%;
        min-width: 280px;
        scroll-snap-align: start;
    }

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

    .brands-grid-large {
        grid-template-columns: repeat(3, 1fr);
    }

    .final-cta-box h2 {
        font-size: 26px;
    }

    .final-cta-phone {
        font-size: 24px;
    }

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

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

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-image {
        order: -1;
    }

    .hero-image img {
        max-width: 300px;
        margin: 0 auto;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-images {
        order: -1;
    }

    .gastro-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .gastro-image {
        order: -1;
    }

    .gastro-image img {
        max-width: 100%;
    }

    .cta-banner {
        flex-direction: column;
        text-align: center;
    }

    .cta-text h2 {
        font-size: 26px;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .page-header h1 {
        font-size: 30px;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        height: 100dvh;
        background: var(--color-white);
        box-shadow: -4px 0 20px rgba(0,0,0,0.1);
        padding: 80px 28px 28px;
        transition: right 0.3s ease;
        z-index: 1001;
        overflow-y: auto;
        display: block;
    }

    .nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .nav-list li {
        margin: 0;
        padding: 0;
    }

    .nav-list a {
        display: flex;
        align-items: center;
        padding: 14px 0;
        font-size: 16px;
        border-bottom: 1px solid var(--color-border);
        border-radius: 0;
        color: var(--color-text);
        text-decoration: none;
        width: 100%;
    }

    .nav-list a .lang-de,
    .nav-list a .lang-en,
    .nav-list a .lang-tr {
        display: inline !important;
    }

    .lang-de .nav-list a .lang-en,
    .lang-de .nav-list a .lang-tr,
    .lang-en .nav-list a .lang-de,
    .lang-en .nav-list a .lang-tr,
    .lang-tr .nav-list a .lang-de,
    .lang-tr .nav-list a .lang-en {
        display: none !important;
    }

    .nav-list a.active {
        background: none;
        color: var(--color-primary);
    }

    .dropdown {
        position: static;
        opacity: 1;
        transform: none;
        pointer-events: auto;
        box-shadow: none;
        padding-left: 16px;
        display: none;
        background: none;
        min-width: auto;
        border: none;
    }

    .dropdown a {
        border-bottom: none;
        padding: 8px 0;
        font-size: 14px;
        color: var(--color-text-light);
    }

    .has-dropdown.open .dropdown {
        display: block;
    }

    .has-dropdown > a::after {
        content: '\f107';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        margin-left: auto;
        transition: transform 0.3s;
    }

    .has-dropdown > a .fa-chevron-down {
        display: none !important;
    }

    .has-dropdown.open > a::after {
        transform: rotate(180deg);
    }

    .nav-toggle,
    .nav-close {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        background: none;
        border: none;
        font-size: 20px;
        cursor: pointer;
        color: var(--color-text);
    }

    .nav-close {
        position: absolute;
        top: 16px;
        right: 16px;
    }

    .header-actions .btn-primary {
        display: none;
    }

    .service-card,
    .contact-form,
    .testimonial {
        padding: 28px 22px;
    }

    .legal-content h2 {
        font-size: 20px;
    }

    .chat-box {
        width: calc(100vw - 32px);
        max-width: none;
        bottom: 70px;
    }
}

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

    .hero h1 {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .btn {
        min-height: 48px;
    }

    .btn-large {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
    }

    .cta-actions {
        width: 100%;
        flex-direction: column;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .content-text h2 {
        font-size: 24px;
    }

    .process-step {
        padding: 24px 20px;
    }

    .page-header {
        padding: 50px 0 36px;
    }

    .page-header h1 {
        font-size: 24px;
    }

    .header-container {
        height: 64px;
    }

    .logo-icon {
        font-size: 24px;
    }

    .logo-text strong {
        font-size: 14px;
    }

    .cta-text h2 {
        font-size: 22px;
    }

    .service-detail {
        padding: 40px 0;
    }

    .service-detail h3 {
        font-size: 22px;
    }

    .price-card-header .price {
        font-size: 28px;
    }

    /* Additional mobile fixes */
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

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

    .hero-feature {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .hero-feature-icon {
        margin: 0 auto;
    }

    .services-grid,
    .testimonials-grid,
    .price-grid {
        gap: 12px;
        padding: 0 4px 16px;
    }

    .services-grid .service-card,
    .testimonials-grid .testimonial,
    .price-grid .price-card {
        flex: 0 0 90%;
        min-width: 260px;
    }

    .districts-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .district-item {
        padding: 12px;
        font-size: 14px;
    }

    .brands-grid-large {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .brand-card {
        padding: 12px;
        font-size: 13px;
    }

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

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

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

    .about-images {
        grid-template-columns: 1fr;
    }

    .about-image-main img {
        height: 200px;
    }

    .about-image-cert img {
        height: 140px;
    }

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

    .gastro-list {
        text-align: left;
    }

    .cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .cta-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .testimonial {
        padding: 20px;
    }

    .testimonial-author {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .testimonial-avatar {
        margin: 0 auto;
    }

    .final-cta-buttons {
        gap: 12px;
    }

    .final-cta-buttons .btn {
        width: 100%;
        max-width: none;
    }

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

    .footer-social {
        justify-content: center;
    }

    .footer-links ul {
        text-align: center;
    }

    .footer-contact ul {
        text-align: center;
    }

    .footer-contact li {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
    }

    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }

    .chat-widget {
        bottom: 80px;
        right: 20px;
    }

    .lang-switcher {
        padding: 2px;
    }

    .lang-btn {
        padding: 3px 6px;
        font-size: 10px;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .section-tag {
        font-size: 12px;
    }

    .btn-large {
        padding: 14px 24px;
        font-size: 15px;
    }

    .services-grid .service-card,
    .testimonials-grid .testimonial,
    .price-grid .price-card {
        flex: 0 0 95%;
        min-width: 240px;
    }

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

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

    .final-cta-box h2 {
        font-size: 22px;
    }

    .final-cta-phone {
        font-size: 20px;
    }

    .price-tag {
        font-size: 20px;
        padding: 4px 10px;
    }

    .price-header h3 {
        font-size: 16px;
    }

    .tip-card {
        padding: 16px;
    }

    .tip-number {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

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

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