  :root {
            --primary-black: #000000;
            --primary-white: #ffffff;
            --accent-purple: #9c3682;
            --accent-gray: #767779;
            --light-gray: #f8f9fa;
            --medium-gray: #e9ecef;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background-color: var(--primary-white);
            color: var(--primary-black);
            line-height: 1.6;
        }
        
        /* Navigation */
        .navbar {
            background-color: rgba(255, 255, 255, 0.95) !important;
            backdrop-filter: blur(20px);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
            border-bottom: 1px solid var(--medium-gray);
            padding: 8px 0;
            transition: transform 0.3s ease-in-out;
        }


		.navbar .container {
			display: flex;
			align-items: center;
			justify-content: space-between;
			flex-wrap: nowrap;
			position: relative; /* Для правильного позиціонування колапсу */
		}

		.navbar-brand {
			margin-right: 0;
			flex: 0 0 auto;
			z-index: 10; /* Логотип завжди зверху */
		}

		/* Група справа на мобільних */
		.d-lg-none.d-flex {
			flex: 0 0 auto;
			margin-left: auto;
			z-index: 10; /* Кнопки завжди зверху */
		}

/* Колапс меню */
.navbar-collapse {
    position: absolute !important; /* Виносимо з потоку */
    top: 100% !important; /* Прямо під навбаром */
    left: 0 !important;
    right: 0 !important;
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(20px);
    border: 1px solid var(--medium-gray);
    border-top: none;
    border-radius: 0 0 15px 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 5; /* Під кнопками, але над контентом */
}

/* Тільки на мобільних */
@media (max-width: 991.98px) {
    .navbar-collapse.show,
    .navbar-collapse.collapsing {
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        right: 0 !important;
        background: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: blur(20px);
        padding: 20px;
        margin: 0;
    }
    
    /* Забираємо flex-basis з Bootstrap */
    .navbar-collapse {
        flex-basis: auto !important;
    }
}

/* На десктопі повертаємо звичайне позиціонування */
@media (min-width: 992px) {
    .navbar-collapse {
        position: static !important;
        background: none !important;
        border: none !important;
        box-shadow: none !important;
        border-radius: 0 !important;
    }
}



