/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-dark: #2a2a2a;
    --secondary-dark: #2a2a2a;
    --accent-gold: #d4af37;
    --accent-gold-hover: #f2610e;
    --text-white: #ffffff;
    --text-gray: #a0a0a0;
    --border-color: #3a3a3a;
    --shadow-light: rgba(212, 175, 55, 0.1);
    --shadow-medium: rgba(0, 0, 0, 0.5);
    --transition: all 0.3s ease;
    
    /* Унифицированные отступы секций */
    --section-padding: 80px;
    --section-padding-tablet: 60px;
    --section-padding-mobile: 40px;
    
    /* Отступы контейнера */
    --container-padding: 20px;
    --container-padding-mobile: 15px;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--primary-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

a:hover {
    color: var(--text-white);
}

/* ===== UTILITY CLASSES ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.button {
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-hover));
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px var(--shadow-light);
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
    color: var(--primary-dark);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 42px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 15px;
}

.section-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-hover));
    margin: 0 auto;
}

/* ===== HEADER & NAVIGATION ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 20px var(--shadow-medium);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    height: 50px;
}

.logo-image {
    height: 70px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    transition: var(--transition);
}

.logo-image:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-button {
    padding: 10px 25px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-hover));
    color: var(--primary-dark);
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
}

.nav-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-burger span {
    width: 28px;
    height: 3px;
    background: var(--accent-gold);
    border-radius: 2px;
    transition: var(--transition);
}

/* ===== HERO / MAIN SECTION ===== */
.main {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    position: relative;
    overflow: hidden;
}

.main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><line x1="0" y1="0" x2="100" y2="100" stroke="%23d4af37" stroke-width="0.5" opacity="0.1"/><line x1="100" y1="0" x2="0" y2="100" stroke="%23d4af37" stroke-width="0.5" opacity="0.1"/></svg>');
    opacity: 0.05;
}

.main .container {
    position: relative;
    z-index: 1;
}

.main-subtitle {
    font-size: 16px;
    font-weight: 600;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease;
}

.main-title {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 30px;
    max-width: 800px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.main__button-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.main-button {
    font-size: 16px;
    padding: 16px 40px;
}

.main__button-description {
    font-size: 13px;
    color: var(--text-gray);
    font-style: italic;
}

/* ===== INFO CARDS ===== */
.info {
    z-index: 100;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: -100px auto 0;
    height: 200px;
    width: calc(100% - 40px);
    max-width: 1200px;
    padding: 0;
    border-radius: 30px;
    border: 1px solid #777;
    color: #fff;
    background: rgba(44, 44, 44, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.info::before {
    position: absolute;
    z-index: 0;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
    pointer-events: none;
}

.info-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 30px;
    flex: 1;
    height: 200px;
}

.info-card::before {
    z-index: 2;
    position: absolute;
    content: "";
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 120px;
    background: #777;
}

.info-card:last-of-type::before {
    display: none;
}

.info-card__title {
    position: relative;
    z-index: 2;
    font-size: 1.6rem;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.1;
    color: #fff;
    transition: color 0.3s ease;
    margin-bottom: 0;
}

.info-card a {
    text-decoration: none;
}

.info-card a:hover .info-card__title {
    color: var(--accent-gold);
}

.info-card__text {
    margin-top: 8px;
    position: relative;
    z-index: 2;
    font-size: 1.1rem;
    max-width: 280px;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.8);
}

.info-card__image {
    position: absolute;
    z-index: 1;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 130px;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.12;
    transition: opacity 0.3s ease;
}

.info-card:hover .info-card__image {
    opacity: 0.22;
}

.info-card__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(0.9) brightness(1.2);
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: var(--section-padding) 0;
    background: var(--secondary-dark);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.about-card {
    background: var(--primary-dark);
    padding: 35px 25px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: var(--transition);
}

.about-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-gold);
    box-shadow: 0 15px 40px var(--shadow-medium);
}

