/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: "Inter", sans-serif;
    line-height: 1.6;
    color: #e5e7eb;
    background-color: #111827;
    overflow-x: hidden;
    background: #111827;
}

body.menu-open {
    overflow: hidden;
}

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

/* Header */
.header {
    background: #1a1f2e;
    backdrop-filter: blur(20px);
    position: fixed;
    top: 20px;
    left: 20px;
    right: 20px;
    z-index: 1000;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    padding: 15px 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.header__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo__image {
    width: 45px;
    height: 45px;
    object-fit: contain;
    flex-shrink: 0;
}

.logo__text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f9fafb;
    white-space: nowrap;
}

.nav {
    display: flex;
    gap: 35px;
}

.nav__contacts {
    display: none;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    flex-direction: column;
    gap: 4px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: #111827;
    transition: all 0.3s ease;
    transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.nav__link {
    text-decoration: none;
    color: #e5e7eb;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
    padding: 8px 0;
}

.nav__link:hover {
    color: #00ff01;
}

.nav__link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #00ff01;
    transition: width 0.3s ease;
}

.nav__link:hover::after {
    width: 100%;
}

.header__contacts .phone {
    text-decoration: none;
    color: #f9fafb;
    font-weight: 600;
    transition: color 0.3s ease;
    white-space: nowrap;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.header__contacts .phone:hover {
    background: #00ff01;
    color: #111827;
    border-color: #00ff01;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
    background: linear-gradient(
        180deg,
        rgba(17, 24, 39, 0) 50%,
        rgba(17, 24, 39, 0.6) 70%,
        #111827 90%
    );
}

.hero__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero__bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(17, 24, 39, 0) 50%,
        rgba(17, 24, 39, 0.7) 70%,
        rgba(17, 24, 39, 0.95) 90%
    );
}

.hero__content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: white;
    padding: 80px 0 20px;
    width: 100%;
}

.hero__title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.hero__subtitle {
    font-size: 1.4rem;
    margin-bottom: 40px;
    color: #e5e7eb;
    line-height: 1.6;
    font-weight: 300;
}

.hero__buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1.1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

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

.btn--primary {
    background: #00ff01;
    color: #111827;
    border-color: #00ff01;
    box-shadow: 0 8px 25px rgba(0, 255, 1, 0.3);
}

.btn--primary:hover {
    background: #00e600;
    border-color: #00e600;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 255, 1, 0.4);
}

.btn--secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.btn--secondary:hover {
    background: #00ff01;
    color: #111827;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 255, 1, 0.2);
}

.btn--large {
    padding: 18px 45px;
    font-size: 1.2rem;
}

/* Section Headers */
.section__header {
    text-align: center;
    margin-bottom: 60px;
}

.section__title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #00ff01;
    position: relative;
}

.section__title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #00ff01;
    border-radius: 50px;
}

.section__subtitle {
    font-size: 1.2rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Services Section */
.services {
    padding: 20px 0 60px;
    margin-top: -40px;
    background: transparent;
    position: relative;
    z-index: 1;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, 350px);
    gap: 30px;
    justify-content: center;
}

.service__card {
    background: #1a1f2e;
    padding: 40px 30px;
    border-radius: 50px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transition:
        transform 0.2s ease-out,
        box-shadow 0.2s ease-out;
    border: 1px solid #2d3242;
    position: relative;
    overflow: hidden;
    max-width: 350px;
    margin: 0 auto;
}

.service__card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #00ff01, #00e600);
}

.service__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.service__icon {
    width: 100%;
    height: 220px;
    margin-bottom: 25px;
    border-radius: 50px;
    overflow: hidden;
    background: #252a3a;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.service__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.service__card:hover .service__image {
    transform: scale(1.05);
}

.service__title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #f9fafb;
}

.service__description {
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service__price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #00ff01;
    margin-bottom: 20px;
}

.service__link {
    display: inline-block;
    padding: 12px 30px;
    background: #00ff01;
    color: #111827;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition:
        transform 0.2s ease-out,
        box-shadow 0.2s ease-out;
    border: 2px solid #00ff01;
}

.service__link:hover {
    background: transparent;
    color: #00ff01;
}

/* About Section */
.about {
    padding: 100px 0;
    background: transparent;
}

.about__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about__text {
    padding-right: 40px;
}

.features {
    display: grid;
    gap: 30px;
    margin-top: 40px;
}

.feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature__icon {
    font-size: 2rem;
    background: rgba(0, 255, 1, 0.1);
    padding: 15px;
    border-radius: 50px;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature__content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #00ff01;
}

.feature__content p {
    color: #f9fafb;
    line-height: 1.6;
}

.about__image {
    position: relative;
}