@media (max-width: 991.98px) {
    .navbar-nav {
        padding: 0;
        margin: 0;
    }
    
    .navbar-nav .nav-item {
        margin: 5px 0;
    }
    
    .navbar-nav .nav-link {
        padding: 10px 15px !important;
        border-radius: 8px;
        margin: 0 !important;
        text-align: left;
    }
    
    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        background: rgba(156, 54, 130, 0.1);
    }
    
    /* Мобільні екстра елементи */
    .mobile-nav-extras {
        padding: 15px 0 0 0;
        border-top: 1px solid var(--medium-gray);
        margin-top: 15px;
    }
    
    .mobile-nav-extras .language-switcher {
        justify-content: flex-start;
        margin-bottom: 10px;
    }
    
    .mobile-nav-extras .phone-link {
        justify-content: flex-start;
        display: flex;
        align-items: center;
        padding: 10px 15px;
        border-radius: 8px;
        background: rgba(156, 54, 130, 0.05);
    }
}


		.phone-link-mobile {
			margin-right: 15px; 
		}

		.navbar-toggler {
			border: none;
			padding: 8px;
			margin-left: auto; 
		}
				
        .navbar.navbar-hidden {
            transform: translateY(-100%);
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
        }
        
        .navbar-brand img {
            max-width: 200px;
            max-height: 80px;
            height: auto;
            width: auto;
        }
        
        .navbar-nav .nav-link {
            color: var(--primary-black) !important;
            font-weight: 600;
            font-size: 15px;
            margin: 0 20px;
            padding: 8px 0 !important;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link.active {
            color: var(--accent-purple) !important;
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent-purple);
            transition: width 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover::after,
        .navbar-nav .nav-link.active::after {
            width: 100%;
        }
        
        .language-switcher {
            display: flex;
            align-items: center;
            background-color: var(--light-gray);
            border-radius: 25px;
            padding: 5px;
            margin-right: 25px;
        }
        
        .language-switcher a {
            color: var(--accent-gray) !important;
            text-decoration: none;
            padding: 6px 12px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 13px;
            transition: all 0.3s ease;
        }
        
        .language-switcher a.active {
            background-color: var(--accent-purple);
            color: var(--primary-white) !important;
        }
        
        .phone-link {
            color: var(--accent-purple) !important;
            font-weight: 700;
            text-decoration: none;
            font-size: 16px;
            transition: all 0.3s ease;
        }
        
        .phone-link:hover {
            color: var(--primary-black) !important;
        }

		
			.phone-link-mobile {
				color: var(--accent-purple) !important;
				font-size: 1.3rem;
				text-decoration: none;
				transition: all 0.3s ease;
				padding: 8px 10px;
				border-radius: 8px;
				display: flex;
				align-items: center;
				justify-content: center;
				background: rgba(156, 54, 130, 0.1);
				border: 1px solid rgba(156, 54, 130, 0.2);
				min-width: 42px;
				height: 42px;
			}

			.phone-link-mobile:hover {
				background: var(--accent-purple);
				color: var(--primary-white) !important;
				border-color: var(--accent-purple);
				transform: scale(1.05);
			}

			.phone-link-mobile i {
				font-size: 1.1rem;
			}

			
			.mobile-nav-extras {
				padding: 20px 0;
				border-top: 1px solid var(--medium-gray);
				margin-top: 20px;
				text-align: center;
			}

			.mobile-nav-extras .language-switcher {
				justify-content: center;
				margin-bottom: 15px;
			}

			.mobile-nav-extras .phone-link {
				justify-content: center;
				display: flex;
				align-items: center;
			}
							

        
        /* Hero Section */
        .hero-section {
            padding-top: 80px;
            position: relative;
            overflow: hidden;
            min-height: 100vh;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
        }
        
        .hero-section .container-fluid {
            padding: 0;
            height: 100%;
        }
        
        .hero-section .row {
            margin: 0;
            min-height: calc(100vh - 80px);
        }
        
        .hero-text-col {
            padding-left: calc((100vw - 1350px) / 2);
            padding-right: 30px;
          
            display: flex;
            align-items: center;
        }
        
        .hero-image-col {
            padding: 0;
            position: relative;
            height: calc(100vh - 80px);
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            padding: 40px 0;
        }
        
        .hero-content h1 {
            font-size: 4rem;
            font-weight: 900;
            color: var(--primary-black);
            line-height: 1.1;
            margin-bottom: 2rem;
            letter-spacing: -0.02em;
        }

		@media (max-width: 1440px) {
				.hero-content h1 {
					font-size: 3rem;
					font-weight: 900;
					color: var(--primary-black);
					line-height: 1.1;
					margin-bottom: 2rem;
					letter-spacing: -0.02em;
					text-align: left;
				}
			}
					
        .hero-content .highlight {
            color: var(--accent-purple);
        }
        
        .hero-content p {
            font-size: 1.3rem;
            color: var(--accent-gray);
            margin-bottom: 3rem;
            font-weight: 400;
            line-height: 1.7;
        }
        
        .btn-custom {
            background: linear-gradient(135deg, var(--accent-purple), #b8469a);
            border: none;
            padding: 18px 45px;
            font-weight: 700;
            font-size: 16px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            border-radius: 12px;
            color: white;
            transition: all 0.4s ease;
            box-shadow: 0 8px 30px rgba(156, 54, 130, 0.25);
            position: relative;
            overflow: hidden;
        }
        
        .btn-custom::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-custom:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 40px rgba(156, 54, 130, 0.4);
            color: white;
        }
        
        .btn-custom:hover::before {
            left: 100%;
        }
        
        /* Swiper Styles */
        .hero-swiper {
            width: 100%;
            height: 100%;
            position: relative;
        }
        
        .hero-swiper .swiper-slide {
            width: 100%;
            height: 100%;
            overflow: hidden;
        }
        
        .hero-swiper .swiper-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
			object-position: center center;
            display: block;
        }
        
        .hero-swiper .swiper-pagination {
            bottom: 30px !important;
            left: 50%;
            transform: translateX(-50%);
            width: auto !important;
        }
        
        .hero-swiper .swiper-pagination-bullet {
            width: 12px;
            height: 12px;
            background: rgba(255, 255, 255, 0.5);
            opacity: 1;
            margin: 0 6px;
            border-radius: 50%;
            transition: all 0.3s ease;
        }
        
        .hero-swiper .swiper-pagination-bullet-active {
            background: var(--accent-purple);
            transform: scale(1.2);
            box-shadow: 0 0 10px rgba(156, 54, 130, 0.5);
        }
        
        .hero-swiper .swiper-button-next,
        .hero-swiper .swiper-button-prev {
            width: 50px;
            height: 50px;
            background: rgba(156, 54, 130, 0.9);
            border-radius: 50%;
            color: white;
            font-size: 18px;
            margin-top: -25px;
            transition: all 0.3s ease;
        }
        
        .hero-swiper .swiper-button-next:hover,
        .hero-swiper .swiper-button-prev:hover {
            background: var(--accent-purple);
            transform: scale(1.1);
        }
        
        .hero-swiper .swiper-button-next::after,
        .hero-swiper .swiper-button-prev::after {
            font-size: 16px;
            font-weight: bold;
        }
        
        .hero-swiper .swiper-button-next {
            right: 30px;
        }
        
        .hero-swiper .swiper-button-prev {
            left: 30px;
        }
        
        /* Stats Section */
        .stats-section {
            padding: 80px 0;
            background-color: var(--primary-white);
        }
        
        .stats-container {
            background: linear-gradient(135deg, var(--light-gray), var(--primary-white));
            border-radius: 25px;
            padding: 60px 40px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
        }
        
        .stat-item {
            text-align: center;
            padding: 20px;
        }
        
        .stat-number {
            font-size: 3.5rem;
            font-weight: 900;
            color: var(--accent-purple);
            display: block;
            line-height: 1;
            margin-bottom: 15px;
        }
        
        .stat-text {
            color: var(--accent-gray);
            font-size: 1.1rem;
            font-weight: 600;
        }
        
        /* Certificates Section */
        .certificates-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
        }
        
        .section-title {
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--primary-black);
            margin-bottom: 60px;
            text-align: center;
        }
        
        .certificate-card {
            background: var(--primary-white);
            border: 1px solid var(--medium-gray);
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            height: 100%;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }
        
        .certificate-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--accent-purple), #b8469a);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }
        
        .certificate-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
            border-color: var(--accent-purple);
        }
        
        .certificate-card:hover::before {
            transform: scaleX(1);
        }
        
        .certificate-icon {
            font-size: 3.5rem;
            color: var(--accent-purple);
            margin-bottom: 25px;
        }
        
        .certificate-card h5 {
            font-weight: 700;
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--primary-black);
        }
        
        .certificate-card p {
            color: var(--accent-gray);
            font-weight: 500;
        }
        
        /* Services Section */
        .services-section {
            padding: 100px 0;
            background-color: var(--primary-white);
        }
        
        .service-card {
            background: var(--primary-white);
            border: 1px solid var(--medium-gray);
            border-radius: 20px;
            padding: 50px 40px;
            text-align: center;
            height: 100%;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }
        
        .service-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(156, 54, 130, 0.02), rgba(156, 54, 130, 0.05));
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        
        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(156, 54, 130, 0.15);
            border-color: var(--accent-purple);
        }
        
        .service-card:hover::after {
            opacity: 1;
        }
        
        .service-icon {
            font-size: 4rem;
            color: var(--accent-purple);
            margin-bottom: 30px;
            position: relative;
            z-index: 2;
        }
        
        .service-card h4 {
            font-weight: 700;
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: var(--primary-black);
            position: relative;
            z-index: 2;
        }
        
        .service-card p {
            color: var(--accent-gray);
            font-weight: 500;
            font-size: 1rem;
            line-height: 1.7;
            position: relative;
            z-index: 2;
        }
        
        /* Footer */
        .footer {
            background: linear-gradient(135deg, var(--primary-black), #1a1a1a);
            color: var(--primary-white);
            padding: 80px 0 40px;
            position: relative;
        }
        
        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--accent-purple), #b8469a);
        }
        
        .footer h5 {
            color: var(--primary-white);
            margin-bottom: 25px;
            font-weight: 700;
            font-size: 1.2rem;
        }
        
        .footer p, .footer a {
            color: #b8b9ba;
            text-decoration: none;
            font-weight: 500;
            margin-bottom: 10px;
            transition: color 0.3s ease;
        }
        
        .footer a:hover {
            color: var(--accent-purple);
        }
        
        .footer .social-links a {
            display: inline-block;
            width: 45px;
            height: 45px;
            background: rgba(156, 54, 130, 0.1);
            border: 1px solid rgba(156, 54, 130, 0.3);
            border-radius: 12px;
            text-align: center;
            line-height: 43px;
            margin-right: 12px;
            transition: all 0.3s ease;
        }
        
        .footer .social-links a:hover {
			background: var(--accent-purple);
			border-color: var(--accent-purple);
			transform: translateY(-3px);
			color: var(--primary-white) !important; 
		}

		
		.footer .social-links a i {
			color: inherit; 
			transition: color 0.3s ease; 
		}
        
        /* Modal */
        .modal-content {
            background-color: var(--primary-white);
            border: none;
            border-radius: 20px;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
        }
        
        .modal-header {
            border-bottom: 1px solid var(--medium-gray);
            padding: 30px 30px 20px;
        }
        
        .modal-title {
            color: var(--primary-black);
            font-weight: 700;
            font-size: 1.5rem;
        }
        
        .modal-body {
            padding: 20px 30px 30px;
        }
        
        .form-control {
            background-color: var(--light-gray);
            border: 2px solid var(--medium-gray);
            color: var(--primary-black);
            padding: 15px 20px;
            border-radius: 12px;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .form-control:focus {
            background-color: var(--primary-white);
            border-color: var(--accent-purple);
            box-shadow: 0 0 0 0.2rem rgba(156, 54, 130, 0.15);
            color: var(--primary-black);
        }
        
        .form-control::placeholder {
            color: var(--accent-gray);
            font-weight: 500;
        }
        
        .form-label {
            color: var(--primary-black);
            font-weight: 600;
            margin-bottom: 10px;
        }
        
        .alert-success {
            background: linear-gradient(135deg, #d4edda, #c3e6cb);
            border: 1px solid #b8dacd;
            color: #155724;
            border-radius: 12px;
            font-weight: 600;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .navbar-brand img {
                max-width: 120px;
                max-height: 50px;
            }
            
            .navbar-nav .nav-link {
                margin: 0 10px;
            }
            
            .hero-section {
                min-height: auto;
                padding: 100px 0 60px;
            }
            
            .hero-section .row {
                min-height: auto;
                flex-direction: column;
            }
            
            .hero-text-col {
                padding-left: 0;
                padding-right: 0;
                background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
                order: 2;
            }
            
            .hero-content {
                margin-left: 15px;
                margin-right: 15px;
            }
            
            .hero-image-col {
                height: 60vh;
                order: 1;
            }
            
            .hero-content h1 {
                font-size: 2.2rem;
            }
            
            .hero-content p {
                font-size: 1.1rem;
				margin-right:15px;
            }
            
            .hero-swiper .swiper-button-next,
            .hero-swiper .swiper-button-prev {
                width: 40px;
                height: 40px;
                margin-top: -20px;
            }
            
            .hero-swiper .swiper-button-next::after,
            .hero-swiper .swiper-button-prev::after {
                font-size: 14px;
            }
            
            .hero-swiper .swiper-button-next {
                right: 15px;
            }
            
            .hero-swiper .swiper-button-prev {
                left: 15px;
            }
            
            .hero-swiper .swiper-pagination {
                bottom: 20px !important;
            }
            
            .stat-number {
                font-size: 2.8rem;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
            
            .btn-custom {
                padding: 15px 35px;
                font-size: 14px;
            }

			.phone-link-mobile {
					min-width: 40px;
					height: 40px;
					margin-right: 10px;
				}
				
				.phone-link-mobile i {
					font-size: 1.1rem;
				}
				
			
				.navbar .container {
					display: flex;
					align-items: center;
					justify-content: space-between;
				}


        }
        
        @media (max-width: 576px) {
            .hero-section {
                padding: 80px 0 40px;
            }
            
			.hero-image-col {
			 height: 50vh; 
			 min-height: 280px; 
				}
				
				
				.hero-text-col {
					margin-top: 20px;
				}
            
            .stats-container {
                padding: 40px 20px;
            }
            
            .certificate-card,
            .service-card {
                padding: 30px 25px;
            }
        }



	/* Call to Action Section */
		.cta-section {
			background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)), url('/theme/sky/img/cte.jpg');
			background-size: cover;
			background-position: center center;
			background-attachment: fixed;
			position: relative;
			padding: 120px 0;
			color: var(--primary-white);
			overflow: hidden;
		}

		.cta-overlay {
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			background: linear-gradient(135deg, rgba(156, 54, 130, 0.3), rgba(0, 0, 0, 0.5));
			z-index: 1;
		}

		.cta-content {
			position: relative;
			z-index: 2;
			text-align: center;
		}

		.cta-content h2 {
			font-size: 3.5rem;
			font-weight: 900;
			color: var(--primary-white);
			margin-bottom: 2rem;
			letter-spacing: -0.01em;
			text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
		}

		.cta-content p {
			font-size: 1.4rem;
			color: var(--primary-white);
			margin-bottom: 3rem;
			font-weight: 400;
			line-height: 1.7;
			text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
			opacity: 0.95;
		}

		.btn-custom-cta {
			background: linear-gradient(135deg, var(--accent-purple), #b8469a);
			border: none;
			padding: 20px 50px;
			font-weight: 700;
			font-size: 18px;
			text-transform: uppercase;
			letter-spacing: 1px;
			border-radius: 15px;
			color: white;
			transition: all 0.4s ease;
			box-shadow: 0 10px 35px rgba(156, 54, 130, 0.4);
			position: relative;
			overflow: hidden;
		}

		.btn-custom-cta::before {
			content: '';
			position: absolute;
			top: 0;
			left: -100%;
			width: 100%;
			height: 100%;
			background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
			transition: left 0.6s;
		}

		.btn-custom-cta:hover {
			transform: translateY(-3px);
			box-shadow: 0 15px 45px rgba(156, 54, 130, 0.6);
			color: white;
		}

		.btn-custom-cta:hover::before {
			left: 100%;
		}

		/* Responsive */
		@media (max-width: 768px) {
			.cta-section {
				padding: 80px 0;
				background-attachment: scroll;
			}
			
			.cta-content h2 {
				font-size: 2.5rem;
				margin-bottom: 1.5rem;
			}
			
			.cta-content p {
				font-size: 1.1rem;
				margin-bottom: 2.5rem;
			}
			
			.btn-custom-cta {
				padding: 16px 40px;
				font-size: 16px;
			}
		}

		@media (max-width: 576px) {
			.cta-section {
				padding: 60px 0;
			}
			
			.cta-content h2 {
				font-size: 2rem;
				line-height: 1.2;
			}
			
			.cta-content p {
				font-size: 1rem;
				margin-bottom: 2rem;
			}
			
			.btn-custom-cta {
				padding: 14px 35px;
				font-size: 15px;
				letter-spacing: 0.5px;
			}
		}

		
		/* Process Section */
.process-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.process-step {
    text-align: center;
    padding: 40px 20px;
    position: relative;
    height: 100%;
}

.step-number {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--accent-purple);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(156, 54, 130, 0.3);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-purple), #b8469a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(156, 54, 130, 0.2);
}

