:root {
            --primary-black: #121212;
            --dark-black: #0a0a0a;
            --primary-green: #1a472a;
            --accent-green: #2e8b57;
            --light-green: #d4edda;
            --text-white: #f8f9fa;
            --text-gray: #ced4da;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: var(--primary-black);
            color: var(--text-white);
            line-height: 1.6;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Styles */
        header {
            background-color: var(--dark-black);
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        }
        
		a {
    color:  transparent;
    text-decoration: none; 
}

a:hover {
    color: #2e8b57; 
    text-decoration: underline; 
}
		
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
			gap: 3px; 
        }
		
		.logo-img {
    height: 50px; 
    width: auto;
}
        
        .logo h1 {
            font-size: 1.8rem;
            margin-left: 10px;
            color: var(--text-white);
        }
        
        .logo span {
            color: var(--accent-green);
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-menu li {
            margin-left: 25px;
        }
        
        .nav-menu a {
            color: var(--text-white);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
            position: relative;
        }
        
        .nav-menu a:hover {
            color: var(--accent-green);
        }
        
        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent-green);
            transition: width 0.3s;
        }
        
        .nav-menu a:hover::after {
            width: 100%;
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--text-white);
            font-size: 1.5rem;
            cursor: pointer;
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/background.jpg') no-repeat center center/cover;
            padding: 100px 0;
            text-align: center;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .hero h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: var(--text-white);
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: var(--text-gray);
        }
        
        .btn {
            display: inline-block;
            background-color: var(--primary-green);
            color: var(--text-white);
            padding: 12px 30px;
            border: none;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            transition: background-color 0.3s, transform 0.3s;
            cursor: pointer;
        }
        
        .btn:hover {
            background-color: var(--text-white);
            color: var(--primary-green);
            transform: translateY(-3px);
			text-decoration: none;
        }
        
        .services {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--dark-black) 0%, #1a472a 50%, #0d1f14 100%) center center / cover no-repeat;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            font-size: 2.2rem;
            color: var(--text-white);
            margin-bottom: 15px;
        }
        
        .section-title p {
            color: var(--text-gray);
            max-width: 700px;
            margin: 0 auto;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .service-card {
            background-color: var(--primary-black);
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }
        
        .service-icon {
            font-size: 3rem;
            color: var(--accent-green);
            margin-bottom: 20px;
        }
        
        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--text-white);
        }
        
        .service-card p {
            color: var(--text-gray);
            margin-bottom: 20px;
        }
        
        /* About Section */
        .about {
            padding: 80px 0;
        }
        
        .about-content {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 40px;
        }
        
        .about-text {
            flex: 1;
            min-width: 300px;
        }
        
        .about-text h2 {
            font-size: 2.2rem;
            margin-bottom: 20px;
            color: var(--text-white);
        }
        
        .about-text p {
            color: var(--text-gray);
            margin-bottom: 15px;
        }
        
        .about-image {
            flex: 1;
            min-width: 300px;
        }
        
        .about-image img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
        }
        
        .advantages {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--dark-black) 0%, #1a472a 50%, #0d1f14 100%) center center / cover no-repeat;
        }
        
        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .advantage-item {
            text-align: center;
            padding: 30px;
        }
        
        .advantage-icon {
            font-size: 2.5rem;
            color: var(--accent-green);
            margin-bottom: 20px;
        }
        
        .advantage-item h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--text-white);
        }
        
        .advantage-item p {
            color: var(--text-gray);
        }
        
        /* Contact Section */
        .contact {
            padding: 80px 0;
        }
        
        .contact-container {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
        }
        
        .contact-info {
            flex: 1;
            min-width: 300px;
        }
        
        .contact-info h2 {
            font-size: 2.2rem;
            margin-bottom: 20px;
            color: var(--text-white);
        }
        
        .contact-info p {
            color: var(--text-gray);
            margin-bottom: 30px;
        }
        
        .contact-details {
            margin-bottom: 30px;
        }
        
        .contact-detail {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .contact-icon {
            font-size: 1.5rem;
            color: var(--accent-green);
            margin-right: 15px;
        }
        
        .contact-detail span {
            color: var(--text-gray);
        }
        
        .contact-form {
            flex: 1;
            min-width: 300px;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 5px;
            color: var(--text-white);
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            background-color: var(--dark-black);
            border: 1px solid #333;
            border-radius: 5px;
            color: var(--text-white);
        }
        
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        
        /* Footer */
        footer {
            background-color: var(--dark-black);
            padding: 50px 0 20px;
            color: var(--text-gray);
        }
        
        .footer-container {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            margin-bottom: 30px;
        }
        
        .footer-col {
            flex: 1;
            min-width: 200px;
        }
        
        .footer-col h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: var(--text-white);
        }
        
        .footer-col ul {
            list-style: none;
        }
        
        .footer-col ul li {
            margin-bottom: 10px;
        }
        
        .footer-col ul li a {
            color: var(--text-gray);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-col ul li a:hover {
            color: var(--accent-green);
        }
        
        .social-links {
            display: flex;
            gap: 15px;
        }
        
        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: var(--primary-black);
            color: var(--text-white);
            border-radius: 50%;
            text-decoration: none;
            transition: background-color 0.3s, transform 0.3s;
        }
        
        .social-links a:hover {
            background-color: var(--accent-green);
            transform: translateY(-3px);
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #333;
        }
        
        /* Responsive Styles */
        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 80px;
                left: -100%;
                background-color: var(--dark-black);
                width: 100%;
                height: calc(100vh - 80px);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transition: left 0.3s;
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .nav-menu li {
                margin: 15px 0;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .hero h2 {
                font-size: 2rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
        }
	   /* Gallery Section */
        .gallery {
            padding: 5px 0;
			background: linear-gradient(135deg, var(--primary-black) 0%, #1a472a 50%, #000000 100%);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            font-size: 2.2rem;
            color: var(--text-white);
            margin-bottom: 15px;
        }
        
        .section-title p {
            color: var(--text-gray);
            max-width: 700px;
            margin: 0 auto;
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }
        
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            cursor: pointer;
            aspect-ratio: 4/3;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .gallery-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .gallery-item:hover img {
            transform: scale(1.05);
        }
        
        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
            padding: 20px;
            opacity: 0;
            transition: opacity 0.3s;
        }
        
        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }
        
        .gallery-title {
            color: var(--text-white);
            font-size: 1.1rem;
            margin-bottom: 5px;
        }
        
        .gallery-desc {
            color: var(--text-gray);
            font-size: 0.9rem;
        }
        
        .load-more-container {
            text-align: center;
            margin: 30px 0;
        }
        
        .load-more-btn {
            background-color: var(--primary-green);
            color: var(--text-white);
            border: none;
            padding: 12px 30px;
            border-radius: 5px;
            cursor: pointer;
            font-size: 1rem;
            transition: background-color 0.3s;
        }
        
        .load-more-btn:hover {
            background-color: var(--accent-green);
        }
        
        .load-more-btn:disabled {
            background-color: #cccccc;
            cursor: not-allowed;
        }
        
        .loading {
            display: none;
            text-align: center;
            padding: 20px;
            color: var(--text-gray);
        }
        
        /* Lightbox Modal */
        .lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            z-index: 1000;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.3s;
        }
        
        .lightbox.active {
            display: flex;
            opacity: 1;
        }
        
        .lightbox-content {
            position: relative;
            max-width: 90%;
            max-height: 90%;
        }
        
        .lightbox-img {
            max-width: 100%;
            max-height: 80vh;
            border-radius: 8px;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
        }
        
        .lightbox-caption {
            color: var(--text-white);
            text-align: center;
            margin-top: 15px;
            font-size: 1.2rem;
        }
        
        .lightbox-close {
            position: absolute;
            top: -40px;
            right: -10px;
            color: var(--text-white);
            font-size: 2.5rem;
            background: none;
            border: none;
            cursor: pointer;
            transition: color 0.3s;
        }
        
        .lightbox-close:hover {
            color: var(--accent-green);
        }
        
        .lightbox-nav {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            transform: translateY(-50%);
            padding: 0 20px;
        }
        
        .lightbox-button {
            background-color: rgba(0, 0, 0, 0.5);
            color: var(--text-white);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            font-size: 1.5rem;
            cursor: pointer;
            transition: background-color 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .lightbox-button:hover {
            background-color: var(--accent-green);
        }
		
		
        .lightbox-top-controls {
            position: absolute;
            top: 20px;
            right: 20px;
            display: flex;
            gap: 15px;
            z-index: 1001;
        }
        
        .lightbox-control-btn {
            background-color: rgba(0, 0, 0, 0.5);
            color: var(--text-white);
            border: none;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            font-size: 1.2rem;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(5px);
        }
        
        .lightbox-control-btn:hover {
            background-color: var(--accent-green);
            transform: scale(1.1);
        }
        
        /* Responsive Styles */
        @media (max-width: 768px) {
            .gallery-grid {
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            }
            
            .lightbox-button {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }
            
            .lightbox-close {
                top: -30px;
                right: 0;
                font-size: 2rem;
            }
            
            .lightbox-control-btn {
                width: 40px;
                height: 40px;
                font-size: 1.1rem;
            }
            
            .lightbox-top-controls {
                top: 15px;
                right: 15px;
                gap: 10px;
            }
        }
	/* Maintenance Section - Premium Version */
.maintenance {
    padding: 30px 0;
    background: 
        linear-gradient(135deg, var(--dark-black) 0%, #1a472a 50%, #0d1f14 100%)
        center center / cover no-repeat;
    position: relative;
    overflow: hidden;
}

.section-subtitle {
    display: inline-block;
    color: var(--accent-green);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding-left: 20px;
}

.section-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 10px;
    height: 2px;
    background: var(--accent-green);
    transform: translateY(-50%);
}

.text-gradient {
    background: linear-gradient(45deg, var(--accent-green), #4cd964);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.maintenance-content {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.maintenance-text {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.decoration-element {
    position: absolute;
    top: -20px;
    left: -30px;
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, var(--primary-green), transparent);
    border-radius: 50%;
    opacity: 0.3;
    filter: blur(20px);
    z-index: -1;
}

.maintenance-text h3 {
    font-size: 2.2rem;
    color: var(--text-white);
    margin-bottom: 25px;
    line-height: 1.3;
}

.maintenance-text p {
    color: var(--text-gray);
    margin-bottom: 40px;
    line-height: 1.8;
    font-size: 1.1rem;
}

.maintenance-features {
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    gap: 20px;
    padding: 20px;
    background: linear-gradient(145deg, rgba(0, 0, 0), rgba(18, 18, 18, 0.2));
    border-radius: 15px;
    border: 1px solid rgba(46, 139, 87, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(46, 139, 87, 0.1), transparent);
    transition: left 0.5s ease;
}

.feature-item:hover::before {
    left: 100%;
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: rgba(46, 139, 87, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.feature-icon-wrapper {
    position: relative;
    min-width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-green), var(--accent-green));
    border-radius: 50%;
    opacity: 0.1;
    transform: scale(1.1);
}

.feature-icon {
    font-size: 2rem;
    z-index: 2;
}

.feature-content h4 {
    color: var(--text-white);
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.feature-content p {
    color: var(--text-gray);
    margin-bottom: 0;
    font-size: 1rem;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-green), var(--accent-green));
    position: relative;
    overflow: hidden;
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-hover-effect {
    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 ease;
}

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(46, 139, 87, 0.4);
	color: #000;
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--accent-green);
    color: var(--accent-green);
    padding: 13px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--accent-green);
    color: var(--text-white);
    transform: translateY(-3px);
}

