* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    color: #333;
    overflow-x: hidden;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 40px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(255, 255, 255, 0);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.burger-menu {
    display: flex !important; 
    align-items: center;
    position: relative;
    z-index: 1001;
}

.burger-icon {
    width: 30px;
    height: 24px;
    display: flex !important; 
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    padding: 5px;
}

.burger-icon span {
    display: block !important; 
    width: 100%;
    height: 3px;
    background-color: #000000 !important; 
    border-radius: 2px;
    transition: all 0.3s ease;
}

.burger-icon.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.burger-icon.active span:nth-child(2) {
    opacity: 0;
}

.burger-icon.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 300px;
    height: 100vh;
    background-color: white;
    box-shadow: 2px 0 15px rgba(0, 0, 0, 0.1);
    padding: 100px 30px 30px;
    transition: left 0.3s ease;
    z-index: 999;
    overflow-y: auto;
}

.mobile-nav.active {
    left: 0;
}

.mobile-nav a {
    display: block;
    color: #2c3e50;
    text-decoration: none;
    font-size: 1.2rem;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    transition: color 0.3s;
    background-color: transparent !important;
    border-radius: 0 !important;
    margin-bottom: 10px;
}

.mobile-nav a:hover {
    color: #000000;
}

.mobile-phone {
    margin-top: 30px;
    padding: 15px;
    background-color: #000000;
    color: white;
    border-radius: 50px;
    text-align: center;
    font-weight: 500;
    font-size: 1.1rem;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%) !important;
    height: 100px;
}

.logo img {
    height: 100%;
    width: auto;
    max-width: 150px;
}

.phone {
    background-color: #0000000a;
    color: #000000;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 500;
}

header > nav {
    display: none;
}

.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-start; 
    color: rgb(25, 25, 25);
    padding: 80px 5% 0 5%; 
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.hero:hover .hero-image img {
    transform: scale(1.1) rotate(0.5deg);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    margin: 0;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.3s;
}

.hero-content h1 {
    font-size: 5.5rem;
    font-weight: 500;
    margin-bottom: 10px;
    line-height: 1.1;
    letter-spacing: 1px;
    text-align: left;
    position: relative;
    padding-left: 0;
    margin-left: 0;
    max-width: 1000px;
    padding-left: calc(5% + 60px); 
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h1 {
    animation: textReveal 1.2s ease forwards;
    animation-delay: 0.5s;
    opacity: 0;
}

@keyframes textReveal {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 4.5rem;
        padding-left: calc(5% + 40px);
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 100px 20px 50px;
        justify-content: center;
        text-align: center;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 3rem;
        text-align: center;
        padding-left: 0;
        transform: none !important;
        animation: mobileTextReveal 1s ease forwards;
        animation-delay: 0.3s;
    }
    
    @keyframes mobileTextReveal {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }
}

