/* style.css */

:root {
    --primary-color: #c77dff;
    --secondary-color: #e0aaff;
    --accent-color: #ffee32;
    --dark-color: #240046;
    --light-bg: #f8f9fa;
    --text-dark: #10002b;
    --text-light: #5a189a;
    --border-radius: 20px;
    --shadow: 0 10px 30px rgba(36, 0, 70, 0.1);
    --shadow-hover: 0 15px 40px rgba(36, 0, 70, 0.15);

    --heading-font: 'Poppins', sans-serif;
    --body-font: 'Inter', sans-serif;
}

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

body {
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #ffffff;
    overflow-x: hidden;

    font-family: var(--body-font);

    

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--dark-color);

    font-family: var(--heading-font);
    font-weight: 600;
}
}

.navbar-brand {
    font-family: var(--heading-font);
    font-weight: 700;
}

/* Navigation */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.5rem 0;
}

.logo {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color) !important;
    text-decoration: none;
}

.navbar-nav .nav-link {
    color: var(--text-dark);
    font-weight: 500;
    margin: 0 1rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color);
}

/* Buttons */
.btn {
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: 0 5px 15px rgba(199, 125, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(199, 125, 255, 0.4);
}

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

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

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e0aaff 100%);
    padding-top: 80px;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: var(--accent-color);
    border-radius: 50%;
    opacity: 0.3;
    filter: blur(100px);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--dark-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.stats-row {
    display: flex;
    gap: 3rem;
}

.stat-item h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.hero-image {
    position: relative;
}

.hero-image img {
    box-shadow: var(--shadow);
}

.floating-card {
    position: absolute;
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    animation: float 3s ease-in-out infinite;
}

.floating-card i {
    font-size: 2rem;
    color: var(--primary-color);
}

.card-1 {
    top: 20px;
    right: -40px;
}

.card-2 {
    bottom: 40px;
    left: -40px;
    animation-delay: 1s;
}

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

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

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

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

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

/* About Section */
.about-section {
    background: white;
}

.rounded-custom {
    border-radius: var(--border-radius);
}