.maintenance-visual {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.maintenance-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.3s ease;
}

.maintenance-image:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.maintenance-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(26, 71, 42, 0.2), rgba(18, 18, 18, 0.4));
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.floating-element {
    position: absolute;
    font-size: 2rem;
    animation: float 3s ease-in-out infinite;
}

.element-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.element-2 {
    top: 60%;
    right: 15%;
    animation-delay: 1s;
}

.element-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 2s;
}

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

.maintenance-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.stat-item {
    background: linear-gradient(145deg, rgba(9, 9, 9), rgba(18, 18, 18, 0.25));
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(46, 139, 87, 0.1);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-green), var(--accent-green));
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

.stat-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 10px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--text-white);
}

.stat-symbol {
    font-size: 1.5rem;
    color: var(--accent-green);
    font-weight: bold;
}

.stat-text {
    display: block;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.maintenance-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.bg-element {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    filter: blur(50px);
}

.bg-1 {
    width: 300px;
    height: 300px;
    background: var(--accent-green);
    top: -150px;
    right: -100px;
}

.bg-2 {
    width: 200px;
    height: 200px;
    background: var(--primary-green);
    bottom: -100px;
    left: 10%;
}

.bg-3 {
    width: 150px;
    height: 150px;
    background: var(--light-green);
    top: 50%;
    right: 20%;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .maintenance-content {
        gap: 40px;
    }
    
    .maintenance-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .maintenance {
        padding: 80px 0;
    }
    
    .maintenance-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .maintenance-image {
        transform: none;
    }
    
    .maintenance-image:hover {
        transform: none;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .maintenance-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .decoration-element {
        display: none;
    }
}

@media (max-width: 480px) {
    .maintenance-text h3 {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        text-align: center;
    }
}	


.vag-electrician {
    padding: 30px 0;
    background: linear-gradient(135deg, var(--primary-black) 0%, #1a472a 50%, #000000 100%);
    position: relative;
    overflow: hidden;
}

.vag-electrician__content {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.vag-electrician__text {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.vag-electrician__visual {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.vag-electrician__image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    transform: perspective(1000px) rotateY(5deg);
    transition: transform 0.3s ease;
}

.vag-electrician__image:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.vag-electrician__image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.vag-electrician__image:hover img {
    transform: scale(1.05);
}

.vag-electrician__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(26, 47, 71, 0.2), rgba(18, 18, 18, 0.4));
}

.vag-electrician__floating {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.vag-electrician__float-element {
    position: absolute;
    font-size: 2rem;
    animation: vag-float 3s ease-in-out infinite;
}

.vag-electrician__float-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.vag-electrician__float-2 {
    top: 60%;
    right: 15%;
    animation-delay: 1s;
}

.vag-electrician__float-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 2s;
}

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

.vag-electrician__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.vag-electrician__stat-item {
    background: linear-gradient(145deg, #2e8b57, rgba(18, 18, 18));
    border: 1px solid rgba(65, 105, 225, 0.1);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.vag-electrician__stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, #1a472a, #121212);
}

.vag-electrician__stat-icon {
    color: #4169e1;
    font-size: 2rem;
    margin-bottom: 15px;
}

.vag-electrician__stat-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 10px;
}

.vag-electrician__stat-number {
    font-size: 2.2rem;
    font-weight: bold;
    color: var(--text-white);
}

.vag-electrician__stat-symbol {
    font-size: 1.4rem;
    color: #2e8b57;
    font-weight: bold;
}

.vag-electrician__stat-text {
    display: block;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.vag-electrician__brands {
    background: linear-gradient(145deg, #2e8b57, rgba(18, 18, 18, 0.25));
    padding: 25px;
    border-radius: 15px;
    border: 1px solid #2e8b57;
    margin-top: 30px;
}

.vag-electrician__brands h4 {
    color: var(--text-white);
    font-size: 1.2rem;
    margin-bottom: 20px;
    text-align: center;
}

.vag-electrician__brands-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.vag-electrician__brand-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: #0a0a0a;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.vag-electrician__brand-item:hover {
    transform: translateY(-2px);
    background: linear-gradient(145deg, #2e8b57, rgba(18, 18, 18));
}

.vag-electrician__brand-icon {
    font-size: 1.5rem;
    min-width: 30px;
}

.vag-electrician__brand-name {
    color: var(--text-white);
    font-weight: 500;
}

.vag-electrician__services {
    margin: 30px 0;
}

.vag-electrician__services h4 {
    color: var(--text-white);
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.vag-electrician__services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-bottom: 25px;
}

.vag-electrician__service-tag {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: linear-gradient(145deg, #2e8b57, rgba(18, 18, 18));
    border: 1px solid rgba(65, 105, 225, 0.1);
    border-radius: 10px;
    color: var(--text-white);
    font-weight: 500;
    transition: all 0.3s ease;
}

.vag-electrician__service-tag:hover {
    transform: translateY(-3px);
    border-color: rgba(65, 105, 225, 0.3);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.vag-electrician__service-icon {
    font-size: 1.3rem;
    min-width: 30px;
}

.vag-electrician__equipment {
    margin: 30px 0;
}

.vag-electrician__equipment h4 {
    color: var(--text-white);
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.vag-electrician__equipment-list {
    list-style: none;
    padding: 0;
}

.vag-electrician__equipment-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    color: #14ff7bf2;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.vag-electrician__equipment-item:last-child {
    border-bottom: none;
}

.vag-electrician__advantages {
    margin: 30px 0;
}

.vag-electrician__advantages h4 {
    color: var(--text-white);
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.vag-electrician__advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.vag-electrician__advantage-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: linear-gradient(145deg, rgba(26, 71, 42, 0.1), rgba(18, 18, 18, 0.2));
    border: 1px solid rgba(46, 139, 87, 0.1);
    border-radius: 10px;
    color: var(--text-white);
    font-weight: 500;
}

.vag-electrician__advantage-icon {
    color: var(--accent-green);
    font-size: 1.2rem;
}

.vag-electrician__hours {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(145deg, var(--accent-green), rgba(18, 18, 18));
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(46, 139, 87, 0.1);
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    transform: translateY(0);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.vag-electrician__hours:hover {
    transform: translateY(-8px);
    border-color: rgba(46, 139, 87, 0.4);
    box-shadow: 0 15px 35px rgba(46, 139, 87, 0.25);
    background: linear-gradient(165deg, var(--accent-green), rgba(18, 18, 18));
}

.vag-electrician__hours::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, 
        var(--primary-green), 
        var(--accent-green),
        var(--primary-green)
    );
    background-size: 100% 300%;
    animation: gradientFlow 4s ease-in-out infinite;
    transition: all 0.6s ease;
}

.vag-electrician__hours:hover::before {
    width: 4px;
    background: linear-gradient(to bottom, 
        #3da56a, 
        var(--accent-green),
        #3da56a
    );
}

@keyframes gradientFlow {
    0%, 100% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 0% 100%;
    }
}

.vag-electrician__hours::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.05),
        transparent,
        rgba(255, 255, 255, 0.03),
        transparent
    );
    transform: rotate(45deg);
    animation: shimmer 6s linear infinite;
    pointer-events: none;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

.vag-electrician__hours-icon {
    font-size: 2.5rem;
    min-width: 50px;
    text-align: center;
    transition: all 0.5s ease;
    position: relative;
    z-index: 2;
}

.vag-electrician__hours:hover .vag-electrician__hours-icon {
    transform: scale(1.1) rotate(5deg);
    color: var(--light-green);
}

.vag-electrician__hours-content {
    position: relative;
    z-index: 2;
    transition: all 0.5s ease;
}

.vag-electrician__hours:hover .vag-electrician__hours-content {
    transform: translateX(5px);
}

.vag-electrician__hours-time {
    transition: all 0.5s ease;
}

.vag-electrician__hours:hover .vag-electrician__hours-time {
    color: var(--light-green);
    text-shadow: 0 0 10px rgba(212, 237, 218, 0.3);
}

.vag-electrician__hours-content h4 {
    color: var(--text-white);
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.vag-electrician__hours-time {
    color: #000000;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.vag-electrician__hours-daily {
    color: var(--text-gray);
    font-size: 1rem;
    font-weight: normal;
}

.vag-electrician__hours-note {
    color: #0ff072;
    font-size: 0.9rem;
    margin-bottom: 0;
    opacity: 0.8;
}

.vag-electrician__cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.vag-electrician__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.vag-electrician__bg-element {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    filter: blur(50px);
}

.vag-electrician__bg-1 {
    width: 300px;
    height: 300px;
    background: #000;
    top: -150px;
    left: -100px;
}

.vag-electrician__bg-2 {
    width: 200px;
    height: 200px;
    background: #000000;
    bottom: -100px;
    right: 10%;
}

.vag-electrician__bg-3 {
    width: 150px;
    height: 150px;
    background: #000000;
    top: 50%;
    left: 20%;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .vag-electrician__content {
        gap: 40px;
    }
    
    .vag-electrician__stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .vag-electrician__brands-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .vag-electrician {
        padding: 80px 0;
    }
    
    .vag-electrician__content {
        flex-direction: column-reverse;
        gap: 40px;
    }
    
    .vag-electrician__image {
        transform: none;
    }
    
    .vag-electrician__stats {
        grid-template-columns: 1fr;
    }
    
    .vag-electrician__services-grid {
        grid-template-columns: 1fr;
    }
    
    .vag-electrician__advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .vag-electrician__hours {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .vag-electrician__cta {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .vag-electrician__text h3 {
        font-size: 1.8rem;
    }
    
    .vag-electrician__service-tag {
        padding: 12px;
    }
    
    .vag-electrician__brand-item {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .vag-electrician__hours-icon {
        font-size: 2rem;
    }
    
    .vag-electrician__hours-time {
        font-size: 1.1rem;
    }
}


/* Engine Repair Section */
.engine-repair {
	position: relative;
    padding: 30px 0;
    overflow: hidden;
    background: linear-gradient(135deg, var(--dark-black) 0%, #1a472a 50%, #0d1f14 100%) center center / cover no-repeat;
}


.engine-repair-main-image {
    margin: 40px 0;
    width: 100%;
}

.engine-repair-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    max-width: 100%;
}

.engine-repair-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.engine-repair-content {
    width: 100%;
}

.engine-repair-text h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.engine-repair-text > p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #6c757d;
    margin-bottom: 30px;
	background: #00000054;
	border: 2px solid #2e8b574d;
	padding-right: 15px; 
	padding-left: 15px; 
	border-radius: 15px;
}

.engine-repair-features {
    margin: 40px 0;
}

.engine-repair-features .feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    gap: 15px;
}

/* Для больших экранов - делаем контент на всю ширину */
@media (min-width: 992px) {
    .engine-repair-main-image {
        margin: 60px 0;
    }
    
    .engine-repair-image img {
        height: 500px;
    }
    
    .engine-repair-content {
        max-width: 1200px;
        margin: 0 auto;
    }
}

/* Остальные стили */
.engine-repair-features .feature-icon-wrapper {
    position: relative;
    flex-shrink: 0;
}

.engine-repair-features .feature-icon {
    font-size: 1.8rem;
    position: relative;
    z-index: 2;
}

.engine-repair-features .icon-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    border-radius: 50%;
    z-index: 1;
    opacity: 0.1;
}

.engine-repair-features .feature-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #2c3e50;
}

.engine-repair-features .feature-content p {
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.5;
    margin: 0;
}

.engine-repair-image .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0,123,255,0.1) 0%, rgba(0,86,179,0.05) 100%);
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.floating-element {
    position: absolute;
    font-size: 2rem;
    animation: float 3s ease-in-out infinite;
}

.floating-element.element-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element.element-2 {
    top: 60%;
    right: 15%;
    animation-delay: 1s;
}

.floating-element.element-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 2s;
}

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

