* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            overflow-x: hidden;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: #333;
        }

        .header {
            background: white;
            padding: 20px 40px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .header-content {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .logo-section {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .logo-box {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: bold;
            border-radius: 8px;
            line-height: 1;
        }

        .company-info h1 {
            font-size: 1.5rem;
            color: #2c3e50;
            margin-bottom: 2px;
        }

        .company-info p {
            font-size: 0.9rem;
            color: #7f8c8d;
        }

        .contact-header {
            display: flex;
            gap: 30px;
            flex-wrap: wrap;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .contact-item .icon {
            font-size: 1.5rem;
        }

        .contact-item strong {
            display: block;
            color: #2c3e50;
            font-size: 0.95rem;
        }

        .contact-item a {
            color: #2c3e50;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-item a:hover {
            color: #667eea;
        }

        .contact-item p {
            font-size: 0.85rem;
            color: #7f8c8d;
            margin-top: 2px;
        }

        .mobile-menu-btn {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 10px;
            justify-content: center;
            align-items: center;
            width: 40px;
            height: 40px;
        }

        .mobile-menu-btn span {
            width: 25px;
            height: 3px;
            background: #2c3e50;
            border-radius: 3px;
            transition: all 0.3s ease;
            display: block;
        }

        .mobile-menu-btn.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .mobile-menu-btn.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-btn.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }

        .hero {
            height: 91vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.3);
            z-index: 1;
        }

        .video-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: -1;
        }

        .video-background video {
            position: absolute;
            top: 50%;
            left: 50%;
            min-width: 100%;
            min-height: 100%;
            transform: translate(-50%, -50%);
            object-fit: cover;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4); 
            z-index: 0;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            animation: fadeInUp 1s ease-out;
        }

        .hero h1 {
            font-size: 4rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .hero p {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            opacity: 0;
            animation: fadeIn 1s ease-out 0.5s forwards;
        }

        .cta-button {
            padding: 15px 40px;
            font-size: 1.2rem;
            background: #ff6b6b;
            color: white;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            opacity: 0;
            animation: fadeIn 1s ease-out 1s forwards;
        }

        .cta-button:hover {
            background: #ff5252;
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(255, 107, 107, 0.4);
        }

        .about {
            padding: 100px 20px;
            background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
        }

        .about-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-content h2 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            color: #667eea;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .about-intro {
            font-size: 1.3rem;
            line-height: 1.8;
            color: #555;
            margin-bottom: 2rem;
        }

        .about-features {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin: 2rem 0;
        }

        .feature-item {
            text-align: center;
            padding: 20px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: transform 0.3s ease;
        }

        .feature-item:hover {
            transform: translateY(-5px);
        }

        .feature-number {
            font-size: 2.5rem;
            font-weight: bold;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 10px;
        }

        .feature-text h4 {
            font-size: 1rem;
            color: #2c3e50;
            margin-bottom: 5px;
        }

        .feature-text p {
            font-size: 0.85rem;
            color: #7f8c8d;
        }

        .about-description {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #666;
        }

        .about-image {
            position: relative;
            height: 500px;
        }

        .image-placeholder {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 20px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
        }

        .image-placeholder::before {
            content: '🏠';
            position: absolute;
            font-size: 15rem;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            opacity: 0.2;
        }

        .floating-badge {
            position: absolute;
            background: white;
            padding: 15px 20px;
            border-radius: 50px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            display: flex;
            align-items: center;
            gap: 10px;
            animation: floatBadge 3s ease-in-out infinite;
        }

        .badge-1 {
            top: 10%;
            right: 10px;
        }

        .badge-2 {
            bottom: 40%;
            left: 10px;
            animation-delay: 1s;
        }

        .badge-3 {
            bottom: 10%;
            right: 10px;
            animation-delay: 2s;
        }

        .badge-icon {
            font-size: 1.5rem;
        }

        .badge-text {
            font-weight: bold;
            color: #2c3e50;
            white-space: nowrap;
        }

        @keyframes floatBadge {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-10px);
            }
        }

        .why-choose {
            padding: 80px 20px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
        }

        .why-choose h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: white;
        }

        .why-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .why-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 40px;
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(30px);
            animation: slideUp 0.6s ease-out forwards;
        }

        .why-card:nth-child(1) {
            animation-delay: 0.2s;
        }

        .why-card:nth-child(2) {
            animation-delay: 0.4s;
        }

        .why-card:nth-child(3) {
            animation-delay: 0.6s;
        }

        .why-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.15);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
        }

        .why-icon {
            font-size: 3rem;
            margin-bottom: 20px;
        }

        .why-card h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: white;
        }

        .why-card p {
            font-size: 1rem;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.9);
        }

        .contact-form-section {
            padding: 80px 20px;
            background: white;
            text-align: center;
        }

        .contact-form-section h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: #667eea;
        }

        .form-subtitle {
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 3rem;
        }

        .contact-form {
            max-width: 700px;
            margin: 0 auto;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 20px;
        }

        .form-group {
            text-align: left;
        }

        .contact-form input,
        .contact-form select,
        .contact-form textarea {
            width: 100%;
            padding: 15px;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            font-size: 1rem;
            transition: all 0.3s ease;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        .contact-form input:focus,
        .contact-form select:focus,
        .contact-form textarea:focus {
            outline: none;
            border-color: #667eea;
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        }

        .submit-button {
            width: 100%;
            padding: 15px 40px;
            font-size: 1.2rem;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 10px;
        }

        .submit-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
        }

        .testimonials {
            padding: 80px 20px;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            overflow: hidden;
        }

        .testimonials h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: #667eea;
        }

        .testimonials-subtitle {
            text-align: center;
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 3rem;
        }

        .testimonials-carousel {
            position: relative;
            max-width: 900px;
            margin: 0 auto;
            padding: 0 60px;
        }

        .testimonials-container {
            position: relative;
            height: 350px;
        }

        .testimonial-card {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            opacity: 0;
            transform: translateX(100%);
            transition: all 0.5s ease;
        }

        .testimonial-card.active {
            opacity: 1;
            transform: translateX(0);
        }

        .testimonial-card.prev {
            opacity: 0;
            transform: translateX(-100%);
        }

        .stars {
            font-size: 1.5rem;
            margin-bottom: 20px;
        }

        .testimonial-text {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #555;
            margin-bottom: 25px;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
        }

        .testimonial-author strong {
            display: block;
            color: #2c3e50;
            font-size: 1.1rem;
        }

        .testimonial-author p {
            color: #7f8c8d;
            font-size: 0.9rem;
            margin-top: 3px;
        }

        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: white;
            border: none;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            font-size: 2rem;
            color: #667eea;
            cursor: pointer;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            z-index: 10;
        }

        .carousel-btn:hover {
            background: #667eea;
            color: white;
            transform: translateY(-50%) scale(1.1);
        }

        .prev-btn {
            left: 0;
        }

        .prev-btn p {
            margin-bottom: 5px;
        }

        .next-btn {
            right: 0;
        }

        .next-btn p {
            margin-bottom: 5px;
        }

        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ccc;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active {
            background: #667eea;
            width: 30px;
            border-radius: 6px;
        }

        .map-section {
            padding: 80px 20px;
            background: white;
            text-align: center;
        }

        .map-section h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: #667eea;
        }

        .map-subtitle {
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 3rem;
        }

        .map-container {
            max-width: 1200px;
            margin: 0 auto 3rem auto;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            border-radius: 15px;
            overflow: hidden;
        }

        .service-areas {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
            max-width: 800px;
            margin: 0 auto;
        }

        .area-item {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 12px 25px;
            border-radius: 25px;
            font-size: 1rem;
            font-weight: 500;
            transition: all 0.3s ease;
            cursor: default;
        }

        .area-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
        }

        .services {
            padding: 80px 20px;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
        }

        .services h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: #667eea;
        }

        .service-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .service-card {
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(30px);
            animation: slideUp 0.6s ease-out forwards;
        }

        .service-card:nth-child(1) {
            animation-delay: 0.2s;
        }

        .service-card:nth-child(2) {
            animation-delay: 0.4s;
        }

        .service-card:nth-child(3) {
            animation-delay: 0.6s;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
        }

        .service-icon img,
        .service-icon svg {
            width: 48px;           
            height: 48px;
            margin-bottom: 15px;
            display: block;
            object-fit: contain; 
        }

        .service-card h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: #667eea;
        }

        .service-card p {
            font-size: 1rem;
            line-height: 1.6;
            color: #666;
        }

        .footer {
            background: #2c3e50;
            color: white;
            text-align: center;
            padding: 40px 20px;
        }

        .footer p {
            margin-bottom: 10px;
        }

        .contact-info {
            margin-top: 20px;
        }

        .contact-info a {
            color: white;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-info a:hover {
            color: #667eea;
        }

        .floating-shapes {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 0;
        }

        .shape {
            position: absolute;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
        }

        .shape1 {
            width: 300px;
            height: 300px;
            top: 10%;
            left: 10%;
            animation: float 6s ease-in-out infinite;
        }

        .shape2 {
            width: 200px;
            height: 200px;
            top: 60%;
            right: 15%;
            animation: float 8s ease-in-out infinite;
        }

        .shape3 {
            width: 150px;
            height: 150px;
            bottom: 20%;
            left: 20%;
            animation: float 7s ease-in-out infinite;
        }
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            to {
                opacity: 1;
            }
        }

        @keyframes slideUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-30px) rotate(180deg);
            }
        }

        @media (max-width: 768px) {
            /* Прозорий хедер на мобільних */
    .header {
        background: transparent;
        box-shadow: none;
        position: absolute;
        width: 100%;
        padding: 15px 20px;
    }

    /* Білий текст логотипу з тінню */
    .company-info h1,
    .company-info p {
        color: white;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    }

    /* Показуємо гамбургер на мобільних */
    .mobile-menu-btn {
        display: flex;
        margin-left: auto;
    }

    /* Білі лінії гамбургера з тінню */
    .mobile-menu-btn span {
        background: white;
        box-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    }

    /* Hero секція на весь екран */
    .hero {
        height: 100vh;
        padding-top: 80px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    /* Меню при натисканні на гамбургер - відкривається з права */
    
    .contact-header {
        display: flex;
        position: fixed;
        top: 0;
        right: -100%;
        bottom: 0;
        width: 320px;
        background: white;
        flex-direction: column;
        gap: 20px;
        padding: 80px 25px 30px;
        box-shadow: -5px 0 25px rgba(0,0,0,0.3);
        z-index: 99;
        overflow-y: auto;
        transition: right 0.4s ease;
    }

    .contact-header.active {
        right: 0;
    }

    /* Оверлей затемнення фону */
    .contact-header::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.4s ease;
        z-index: -1;
    }

    .contact-header.active::before {
        opacity: 1;
        pointer-events: auto;
    }

    /* Кнопка закриття в меню */
    .contact-header::after {
        content: '';
        position: absolute;
        top: 20px;
        right: 25px;
        font-size: 1.8rem;
        color: #2c3e50;
        cursor: pointer;
        width: 35px;
        height: 35px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: all 0.3s ease;
    }

    .contact-header::after:hover {
        background: #f0f0f0;
    }

    /* Стилі для контактних елементів */
    .contact-header .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px 15px;
        background: #f8f9fa;
        border-radius: 12px;
        gap: 10px;
        transition: all 0.3s ease;
    }

    .contact-header .contact-item:hover {
        background: #e9ecef;
        transform: translateY(-2px);
    }

    .contact-header .contact-item .icon {
        font-size: 2rem;
        margin-bottom: 5px;
    }

    .contact-header .contact-item div {
        width: 100%;
    }
    .contact-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px;
}

