/* Font Face декларации */
@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Reset и базовые стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2d8659;
    --primary-dark: #1e5d3f;
    --secondary-color: #64748b;
    --text-color: #1e293b;
    --text-light: #64748b;
    --bg-color: #ffffff;
    --bg-light: #f8fafc;
    --border-color: #e2e8f0;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
    --discount-color: #ef4444;
}

html, body {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background-color: var(--bg-color);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    margin: 0;
    padding: 0;
    margin-bottom: 0;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo a {
    display: inline-block;
    text-decoration: none;
    transition: var(--transition);
}

.logo-image {
    height: 40px;
    width: auto;
    display: block;
    object-fit: contain;
}

.logo a:hover {
    opacity: 0.8;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-menu > li.dropdown > span {
    color: var(--text-color);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.nav-menu > li.dropdown:hover > span {
    color: var(--primary-color);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-arrow {
    font-size: 0.7rem;
    margin-left: 5px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: var(--shadow-lg);
    border-radius: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    list-style: none;
    padding: 0.5rem 0;
    margin-top: 10px;
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
}

.dropdown-menu a:hover {
    background-color: var(--bg-light);
    color: var(--primary-color);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.language-switcher {
    position: relative;
}

.language-switcher.dropdown {
    position: relative;
}

.lang-btn-current {
    padding: 8px 16px;
    border: 2px solid var(--border-color);
    background: white;
    color: var(--text-color);
    cursor: pointer;
    border-radius: 6px;
    font-weight: 500;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: inherit;
    font-size: inherit;
    min-width: 80px;
    justify-content: space-between;
}

.lang-btn-current:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.lang-btn-current .dropdown-arrow {
    font-size: 0.7rem;
    transition: var(--transition);
}

.language-switcher.dropdown:hover .lang-btn-current .dropdown-arrow,
.language-switcher.dropdown.active .lang-btn-current .dropdown-arrow {
    transform: rotate(180deg);
}

.language-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    min-width: 180px;
    box-shadow: var(--shadow-lg);
    border-radius: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    list-style: none;
    padding: 0.5rem 0;
    margin-top: 8px;
    z-index: 100;
}

.language-switcher.dropdown:hover .language-menu,
.language-switcher.dropdown.active .language-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-menu li {
    padding: 0;
}

.lang-option {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 400;
}

.lang-option:hover {
    background-color: var(--bg-light);
    color: var(--primary-color);
}

.lang-option.active {
    background-color: var(--primary-color);
    color: white;
    font-weight: 500;
}

/* Старые стили для обратной совместимости */
.lang-btn {
    padding: 6px 12px;
    border: none;
    background: transparent;
    color: var(--text-color);
    cursor: pointer;
    border-radius: 4px;
    font-weight: 500;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    font-family: inherit;
    font-size: inherit;
}

.lang-btn.active {
    background-color: var(--primary-color);
    color: white;
}

.lang-btn:hover:not(.active) {
    background-color: var(--bg-light);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    transition: var(--transition);
}

/* Hero Image */
.hero-image {
    width: 100%;
    overflow: hidden;
    background-color: transparent;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    margin-top: 0;
    margin-bottom: 0;
}

.hero-image img {
    max-width: 1197px;
    width: 100%;
    height: auto;
    display: block;
    image-rendering: auto;
    -ms-interpolation-mode: bicubic;
    object-fit: contain;
    object-position: center;
}

/* Intro Section */
.intro-section {
    padding: 60px 0 40px 0;
    background-color: var(--bg-color);
    margin-top: 0;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-content h1 {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.intro-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.intro-content .discount-text {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.intro-cta {
    margin-top: 2rem;
}

/* Opportunities Section */
.opportunities-section {
    padding: 20px 0 30px 0;
    background-color: var(--bg-color);
}

.section-heading {
    text-align: center;
    font-size: 1.5rem;
    color: var(--text-color);
    font-weight: 500;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.heading-line {
    flex: 1;
    height: 1px;
    background-color: var(--border-color);
    max-width: 100px;
}

.opportunities-banner {
    width: 100%;
    margin-bottom: 3rem;
    border-radius: 8px;
    overflow: hidden;
}

.banner-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.opportunities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.opportunity-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 16 / 9;
}

.opportunity-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.opportunity-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    padding: 2rem;
    color: white;
}

.opportunity-text {
    font-size: 1.2rem;
    font-weight: 500;
    margin: 0;
    line-height: 1.4;
}

.journey-quote {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin: 2rem 0 1.5rem 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.quote-line {
    width: 4px;
    height: 60px;
    background-color: var(--primary-color);
    flex-shrink: 0;
}

.quote-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0;
    line-height: 1.3;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
    margin: 1rem auto 0;
    align-items: center;
}

.cta-text {
    color: var(--discount-color);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1rem;
    margin: 0;
    text-align: center;
}

.btn-cta-secondary {
    background-color: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
    text-transform: uppercase;
    font-weight: 700;
    padding: 15px 30px;
}

.btn-cta-secondary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease;
    line-height: 1.6;
}

.hero-text {
    font-size: 1rem;
    margin-bottom: 1rem;
    opacity: 0.9;
    line-height: 1.7;
    animation: fadeInUp 1s ease;
}

.hero-cta {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.discount-badge {
    font-size: 1.2rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    margin-bottom: 0.5rem;
}

.discount-badge-inline {
    background: var(--discount-color);
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: bold;
}

/* Quote Section */
.quote-section {
    background-color: var(--bg-light);
    padding: 60px 0;
    text-align: center;
}

.quote {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.quote-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

.btn-small {
    padding: 8px 20px;
    font-size: 0.9rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: white;
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Products Section */
.products-section {
    padding: 20px 0 20px 0;
    background-color: var(--bg-color);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.product-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    width: 100%;
    height: 200px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    width: auto;
    height: auto;
}

.product-category {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-name {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    min-height: 3rem;
    line-height: 1.4;
    font-weight: bold;
}

.product-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.products-cta {
    text-align: center;
    padding: 1.5rem;
    background: transparent;
    border-radius: 10px;
    margin-top: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.products-cta p {
    font-size: 1.5rem;
    margin: 0;
    color: var(--text-color);
    font-weight: bold;
}

/* Blog Section */
.blog-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.blog-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0;
}

.blog-card a {
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
}

.blog-card a:hover {
    color: var(--primary-color);
}

/* Categories Section */
.categories-section {
    padding: 20px 0 80px 0;
    background-color: var(--bg-color);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
}

.category-card {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.category-icon {
    font-size: 2.5rem;
    display: block;
    line-height: 1;
}

.category-name {
    display: block;
    font-size: 0.95rem;
    line-height: 1.3;
}

.category-card:hover {
    background: white;
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-color);
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.feature-card p {
    color: var(--text-light);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.25rem;
    opacity: 0.9;
}

/* Content Section */
.content-section {
    padding: 60px 0;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.content-wrapper h2 {
    font-size: 2rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.content-wrapper p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

.values-list {
    list-style: none;
    padding-left: 0;
}

.values-list li {
    padding: 1rem;
    margin-bottom: 0.5rem;
    background-color: var(--bg-light);
    border-left: 4px solid var(--primary-color);
    border-radius: 4px;
}

/* Services Section */
.services-section {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.service-card p {
    color: var(--text-light);
}

/* Contact Section */
.contact-section {
    padding: 60px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-item p {
    color: var(--text-light);
}

/* Contact Form */
.contact-form {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.contact-form h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 6px;
    display: none;
}

.form-message.success {
    background-color: #d1fae5;
    color: #065f46;
    display: block;
}

.form-message.error {
    background-color: #fee2e2;
    color: #991b1b;
    display: block;
}

/* Footer */
.footer {
    background-color: var(--text-color);
    color: white;
    padding: 40px 0 20px;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.footer-section .language-switcher {
    border-color: rgba(255, 255, 255, 0.3);
}

.footer-section .lang-btn-current {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
}

.footer-section .lang-btn-current:hover {
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
}

.footer-section .language-menu {
    background: rgba(30, 30, 30, 0.95);
    backdrop-filter: blur(10px);
    top: auto;
    bottom: 100%;
    right: 0;
    left: 0;
    margin-top: 0;
    margin-bottom: 8px;
    transform: translateY(10px);
    min-width: 100%;
}

.footer-section .language-switcher.dropdown:hover .language-menu,
.footer-section .language-switcher.dropdown.active .language-menu {
    transform: translateY(0);
}

.footer-section .lang-option {
    color: rgba(255, 255, 255, 0.9);
}

.footer-section .lang-option:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.footer-section .lang-option.active {
    background-color: var(--primary-color);
    color: white;
}

/* Старые стили для обратной совместимости */
.footer-section .lang-btn {
    color: rgba(255, 255, 255, 0.8);
    background: transparent;
}

.footer-section .lang-btn.active {
    background-color: var(--primary-color);
    color: white;
}

.footer-section .lang-btn:hover:not(.active) {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a,
.footer-bottom a:link,
.footer-bottom a:visited {
    color: rgba(255, 255, 255, 0.9) !important;
    text-decoration: underline;
    transition: var(--transition);
}

.footer-bottom a:hover,
.footer-bottom a:active {
    color: white !important;
    text-decoration: underline;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 45px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: var(--shadow);
        padding: 2rem 0;
        gap: 0;
        max-height: calc(100vh - 45px);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        padding: 1rem 0;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--bg-light);
        margin-top: 0.5rem;
        border-radius: 0;
    }

    .nav {
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.25rem 0;
    }

    .logo {
        flex-shrink: 0;
        z-index: 5;
        width: 50px;
        min-width: 50px;
        max-width: 50px;
    }

    .logo-image {
        max-width: 50px;
        height: auto;
    }

    .header-actions {
        display: flex;
        gap: 0.5rem;
        flex-wrap: nowrap;
        align-items: center;
        position: static;
        justify-content: flex-end;
        flex-shrink: 0;
        z-index: 5;
        min-width: 60px;
    }

    .header-actions .search-container {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        z-index: 10;
        width: auto;
        max-width: 140px;
        margin: 0;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .search-container {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        z-index: 10;
        width: auto;
        max-width: 140px;
        margin: 0;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .menu-toggle {
        display: flex !important;
        flex-direction: column;
        flex-shrink: 0;
        z-index: 15;
        width: 28px;
        min-width: 28px;
        padding: 3px;
        position: relative;
        visibility: visible !important;
        opacity: 1 !important;
        background: none;
        border: none;
        cursor: pointer;
        gap: 4px;
    }

    .menu-toggle span {
        display: block !important;
        width: 22px;
        height: 2.5px;
        background-color: var(--text-color);
        transition: var(--transition);
    }

    .language-switcher {
        order: 1;
    }

    .language-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--bg-light);
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
        border-radius: 0;
        display: none;
    }

    .footer-section .language-menu {
        position: absolute;
        bottom: 100%;
        top: auto;
        right: 0;
        left: 0;
        margin-top: 0;
        margin-bottom: 0.5rem;
        transform: translateY(10px);
        display: none;
        z-index: 1000;
        min-width: 100%;
    }

    .footer-section .language-switcher.dropdown.active .language-menu {
        display: block;
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .footer-section .lang-option {
        pointer-events: auto;
        cursor: pointer;
    }

    .language-switcher.dropdown.active .language-menu {
        display: block;
    }

    .lang-btn-current {
        width: 100%;
        justify-content: space-between;
    }

    .intro-content h1 {
        font-size: 1.75rem;
    }

    .intro-content p {
        font-size: 1rem;
    }

    .intro-content .discount-text {
        font-size: 1.1rem;
    }

    .hero-content h1 {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-text {
        font-size: 0.9rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
        max-width: 300px;
    }

    .quote {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .opportunities-grid {
        grid-template-columns: 1fr;
    }

    .opportunities-banner {
        margin-bottom: 2rem;
    }

    .quote-text {
        font-size: 1.4rem;
    }

    .section-heading {
        font-size: 1.2rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .heading-line {
        max-width: 50px;
    }

    .journey-quote {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .quote-line {
        width: 60px;
        height: 4px;
    }

    .opportunity-text {
        font-size: 1rem;
    }

    .categories-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .features-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .nav {
        padding: 0.2rem 0;
    }

    .header-actions .search-container {
        max-width: 110px;
    }

    .logo {
        width: 45px;
        min-width: 45px;
        max-width: 45px;
    }

    .logo-image {
        max-width: 45px;
        height: auto;
    }

    .menu-toggle {
        width: 26px;
        min-width: 26px;
        padding: 2px;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        gap: 3px;
    }

    .menu-toggle span {
        width: 20px;
        height: 2px;
    }

    .hero {
        padding: 60px 0;
    }

    .intro-content h1 {
        font-size: 1.5rem;
    }

    .intro-content p {
        font-size: 0.95rem;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .discount-badge {
        font-size: 1rem;
        padding: 0.5rem 1rem;
    }

    .quote-section,
    .products-section,
    .blog-section,
    .categories-section,
    .features,
    .content-section,
    .services-section,
    .contact-section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .contact-item a[href*="wa.me"],
    .contact-item a[href*="viber"],
    .contact-item a[href*="t.me"] {
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
    }
}

/* Contact page styles */
.contact-section {
    padding: 4rem 0;
}

.contact-item a[href*="wa.me"]:hover {
    background: #20ba5a !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(37, 211, 102, 0.3);
}

.contact-item a[href*="viber"]:hover {
    background: #5a4f9f !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(102, 92, 172, 0.3);
}

.contact-item a[href*="t.me"]:hover {
    background: #0077b5 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 136, 204, 0.3);
}