.step-icon i {
    font-size: 2.2rem;
    color: white;
}

.process-step:hover .step-icon {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(156, 54, 130, 0.4);
}

.process-step h4 {
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-black);
}

.process-step p {
    color: var(--accent-gray);
    font-weight: 500;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background-color: var(--primary-white);
}

.testimonials-swiper {
    padding-bottom: 60px;
}

.testimonials-swiper .swiper-slide {
    height: auto;
}

.testimonial-card {
    background: var(--primary-white);
    border: 1px solid var(--medium-gray);
    border-radius: 20px;
    padding: 35px 30px;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-purple), #b8469a);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-purple);
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

.testimonial-content {
    margin-bottom: 25px;
}

.stars {
    margin-bottom: 20px;
}

.stars i {
    color: #ffd700;
    font-size: 1.1rem;
    margin-right: 3px;
}

.testimonial-content p {
    color: var(--accent-gray);
    font-style: italic;
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--light-gray);
}

.author-info h5 {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--primary-black);
}

.author-info span {
    color: var(--accent-gray);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Testimonials Swiper Styles */
.testimonials-swiper .swiper-pagination {
    bottom: 20px !important;
}

.testimonials-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--accent-gray);
    opacity: 0.5;
    margin: 0 6px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.testimonials-swiper .swiper-pagination-bullet-active {
    background: var(--accent-purple);
    opacity: 1;
    transform: scale(1.2);
}