/* Кожен елемент */
.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f8f8f8;
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

/* Іконки */
.contact-item .icon {
  font-size: 24px;
  flex-shrink: 0;
}

/* Текстова частина */
.contact-item strong {
  display: block;
  font-size: 15px;
  color: #222;
}

.contact-item p {
  font-size: 13px;
  color: #666;
  margin: 2px 0 0;
}

.contact-item a {
  text-decoration: none;
  color: #000;
}

    .contact-header .contact-item strong {
        font-size: 1rem;
        font-weight: 600;
        color: #2c3e50;
        display: block;
        margin-bottom: 3px;
    }

    .contact-header .contact-item a {
        color: #2c3e50;
        text-decoration: none;
        display: block;
        margin-bottom: 3px;
        transition: color 0.3s ease;
    }

    .contact-header .contact-item a:hover {
        color: #667eea;
    }

    .contact-header .contact-item p {
        font-size: 0.85rem;
        color: #7f8c8d;
        margin-top: 5px;
        display: block;
    }

    /* Анімація гамбургера при відкритті */
    .mobile-menu-btn.active {
        position: fixed;
        right: 20px;
        top: 15px;
        z-index: 100;
    }

    .mobile-menu-btn.active span {
        background: #2c3e50;
        box-shadow: none;
    }

    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .about-container {
        grid-template-columns: 1fr;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .about-image {
        height: 300px;
    }

    .floating-badge {
        padding: 10px 15px;
        font-size: 0.9rem;
    }

    .testimonials-carousel {
        padding: 0 50px;
    }

    .testimonial-card {
        padding: 30px 20px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .map-container iframe {
        height: 300px;
    }

    .service-areas {
        gap: 10px;
    }

    .area-item {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
        }