/* Адаптивность */
@media (max-width: 991px) {
    .engine-repair {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .engine-repair-features .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .engine-repair-features .feature-icon-wrapper {
        margin-bottom: 15px;
    }
    
    .engine-repair-text h3 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .engine-repair-text h3 {
        font-size: 1.8rem;
    }
    
    .engine-repair-image img {
        height: 300px;
    }
    
    .floating-element {
        font-size: 1.5rem;
    }
}

/* Стили для кнопки записи */
.inginebtn-appointment {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    z-index: 20;
    overflow: hidden;
    background: linear-gradient(135deg, #2e8b57 0%, #030c07 100%);
    color: white;
    box-shadow: 0 4px 15px #3da56a;
    min-width: 200px;
}

.inginebtn-appointment:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px #2e8b57;
    color: white;
	text-decoration: none;
}

.inginebtn-appointment-hover {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, #2e8b57, transparent);
    transition: left 0.6s ease;
}

.inginebtn-appointment:hover .inginebtn-appointment-hover {
    left: 100%;
}

.inginebtn-appointment span {
    position: relative;
    z-index: 2;
}

/* Второстепенная кнопка */
.inginebtn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: transparent;
    color: #2e8b57;
    border: 2px solid #2e8b57;
    cursor: pointer;
    z-index: 20;
}