/* Responsive */
@media (max-width: 768px) {
    .process-section,
    .testimonials-section {
        padding: 80px 0;
    }
    
    .process-step {
        padding: 30px 15px;
        margin-bottom: 30px;
    }
    
    .step-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .step-icon i {
        font-size: 1.8rem;
    }
    
    .process-step h4 {
        font-size: 1.2rem;
    }
    
    .testimonial-card {
        padding: 25px 20px;
        margin-bottom: 20px;
    }
    
    .author-photo {
        width: 50px;
        height: 50px;
    }
    
    .testimonials-swiper {
        padding-bottom: 50px;
    }
}

@media (max-width: 576px) {
    .process-section,
    .testimonials-section {
        padding: 60px 0;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 12px;
        top: -5px;
        right: 15px;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .testimonials-swiper {
        padding-bottom: 40px;
    }
}



/* Projects Gallery Section */
.projects-gallery-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    overflow: hidden;
}

.marquee-container {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
    position: relative;
    height: 300px;
}

.marquee-track {
    display: flex;
    align-items: center;
    animation: marqueeMove 60s linear infinite;
    width: max-content;
    will-change: transform;
}

.marquee-track:hover {
    animation-play-state: paused;
}

@keyframes marqueeMove {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.project-item {
    position: relative;
    width: 400px;
    height: 250px;
    margin-right: 30px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.project-item:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.project-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.project-item:hover .project-overlay {
    opacity: 1;
}

.project-overlay i {
    font-size: 3rem;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Lightbox */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-modal.active {
    display: flex;
    opacity: 1;
}

.lightbox-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: lightboxZoom 0.3s ease;
}

@keyframes lightboxZoom {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 10px;
    transition: all 0.3s ease;
    z-index: 10;
}

.lightbox-close:hover {
    color: var(--accent-purple);
    transform: scale(1.1);
}

#lightboxImage {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    color: white;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 20px;
    padding: 0 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .projects-gallery-section {
        padding: 80px 0;
    }
    
    .marquee-container {
        height: 200px;
    }
    
    .project-item {
        width: 280px;
        height: 180px;
        margin-right: 20px;
    }
    
    .project-overlay i {
        font-size: 2rem;
    }
    
    .lightbox-content {
        max-width: 95vw;
        max-height: 95vh;
    }
    
    .lightbox-close {
        top: -40px;
        font-size: 1.5rem;
    }
    
    .lightbox-caption {
        font-size: 1rem;
        margin-top: 15px;
    }
    
    @keyframes marqueeMove {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-50%);
        }
    }
}