.about__img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* Gallery Section */
.gallery {
    padding: 60px 0;
    background: transparent;
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.gallery__item {
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transition:
        transform 0.15s ease-out,
        box-shadow 0.15s ease-out;
    position: relative;
    background: #1a1f2e;
}

.gallery__item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.gallery__image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery__item:hover .gallery__image {
    transform: scale(1.02);
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: #111827;
    color: white;
    text-align: center;
}

.cta__title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    color: #f9fafb;
}

.cta__subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: #f9fafb;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Contacts Section */
.contacts {
    padding: 100px 0;
    background: transparent;
}

.contacts__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact__item {
    margin-bottom: 40px;
}

.contact__item h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #f9fafb;
}

.contact__item p {
    color: #f9fafb;
    line-height: 1.6;
    margin-bottom: 15px;
}

.contact__link {
    color: #00ff01;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    font-size: 1.1rem;
}

.contact__link:hover {
    color: #00e600;
}

.map-container {
    margin-top: 20px;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    height: 300px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

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

.social__link {
    text-decoration: none;
    color: #00ff01;
    font-weight: 600;
    transition: color 0.3s ease;
}

.social__link:hover {
    color: #00e600;
}

.contacts__form {
    background: #1a1f2e;
    padding: 50px 40px;
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid #2d3242;
}

.contacts__form h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #00ff01;
    text-align: center;
}

.form {
    display: grid;
    gap: 20px;
}

.form input,
.form select,
.form textarea {
    padding: 15px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 50px;
    font-family: inherit;
    font-size: 1rem;
    transition:
        transform 0.2s ease-out,
        box-shadow 0.2s ease-out;
    width: 100%;
    background: #252a3a;
    color: #f9fafb;
}

.form input:focus,
.form select:focus,
.form textarea:focus {
    outline: none;
    border-color: #00ff01;
    box-shadow: 0 0 0 3px rgba(0, 255, 1, 0.1);
    transform: none;
    color: #f9fafb;
}

.form textarea {
    resize: vertical;
    min-height: 120px;
    border-radius: 20px;
    transition:
        border-color 0.15s ease-out,
        box-shadow 0.15s ease-out;
}

.form select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'><path fill='%236b7280' d='M2 0L0 2h4zm0 5L0 3h4z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px;
}

/* Footer */
.footer {
    background: #1a1f2e;
    color: white;
    padding: 60px 0 30px;
}

.footer__content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer__main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer__logo .logo__text {
    color: white;
    font-size: 1.8rem;
}