.inginebtn-secondary:hover {
    background: #2e8b57;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px #2e8b57;
	text-decoration: none;
}

/* Контейнер кнопок */
.inginebtn-buttons {
    position: relative;
    z-index: 15;
    display: flex;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

/* Адаптивность для кнопок */
@media (max-width: 768px) {
    .inginebtn-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .inginebtn-appointment,
    .inginebtn-secondary {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    .inginebtn-appointment {
        min-width: auto;
        padding: 14px 20px;
    }
}

/* Гарантируем, что кнопки будут кликабельны */
.inginebtn-appointment,
.inginebtn-secondary {
    pointer-events: auto !important;
}

/* Убираем возможные перекрытия */
.inginebtn-buttons * {
    pointer-events: auto;
}


/* Стили для кликабельного телефона */
.phone-link {
    color: #000000;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 2px 4px;
    border-radius: 4px;
}

.phone-link:hover {
    color: #000000;
    text-decoration: underline;
    background: #19bf61;
    transform: translateY(-1px);
}

.phone-link:active {
    color: #004085;
    transform: translateY(0);
}

/* Для мобильных устройств - увеличиваем область клика */
@media (max-width: 768px) {
    .phone-link {
        padding: 6px 8px;
        display: inline-block;
        margin: 2px 0;
    }
}


.working-hours .phone-link {
    color: #000000 !important; /* !important для принудительного применения */
    text-decoration: none;
    font-weight: 600;
}

.working-hours .phone-link:hover {
    color: #19bf61;
    text-decoration: underline;
}

.transmission-repair {
  position: relative;
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--dark-black) 0%, #1a472a 50%, #0d1f14 100%) center center / cover no-repeat;
  color: #fff;
  overflow: hidden;
}

.transmission-repair-title {
  text-align: center;
  margin-bottom: 50px;
}

.transmission-repair-subtitle {
  display: block;
  font-size: 16px;
  color: #2e8b57;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.transmission-repair-title h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.transmission-repair-title p {
  font-size: 18px;
  color: #cbd5e1;
}

/* Hero image */
.transmission-repair-hero {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 50px;
}

.transmission-repair-hero img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.transmission-repair-hero:hover img {
  transform: scale(1.05);
}

.transmission-repair-overlay {
  position: absolute;
  inset: 0;
  background: #1a472a26;
}

.transmission-repair-icons {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  gap: 15px;
  font-size: 28px;
}

.transmission-repair-icons span {
  animation: transmission-repair-float 3s ease-in-out infinite;
}

.transmission-repair-icons span:nth-child(2) {
  animation-delay: 0.5s;
}
.transmission-repair-icons span:nth-child(3) {
  animation-delay: 1s;
}

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

/* Контент */
.transmission-repair-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.transmission-repair-content h3 {
  font-size: 28px;
  margin-bottom: 20px;
}

.transmission-repair-content p {
  font-size: 18px;
  color: #e2e8f0;
  margin-bottom: 20px;
  line-height: 1.6;
}

.transmission-repair-gradient {
  background: linear-gradient(135deg, var(--dark-black) 0%, #1a472a 50%, #0d1f14 100%) center center / cover no-repeat;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Преимущества */
.transmission-repair-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin: 40px 0;
}

.transmission-repair-benefit-card {
  background: #000000;
  border-radius: 16px;
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.transmission-repair-benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.transmission-repair-icon {
  font-size: 32px;
  margin-bottom: 10px;
}

.transmission-repair-benefit-card h4 {
  font-size: 20px;
  margin-bottom: 8px;
}

/* График */
.transmission-repair-hours {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 30px 0;
  background: rgba(255,255,255,0.05);
  padding: 20px;
  border-radius: 12px;
}

.transmission-repair-hours-icon {
  font-size: 30px;
}

.transmission-repair-hours h4 {
  margin-bottom: 8px;
}

.transmission-repair-phone {
  color: #000000;
  font-weight: bold;
  text-decoration: none;
}

.transmission-repair-phone:hover {
  text-decoration: underline;
}



.transmission-repair-wrapper {
  max-width: 900px;   
  margin: 0 auto;     
}


.transmission-repair-hero {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 40px;
}

.transmission-repair-hero img {
  width: 100%;        
  height: auto;       
  border-radius: 20px;
  object-fit: cover;
  transition: transform 0.5s ease;
}


/* Основной контейнер */
.air-conditioning-service {
  position: relative;
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--dark-black) 0%, #1a472a 50%, #0d1f14 100%) center center / cover no-repeat;
  overflow: hidden;
}

.air-conditioning-service-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Заголовки */
.air-conditioning-service-title {
  text-align: center;
  margin-bottom: 50px;
}

.air-conditioning-service-subtitle {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  color: #2e8b57;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.air-conditioning-service-title h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}

.air-conditioning-service-title p {
  font-size: 18px;
  color: #555;
}

/* Обертка контента */
.air-conditioning-service-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

/* Картинка */
.air-conditioning-service-hero {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 40px;
}

.air-conditioning-service-hero img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.air-conditioning-service-hero img:hover {
  transform: scale(1.05);
}

.air-conditioning-service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.4), rgba(0,0,0,0));
  z-index: 1;
}