@media (max-width: 576px) {
    .marquee-container {
        height: 150px;
    }
    
    .project-item {
        width: 220px;
        height: 140px;
        margin-right: 15px;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
}











/* SEO Section */
.seo-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-top: 1px solid var(--medium-gray);
}

.seo-content {
    background: var(--primary-white);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--medium-gray);
}

.seo-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-black);
    margin-bottom: 25px;
    text-align: center;
    line-height: 1.3;
}

.seo-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--accent-gray);
    margin-bottom: 20px;
    font-weight: 400;
}

.seo-content strong {
    color: var(--primary-black);
    font-weight: 600;
}

.seo-content em {
    color: var(--accent-purple);
    font-style: normal;
    font-weight: 600;
}

.seo-highlights {
    margin: 35px 0;
    padding: 25px 0;
    border-top: 1px solid var(--medium-gray);
    border-bottom: 1px solid var(--medium-gray);
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: rgba(156, 54, 130, 0.05);
}

.highlight-item i {
    font-size: 1.8rem;
    color: var(--accent-purple);
    margin-top: 5px;
    flex-shrink: 0;
}

.highlight-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-black);
    margin-bottom: 8px;
}

.highlight-item p {
    font-size: 0.95rem;
    margin-bottom: 0;
    color: var(--accent-gray);
    line-height: 1.5;
}