.feature-list {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: start;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.feature-item h5 {
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.feature-item p {
    color: var(--text-light);
    margin: 0;
}

/* Team Section */
.team-section {
    background-color: var(--light-bg);
}

.founder-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.founder-card h3 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.founder-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

/* Process Section */
.process-section {
    background: linear-gradient(135deg, white 0%, #f8f9fa 100%);
}

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

.step-number {
    width: 60px;
    height: 60px;
    /*background: var(--accent-color);*/
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--dark-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(255, 238, 50, 0.3);
}

.process-step h5 {
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.process-step p {
    color: var(--text-light);
}

/* Contact Section */
.contact-section {
    background-color: var(--light-bg);
}

.contact-info {
    margin-top: 2rem;
}

.info-item {
    display: flex;
    align-items: start;
    margin-bottom: 2rem;
    gap: 1rem;
}

.info-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.info-item h5 {
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.info-item p {
    color: var(--text-light);
    margin: 0;
}

.contact-form-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.form-control {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(199, 125, 255, 0.1);
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 3rem 0 2rem;
    margin-top: 0;
}

.footer-logo {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.footer h5 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

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

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

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 2rem 0 1rem;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stats-row {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .floating-card {
        display: none;
    }
    
    .founder-card img {
        height: 200px;
        margin-bottom: 1.5rem;
    }


    .navbar {
        padding: 0.8rem 0;
    }
    
    .navbar-brand {
        font-size: 1.2rem;
    }
    
    .navbar-collapse {
        background: white;
        padding: 1rem;
        border-radius: 15px;
        margin-top: 1rem;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
    
    .navbar-nav .nav-link {
        margin: 0.5rem 0;
        padding: 0.8rem 1rem;
        border-radius: 10px;
        text-align: center;
    }
    
    .navbar-nav .nav-link:hover {
        background: var(--light-bg);
    }
    
    .btn {
        width: 100%;
        margin: 0.5rem 0;
    }



}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .btn {
        padding: 0.6rem 1.5rem;
    }
}



.local-badge {
    background: var(--accent-color);
    color: var(--dark-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}


.testimonials-section {
    background: white;
}

.testimonial-card {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
}

.client-info {
    margin-top: 1rem;
    font-style: italic;
}

.footer-local {
    text-align: center;
    margin-top: 2rem;
}

.local-areas {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.area-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.8);
    padding: 0.5rem 1rem;
    background: rgba(255,255,255,0.1);
    border-radius: 25px;
}

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

.area-item span {
    font-size: 0.9rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .quick-links,
    .trust-badges,
    .local-areas {
        gap: 1rem;
    }
    
    .quick-link,
    .trust-badge {
        min-width: 70px;
    }
    
    .area-item {
        padding: 0.4rem 0.8rem;
    }
}

@media (max-width: 576px) {
    .quick-links,
    .trust-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .local-areas {
        flex-direction: column;
        gap: 0.5rem;
    }
}


.parallax-element {
    transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
    will-change: transform;
}


@media (max-width: 768px) {
    .parallax-element {
        transform: none !important;
    }
}


.parallax-layer-1 { --parallax-speed: 0.1; }
.parallax-layer-2 { --parallax-speed: 0.3; }
.parallax-layer-3 { --parallax-speed: 0.5; }
.parallax-layer-4 { --parallax-speed: 0.7; }




.hero-content-mobile {
    text-align: center;
    padding: 1rem 0;
}

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

.stats-row-mobile .stat-item {
    text-align: center;
    padding: 1rem 0.5rem;
}

.stats-row-mobile .stat-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
}

.stats-row-mobile .stat-item p {
    font-size: 0.75rem;
}

.hero-image-mobile {
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .floating-card {
        display: none; 
    }
    
 
    .service-card {
        margin-bottom: 1rem;
        padding: 2rem 1.5rem;
    }
    
  
    .process-step {
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    

    .contact-form-card {
        padding: 1.5rem;
        margin-top: 2rem;
    }
    
  
    .footer {
        text-align: center;
    }
    
    .footer-links {
        margin-bottom: 2rem;
    }
}





.service-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 0 25px 50px rgba(199, 125, 255, 0.15);
}


.btn {
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

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

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


.service-icon {
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(199, 125, 255, 0.3);
}



.services-section .row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

@media (min-width: 1200px) {
    .services-section .row {
        grid-template-columns: repeat(3, 1fr);
    }
}




.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
}

.process-step-enhanced {
    position: relative;
}

.step-content {
    text-align: center;
    padding: 2rem 1.5rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
}

.step-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(199, 125, 255, 0.3);
}

.step-text h5 {
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.step-text p {
    color: var(--text-light);
    margin: 0;
}



.contact-form-card {
    background: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.contact-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.form-control {
    border: 2px solid #eef2f7;
    border-radius: 12px;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fafbfc;
}

.form-control:focus {
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 0.2rem rgba(199, 125, 255, 0.1);
    transform: translateY(-2px);
}


/* Hero Section - полное исправление */
.hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e0aaff 100%);
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: var(--accent-color);
    border-radius: 50%;
    opacity: 0.2;
    filter: blur(80px);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--dark-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image-wrapper {
    position: relative;
    text-align: center;
}

.hero-img {
    box-shadow: var(--shadow);
    max-height: 500px;
    width: 100%;
    object-fit: cover;
}

/* Улучшенные floating cards */
.floating-card {
    position: absolute;
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    animation: float 3s ease-in-out infinite;
    z-index: 3;
}

.floating-card i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.card-1 {
    top: 10%;
    right: 5%;
}

.card-2 {
    bottom: 20%;
    left: 5%;
    animation-delay: 1.5s;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0) rotate(0deg); 
    }
    50% { 
        transform: translateY(-15px) rotate(5deg); 
    }
}

/* Stats row improvements */
.stats-row {
    display: flex;
    gap: 2rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.stat-item {
    text-align: left;
    flex: 1;
    min-width: 120px;
}

.stat-item h3 {
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.stat-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
}


/* Services Section - исправления */
.services-section {
    background-color: var(--light-bg);
    position: relative;
    z-index: 2;
}

/* Исправляем сетку сервисов */
.services-section .row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

@media (min-width: 1200px) {
    .services-section .row {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Улучшаем service cards */
.service-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    position: relative;
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(199, 125, 255, 0.15);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(199, 125, 255, 0.3);
}

.service-icon i {
    font-size: 1.8rem;
    color: white;
}

.service-card h4 {
    margin-bottom: 1rem;
    color: var(--dark-color);
    font-size: 1.3rem;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}


/* Mobile Responsive Fixes */
@media (max-width: 768px) {
    .hero-section {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 2.2rem;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        margin: 0.5rem 0;
    }
    
    .stats-row {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .stat-item {
        text-align: center;
        min-width: 100px;
    }
    
    .stat-item h3 {
        font-size: 1.8rem;
    }
    
    .floating-card {
        width: 50px;
        height: 50px;
        display: none; /* Скрываем на мобильных чтобы не мешали */
    }
    
    .floating-card i {
        font-size: 1.3rem;
    }
    
    /* Services mobile fix */
    .services-section .row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .service-card {
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .stats-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-item {
        min-width: auto;
    }
}


/* Z-index hierarchy */
.navbar {
    z-index: 1000;
}

.hero-section {
    z-index: 1;
}

.services-section {
    z-index: 2;
    position: relative;
}

.floating-card {
    z-index: 3;
}



/* Services Section - полное исправление */
.services-section {
    background-color: var(--light-bg);
    position: relative;
    z-index: 2;
    padding: 80px 0;
}

/* Используем Bootstrap grid вместо CSS grid для лучшей совместимости */
.services-section .row {
    display: flex;
    flex-wrap: wrap;
}

/* Улучшаем service cards */
.service-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 320px;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(199, 125, 255, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(199, 125, 255, 0.3);
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h4 {
    margin-bottom: 1rem;
    color: var(--dark-color);
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.3;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
    flex-grow: 1;
}



/* Mobile Responsive Fixes для Services */
@media (max-width: 768px) {
    .services-section {
        padding: 60px 0;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
        min-height: 280px;
        margin-bottom: 1rem;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.5rem;
    }
    
    .service-icon i {
        font-size: 1.8rem;
    }
    
    .service-card h4 {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .service-card {
        padding: 1.5rem 1rem;
        min-height: 260px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .service-icon i {
        font-size: 1.5rem;
    }
    
    .service-card h4 {
        font-size: 1.2rem;
    }
    
    .service-card p {
        font-size: 0.9rem;
    }
}