/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #1B7B4F;
    --dark-green: #155A3A;
    --light-green: #22966A;
    --white: #ffffff;
    --text-dark: #1a1a1a;
    --text-gray: #4a4a4a;
    --text-light: #666;
    --bg-light: #f4f6f8;
    --border-color: #e0e5ea;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Optimize Image Loading */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Images load normally without animations */
img {
    opacity: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Performance Optimizations */
/* Hardware Acceleration */
.service-card,
.step-card,
.text-review-card,
.article-card,
.carousel-btn,
.service-icon,
.review-slide {
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Reduce Motion for Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Header Styles - Official GSC MVS Design */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Header Top Section */
.header-top {
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
    padding: 10px 0;
}

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

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

.info-badge {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--light-green) 100%);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.header-contacts-top {
    display: flex;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--text-gray);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-item svg {
    color: var(--primary-green);
}

.contact-telegram:hover {
    color: var(--primary-green);
    transform: translateX(2px);
}

/* Social Links */
.header-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-gray);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-green);
    color: var(--white);
    border-color: var(--primary-green);
    transform: translateY(-2px);
}

/* Header Main - Logo Section with Dots */
.header-main {
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

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

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Three Green Dots */
.logo-dots {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.dot-green {
    background: var(--primary-green);
}

/* Logo Text Content */
.logo-content {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-title-main,
.logo-title-service,
.logo-title-center {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    text-transform: lowercase;
}

.logo-mvs {
    font-size: 19px;
    font-weight: 800;
    color: var(--primary-green);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.logo-partner {
    font-size: 10px;
    font-weight: 500;
    color: var(--text-gray);
    text-transform: lowercase;
    letter-spacing: 0.3px;
    opacity: 0.8;
}

/* Emblem */
.logo-emblem {
    width: 60px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.emblem-img {
    width: 100%;
    height: auto;
    max-height: 70px;
    object-fit: contain;
}

/* Region Selector */
.header-region {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-gray);
}

.header-region:hover {
    background: var(--white);
    border-color: var(--primary-green);
}

.header-region svg {
    color: var(--primary-green);
}

/* Navigation Bar */
.header-nav {
    background: var(--primary-green);
    padding: 0;
}

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

.nav-item {
    flex: 1;
    text-align: center;
    padding: 14px 20px;
    color: var(--white);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-item:last-child {
    border-right: none;
}

.nav-item:hover {
    background: var(--dark-green);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--primary-green);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
}

/* Hero Section */
.hero {
    padding: 40px 0;
    background: linear-gradient(180deg, var(--bg-light) 0%, #ffffff 100%);
}

.hero-image {
    max-width: 1100px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    border: 1px solid var(--border-color);
    background: var(--white);
}

.hero-img {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: cover;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    transition: transform 0.5s ease;
}

.hero-image:hover .hero-img {
    transform: scale(1.02);
}

/* Main Heading Section */
.main-heading {
    padding: 60px 0;
    text-align: center;
    background: var(--white);
}

.main-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.3;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--light-green));
    margin: 0 auto 25px;
    border-radius: 2px;
}

.main-description {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto 35px;
    line-height: 1.7;
}

/* CTA Button */
.cta-button {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--light-green) 100%);
    color: var(--white);
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(27, 123, 79, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(27, 123, 79, 0.4);
}

.cta-button:active {
    transform: translateY(0);
}

/* Procedure Section */
.procedure {
    padding: 60px 0;
    background: var(--bg-light);
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 17px;
    color: var(--text-gray);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 45px;
}

.procedure-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.procedure-step {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    border-left: 4px solid var(--primary-green);
}

.procedure-step p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* Services Section - Clean Design with Icons */
.services {
    padding: 70px 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.service-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(27, 123, 79, 0.15);
    border-color: var(--primary-green);
}

.service-image {
    position: relative;
    height: 260px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--border-color);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease, filter 0.3s ease;
    padding: 15px;
    will-change: transform;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

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

/* Service Icon - Replaced Dark Overlay */
.service-icon {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: var(--white);
    width: 65px;
    height: 65px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    transform: scale(1.08) rotate(5deg);
    box-shadow: 0 6px 25px rgba(27, 123, 79, 0.35);
    border-color: rgba(255, 255, 255, 0.3);
}

.service-icon svg {
    color: var(--primary-green);
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.service-card:hover .service-icon svg {
    color: var(--white);
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
    transform: scale(1.1);
}

.service-content {
    padding: 25px;
}

.service-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.service-description {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Service Button - Official Style */
.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--light-green) 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(27, 123, 79, 0.25);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-btn:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 18px rgba(27, 123, 79, 0.35);
}

.service-btn svg {
    transition: transform 0.3s ease;
}

.service-btn:hover svg {
    transform: translateX(3px);
}

/* Process Steps Section */
.process-steps {
    padding: 70px 0;
    background: var(--bg-light);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.step-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-green);
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(27, 123, 79, 0.15);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.step-description {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Reviews Carousel */
.reviews {
    padding: 70px 0;
    background: var(--white);
}

.reviews-carousel {
    position: relative;
    margin-top: 50px;
    padding: 0 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.reviews-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 12px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.review-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.review-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.review-img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.review-slide:hover .review-img {
    transform: scale(1.02);
    transition: transform 0.3s ease;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.carousel-btn:hover {
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(27, 123, 79, 0.3);
    border-color: transparent;
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-btn.prev {
    left: 0;
}

.carousel-btn.next {
    right: 0;
}

.carousel-btn svg {
    transition: transform 0.3s ease;
}

.carousel-btn:hover svg {
    transform: scale(1.2);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 25px;
    padding: 0 20px;
    max-width: 100%;
}

.dot {
    width: 10px;
    height: 10px;
    background: #d1d5db;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    border: 2px solid transparent;
}

.dot:hover {
    background: #9ca3af;
    transform: scale(1.2);
}

.dot.active {
    background: var(--primary-green);
    width: 28px;
    border-radius: 5px;
    border: 2px solid var(--primary-green);
}

/* Text Reviews Section */
.text-reviews {
    padding: 70px 0;
    background: var(--bg-light);
}

.text-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.text-review-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.text-review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(27, 123, 79, 0.12);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
}

.review-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
}

.review-author-info {
    flex: 1;
}

.review-author {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.review-rating {
    color: #FFA500;
    font-size: 14px;
}

.review-date {
    font-size: 13px;
    color: var(--text-light);
}

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

.review-service {
    display: inline-block;
    padding: 6px 12px;
    background: var(--bg-light);
    color: var(--primary-green);
    font-size: 13px;
    font-weight: 600;
    border-radius: 6px;
}

/* Articles Section */
.articles {
    padding: 70px 0;
    background: var(--white);
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.article-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(27, 123, 79, 0.15);
}

.article-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, filter 0.3s ease;
    image-rendering: -webkit-optimize-contrast;
}

.article-card:hover .article-image img {
    transform: scale(1.08);
    filter: brightness(1.05);
}

.article-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-green);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.article-content {
    padding: 25px;
}

.article-title {
    font-size: 19px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.4;
}

.article-excerpt {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 18px;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 13px;
    color: var(--text-light);
}

.article-date,
.article-read-time {
    display: flex;
    align-items: center;
    gap: 5px;
}

.article-date svg {
    color: var(--primary-green);
}

/* FAQ Section */
.faq {
    padding: 70px 0;
    background: var(--bg-light);
}

.faq-grid {
    max-width: 900px;
    margin: 50px auto 0;
}

.faq-item {
    background: var(--white);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 15px rgba(27, 123, 79, 0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-dark);
    flex: 1;
}

.faq-icon {
    color: var(--primary-green);
    transition: transform 0.3s ease;
}

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

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

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

.faq-answer p {
    padding: 0 25px 20px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* Contacts Section */
.contacts {
    padding: 70px 0;
    background: var(--white);
}

.contact-content {
    max-width: 500px;
    margin: 50px auto 0;
}

.telegram-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    color: var(--white);
    text-decoration: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(27, 123, 79, 0.3);
    transition: all 0.3s ease;
}

.telegram-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(27, 123, 79, 0.4);
}

.telegram-icon,
.arrow-icon {
    flex-shrink: 0;
}

.telegram-button span {
    flex: 1;
    text-align: center;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 50px 0 20px;
}

.footer-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.footer-logo-img {
    height: 50px;
    width: auto;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
}

.footer-logo-title {
    font-size: 16px;
    font-weight: 700;
}

.footer-logo-subtitle {
    font-size: 13px;
    opacity: 0.8;
}

.footer-description {
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.85;
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-contact-item svg {
    color: var(--primary-green);
    flex-shrink: 0;
}

.footer-telegram-link:hover {
    color: var(--white);
    transform: translateX(3px);
}

.footer-telegram-link:hover svg {
    transform: scale(1.1);
}

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

.footer-copyright {
    font-size: 14px;
    opacity: 0.7;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

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

/* Floating CTA Button */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.floating-cta.visible {
    opacity: 1;
    visibility: visible;
}

.floating-button {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    border: none;
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(27, 123, 79, 0.4);
    transition: all 0.3s ease;
}

.floating-button:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(27, 123, 79, 0.5);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-content {
        flex-wrap: wrap;
    }
    
    .nav-item {
        font-size: 12px;
        padding: 12px 15px;
    }
}

@media (max-width: 768px) {
    .header-top {
        display: none;
    }
    
    /* Reviews Carousel Mobile */
    .reviews-carousel {
        padding: 0 50px;
    }
    
    .reviews-container {
        height: 400px;
    }
    
    .review-slide {
        padding: 15px;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
    }
    
    .carousel-dots {
        gap: 6px;
        padding: 0 10px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
    
    .dot.active {
        width: 24px;
    }
    
    .header-main-content {
        padding: 10px 0;
    }
    
    .logo-content {
        font-size: 14px;
    }
    
    .logo-mvs {
        font-size: 17px;
    }
    
    .header-region {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .header-nav {
        display: none;
    }
    
    .header-nav.active {
        display: block;
    }
    
    .nav-content {
        flex-direction: column;
    }
    
    .nav-item {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .main-title {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .services-grid,
    .steps-grid,
    .text-reviews-grid,
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .review-slide {
        max-height: 400px;
        padding: 12px;
    }
    
    .review-img {
        max-height: 375px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    /* Reviews Carousel Small Mobile */
    .reviews-carousel {
        padding: 0 40px;
    }
    
    .reviews-container {
        height: 350px;
    }
    
    .review-slide {
        padding: 10px;
    }
    
    .carousel-btn {
        width: 32px;
        height: 32px;
    }
    
    .carousel-dots {
        gap: 5px;
        padding: 0 5px;
        margin-top: 20px;
    }
    
    .dot {
        width: 7px;
        height: 7px;
    }
    
    .dot.active {
        width: 20px;
    }
    
    .main-title {
        font-size: 26px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .logo-emblem {
        width: 45px;
    }
    
    .cta-button {
        padding: 14px 30px;
        font-size: 14px;
    }
    
    .service-btn {
        font-size: 13px;
        padding: 10px 20px;
    }
    
    .reviews-carousel {
        padding: 0 40px;
    }
    
    .review-slide {
        max-height: 350px;
        padding: 10px;
    }
    
    .review-img {
        max-height: 330px;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
    }
    
    .floating-cta {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-button {
        width: 50px;
        height: 50px;
    }
}

/* Telegram Modal */
.telegram-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10001;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.telegram-modal.active {
    display: flex;
}

.telegram-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.telegram-modal-content {
    position: relative;
    background: var(--white);
    max-width: 480px;
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    animation: scaleIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 1;
}

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

.telegram-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.telegram-modal-close:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: rotate(90deg);
}

.telegram-modal-close svg {
    color: var(--text-dark);
}

.telegram-modal-body {
    padding: 40px 30px 30px;
    text-align: center;
}

.telegram-icon-wrapper {
    margin-bottom: 25px;
    animation: bounce 1s ease infinite;
}

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

.telegram-main-icon {
    filter: drop-shadow(0 8px 16px rgba(42, 171, 238, 0.3));
}

.telegram-modal-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.telegram-modal-description {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-gray);
    margin-bottom: 25px;
}

.telegram-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.telegram-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px 10px;
    background: var(--bg-light);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.telegram-feature:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 28px;
}

.telegram-feature span:last-child {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
}

.telegram-info {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
    padding: 15px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
}

.telegram-username,
.telegram-schedule {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-gray);
    font-weight: 500;
}

.telegram-username svg,
.telegram-schedule svg {
    color: #2AABEE;
    flex-shrink: 0;
}

.telegram-open-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    justify-content: center;
    padding: 16px 32px;
    background: linear-gradient(135deg, #2AABEE 0%, #229ED9 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(42, 171, 238, 0.3);
    margin-bottom: 15px;
}

.telegram-open-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(42, 171, 238, 0.4);
}

.telegram-open-btn svg:first-child {
    animation: pulse 1.5s ease infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.telegram-note {
    font-size: 12px;
    color: var(--text-light);
    margin: 0;
}

/* Mobile Responsive for Telegram Modal */
@media (max-width: 480px) {
    .telegram-modal {
        padding: 15px;
    }
    
    .telegram-modal-content {
        border-radius: 16px;
    }
    
    .telegram-modal-body {
        padding: 30px 20px 25px;
    }
    
    .telegram-modal-title {
        font-size: 22px;
    }
    
    .telegram-modal-description {
        font-size: 14px;
    }
    
    .telegram-features {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .telegram-feature {
        flex-direction: row;
        padding: 12px;
    }
    
    .telegram-info {
        flex-direction: column;
        gap: 12px;
    }
    
    .telegram-open-btn {
        padding: 14px 24px;
        font-size: 15px;
    }
}

/* Article Read Button */
.article-read-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-read-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(27, 123, 79, 0.3);
}

/* Article Modal */
.article-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.article-modal.active {
    display: flex;
}

.article-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.article-modal-content {
    position: relative;
    background: var(--white);
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

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

.article-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.article-modal-close:hover {
    background: rgba(0, 0, 0, 0.2);
    transform: rotate(90deg);
}

.article-modal-close svg {
    color: var(--text-dark);
}

.article-modal-body {
    padding: 40px;
    max-height: 90vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.article-modal-body::-webkit-scrollbar {
    width: 8px;
}

.article-modal-body::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.article-modal-body::-webkit-scrollbar-thumb {
    background: var(--primary-green);
    border-radius: 4px;
}

.article-modal-body::-webkit-scrollbar-thumb:hover {
    background: var(--dark-green);
}

.article-modal-category {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, #ff6b6b, #ff8787);
    color: var(--white);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.article-modal-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 25px;
}

.article-modal-intro {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-green);
    margin-bottom: 30px;
}

.article-modal-intro p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 12px;
}

.article-modal-intro p:last-child {
    margin-bottom: 0;
}

.article-modal-section {
    margin-bottom: 30px;
}

.article-modal-section h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.article-modal-section p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 15px;
}

.article-modal-section ul,
.article-modal-section ol {
    margin-left: 20px;
    margin-bottom: 15px;
}

.article-modal-section li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 10px;
}

.article-steps {
    background: var(--bg-light);
    padding: 20px 30px;
    border-radius: 10px;
    list-style: none;
    counter-reset: step-counter;
    margin-left: 0;
}

.article-steps li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 40px;
    margin-bottom: 20px;
}

.article-steps li:last-child {
    margin-bottom: 0;
}

.article-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.article-checklist {
    list-style: none;
    margin-left: 0;
}

.article-checklist li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
}

.article-checklist li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    background: var(--primary-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.article-modal-benefits {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.article-modal-benefits h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.article-modal-benefits > p {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.benefit-item {
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.benefit-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.benefit-item strong {
    display: block;
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.benefit-item p {
    font-size: 14px;
    color: var(--text-gray);
    margin: 0;
}

.article-modal-reviews {
    margin-bottom: 30px;
}

.article-modal-reviews h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.article-modal-reviews blockquote {
    background: var(--white);
    border-left: 4px solid var(--primary-green);
    padding: 20px;
    margin: 0 0 15px 0;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.article-modal-reviews blockquote p {
    font-size: 15px;
    font-style: italic;
    color: var(--text-gray);
    margin-bottom: 10px;
}

.article-modal-reviews cite {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-green);
    font-style: normal;
}

.article-modal-cta {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--light-green) 100%);
    padding: 35px;
    border-radius: 12px;
    text-align: center;
    color: var(--white);
}

.article-modal-cta h3 {
    font-size: 26px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.article-modal-cta > p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 25px;
}

.modal-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    background: var(--white);
    color: var(--primary-green);
    text-decoration: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modal-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
}

.modal-cta-button svg {
    width: 24px;
    height: 24px;
}

.modal-cta-note {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 20px;
    font-weight: 500;
}

/* Category Blocks for Categories Article */
.category-block {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.category-block:hover {
    border-color: var(--primary-green);
    box-shadow: 0 4px 12px rgba(27, 123, 79, 0.1);
    transform: translateY(-2px);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}

.category-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    color: var(--white);
    border-radius: 12px;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.category-badge.special {
    font-size: 13px;
    padding: 0 8px;
    width: auto;
    min-width: 50px;
}

.category-header h4 {
    font-size: 19px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.category-block p {
    font-size: 15px;
    color: var(--text-gray);
    margin-bottom: 12px;
    line-height: 1.6;
}

.category-service {
    background: var(--bg-light);
    padding: 12px 15px;
    border-radius: 8px;
    font-size: 14px;
    color: var(--text-gray);
    border-left: 3px solid var(--primary-green);
    margin: 0;
}

/* Document Blocks for Documents Article */
.document-block {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.document-block:hover {
    border-color: var(--primary-green);
    box-shadow: 0 6px 20px rgba(27, 123, 79, 0.12);
    transform: translateY(-3px);
}

.document-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 8px;
}

.document-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    color: var(--white);
    border-radius: 50%;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(27, 123, 79, 0.3);
}

.document-header h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    flex: 1;
}

.document-subtitle {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 15px;
    font-style: italic;
}

.document-list {
    list-style: none;
    margin: 0 0 15px 0;
    padding: 0;
}

.document-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
}

.document-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    background: var(--primary-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

.document-service {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    padding: 12px 15px;
    border-radius: 8px;
    font-size: 14px;
    color: var(--text-dark);
    border-left: 4px solid var(--primary-green);
    margin: 0;
    font-weight: 500;
}

/* Mobile Responsive for Modal */
@media (max-width: 768px) {
    .article-modal-body {
        padding: 25px 20px;
    }
    
    .article-modal-title {
        font-size: 24px;
    }
    
    .article-modal-section h3 {
        font-size: 20px;
    }
    
    .article-modal-intro,
    .article-modal-benefits,
    .article-modal-cta {
        padding: 20px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .benefit-item {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .article-modal {
        padding: 10px;
    }
    
    .article-modal-content {
        border-radius: 12px;
    }
    
    .article-modal-body {
        padding: 20px 15px;
    }
    
    .article-modal-title {
        font-size: 20px;
    }
    
    .article-modal-section h3 {
        font-size: 18px;
    }
    
    .article-modal-intro p,
    .article-modal-section p,
    .article-modal-section li {
        font-size: 15px;
    }
    
    .article-steps li {
        padding-left: 35px;
    }
    
    .modal-cta-button {
        padding: 14px 28px;
        font-size: 14px;
    }
}