.air-conditioning-service-icons {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  gap: 15px;
  font-size: 26px;
  z-index: 2;
  color: #fff;
}

/* Текстовый контент */
.air-conditioning-service-content h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

.air-conditioning-service-gradient {
  background: linear-gradient(90deg, #19bf61, rgb(18 18 18));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.air-conditioning-service-content p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: rgb(213 209 209);
}

/* Преимущества */
.air-conditioning-service-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin: 40px 0;
}

.air-conditioning-service-benefit-card {
  background:rgb(18 18 18);
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.air-conditioning-service-benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.1);
}

.air-conditioning-service-icon {
  font-size: 32px;
  margin-bottom: 15px;
}

.air-conditioning-service-benefit-card h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #ffffff;
}

.air-conditioning-service-benefit-card p {
  font-size: 15px;
  color: #555;
}




/* Адаптивность */
@media (max-width: 768px) {
  .air-conditioning-service-title h2 {
    font-size: 28px;
  }

  .air-conditioning-service-content h3 {
    font-size: 24px;
  }

  .air-conditioning-service-benefits {
    grid-template-columns: 1fr;
  }
}

/* Общий стиль */
.body-repair {
  position: relative;
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--dark-black) 0%, #1a472a 50%, #0d1f14 100%) center center / cover no-repeat;
}

.body-repair-container {
  max-width: 1200px;
  margin: 0 auto;
}

.body-repair-title {
  text-align: center;
  margin-bottom: 40px;
}

.body-repair-subtitle {
  display: block;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #19bf61;
  margin-bottom: 10px;
}

.body-repair-title h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}

.body-repair-title p {
  font-size: 18px;
  color: #b5b5b5;
}

/* Основной блок */
.body-repair-wrapper {
  
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
}

/* Картинка */
.body-repair-hero {
  position: relative;
  flex: 1 1 45%;
}

.body-repair-hero img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.body-repair-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 16px;
  background: rgba(0,0,0,0.2);
}

.body-repair-icons {
  position: absolute;
  bottom: 15px;
  left: 15px;
  display: flex;
  gap: 10px;
  font-size: 22px;
}

/* Текст */
.body-repair-content {
  flex: 1 1 50%;
}

.body-repair-content h3 {
  font-size: 28px;
  margin-bottom: 20px;
}

.body-repair-gradient {
  background: linear-gradient(135deg, var(--dark-black) 0%, #1a472a 50%, #0d1f14 100%) center center / cover no-repeat;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.body-repair-content p {
  font-size: 16px;
  margin-bottom: 15px;
  color: #cfcece;
  line-height: 1.6;
}

/* Преимущества */
.body-repair-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 30px 0;
}

.body-repair-benefit-card {
  flex: 1 1 30%;
  background: #000000;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.body-repair-icon {
  font-size: 30px;
  margin-bottom: 10px;
}