.footer__info p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.footer__contacts {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer__contacts a {
    color: #00ff01;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer__contacts a:hover {
    color: #00e600;
}

.footer__contacts span {
    color: #9ca3af;
}

.footer__bottom {
    border-top: 1px solid #1f2937;
    padding-top: 30px;
    text-align: center;
}

.footer__bottom p {
    color: #6b7280;
    font-size: 0.9rem;
    margin-top: 10px;
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .hero__title {
        font-size: 3.5rem;
    }

    .section__title {
        font-size: 2.5rem;
    }

    .about__content {
        gap: 60px;
    }

    .services__grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
}

@media (max-width: 768px) {
    .header {
        top: 10px;
        left: 10px;
        right: 10px;
        border-radius: 50px;
    }

    .menu-toggle {
        display: flex;
        position: absolute;
        left: 20px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 2;
        flex-direction: column;
        gap: 4px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
    }

    .menu-toggle span {
        display: block;
        width: 25px;
        height: 3px;
        background: #f9fafb;
        transition: all 0.3s ease;
        transform-origin: center;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .header__content {
        flex-direction: row;
        gap: 10px;
        padding: 10px 0;
        justify-content: space-between;
        align-items: center;
        min-height: 60px;
        padding-left: 60px;
        padding-right: 60px;
    }

    .logo {
        order: 2;
        margin: 0 auto;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .header .logo__text {
        display: none;
    }

    .header__contacts {
        display: none;
    }

    .nav {
        position: fixed;
        top: 80px;
        left: 10px;
        right: 10px;
        background: #1a1f2e;
        backdrop-filter: blur(20px);
        flex-direction: column;
        gap: 0;
        padding: 30px 20px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
        border-radius: 50px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }

    .nav__link {
        font-size: 1.1rem;
        padding: 15px 0;
        border-bottom: 1px solid #374151;
        width: 100%;
        text-align: center;
        white-space: normal;
        color: #f9fafb;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.3s ease;
    }

    .nav__link:hover {
        color: #00ff01;
    }

    .nav__link:last-child {
        border-bottom: none;
    }

    .nav__contacts {
        padding: 20px 0 0;
        text-align: center;
        border-top: 1px solid #374151;
        margin-top: 10px;
        display: block;
    }

    .nav__phone {
        display: block;
        font-size: 1.1rem;
        color: #00ff01;
        text-decoration: none;
        font-weight: 600;
        margin-bottom: 8px;
        transition: color 0.3s ease;
    }

    .nav__phone:hover {
        color: #00e600;
    }

    .nav__address {
        font-size: 0.9rem;
        color: #d1d5db;
        margin: 0;
        line-height: 1.4;
    }

    .hero__content {
        padding: 100px 0 60px;
    }

    .hero__title {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .hero__subtitle {
        font-size: 1.2rem;
        line-height: 1.5;
    }

    .hero__buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        padding: 14px 30px;
        font-size: 1rem;
    }

    .section__title {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }

    .services {
        padding: 80px 0;
    }

    .services__grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .service__card {
        padding: 35px 25px;
    }

    .service__icon {
        height: 200px;
    }

    .about {
        padding: 80px 0;
    }

    .about__content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about__text {
        padding-right: 0;
    }

    .about__img {
        height: 400px;
    }

    .gallery {
        padding: 80px 0;
    }

    .gallery__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gallery__image {
        height: 250px;
    }

    .cta {
        padding: 80px 0;
    }

    .cta__title {
        font-size: 2.2rem;
    }

    .cta__subtitle {
        font-size: 1.1rem;
    }

    .contacts {
        padding: 80px 0;
    }

    .contacts__content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contacts__form {
        padding: 35px 25px;
    }

    .form {
        gap: 15px;
    }

    .footer__main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Стили для ссылок в футере */
.footer__links {
    margin: 10px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.footer__links a {
    color: #00ff01;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 5px 10px;
    border-radius: 4px;
}

.footer__links a:hover {
    color: #111827;
    background-color: #00ff01;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 255, 1, 0.3);
}

/* Модальные окна */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.modal__content {
    background-color: #1a1f2e;
    border-radius: 20px;
    max-width: 800px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal__header {
    background: #1a1f2e;
    color: #00ff01;
    padding: 20px;
    border-radius: 20px 20px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal__header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.modal__close {
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
}

.modal__close:hover {
    color: #ffcc00;
}

.modal__body {
    padding: 30px;
    color: #e5e7eb;
    line-height: 1.6;
}

.modal__body h3 {
    color: #00ff01;
    margin: 1.5rem 0 1rem 0;
    font-size: 1.2rem;
    border-bottom: 2px solid #00ff01;
    padding-bottom: 0.5rem;
}

.modal__body p {
    margin-bottom: 1rem;
    text-align: justify;
}

.modal__body strong {
    color: #00ff01;
    font-weight: 600;
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .header {
        padding: 12px 0;
    }

    .logo__image {
        width: 35px;
        height: 35px;
    }

    .logo__text {
        display: none;
    }

    .menu-toggle {
        left: 15px;
        padding: 6px;
    }

    .menu-toggle span {
        width: 22px;
        height: 2px;
    }

    .header__content {
        padding-left: 50px;
        padding-right: 50px;
        min-height: 55px;
    }

    .nav {
        top: 70px;
        padding: 25px 15px;
    }

    .nav__link {
        font-size: 1rem;
        padding: 12px 0;
    }

    .footer__links {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .footer__links a {
        font-size: 13px;
        text-align: center;
        padding: 8px 12px;
    }

        .modal__content {
            max-width: 95%;
            max-height: 90vh;
        }

        .modal__header {
            padding: 15px;
        }

        .modal__header h2 {
            font-size: 1.2rem;
        }

        .modal__body {
            padding: 20px;
        }

        .modal__body h3 {
            font-size: 1.1rem;
        }
    }

    .hero__content {
        padding: 80px 0 40px;
    }

    .hero__title {
        font-size: 2rem;
    }

    .hero__subtitle {
        font-size: 1.1rem;
    }

    .section__title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .services {
        padding: 60px 0;
    }

    .service__card {
        padding: 30px 20px;
    }

    .service__icon {
        height: 180px;
    }

    .service__title {
        font-size: 1.3rem;
    }

    .about {
        padding: 60px 0;
    }

    .about__img {
        height: 300px;
    }

    .gallery {
        padding: 60px 0;
    }

    .gallery__image {
        height: 220px;
    }

    .cta {
        padding: 60px 0;
    }

    .cta__title {
        font-size: 1.8rem;
    }

    .cta__subtitle {
        font-size: 1rem;
    }

    .contacts {
        padding: 60px 0;
    }

    .contacts__form {
        padding: 30px 20px;
    }

    .form input,
    .form select,
    .form textarea {
        padding: 12px 15px;
        font-size: 0.9rem;
    }

    .footer {
        padding: 40px 0 20px;
    }
}