.floating-element {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 2rem;
    transition: all 0.5s ease;
    animation: float 3s ease-in-out infinite;
    cursor: pointer;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.floating-element:hover {
    transform: scale(1.2) rotate(10deg);
    box-shadow: 0 0 20px #000000;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

#services {
    padding: 100px 5%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.services-container {
    position: relative;
    height: 600px; 
    overflow: hidden;
}

.service-block {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none; 
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.service-block.active {
    display: flex; 
    opacity: 1;
    transform: translateY(0);
}

.service-content h2,
.service-content h3,
.service-content p,
.btn-details {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.service-block.active .service-content h2 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s;
}

.service-block.active .service-content h3 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.service-block.active .service-content p {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

.service-block.active .btn-details {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

.oval-btn {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.service-block.active .oval-btn:nth-child(1) { transition-delay: 0.5s; opacity: 1; transform: translateY(0); }
.service-block.active .oval-btn:nth-child(2) { transition-delay: 0.6s; opacity: 1; transform: translateY(0); }
.service-block.active .oval-btn:nth-child(3) { transition-delay: 0.7s; opacity: 1; transform: translateY(0); }
.service-block.active .oval-btn:nth-child(4) { transition-delay: 0.8s; opacity: 1; transform: translateY(0); }
.service-block.active .oval-btn:nth-child(5) { transition-delay: 0.9s; opacity: 1; transform: translateY(0); }

.service-indicators {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: -140px;
    position: relative;
    z-index: 100;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s;
}

.indicator.active {
    background: #000000;
    transform: scale(1.3);
}

.indicator:hover {
    background: #000000;
    transform: scale(1.2);
}
.service-block {
    display: none; 
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    min-height: 400px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(219, 52, 205, 0.1);
    transition: all 0.6s ease;
    opacity: 0;
    transform: translateY(30px);
}

.service-block.active {
    display: flex; 
    opacity: 1;
    transform: translateY(0);
}


.service-content {
    flex: 1;
    max-width: 600px;
}

.service-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 600;
    line-height: 1.2;
}

.service-content h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: #333;
    font-weight: 500;
}

.price {
    color: #595959 !important;
    font-size: 1.3rem;
    font-weight: 600;
    margin-left: 10px;
}

.service-content p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

.btn-details {
    background: linear-gradient(135deg, #000000, #1f1f1f);
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-details:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, #191919, #000000);
}

.service-buttons {
    flex: 1;
    max-width: 400px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
}

.oval-btn {
    background: rgba(255, 255, 255, 0.16);
    border: 2px solid #31313191;
    color: #000000;
    padding: 10px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    white-space: nowrap;
}

.oval-btn:hover {
    background: #000000;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.service-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: -140px;
    padding-top: 10px;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e0e0e0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #00000044;
    transform: scale(1.4);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.indicator:hover {
    background: #00000044;
    transform: scale(1.2);
}

@media (max-width: 1024px) {
    .service-block {
        flex-direction: column;
        gap: 40px;
        padding: 30px;
    }
    
    .service-content,
    .service-buttons {
        max-width: 100%;
        width: 100%;
    }
    
    .service-content h2 {
        font-size: 2rem;
    }
    
    .service-content h3 {
        font-size: 1.4rem;
    }
    
    .service-buttons {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .service-block {
        padding: 25px;
        min-height: 300px;
    }
    
    .service-content h2 {
        font-size: 1.7rem;
    }
    
    .service-content h3 {
        font-size: 1.3rem;
    }
    
    .service-content p {
        font-size: 1rem;
    }
    
    .btn-details {
        padding: 32px 24px;
        font-size: 1rem;
    }
    
    .oval-btn {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .service-block {
        padding: 20px;
        gap: 30px;
    }
    
    .service-buttons {
        grid-template-columns: 1fr;
    }
    
    .oval-btn {
        padding: 10px;
    }
}

.advantages {
    padding: 100px 5%;
    background: #f8f9fa;
    text-align: center;
}

.advantages h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #2c3e50;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.advantage-item {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    font-size: 1.1rem;
    transition: transform 0.3s;
}

.advantage-item:hover {
    transform: translateY(-5px);
}

.projects {
    padding: 100px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.project-large {
    display: flex;
    gap: 140px;
    margin-bottom: 60px;
    align-items: center;
}

.project-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    flex: 1;
}

.project-image img {
    width: 100%;
    object-fit: cover;
    transition: all 0.3s;
    display: block;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.project-image:hover .project-overlay {
    opacity: 1;
}

.project-image:hover img {
    transform: scale(1.05);
}

.btn-go {
    background: #3498db00;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition:  0.3s;
}

.btn-go:hover {
    background: #3c729600;
}

.project-info {
    flex: 1;
}

.project-info h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.project-info p {
    color: #555;
    font-size: 1.1rem;
}

.project-small-container {
    display: flex;
    gap: 40px;
}

.project-small {
    flex: 1;
}

.project-small .project-image img {
    height: 250px;
}

.slider-section {
    padding: 100px 5%;
    background: #f8f9fa;
    margin-top: -140px; 
    padding-top: 60px; 
}

.slider-block {
    display: flex;
    gap: 50px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 80px;
}

.slider-block.reverse {
    flex-direction: row-reverse;
}

.slider-text {
    flex: 1;
}

.slider-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.slider-text p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.7;
}

.slider-container {
    flex: 1;
    position: relative;
}

.slider {
    position: relative;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: 10px;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.slider-block.reverse .slide img:hover {
    transform: scale(1.05);
}

.slider-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.slider-prev, .slider-next {
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: auto;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition:  0.3s;
}

.slider-prev:hover, .slider-next:hover {
    background: white;
}

.consultation {
    padding: 100px 5%;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.consultation h1 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #2d2d2d;
}

.consultation-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
}

.form-group input, .form-group textarea {
    flex: 1;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.phone-group {
    display: flex;
    gap: 10px;
}

.country-select {
    flex: 0 0 120px;
}

.country-select select {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.phone-input {
    flex: 1;
}

.btn-consultation {
    background: #d67bd400;
    color: rgb(0, 0, 0);
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition:  0.3s;
    margin-top: 20px;
}

.btn-consultation:hover {
    background: #ffffff;
    border-radius: 50px 50px 50px 50px;
}

.logofoot{
    transform: translateY(-7px);
}

footer {
    background: #f9f9f900;
    color: rgb(59, 59, 59);
    padding: 50px 5% 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 30px;
}

.footer-section {
    flex: 1;
    margin-right: 40px;
}

.footer-section h3, .footer-section h4 {
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 30px;
}

.footer-section a {
    color: #282828;
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .burger-menu {
        display: block;
    }
    
    .phone {
        display: none; 
    }
    
    .logo {
        position: static;
        transform: translateX(0) !important;
        order: 2;
        text-align: center;
        margin: 0 auto;
    }
    
    header {
        justify-content: space-between;
        padding: 15px 20px !important;
    }
    
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 100px 20px 50px;
        text-align: center;
    }
    
    .hero-content {
        width: 100% !important;
        text-align: center !important;
    }
    
    .hero-content h1 {
        font-size: 2.8rem !important;
        transform: translateX(0) !important;
        text-align: center !important;
        line-height: 1.2;
    }
    
    .services {
        padding: 60px 20px;
        gap: 60px;
    }
    
    .service-block {
        flex-direction: column;
        gap: 30px;
    }
    
    .service-buttons {
        max-width: 100%;
        justify-content: center;
    }
    
    .projects {
        padding: 60px 20px;
    }
    
    .project-large {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 40px;
    }
    
    .project-small-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .slider-section {
        padding: 60px 20px;
    }
    
    .slider-block {
        flex-direction: column;
        gap: 30px;
    }
    
    .slider-block.reverse {
        flex-direction: column;
    }
    
    .slider {
        height: 300px;
    }
    
    .advantages {
        padding: 60px 20px;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .consultation {
        padding: 60px 20px;
    }
    
    .consultation h1 {
        font-size: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-section {
        margin-right: 0;
    }
}

@media (max-width: 480px) {
    header {
        padding: 12px 15px !important;
    }
    
    .logo {
        height: 35px;
    }
    
    .mobile-nav {
        width: 100%;
    }
    
    .hero {
        padding: 90px 15px 40px;
    }
    
    .hero-content h1 {
        font-size: 2.2rem !important;
        line-height: 1.3;
    }
    
    .services {
        padding: 50px 15px;
        gap: 50px;
    }
    
    .service-content h2 {
        font-size: 1.7rem;
    }
    
    .service-content h3 {
        font-size: 1.3rem;
    }
    
    .service-buttons {
        gap: 8px;
    }
    
    .oval-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .projects {
        padding: 50px 15px;
    }
    
    .project-info h3 {
        font-size: 1.5rem;
    }
    
    .project-info p {
        font-size: 1rem;
    }
    
    .project-small .project-image img {
        height: 200px;
    }
    
    .slider-section {
        padding: 50px 15px;
    }
    
    .slider {
        height: 250px;
    }
    
    .slider-text h2 {
        font-size: 1.7rem;
    }
    
    .advantages {
        padding: 50px 15px;
    }
    
    .advantages h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .advantage-item {
        padding: 15px;
        font-size: 1rem;
    }
    
    .consultation {
        padding: 50px 15px;
    }
    
    .consultation h1 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .phone-group {
        flex-direction: column;
        gap: 15px;
    }
    
    .country-select {
        flex: 1;
    }
    
    .form-group input, 
    .form-group textarea,
    .country-select select {
        padding: 12px;
    }
    
    a {
        padding: 12px 16px;
    }
}

.service-block, .advantages, .project-large, .slider-block, .consultation {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

@media (prefers-reduced-motion: no-preference) {
    .service-block, .advantages, .project-large, .slider-block, .consultation {
        animation: fadeUp 0.8s ease forwards;
        animation-timeline: view();
        animation-range: entry 0% cover 40%;
    }
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.service-content h3 {
    white-space: nowrap; 
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
}

.price {
    white-space: nowrap; 
    display: inline-block;
}

.service-content h3 .price {
    white-space: nowrap;
    display: inline;
    margin-left: 5px;
}

.services-header2 {
    text-align: center;
    margin-bottom: 80px;
    padding: 0 5px;
    padding-top: 60px;
}

.services-title {
    font-size: 3.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.services-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #2b2b2b, #ff6bcb);
    border-radius: 2px;
}

.services-subtitle {
    font-size: 1.3rem;
    color: #666;
    max-width: 600px;
    margin: 30px auto 0;
    line-height: 1.6;
}

.service-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 600;
}

@media (max-width: 1024px) {
    .services-title {
        font-size: 2.8rem;
    }
    
    .services-subtitle {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .services-header {
        margin-bottom: 40px;
    }
    
    .services-title {
        font-size: 2.2rem;
    }
    
    .services-subtitle {
        font-size: 1.1rem;
        padding: 0 15px;
    }
    
    .service-content h3 {
        font-size: 1.7rem;
    }
}

@media (max-width: 480px) {
    .services-title {
        font-size: 1.8rem;
    }
    
    .services-subtitle {
        font-size: 1rem;
    }
    
    .service-content h3 {
        font-size: 1.5rem;
    }
}
.services-header {
    text-align: center;
    margin-bottom: 2px;
    padding: 0 5px;
}

.services-title {
    font-size: 3.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.services-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #000000, #393939);
    border-radius: 2px;
}

.services-subtitle {
    font-size: 1.3rem;
    color: #666;
    max-width: 600px;
    margin: 30px auto 0;
    line-height: 1.6;
}

.service-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 600;
}

@media (max-width: 1024px) {
    .services-title {
        font-size: 2.8rem;
    }
    
    .services-subtitle {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .services-header {
        margin-bottom: 40px;
    }
    
    .services-title {
        font-size: 2.2rem;
    }
    
    .services-subtitle {
        font-size: 1.1rem;
        padding: 0 15px;
    }
    
    .service-content h3 {
        font-size: 1.7rem;
    }
}

@media (max-width: 480px) {
    .services-title {
        font-size: 1.8rem;
    }
    
    .services-subtitle {
        font-size: 1rem;
    }
    
    .service-content h3 {
        font-size: 1.5rem;
    }
}
.consultation-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.consultation h1 {
    font-size: 3rem;
    margin-bottom: 30px;
    color: #2c3e50;
    font-weight: 600;
}

.btn-yes {
    background: linear-gradient(135deg, #000000, #343434);
    color: white;
    border: none;
    padding: 18px 50px;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.btn-yes:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #000000, #343434);
}

.btn-yes:active {
    transform: translateY(-2px);
}

.btn-yes::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-yes:hover::after {
    left: 100%;
}

.consultation-hint {
    font-size: 1.1rem;
    color: #666;
    margin-top: 15px;
    font-style: italic;
}

.consultation-form-container {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateY(-20px);
}

.consultation-form-container.show {
    max-height: 1000px;
    opacity: 1;
    transform: translateY(0);
    margin-top: 30px;
}

.consultation-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
}

.form-group input, .form-group textarea {
    flex: 1;
    padding: 18px;
    border: 2px solid #eee;
    border-radius: 10px;
    font-size: 1.1rem;
    transition: all 0.3s;
    background: #f9f9f9;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: #000000;
    background: white;
    box-shadow: 0 0 0 3px rgba(219, 52, 205, 0.1);
}

.phone-group {
    gap: 15px;
}

.country-select {
    flex: 0 0 140px;
}

.country-select select {
    width: 100%;
    padding: 18px;
    border: 2px solid #eee;
    border-radius: 10px;
    font-size: 1.1rem;
    background: #f9f9f9;
    cursor: pointer;
}

.btn-consultation {
    background: linear-gradient(135deg, #2c3e50, #3498db);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
}

.btn-consultation:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(52, 152, 219, 0.4);
    background: linear-gradient(135deg, #3498db, #2c3e50);
}

.form-note {
    text-align: center;
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

@keyframes formAppear {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.consultation-form-container.show .consultation-form {
    animation: formAppear 0.6s ease forwards;
}

@media (max-width: 768px) {
    .consultation h1 {
        font-size: 2.2rem;
    }
    
    .btn-yes {
        padding: 16px 40px;
        font-size: 1.2rem;
    }
    
    .consultation-form {
        padding: 30px 20px;
    }
    
    .phone-group {
        flex-direction: column;
    }
    
    .country-select {
        flex: 1;
    }
}

@media (max-width: 480px) {
    .consultation h1 {
        font-size: 1.8rem;
    }
    
    .btn-yes {
        padding: 14px 30px;
        font-size: 1.1rem;
    }
    
    .form-group input, 
    .form-group textarea,
    .country-select select {
        padding: 15px;
        font-size: 1rem;
    }
}


@media (max-width: 1024px) {
    .logo {
        height: 70px;
    }
    
    .hero-content h1 {
        font-size: 4rem;
        padding-left: calc(5% + 30px);
    }
    
    .services-container {
        height: 650px;
    }
    
    .service-block {
        flex-direction: column;
        gap: 40px;
        padding: 35px;
    }
    
    .service-content,
    .service-buttons {
        max-width: 100%;
        width: 100%;
    }
    
    .service-content h3 {
        font-size: 1.7rem;
    }
    
    .service-buttons {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .project-large {
        gap: 60px;
    }
    
    .project-small-container {
        gap: 30px;
    }
    
    .slider {
        height: 350px;
    }
    
    .slider-block {
        gap: 40px;
    }
    
    .consultation h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    header {
        padding: 15px 20px !important;
    }
    
    .logo {
        height: 60px;
        position: static;
        transform: none !important;
        order: 2;
        margin: 0 auto;
    }
    
    .burger-menu {
        order: 1;
    }
    
    .phone {
        display: none;
    }
    
    .mobile-nav {
        width: 100%;
        padding-top: 120px;
    }
    
    .hero {
        padding: 100px 20px 50px;
        text-align: center;
        justify-content: center;
        min-height: 80vh;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.8rem !important;
        padding-left: 0 !important;
        text-align: center;
        line-height: 1.2;
    }
    
    .floating-element {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    #services {
        padding: 60px 20px;
        min-height: auto;
    }
    
    .services-container {
        height: auto;
        min-height: 500px;
    }
    
    .service-block {
        padding: 30px;
        min-height: auto;
    }
    
    .service-content h3 {
        font-size: 1.6rem;
        white-space: normal !important;
    }
    
    .price {
        white-space: nowrap;
    }
    
    .service-content p {
        font-size: 1rem;
    }
    
    .btn-details {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .service-indicators {
        margin-top: -100px;
    }
    
    .services-title,
    .services-header2 .services-title {
        font-size: 2.5rem;
    }
    
    .advantages {
        padding: 60px 20px;
    }
    
    .advantages h2 {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .advantage-item {
        padding: 18px;
        font-size: 1rem;
    }
    
    .projects {
        padding: 60px 20px;
    }
    
    .project-large {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 50px;
    }
    
    .project-info h3 {
        font-size: 1.7rem;
    }
    
    .project-info p {
        font-size: 1rem;
    }
    
    .project-small-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .project-small .project-image img {
        height: 200px;
    }
    
    .slider-section {
        padding: 60px 20px;
        margin-top: -100px;
    }
    
    .slider-block {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 60px;
    }
    
    .slider-block.reverse {
        flex-direction: column;
    }
    
    .slider {
        height: 300px;
    }
    
    .slider-text h2 {
        font-size: 1.8rem;
    }
    
    .slider-text p {
        font-size: 1rem;
    }
    
    .consultation {
        padding: 60px 20px;
    }
    
    .consultation h1 {
        font-size: 2.2rem;
        margin-bottom: 30px;
    }
    
    .btn-yes {
        padding: 15px 35px;
        font-size: 1.1rem;
    }
    
    .consultation-form {
        padding: 30px 20px;
    }
    
    .phone-group {
        flex-direction: column;
        gap: 15px;
    }
    
    .country-select {
        flex: 1;
    }
    
    .form-group input, 
    .form-group textarea,
    .country-select select {
        padding: 14px;
        font-size: 1rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .footer-section {
        margin-right: 0;
    }
    
    .logofoot img {
        max-width: 120px;
    }
}

@media (max-width: 480px) {
    header {
        padding: 12px 15px !important;
    }
    
    .logo {
        height: 50px;
    }
    
    .burger-icon {
        width: 25px;
        height: 20px;
    }
    
    .hero {
        padding: 80px 15px 40px;
        min-height: 70vh;
    }
    
    .hero-content h1 {
        font-size: 2rem !important;
        line-height: 1.3;
    }
    
    #services {
        padding: 50px 15px;
    }
    
    .service-block {
        padding: 25px 20px;
        gap: 30px;
    }
    
    .service-content h3 {
        font-size: 1.4rem;
    }
    
    .service-content p {
        font-size: 0.95rem;
    }
    
    .service-buttons {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .oval-btn {
        padding: 10px;
        font-size: 0.85rem;
    }
    
    .btn-details {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
    
    .service-indicators {
        margin-top: -80px;
        gap: 10px;
    }
    
    .indicator {
        width: 8px;
        height: 8px;
    }
    
    .services-title,
    .services-header2 .services-title {
        font-size: 2rem;
    }
    
    .services-title::after {
        width: 60px;
        bottom: -10px;
    }
    
    .advantages {
        padding: 50px 15px;
    }
    
    .advantages h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .advantage-item {
        padding: 15px;
        font-size: 0.95rem;
    }
    
    .projects {
        padding: 50px 15px;
    }
    
    .project-info h3 {
        font-size: 1.5rem;
    }
    
    .project-info p {
        font-size: 0.95rem;
    }
    
    .btn-go {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .project-small .project-image img {
        height: 180px;
    }
    
    .slider-section {
        padding: 50px 15px;
        margin-top: -80px;
        padding-top: 40px;
    }
    
    .slider {
        height: 250px;
    }
    
    .slider-text h2 {
        font-size: 1.6rem;
    }
    
    .slider-text p {
        font-size: 0.95rem;
    }
    
    .slider-nav {
        bottom: 15px;
    }
    
    .slider-prev, .slider-next {
        width: 35px;
        height: 35px;
    }
    
    .consultation {
        padding: 50px 15px;
    }
    
    .consultation h1 {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }
    
    .btn-yes {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .consultation-hint {
        font-size: 0.95rem;
    }
    
    .consultation-form {
        padding: 25px 15px;
        gap: 20px;
    }
    
    .form-group input, 
    .form-group textarea,
    .country-select select {
        padding: 12px;
        font-size: 0.95rem;
    }
    
    .btn-consultation {
        padding: 15px 25px;
        font-size: 1rem;
    }
    
    .form-note {
        font-size: 0.9rem;
    }
}

@media (max-width: 360px) {
    .hero-content h1 {
        font-size: 1.7rem !important;
    }
    
    .services-title,
    .services-header2 .services-title {
        font-size: 1.7rem;
    }
    
    .service-content h3 {
        font-size: 1.3rem;
    }
    
    .project-info h3 {
        font-size: 1.3rem;
    }
    
    .consultation h1 {
        font-size: 1.6rem;
    }
    
    .btn-yes {
        padding: 10px 25px;
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 120vh;
    }
    
    .hero-content h1 {
        font-size: 2.2rem !important;
    }
    
    .services-container {
        height: 400px;
    }
    
    .service-block {
        padding: 20px;
    }
}

@media (min-height: 800px) and (max-width: 768px) {
    .hero {
        min-height: 85vh;
    }
    
    #services {
        min-height: 85vh;
    }
}
.burger-menu {
    display: flex !important;
    align-items: center;
    position: relative;
    z-index: 1001;
}

.burger-icon {
    width: 30px;
    height: 24px;
    display: flex !important;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    padding: 5px;
}

.burger-icon span {
    display: block !important;
    width: 100%;
    height: 3px;
    background-color: #000000 !important;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.burger-icon.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.burger-icon.active span:nth-child(2) {
    opacity: 0;
}

.burger-icon.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 300px;
    height: 100vh;
    background-color: white;
    box-shadow: 2px 0 15px rgba(0, 0, 0, 0.1);
    padding: 100px 30px 30px;
    transition: left 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
}

.mobile-nav.active {
    left: 0;
}

.mobile-nav a {
    display: block;
    color: #2c3e50;
    text-decoration: none;
    font-size: 1.2rem;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    transition: color 0.3s;
    background-color: transparent !important;
    border-radius: 0 !important;
    margin-bottom: 10px;
}

.mobile-nav a:hover {
    color: #000000;
}

.mobile-phone {
    margin-top: 30px;
    padding: 15px;
    background-color: #000000;
    color: white;
    border-radius: 50px;
    text-align: center;
    font-weight: 500;
    font-size: 1.1rem;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 768px) {
    .burger-menu {
        display: block !important;
    }
    
    .phone {
        display: none;
    }
    
    .logo {
        position: static;
        transform: translateX(0) !important;
        order: 2;
        text-align: center;
        margin: 0 auto;
    }
    
    header {
        justify-content: space-between;
        padding: 15px 20px !important;
    }
}
/* Выравнивание слайдеров с проектами */
.slider-section {
    padding: 100px 5%;
    background: #f8f9fa;
    margin-top: -140px;
    padding-top: 60px;
}

.slider-container-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.slider-block {
    display: flex;
    gap: 50px;
    align-items: flex-start; /* Выравниваем по верху */
    max-width: 1200px;
    margin: 0 auto 80px;
    min-height: 400px; /* Такая же высота как у проектов */
}

.slider-block.reverse {
    flex-direction: row-reverse;
}

.slider-text {
    flex: 1;
    padding-top: 20px; /* Компенсируем разницу в высоте */
}

.slider-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.slider-text p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.7;
}

.slider-container {
    flex: 1;
    position: relative;
}

.slider {
    position: relative;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.slider-block.reverse .slide img:hover {
    transform: scale(1.05);
}

.slider-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.slider-prev, .slider-next {
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s;
}

.slider-prev:hover, .slider-next:hover {
    background: white;
}

/* Адаптивность */
@media (max-width: 1024px) {
    .slider-block {
        gap: 40px;
        min-height: 350px;
    }
    
    .slider {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .slider-section {
        padding: 60px 20px;
    }
    
    .slider-block {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 60px;
        min-height: auto;
    }
    
    .slider-block.reverse {
        flex-direction: column;
    }
    
    .slider {
        height: 300px;
    }
    
    .slider-text {
        padding-top: 0;
    }
    
    .slider-text h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .slider {
        height: 250px;
    }
    
    .slider-text h2 {
        font-size: 1.6rem;
    }
    
    .slider-text p {
        font-size: 1rem;
    }
}