.about-card__icon {
    font-size: 50px;
    margin-bottom: 20px;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.about-card__icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.about-card__title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.about-card__text {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* ===== PORTFOLIO SECTION ===== */
.portfolio {
    padding: var(--section-padding) 0;
    background: var(--primary-dark);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.portfolio-item {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.portfolio-item:hover {
    border-color: var(--accent-gold);
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-item__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(212, 175, 55, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.portfolio-item:hover .portfolio-item__overlay {
    opacity: 1;
}

.portfolio-item__overlay i {
    font-size: 35px;
    color: var(--primary-dark);
}

/* ===== SERVICES SECTION ===== */
.services {
    padding: var(--section-padding) 0;
    background: var(--secondary-dark);
}

.services-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.services-table {
    background: var(--primary-dark);
    padding: 35px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
}

.service-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    border-radius: 10px;
    margin-bottom: 12px;
    background: rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.service-row:nth-child(1) { animation-delay: 0s; }
.service-row:nth-child(2) { animation-delay: 0.1s; }
.service-row:nth-child(3) { animation-delay: 0.2s; }
.service-row:nth-child(4) { animation-delay: 0.3s; }
.service-row:nth-child(5) { animation-delay: 0.4s; }
.service-row:nth-child(6) { animation-delay: 0.5s; }
.service-row:nth-child(7) { animation-delay: 0.6s; }
.service-row:nth-child(8) { animation-delay: 0.7s; }

.service-row:hover {
    transform: translateX(8px);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.service-highlight {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #c9a856 100%);
    color: var(--primary-dark);
    position: relative;
    overflow: hidden;
}

.service-highlight::before {
    content: "СПЕЦИАЛЬНОЕ ПРЕДЛОЖЕНИЕ";
    position: absolute;
    top: 8px;
    right: -70px;
    background: var(--primary-dark);
    color: var(--accent-gold);
    padding: 4px 80px;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 1px;
    transform: rotate(15deg);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.service-highlight:hover {
    transform: translateX(8px) scale(1.01);
    background: linear-gradient(135deg, #f4b942 0%, #d4a847 100%);
}

.service-info {
    flex: 1;
}

.service-name {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.service-time {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-gray);
    padding: 3px 10px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
}

.service-highlight .service-time {
    background: rgba(0, 0, 0, 0.15);
    color: var(--primary-dark);
}

.service-desc {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-top: 4px;
    line-height: 1.4;
}

.service-highlight .service-desc {
    color: rgba(20, 20, 20, 0.8);
}

.service-price {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--accent-gold);
    white-space: nowrap;
    margin-left: 25px;
}

.service-highlight .service-price {
    color: var(--primary-dark);
    font-size: 1.85rem;
}

.table-button {
    margin-top: 25px;
    width: 100%;
    text-align: center;
    display: block;
}

.services-image {
    position: sticky;
    top: 100px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px var(--shadow-medium);
}

.services-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: var(--section-padding) 0;
    background: var(--primary-dark);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-form-wrapper {
    background: var(--secondary-dark);
    padding: 35px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
}

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

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--accent-gold);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    background: var(--primary-dark);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-white);
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px var(--shadow-light);
}

.form-button {
    width: 100%;
    margin-top: 10px;
}

.form-note {
    margin-top: 12px;
    font-size: 11px;
    color: var(--text-gray);
    text-align: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-info__item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.contact-info__item i {
    font-size: 26px;
    color: var(--accent-gold);
    margin-top: 3px;
}

.contact-info__item h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 6px;
}

.contact-info__item p {
    font-size: 14px;
    color: var(--text-gray);
}

.contact-info__item a:hover {
    color: var(--accent-gold);
}

/* ===== MAP SECTION ===== */
.map {
    padding: var(--section-padding) 0;
    background: var(--secondary-dark);
}

.map-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.map-container {
    width: 100%;
    height: 550px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px var(--shadow-medium);
    border: 1px solid var(--border-color);
}

.map-info {
    background: var(--primary-dark);
    padding: 35px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    position: sticky;
    top: 100px;
}

.map-info__title {
    font-size: 24px;
    font-weight: 800;
    color: var(--accent-gold);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.map-info__phone {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 25px;
    transition: var(--transition);
}

.map-info__phone:hover {
    color: var(--accent-gold);
}

.map-info__address,
.map-info__time {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 18px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.5;
}

.map-info__address i,
.map-info__time i {
    color: var(--accent-gold);
    font-size: 18px;
    margin-top: 2px;
    min-width: 18px;
}

.map-info__buttons {
    margin-top: 25px;
}

.map-info__buttons .button {
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    padding: 14px 30px;
}

.map-info__buttons .button i {
    font-size: 18px;
}

.custom-marker {
    width: 48px;
    height: 48px;
    transform: translate(-24px, -48px);
    cursor: pointer;
    transition: transform 0.2s ease;
}

.custom-marker:hover {
    transform: translate(-24px, -48px) scale(1.1);
}

.custom-marker svg {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

/* ===== REVIEWS SECTION ===== */
.reviews {
    padding: var(--section-padding) 0;
    background: var(--primary-dark);
}

.reviews-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: start;
}

.reviews-widget {
    background: var(--secondary-dark);
    padding: 18px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 40px var(--shadow-medium);
}

.reviews-widget__container {
    width: 100%;
    height: 650px;
    overflow: hidden;
    position: relative;
}

.reviews-widget__link {
    box-sizing: border-box;
    text-decoration: none;
    color: var(--text-gray);
    font-size: 10px;
    font-family: 'Montserrat', sans-serif;
    padding: 0 16px;
    position: absolute;
    bottom: 6px;
    width: 100%;
    text-align: center;
    left: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    max-height: 14px;
    white-space: nowrap;
    transition: var(--transition);
}

.reviews-widget__link:hover {
    color: var(--accent-gold);
}

.reviews-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.reviews-stats {
    background: var(--secondary-dark);
    padding: 28px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.reviews-stats__item {
    text-align: center;
}

.reviews-stats__number {
    font-size: 44px;
    font-weight: 900;
    color: var(--accent-gold);
    line-height: 1;
    margin-bottom: 12px;
}

.reviews-stats__label {
    font-size: 13px;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.reviews-stats__label i {
    color: var(--accent-gold);
    font-size: 15px;
}

.reviews-cta {
    background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--primary-dark) 100%);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    text-align: center;
}

.reviews-cta__title {
    font-size: 22px;
    font-weight: 800;
    color: var(--accent-gold);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.reviews-cta__text {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.reviews-cta__button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    padding: 14px 35px;
}

.reviews-cta__button i {
    font-size: 15px;
}

.reviews-social {
    background: var(--secondary-dark);
    padding: 28px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    text-align: center;
}

.reviews-social__title {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 18px;
}

.reviews-social .social-links {
    justify-content: center;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--secondary-dark);
    padding: 50px 0 25px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 35px;
    margin-bottom: 35px;
}

.footer-about h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--accent-gold);
    margin-bottom: 12px;
}

.footer-about p {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.7;
}

.footer-contacts h4,
.footer-social h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--accent-gold);
}

.footer-contacts p {
    font-size: 13px;
    color: var(--text-gray);
    margin-bottom: 6px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

.social-links i {
    font-size: 18px;
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    font-size: 12px;
    color: var(--text-gray);
}

/* ===== LIGHTBOX ===== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.lightbox.active {
    display: flex;
}

.lightbox-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: var(--accent-gold);
    color: var(--primary-dark);
    border: none;
    font-size: 28px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--accent-gold-hover);
    transform: scale(1.1);
}

.lightbox-close {
    top: 25px;
    right: 25px;
}

.lightbox-prev {
    left: 25px;
}

.lightbox-next {
    right: 25px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== АДАПТИВНОСТЬ: ПЛАНШЕТЫ ===== */
@media (max-width: 1024px) {
    :root {
        --section-padding: var(--section-padding-tablet);
    }
    
    .container {
        padding: 0 18px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .nav-logo {
        height: 45px;
    }
    
    .logo-image {
        height: 40px;
        max-width: 160px;
    }
    
    .nav-menu {
        gap: 25px;
    }
    
    .main-title {
        font-size: 40px;
    }
    
    .info {
        margin: -80px auto 0;
        height: 180px;
        border-radius: 25px;
    }
    
    .info-card {
        height: 180px;
        padding: 0 25px;
    }
    
    .info-card__title {
        font-size: 1.5rem;
    }
    
    .info-card__text {
        font-size: 1rem;
    }
    
    .info-card__image {
        width: 110px;
        height: 110px;
    }
    
    .about-grid {
        gap: 25px;
    }
    
    .about-card {
        padding: 30px 20px;
    }
    
    .portfolio-grid {
        gap: 12px;
    }
    
    .services-content {
        grid-template-columns: 1fr;
    }
    
    .services-image {
        display: none;
    }
    
    .services-table {
        padding: 30px;
    }
    
    .contact-content,
    .map-wrapper,
    .reviews-content {
        grid-template-columns: 1fr;
    }
    
    .map-info,
    .reviews-info {
        position: relative;
        top: 0;
    }
    
    .map-container {
        height: 450px;
    }
    
    .reviews-widget__container {
        height: 550px;
    }
}

/* ===== АДАПТИВНОСТЬ: МОБИЛЬНЫЕ ===== */
@media (max-width: 768px) {
    :root {
        --section-padding: var(--section-padding-mobile);
        --container-padding: var(--container-padding-mobile);
    }
    
    .section-header {
        margin-bottom: 35px;
    }
    
    .section-title {
        font-size: 28px;
        margin-bottom: 12px;
    }
    
    .section-subtitle {
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    .section-line {
        width: 60px;
        height: 3px;
    }
    
    .button {
        padding: 14px 30px;
        font-size: 14px;
    }
    
    .header {
        padding: 12px 0;
    }
    
    .nav-logo {
        height: 40px;
    }
    
    .logo-image {
        height: 36px;
        max-width: 140px;
    }
    
    .nav-menu {
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        background: var(--secondary-dark);
        flex-direction: column;
        padding: 25px;
        gap: 18px;
        transform: translateX(-100%);
        transition: var(--transition);
        box-shadow: 0 10px 30px var(--shadow-medium);
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-burger {
        display: flex;
    }
    
    .main {
        padding: 100px 0 50px;
        min-height: 50vh;
    }
    
    .main-subtitle {
        font-size: 13px;
        margin-bottom: 15px;
    }
    
    .main-title {
        font-size: 30px;
        margin-bottom: 25px;
    }
    
    .main__button-box {
        margin-bottom: 50px;
        gap: 10px;
    }
    
    .main-button {
        font-size: 14px;
        padding: 14px 30px;
    }
    
    .main__button-description {
        font-size: 12px;
    }
    
    .info {
        flex-direction: column;
        margin: 25px auto 0;
        height: auto;
        border-radius: 20px;
        width: calc(100% - 30px);
    }
    
    .info-card {
        width: 100%;
        height: auto;
        min-height: 120px;
        padding: 20px 25px;
        border-bottom: 1px solid #777;
    }
    
    .info-card:last-of-type {
        border-bottom: none;
    }
    
    .info-card::before {
        display: none;
    }
    
    .info-card__title {
        font-size: 1.4rem;
    }
    
    .info-card__text {
        font-size: 0.95rem;
        margin-top: 6px;
    }
    
    .info-card__image {
        width: 90px;
        height: 90px;
        right: 18px;
        opacity: 0.1;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .about-card {
        padding: 28px 20px;
    }
    
    .about-card__icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .about-card__icon img {
        width: 52px;
        height: 52px;
    }
    
    .about-card__title {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .about-card__text {
        font-size: 13px;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 10px;
    }
    
    .portfolio-item__overlay i {
        font-size: 30px;
    }
    
    .services-table {
        padding: 25px 18px;
    }
    
    .service-row {
        flex-direction: column;
        align-items: flex-start;
        padding: 18px 15px;
        margin-bottom: 10px;
    }
    
    .service-name {
        font-size: 1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
    
    .service-time {
        font-size: 0.75rem;
    }
    
    .service-desc {
        font-size: 0.8rem;
    }
    
    .service-price {
        margin-left: 0;
        margin-top: 12px;
        font-size: 1.4rem;
    }
    
    .service-highlight .service-price {
        font-size: 1.6rem;
    }
    
    .service-highlight::before {
        font-size: 0.5rem;
        padding: 3px 60px;
        right: -60px;
    }
    
    .table-button {
        margin-top: 20px;
    }
    
    .contact-form-wrapper {
        padding: 28px 20px;
    }
    
    .form-group {
        margin-bottom: 18px;
    }
    
    .form-group label {
        font-size: 12px;
        margin-bottom: 6px;
    }
    
    .form-group input,
    .form-group select {
        padding: 11px 13px;
        font-size: 13px;
    }
    
    .contact-info {
        gap: 22px;
    }
    
    .contact-info__item {
        gap: 15px;
    }
    
    .contact-info__item i {
        font-size: 22px;
    }
    
    .contact-info__item h4 {
        font-size: 16px;
    }
    
    .contact-info__item p {
        font-size: 13px;
    }
    
    .map-container {
        height: 380px;
        border-radius: 12px;
    }
    
    .map-info {
        padding: 28px 20px;
    }
    
    .map-info__title {
        font-size: 22px;
        margin-bottom: 18px;
    }
    
    .map-info__phone {
        font-size: 20px;
        margin-bottom: 22px;
    }
    
    .map-info__address,
    .map-info__time {
        font-size: 13px;
        margin-bottom: 15px;
        gap: 10px;
    }
    
    .map-info__address i,
    .map-info__time i {
        font-size: 16px;
    }
    
    .map-info__buttons {
        margin-top: 22px;
    }
    
    .map-info__buttons .button {
        font-size: 13px;
        padding: 12px 25px;
    }
    
    .reviews-widget {
        padding: 15px;
    }
    
    .reviews-widget__container {
        height: 480px;
    }
    
    .reviews-stats {
        padding: 22px;
        gap: 18px;
    }
    
    .reviews-stats__number {
        font-size: 38px;
        margin-bottom: 10px;
    }
    
    .reviews-stats__label {
        font-size: 12px;
    }
    
    .reviews-cta {
        padding: 25px 20px;
    }
    
    .reviews-cta__title {
        font-size: 19px;
        margin-bottom: 10px;
    }
    
    .reviews-cta__text {
        font-size: 13px;
        margin-bottom: 18px;
    }
    
    .reviews-cta__button {
        font-size: 13px;
        padding: 12px 28px;
    }
    
    .reviews-social {
        padding: 22px;
    }
    
    .reviews-social__title {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        gap: 28px;
        margin-bottom: 28px;
    }
    
    .footer-about h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .footer-about p {
        font-size: 12px;
    }
    
    .footer-contacts h4,
    .footer-social h4 {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .footer-contacts p {
        font-size: 12px;
    }
    
    .social-links {
        gap: 10px;
    }
    
    .social-links a {
        width: 38px;
        height: 38px;
    }
    
    .social-links i {
        font-size: 16px;
    }
    
    .footer-bottom {
        padding-top: 22px;
    }
    
    .footer-bottom p {
        font-size: 11px;
    }
    
    .lightbox-close,
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 22px;
    }
    
    .lightbox-close {
        top: 15px;
        right: 15px;
    }
    
    .lightbox-prev {
        left: 15px;
    }
    
    .lightbox-next {
        right: 15px;
    }
}

/* ===== АДАПТИВНОСТЬ: МАЛЕНЬКИЕ МОБИЛЬНЫЕ ===== */
@media (max-width: 480px) {
    .section-title {
        font-size: 24px;
    }
    
    .main-title {
        font-size: 26px;
    }
    
    .info {
        width: calc(100% - 20px);
        border-radius: 15px;
        margin: 20px auto 0;
    }
    
    .info-card {
        min-height: 110px;
        padding: 18px 20px;
    }
    
    .info-card__title {
        font-size: 1.3rem;
    }
    
    .info-card__text {
        font-size: 0.9rem;
    }
    
    .info-card__image {
        width: 75px;
        height: 75px;
        right: 15px;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .map-container {
        height: 320px;
    }
    
    .reviews-widget__container {
        height: 420px;
    }
    
    .reviews-stats {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 18px;
    }
    
    .reviews-stats__item {
        padding-bottom: 18px;
        border-bottom: 1px solid var(--border-color);
    }
    
    .reviews-stats__item:last-child {
        padding-bottom: 0;
        border-bottom: none;
    }
    
    .reviews-stats__number {
        font-size: 40px;
    }
}