.cta-inline {
    background: linear-gradient(135deg, rgba(156, 54, 130, 0.05), rgba(156, 54, 130, 0.02));
    padding: 20px 25px;
    border-radius: 12px;
    border: 1px solid rgba(156, 54, 130, 0.1);
    margin-top: 30px;
    text-align: center;
}

.cta-inline p {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--primary-black);
    margin-bottom: 0;
}

.inline-phone {
    color: var(--accent-purple);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.inline-phone:hover {
    color: var(--primary-black);
    border-bottom-color: var(--accent-purple);
}

/* Responsive */
@media (max-width: 768px) {
    .seo-section {
        padding: 60px 0;
    }
    
    .seo-content {
        padding: 35px 25px;
    }
    
    .seo-content h2 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    .seo-content p {
        font-size: 1rem;
    }
    
    .highlight-item {
        padding: 10px;
        margin-bottom: 15px;
    }
    
    .highlight-item i {
        font-size: 1.5rem;
    }
    
    .highlight-item h4 {
        font-size: 1.1rem;
    }
    
    .seo-highlights {
        margin: 25px 0;
        padding: 20px 0;
    }
    
    .cta-inline {
        padding: 18px 20px;
        margin-top: 25px;
    }
    
    .cta-inline p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .seo-content {
        padding: 25px 20px;
    }
    
    .seo-content h2 {
        font-size: 1.6rem;
        text-align: left;
    }
    
    .highlight-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .highlight-item i {
        align-self: center;
    }
}



/* Consultation Button Section */
.consultation-button-section {
    padding: 60px 0;
    background: var(--primary-white);
}


@media (max-width: 768px) {
    .consultation-button-section {
        padding: 40px 0;
    }
}

@media (max-width: 576px) {
    .consultation-button-section {
        padding: 30px 0;
    }
}














/* Floating Action Buttons */
        .floating-buttons {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 1000;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        /* Кнопка скрола вгору - видима на всіх пристроях */
        .scroll-top-btn {
            width: 55px;
            height: 55px;
            background: linear-gradient(135deg, var(--accent-purple), #b8469a);
            color: var(--primary-white);
            border: none;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 6px 20px rgba(156, 54, 130, 0.3);
            opacity: 0;
            transform: translateY(20px);
            pointer-events: none;
        }

        .scroll-top-btn.visible {
            opacity: 1;
            transform: translateY(0);
            pointer-events: all;
        }

        .scroll-top-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(156, 54, 130, 0.5);
            background: linear-gradient(135deg, #b8469a, var(--accent-purple));
        }

        .scroll-top-btn:active {
            transform: translateY(-1px);
            box-shadow: 0 4px 15px rgba(156, 54, 130, 0.6);
        }

        /* Кнопка телефону - видима тільки на мобільних */
        .phone-btn {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--accent-purple), #b8469a);
            color: var(--primary-white);
            border: none;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(156, 54, 130, 0.3);
            text-decoration: none;
            animation: phonePulse 2s ease-in-out infinite;
        }

        .phone-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(156, 54, 130, 0.5);
            background: linear-gradient(135deg, #b8469a, var(--accent-purple));
            color: var(--primary-white);
            text-decoration: none;
            animation: none;
        }

        .phone-btn:active {
            transform: translateY(-1px);
            box-shadow: 0 6px 20px rgba(156, 54, 130, 0.6);
        }

        /* Анімація пульсації для кнопки телефону */
        @keyframes phonePulse {
            0%, 100% {
                box-shadow: 0 8px 25px rgba(156, 54, 130, 0.3);
            }
            50% {
                box-shadow: 0 8px 25px rgba(156, 54, 130, 0.6), 0 0 0 10px rgba(156, 54, 130, 0.1);
            }
        }

        /* Адаптація для мобільних */
        @media (max-width: 768px) {
            .floating-buttons {
                bottom: 25px;
                right: 25px;
                gap: 12px;
            }

            .scroll-top-btn {
                width: 50px;
                height: 50px;
                font-size: 1.3rem;
            }

            .phone-btn {
                width: 55px;
                height: 55px;
                font-size: 1.4rem;
            }
        }

        @media (max-width: 576px) {
            .floating-buttons {
                bottom: 20px;
                right: 20px;
                gap: 10px;
            }

            .scroll-top-btn {
                width: 45px;
                height: 45px;
                font-size: 1.2rem;
            }

            .phone-btn {
                width: 50px;
                height: 50px;
                font-size: 1.3rem;
            }
        }

        /* Показувати кнопку телефону тільки на мобільних */
        @media (min-width: 992px) {
            .phone-btn {
                display: none;
            }
        }