/* График работы */
.body-repair-hours {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.body-repair-hours-icon {
  font-size: 28px;
  margin-right: 15px;
}

.body-repair-hours h4 {
  margin-bottom: 5px;
}

.body-repair-hours-time {
  font-weight: 600;
  margin-bottom: 5px;
}

.body-repair-hours-note a {
  color: #007bff;
  text-decoration: none;
}

.body-repair-hours-note a:hover {
  text-decoration: underline;
}

/* Адаптив */
@media (max-width: 992px) {
  .body-repair-wrapper {
    flex-direction: column;
  }
  .body-repair-hero, .body-repair-content {
    flex: 1 1 100%;
  }
}


.phone-link-vag {
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  color: #2e8b57;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  position: relative;
}


.phone-link-vag:hover {
  color: #fff;
}

.phone-link-vag:active {
  transform: scale(0.97);
  box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}


.phone-link2-vag {
  color: #2e8b57;
 
  
  transition: all 0.3s ease;
  
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  position: relative;
}


.phone-link2-vag:hover {
  color: #fff;
}

.phone-link2-vag:active {
  transform: scale(0.97);
  box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}


.wvwidget-container {
  position: fixed;
  left: 20px;
  bottom: 20px;
  width: 150px;
  cursor: pointer;
  z-index: 1000;
}
.wvwidget-screen {
  width: 150px;
  height: 80px;
  background: black;
  border: 2px solid #34495e;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}
.wvwidget-stand {
  width: 40px;
  height: 10px;
  background: #34495e;
  margin: 0 auto;
  border-radius: 2px;
}
.wvwidget-logo-screen {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: black;
  z-index: 2;
}
.wvwidget-logo-screen img {
  max-width: 80%;
  max-height: 80%;
}
.wvwidget-monitor-text {
  position: absolute;
  top: 30px;
  left: 10px;
  font-size: 14px;
  font-weight: bold;
  white-space: pre;
  z-index: 3;
  color: lime;
}

/* Мигающий ERROR */
.blink {
  animation: blink-animation 0.5s steps(1) infinite;
  color: red;
}
@keyframes blink-animation {
  50% { opacity: 0; }
}

.wvwidget-marquee-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  display: block; /* показывается только при заставке */
}
.wvwidget-marquee {
  display: inline-block;
  white-space: nowrap;
  position: absolute;
  right: -100%;
  font-size: 14px;
  font-weight: bold;
  top: 30px;
  animation: wvwidget-scrollLeft 8s linear infinite;
}
.wvwidget-marquee span.vag { color: white; }
.wvwidget-marquee span.dom { color: limegreen; }
@keyframes wvwidget-scrollLeft {
  0% { right: -100%; }
  100% { right: 100%; }
}

.wvwidget-popup {
  display: none;
  position: fixed;
  left: 180px;
  bottom: 20px;
  background: linear-gradient(145deg, var(--accent-green), rgba(18, 18, 18));
  border: 2px solid #ccc;
  border-radius: 10px;
  padding: 15px;
  width: 300px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  z-index: 1001;
}
.wvwidget-popup input[type="text"] {
  width: 100%;
  padding: 5px;
  margin-top: 5px;
}
.wvwidget-popup button {
  margin-top: 10px;
  padding: 5px 10px;
  cursor: pointer;
}
.wvwidget-close {
  position: absolute;
  top: -5px;
  right: 8px;
  font-weight: bold;
  cursor: pointer;
  font-size: 16px;
  color: #ff0000;
}

/* Мобильная версия */
@media (max-width: 768px) {
  .wvwidget-container {
    left: 10px;
    bottom: 10px;
    width: 120px;
    transform: scale(0.8);
    transform-origin: bottom left;
  }
  
  .wvwidget-screen {
    width: 120px;
    height: 64px;
    border-width: 1px;
  }
  
  .wvwidget-monitor-text {
    font-size: 11px;
    top: 24px;
    left: 8px;
  }
  
  .wvwidget-marquee {
    font-size: 11px;
    top: 24px;
    animation: wvwidget-scrollLeft 6s linear infinite;
  }
  
  .wvwidget-popup {
    left: 10px;
    right: 10px;
    bottom: 100px;
    width: auto;
    max-width: calc(100vw - 40px);
    padding: 12px;
  }
  
  .wvwidget-popup input[type="text"] {
    padding: 8px;
    font-size: 16px; /* Увеличиваем для удобства на мобильных */
  }
  
  .wvwidget-popup button {
    padding: 8px 16px;
    font-size: 14px;
  }
  
  .wvwidget-stand {
    width: 32px;
    height: 8px;
  }
}

/* Дополнительные стили для очень маленьких экранов */
@media (max-width: 480px) {
  .wvwidget-container {
    width: 100px;
    transform: scale(0.7);
  }
  
  .wvwidget-screen {
    width: 100px;
    height: 53px;
  }
  
  .wvwidget-monitor-text {
    font-size: 9px;
    top: 20px;
    left: 6px;
  }
  
  .wvwidget-marquee {
    font-size: 9px;
    top: 20px;
  }
  
  .wvwidget-popup {
    bottom: 90px;
    padding: 10px;
  }
}

/* Портретная ориентация */
@media (max-width: 768px) and (orientation: portrait) {
  .wvwidget-popup {
    bottom: 120px;
  }
}

/* Ландшафтная ориентация */
@media (max-width: 768px) and (orientation: landscape) {
  .wvwidget-popup {
    bottom: 70px;
    max-width: 300px;
  }
}

/* Фон страницы */
.code-error-widget {
  display: flex;
  justify-content: center;
  padding: 50px 0;
  font-family: 'Courier New', monospace !important;
  background: linear-gradient(135deg, var(--dark-black) 0%, #1a472a 50%, #0d1f14 100%) center center / cover no-repeat;
  color: #000 !important;
}

/* Чек */
.code-error-container {
  width: 50%; /* полстраницы */
  background: linear-gradient(180deg, #fff 0%, #f9f9f9 100%) !important;
  border: 2px dashed #999 !important;
  padding: 25px !important;
  box-shadow: 0 6px 15px rgba(0,0,0,0.2) !important;
  border-radius: 8px !important;
  color: #000 !important;
}

/* Заголовок */
.code-error-title {
  text-align: center !important;
  margin-bottom: 25px !important;
  font-size: 24px !important;
  color: #000 !important;
  border-bottom: 1px dashed #999 !important;
  padding-bottom: 8px !important;
}

/* Строки чека */
.code-error-item {
  display: flex !important;
  justify-content: space-between !important;
  margin: 10px 0 !important;
  color: #000 !important;
}

.code-error-label {
  font-weight: bold !important;
  color: #333 !important;
}

.code-error-value {
  text-align: right !important;
  color: #000 !important;
}

.code-error-number {
  font-weight: bold !important;
  color: #000 !important; /* черный цвет для номеров ошибок */
}

.code-error-value a {
  color: #4CAF50 !important;
  text-decoration: underline !important;
}

/* Подвал */
.code-error-footer {
  margin-top: 25px !important;
  text-align: center !important;
  font-size: 14px !important;
  color: #555 !important;
  border-top: 1px dashed #999 !important;
  padding-top: 5px !important;
}

/* Кнопка распечатки */
.code-error-print-btn {
  display: block !important;
  margin: 25px auto 0 !important;
  padding: 10px 20px !important;
  font-size: 16px !important;
  cursor: pointer !important;
  background: #4CAF50 !important;
  color: #fff !important;
  border: none !important;
  border-radius: 4px !important;
}

.code-error-print-btn:hover {
  background: #45a049 !important;
}

/* Мобильная версия */
@media (max-width: 768px) {
  .code-error-widget {
    padding: 20px 0 !important; /* Уменьшаем вертикальные отступы */
  }
  
  .code-error-container {
    width: 100% !important; /* Занимает всю ширину */
    margin: 0 !important; /* Убираем все отступы по бокам */
    padding: 20px 15px !important; /* Уменьшаем внутренние отступы */
    border-radius: 0 !important; /* Убираем скругления */
    border-left: none !important; /* Убираем границы по бокам */
    border-right: none !important;
    box-shadow: none !important; /* Убираем тень */
  }
  
  .code-error-title {
    font-size: 20px !important;
    margin-bottom: 20px !important;
    padding-bottom: 6px !important;
  }
  
  .code-error-item {
    margin: 8px 0 !important;
    flex-direction: column !important; /* Вертикальное расположение */
    gap: 5px !important;
  }
  
  .code-error-label,
  .code-error-value {
    text-align: left !important;
    width: 100% !important;
  }
  
  .code-error-footer {
    margin-top: 20px !important;
    font-size: 12px !important;
    padding-top: 4px !important;
  }
  
  .code-error-print-btn {
    margin: 20px auto 0 !important;
    padding: 12px 24px !important; /* Увеличиваем для удобства касания */
    font-size: 14px !important;
    width: 100% !important; /* Полная ширина на мобильных */
  }
}

/* Дополнительная адаптация для очень маленьких экранов */
@media (max-width: 480px) {
  .code-error-widget {
    padding: 15px 0 !important;
  }
  
  .code-error-container {
    padding: 15px 10px !important;
  }
  
  .code-error-title {
    font-size: 18px !important;
    margin-bottom: 15px !important;
  }
  
  .code-error-item {
    margin: 6px 0 !important;
    gap: 3px !important;
  }
  
  .code-error-footer {
    margin-top: 15px !important;
    font-size: 11px !important;
  }
  
  .code-error-print-btn {
    margin: 15px auto 0 !important;
    padding: 10px 20px !important;
  }
}

/* Портретная ориентация */
@media (max-width: 768px) and (orientation: portrait) {
  .code-error-container {
    padding: 20px 12px !important;
  }
}

/* Ландшафтная ориентация */
@media (max-width: 768px) and (orientation: landscape) {
  .code-error-container {
    padding: 15px 10px !important;
  }
  
  .code-error-item {
    flex-direction: row !important; /* Горизонтальное расположение в ландшафте */
    justify-content: space-between !important;
  }
  
  .code-error-label,
  .code-error-value {
    text-align: left !important;
    width: auto !important;
  }
  
  .code-error-value {
    text-align: right !important;
  }
}



.calculator {
    padding: 30px 0;
    background: linear-gradient(135deg, var(--primary-black) 0%, #1a472a 50%, #000000 100%);
    position: relative;
    overflow: hidden;
}

.calculator-container {
    background: #1a472a;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.calculator-form {
    margin-top: 20px;
}

.calculator-form-group {
    margin-bottom: 20px;
    padding: 15px;
    background: #1a472a;
    border-radius: 5px;
    border-left: 4px solid #19bf61;
	border: 1px solid #19bf61;
}

.calculator-checkbox-label {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    cursor: pointer;
    font-weight: bold;
    color: #000000;
}

.calculator-input-label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #000000;
}

.calculator-checkbox {
    margin-right: 15px;
    transform: scale(1.2);
}

.calculator-input {
    padding: 10px;
    width: 100%;
    max-width: 300px;
    border: 1px solid #19bf61;
    border-radius: 5px;
    margin-top: 5px;
}

.calculator-select {
    padding: 10px;
    width: 100%;
    max-width: 300px;
    border: 1px solid #19bf61;
    border-radius: 5px;
    background: #1a472a;
    cursor: pointer;
    margin-top: 5px;
}

.calculator-button {
    background: #19bf61;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s;
    margin-top: 20px;
}

.calculator-button:hover {
    background: #0052a3;
}

.calculator-button:disabled {
    background: #ccc;
    cursor: not-allowed;
    opacity: 0.7;
}

.calculator-system {
    display: none;
    margin-bottom: 20px;
    padding: 20px;
    background: #1a472a;
    border-radius: 8px;
    border: 1px solid #19bf61;
}

.calculator-result {
    margin-top: 30px;
    padding: 20px;
    background: #1a472a;
    border-radius: 8px;
    border-left: 5px solid #19bf61;
}

.calculator-result-item {
    margin-bottom: 10px;
    padding: 8px;
    background: #000000;
    border-radius: 4px;
    border-left: 3px solid #2e8b57;
}

.calculator-options {
    margin-top: 20px;
}

.calculator-options ul {
    list-style-type: none;
    padding: 0;
}

.calculator-options li {
    padding: 8px;
    background: #000000;
    margin-bottom: 5px;
    border-radius: 4px;
    border-left: 3px solid #19bf61;
}

/* Стили для ошибок */
.calculator-error {
    color: #dc3545;
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    padding: 15px;
    border-radius: 5px;
    margin-top: 20px;
    display: none;
}

/* Стили для индикатора загрузки */
.calculator-loading {
    text-align: center;
    padding: 20px;
    margin-top: 20px;
    display: none;
}

.calculator-loading-spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #19bf61;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: calculator-spin 1s linear infinite;
    margin: 0 auto 15px;
}

@keyframes calculator-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.long-coder {
    padding: 30px 0;
    background: linear-gradient(135deg, var(--primary-black) 0%, #1a472a 50%, #000000 100%);
    position: relative;
    overflow: hidden;
}

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

.long-coder-header {
    text-align: center;
    margin-bottom: 30px;
    color: white;
}

.long-coder-title {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.long-coder-subtitle {
    font-size: 1.2em;
    opacity: 0.9;
}

.long-coder-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    background: #000000;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.long-coder-input {
    border-right: 2px solid #eee;
    padding-right: 30px;
}

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

.long-coder-label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
}

.long-coder-select,
.long-coder-input-field {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    margin-bottom: 10px;
}

.long-coder-select:focus,
.long-coder-input-field:focus {
    outline: none;
    border-color: #667eea;
}

.long-coder-btn {
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
    margin-right: 10px;
    margin-bottom: 10px;
}

.long-coder-btn-primary {
    background: #667eea;
    color: white;
}

.long-coder-btn-primary:hover {
    background: #5a67d8;
}

.long-coder-btn-secondary {
    background: #718096;
    color: white;
}

.long-coder-btn-secondary:hover {
    background: #4a5568;
}

.long-coder-btn-example {
    background: #48bb78;
    color: white;
}

.long-coder-btn-example:hover {
    background: #38a169;
}

.long-coder-btn-export {
    background: #48bb78;
    color: white;
}

.long-coder-btn-export:hover {
    background: #38a169;
}

.long-coder-btn-copy {
    background: #48bb78;
    color: white;
}

.long-coder-btn-copy:hover {
    background: #19bf61;
}

.long-coder-examples {
    margin-top: 30px;
}

.long-coder-examples-title {
    margin-bottom: 15px;
    color: #555;
}

.long-coder-examples-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.long-coder-results {
    padding-left: 20px;
}

.long-coder-loading {
    text-align: center;
    padding: 40px;
    display: none;
}

.long-coder-spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #667eea;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: long-coder-spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes long-coder-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.long-coder-loading-text {
    color: #666;
}

.long-coder-error {
    background: #fed7d7;
    color: #c53030;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid #c53030;
    display: none;
}

.long-coder-results-content {
    display: none;
}

.long-coder-result-header {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #eee;
}

.long-coder-result-title {
    color: #2e8b57;
    margin-bottom: 15px;
}

.long-coder-coding-string {
    background: #2e8b57;
    padding: 10px;
    border-radius: 6px;
    font-family: monospace;
}

.long-coder-byte-results {
    margin-bottom: 20px;
}

.long-coder-byte-result {
    background: #f7fafc;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    border-left: 4px solid #667eea;
}

.long-coder-byte-header {
    font-weight: bold;
    margin-bottom: 10px;
    color: #2d3748;
    font-size: 1.1em;
}

.long-coder-bit-row {
    display: flex;
    align-items: center;
    padding: 8px;
    margin-bottom: 5px;
    border-radius: 4px;
    background: white;
}

.long-coder-bit-row:nth-child(even) {
    background: #edf2f7;
}

.long-coder-bit-row-active {
    background: #c6f6d5;
}

.long-coder-bit-index {
    font-weight: bold;
    width: 40px;
    color: #4a5568;
}

.long-coder-bit-value {
    width: 40px;
    text-align: center;
    font-weight: bold;
}

.long-coder-bit-value-one {
    color: #38a169;
}

.long-coder-bit-value-zero {
    color: #e53e3e;
}

.long-coder-bit-description {
    flex: 1;
    padding: 0 10px;
}

.long-coder-bit-status {
    width: 80px;
    text-align: right;
    font-weight: bold;
}

.long-coder-bit-status-active {
    color: #38a169;
}

.long-coder-bit-status-inactive {
    color: #e53e3e;
}

.long-coder-actions {
    margin-top: 20px;
    text-align: center;
}

.long-coder-footer {
    text-align: center;
    margin-top: 30px;
    color: white;
    opacity: 0.8;
}

.long-coder-footer-text {
    font-size: 0.9em;
}

@media (max-width: 768px) {
    .long-coder-main {
        grid-template-columns: 1fr;
    }
    
    .long-coder-input {
        border-right: none;
        border-bottom: 2px solid #eee;
        padding-right: 0;
        padding-bottom: 30px;
        margin-bottom: 30px;
    }
    
    .long-coder-results {
        padding-left: 0;
    }
    
    .long-coder-examples-buttons {
        flex-direction: column;
    }
    
    .long-coder-bit-row {
        flex-wrap: wrap;
    }
    
}


.pin-code-generator-radios-vag{
	    padding: 30px 0;
    background: linear-gradient(135deg, var(--primary-black) 0%, #1a472a 50%, #000000 100%);
    position: relative;
    overflow: hidden;
}
    .pin-code-generator-radios {
            font-family: Arial, sans-serif;
            max-width: 600px;
            margin: 50px auto;
            padding: 20px;
            background: linear-gradient(135deg, var(--primary-black) 0%, #1a472a 50%, #000000 100%);
			    border-radius: 10px;
        }
        
        .pin-code-generator-radios__container {
            background: #1a472a;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0,0,0,0.1);
        }
        
        .pin-code-generator-radios__title {
            color: #ffffff;
            text-align: center;
            margin-bottom: 30px;
        }
        
        .pin-code-generator-radios__form-group {
            margin-bottom: 20px;
        }
        
        .pin-code-generator-radios__label {
            display: block;
            margin-bottom: 5px;
            font-weight: bold;
            color: #19bf61;
        }
        
        .pin-code-generator-radios__input {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 16px;
            box-sizing: border-box;
        }
        
        .pin-code-generator-radios__input:focus {
            outline: none;
            border-color: #007bff;
            box-shadow: 0 0 5px rgba(0,123,255,0.3);
        }
        
        .pin-code-generator-radios__button {
            background: #002f1557;
            color: #000000;
            padding: 12px 20px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 16px;
            width: 100%;
            transition: background 0.3s;
        }
        
        .pin-code-generator-radios__button:hover {
            background: #19bf61;
        }
        
        .pin-code-generator-radios__button--disabled {
            background: #6c757d;
            cursor: not-allowed;
        }
        
        .pin-code-generator-radios__loading {
            text-align: center;
            color: #007bff;
            display: none;
            margin-top: 10px;
            padding: 10px;
        }
        
        .pin-code-generator-radios__result {
            margin-top: 20px;
            padding: 15px;
            border-radius: 5px;
            text-align: center;
            display: none;
        }
        
        .pin-code-generator-radios__result--success {
            background: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
        }
        
        .pin-code-generator-radios__result--error {
            background: #f8d7da;
            color: #721c24;
            border: 1px solid #f5c6cb;
        }
        
        .pin-code-generator-radios__note {
            margin-top: 20px;
            font-size: 14px;
            color: #ffffff;
            padding: 15px;
            background: #000000;
            border-radius: 5px;
        }
        
        .pin-code-generator-radios__note-title {
            font-weight: bold;
            margin-bottom: 5px;
            color: #ed0000;
        }      
.rating {
	display: block;
    margin-left: auto;
    margin-right: auto;
	width: 220px;
    height: 60px;
}

.gallery-info {
            position: relative;
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--dark-black) 0%, #1a472a 50%, #0d1f14 100%) center center / cover no-repeat;
	display: flex;
            justify-content: center;
            align-items: center;
        }

.gallery-info-container {
            max-width: 1000px;
            width: 100%;
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            display: flex;
            flex-direction: column;
        }
        
        .gallery-info-header {
            padding: 25px 30px;
            background: #2e8b57;
            color: white;
        }
        
        .gallery-info-title {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 5px;
        }
        
        .gallery-info-meta {
            display: flex;
            gap: 20px;
            font-size: 14px;
            opacity: 0.9;
        }
        
        .gallery-info-content {
            display: flex;
            flex-direction: column;
            padding: 30px;
        }
        
        .gallery-info-image-container {
            width: 100%;
            margin: 20px 0;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .gallery-info-image {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.3s ease;
        }
        
        .gallery-info-image:hover {
            transform: scale(1.02);
        }
        
        .gallery-info-description {
            line-height: 1.6;
            color: #333;
            font-size: 16px;
            margin: 15px 0;
            padding: 20px;
            background: #f9f9f9;
            border-radius: 10px;
            border-left: 4px solid #2e8b57;
        }
        
        .gallery-info-details {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-top: 20px;
        }
        
        .gallery-info-detail-card {
            background: #000000;
            padding: 15px;
            border-radius: 8px;
            border-left: 3px solid #2e8b57;
        }
        
        .gallery-info-detail-title {
            font-weight: 600;
            margin-bottom: 8px;
            color: #38a169;
        }
        
        .gallery-info-footer {
            padding: 20px 30px;
            background: #f8f9fa;
            border-top: 1px solid #eee;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .gallery-info-button {
            padding: 10px 20px;
            background: #2e8b57;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 600;
            transition: background 0.3s;
        }
        
        .gallery-info-button:hover {
            background: white;
			 color: #38a169;
			 text-decoration: none;
        }
        
        .gallery-info-tags {
            display: flex;
            gap: 10px;
        }
        
        .gallery-info-tag {
            padding: 5px 12px;
            background: #e8f4fc;
            color: #2e8b57;
            border-radius: 20px;
            font-size: 14px;
        }
        
        @media (max-width: 768px) {
            .gallery-info-details {
                grid-template-columns: 1fr;
            }
            
            .gallery-info-footer {
                flex-direction: column;
                gap: 15px;
                align-items: flex-start;
            }
        }
		
		
	.error-content {
            
        }	
		
  .error-error-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 40px 20px;
            text-align: center;
        }

        .error-error-code {
            font-size: 120px;
            font-weight: bold;
            color: #fff;
            text-shadow: 0 0 30px rgba(26, 71, 42, 0.8);
            margin-bottom: 20px;
        }

        .error-error-message {
            font-size: 24px;
            margin-bottom: 30px;
            color: #e0e0e0;
        }

       
        @media (max-width: 768px) {
            .error-error-code {
                font-size: 80px;
            }
            
            .error-error-message {
                font-size: 18px;
            }
            
            
        }


