/*
Theme Name: AVTO-ELECTRICA
Author: Hap
Version: 1.0.0
*/

:root {
    --dark-color: #0a0a0a;
    --dark-color-light: #1a1a1a;
    --light-color: #fff;
    --accent-color: #ff5c00;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Montserrat, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #0a0a0a;
    color: #fff;
}

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




/* Header */
.header {
    background: var(--dark-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* Header Top */
.header__top {
    background: var(--dark-color);
    border-bottom: 1px solid #222;
    padding: 10px 0;
    font-size: 14px;
}

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

.header__top-left,
.header__top-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.text-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--light-color);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
}

.text-btn::before {
    content: '';
    position: absolute;
    left: -5px;
    right: -5px;
    top: -3px;
    bottom: -3px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.text-btn:hover::before {
    opacity: 1;
}

.text-btn:hover {
    color: var(--light-color);
}

.text-btn svg {
    width: 16px;
    height: 16px;
    fill: #888;
    transition: fill 0.3s ease, transform 0.3s ease;
}

.text-btn:hover svg {
    fill: var(--light-color);
    transform: scale(1.1);
}

/* Header Bottom */
.header__bottom {
    padding: 20px 0;
}

.header__bottom .header__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.logo img {
    height: 40px;
    display: block;
}

/* Navigation */
.header__mid {
    flex: 1;
}

.header-nav__list {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-btn {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    position: relative;
    padding: 5px 0;
}

.nav-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color), var(--dark-color));
    transition: width 0.4s ease;
}

.nav-btn:hover::after,
.nav-btn.active::after {
    width: 100%;
}

.nav-btn:hover {
    color: #fff;
    transform: translateY(-2px);
}

.nav-btn.active {
    color: #fff;
}

.nav-btn svg {
    width: 12px;
    height: 12px;
    fill: #888;
    transition: all 0.3s ease;
}

.nav-btn:hover svg {
    fill: #fff;
    transform: rotate(180deg);
}

/* Submenu Level 1 */
.header-nav__submenu-btn {
    position: relative;
}

.header-nav-submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--dark-color-light);
    border: 1px solid #333;
    border-radius: 8px;
    padding: 10px 0;
    min-width: 260px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    margin-top: 15px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.header-nav__submenu-btn:hover .header-nav-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header-nav-submenu .header-nav__list {
    flex-direction: column;
    gap: 0;
    align-items: stretch;
}

.header-nav-submenu .nav-btn {
    padding: 12px 20px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.header-nav-submenu .nav-btn::after {
    display: none;
}

.header-nav-submenu .nav-btn:hover {
    background: #222;
    border-left-color: var(--accent-color);
    padding-left: 25px;
    transform: translateY(0);
}

/* Submenu Level 2 */
.submenu-item {
    position: relative;
}

.submenu-level-2 {
    position: absolute;
    left: 100%;
    top: -10px;
    background: var(--dark-color-light);
    border: 1px solid #333;
    border-radius: 8px;
    padding: 10px 0;
    min-width: 240px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    margin-left: 5px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.submenu-item:hover .submenu-level-2 {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.submenu-level-2 .nav-btn {
    color: #ccc;
    font-size: 14px;
}

.submenu-level-2 .nav-btn:hover {
    color: #fff;
    background: #2a2a2a;
}

.submenu-item > .nav-btn svg {
    margin-left: auto;
    transform: rotate(-90deg);
}

.submenu-item > .nav-btn:hover svg {
    transform: rotate(-90deg) scale(1.1);
}

/* Contact Button */
.header__contact-btn {
    background: var(--accent-color);
    color: #fff;
    padding: 12px 25px;
    border: 1px solid #333;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    white-space: nowrap;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.header__contact-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.header__contact-btn:hover::before {
    width: 300px;
    height: 300px;
}

.header__contact-btn span {
    position: relative;
    z-index: 1;
}

.header__contact-btn:hover {
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
}

.header__contact-btn::after {
    content: '→';
    position: absolute;
    right: 15px;
    transition: all 0.3s ease;
}

.header__contact-btn:hover::after {
    opacity: 1;
    right: 15px;
}

.header__contact-btn span {
    margin-right: 15px;
}

/* Mobile Menu Button */
.header__btn-container {
    display: none;
}

.hamburger-btn {
    background: #1a1a1a;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1001;
}

.hamburger-btn:hover {
    background: #222;
    border-color: #fff;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 400px;
    height: 100vh;
    background: #0a0a0a;
    z-index: 1000;
    transition: right 0.4s ease;
    overflow-y: auto;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu__header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #222;
}

.mobile-menu__logo svg {
    height: 35px;
}

.mobile-menu__close {
    background: none;
    border: none;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.mobile-menu__close:hover {
    transform: rotate(90deg);
}

.mobile-menu__content {
    padding: 20px;
}

.mobile-menu__nav {
    list-style: none;
    margin-bottom: 30px;
}

.mobile-menu__item {
    border-bottom: 1px solid #222;
}

.mobile-menu__link {
    display: block;
    padding: 15px 0;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mobile-submenu__link .mobile-menu__arrow {
    padding-left: 5px;
}

.mobile-menu__link:hover {
    color: #888;
}

.mobile-menu__item--submenu > .mobile-menu__link {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu__arrow {
    transition: transform 0.3s ease;
}

.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    list-style: none;
    margin: 0 -20px;
    padding: 0 20px;
}

.mobile-submenu .mobile-submenu {
    padding-left: 30px;
}

.mobile-menu__item--submenu.active .mobile-submenu {
    max-height: 500px;
}

.mobile-submenu__item {
    border-top: 1px solid #1a1a1a;
}

.mobile-submenu__link {
    display: block;
    padding: 12px 0 12px 20px;
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.mobile-submenu__link:hover {
    color: #fff;
}

.mobile-menu__cta {
    margin-top: 20px;
}

.mobile-menu__cta-btn {
    display: block;
    width: 100%;
    padding: 15px;
    background: #1a1a1a;
    color: var(--accent-color);
    text-align: center;
    text-decoration: none;
    border: 1px solid var(--accent-color);
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.mobile-menu__cta-btn:hover {
    background: #222;
    border-color: #fff;
}

/* Responsive */
@media (max-width: 1024px) {
    .header__top-left .text-btn span {
        display: none;
    }

    .header__email-link {
        display: none;
    }

    .header-nav__list {
        gap: 20px;
    }

    .nav-btn {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .header__top-right {
        flex-wrap: wrap;
        gap: 15px;
    }

    .header__mid {
        display: none;
    }

    .header__contact-btn {
        display: none;
    }

    .header__btn-container {
        display: block;
    }

    .header__bottom .header__wrapper {
        gap: 20px;
    }
}

/* Индикатор что пункт раскрыт */
.mobile-menu__item--submenu.active > .mobile-menu__link,
.mobile-submenu__item--has-children.active > .mobile-submenu__link {
    color: var(--accent-color);
}







/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    padding: 20px 0 60px;
}

/* Content Container */
.hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Hero Heading */
.hero__text-wrapper {
    text-align: center;
    animation: fadeInUp 0.8s ease;
}

.hero__heading {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #fff;
    background: linear-gradient(135deg, #fff 0%, #ccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__description {
    font-size: 18px;
    line-height: 1.6;
    color: #888;
    max-width: 700px;
    margin: 0 auto;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Car Section */
.hero__car-section {
    position: relative;
    width: 100%;
    margin: 0 auto;
    animation: carZoom 1.2s ease 0.3s backwards;
}

@keyframes carZoom {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero__car-section picture {
    display: block;
    width: 100%;
    position: relative;
}

.hero__car-section img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.5));
}

/* Service Points Container */
.hero__services {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

/* Service Point */
.service-point {
    position: absolute;
    pointer-events: all;
    cursor: pointer;
}

/* Positioning */
.service-point[data-index="1"] {
    top: 30%;
    left: 20%;
}

.service-point[data-index="2"] {
    top: 25%;
    left: 45%;
}

.service-point[data-index="3"] {
    top: 30%;
    right: 20%;
}

.service-point[data-index="4"] {
    bottom: 35%;
    left: 30%;
}

.service-point[data-index="5"] {
    bottom: 35%;
    right: 30%;
}

/* Point Marker */
.service-point__marker {
    width: 20px;
    height: 20px;
    background: var(--accent-color);
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 0 0 rgba(255, 92, 0, 0.7);
    animation: pointPulse 2s infinite;
    transition: all 0.3s ease;
}

.service-point__marker::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: #0a0a0a;
    border-radius: 50%;
}

@keyframes pointPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 92, 0, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(255, 92, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 92, 0, 0);
    }
}

.service-point:hover .service-point__marker {
    transform: scale(1.5);
    box-shadow: 0 0 30px rgba(255, 255, 255, 1);
    animation: none;
}

/* Tooltip */
.service-point__tooltip {
    position: absolute;
    bottom: calc(100% + 15px);
    left: 50%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid #333;
    border-radius: 10px;
    padding: 12px 20px;
    white-space: nowrap;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);

    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-5px);
}

.service-point__tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-top-color: rgba(10, 10, 10, 0.95);
}

.service-point:hover .service-point__tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-5px);
}

.service-point__name {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

/* Action Button */
.service-point__action {
    position: absolute;
    top: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    color: #0a0a0a;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.service-point:hover .service-point__action {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(5px);
}

.service-point__action:hover {
    background: #f0f0f0;
    transform: translateX(-50%) translateY(3px);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero__heading {
        font-size: 48px;
    }

    .hero__description {
        font-size: 16px;
    }

    .service-point__marker {
        width: 18px;
        height: 18px;
    }

    .service-point__marker::before {
        width: 8px;
        height: 8px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 80px 0 40px;
        min-height: auto;
    }

    .hero__content {
        gap: 40px;
    }

    .hero__heading {
        font-size: 36px;
    }

    .hero__description {
        font-size: 15px;
    }

    .service-point__marker {
        width: 16px;
        height: 16px;
    }

    .service-point__marker::before {
        width: 7px;
        height: 7px;
    }

    .service-point__tooltip {
        font-size: 12px;
        padding: 10px 16px;
    }

    .service-point__action {
        font-size: 11px;
        padding: 7px 14px;
    }
}

@media (max-width: 480px) {
    .hero__heading {
        font-size: 28px;
    }

    .hero__description {
        font-size: 14px;
    }

    .service-point__marker {
        width: 14px;
        height: 14px;
    }

    .service-point__marker::before {
        width: 6px;
        height: 6px;
    }
}




/* Our Offers Section */
.our-offers {
    padding: 80px 0;
    background: #0a0a0a;
}

.our-offers__heading {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #fff;
}

/* Cards Grid */
.our-offers__cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

/* Offer Card */
.offer-card {
    background: var(--dark-color-light);
    border: 1px solid #222;
    border-radius: 12px;
    padding: 30px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.offer-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Mobile Header (hidden on desktop) */
.offer-card__mob-header {
    display: none;
}

/* Icon */
.offer-card__icon {
    width: 50px;
    height: 50px;
    background: #222;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.offer-card:hover .offer-card__icon {
    background: #2a2a2a;
    transform: scale(1.1) rotate(5deg);
}

.offer-card__icon svg {
    width: 28px;
    height: 28px;
    fill: var(--accent-color);
}

/* Text Content */
.offer-card__text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.offer-card__title {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    transition: color 0.3s ease;
}

.offer-card:hover .offer-card__title {
    color: #fff;
}

.offer-card__desc {
    font-size: 14px;
    line-height: 1.6;
    color: #888;
}

/* Dynamic Button */
.dynamic-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-color);
    margin-top: auto;
    transition: all 0.3s ease;
}

.dynamic-btn svg {
    width: 16px;
    height: 16px;
    fill: var(--accent-color);
    transition: transform 0.3s ease;
}

.offer-card:hover .dynamic-btn {
    gap: 12px;
}

.offer-card:hover .dynamic-btn svg {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 768px) {
    .our-offers {
        padding: 60px 0;
    }

    .our-offers__heading {
        font-size: 32px;
        margin-bottom: 30px;
    }

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

    .offer-card {
        padding: 20px;
    }

    /* Show mobile header */
    .offer-card__mob-header {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 10px;
    }

    .offer-card__title-mob {
        font-size: 18px;
        font-weight: 600;
        color: #fff;
    }

    /* Hide desktop title */
    .offer-card__title {
        display: none;
    }

    .offer-card__icon {
        width: 45px;
        height: 45px;
    }

    .offer-card__icon:nth-child(2) {
        display: none;
    }

    .offer-card__icon svg {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 480px) {
    .our-offers__heading {
        font-size: 26px;
    }

    .offer-card__desc {
        font-size: 13px;
    }
}




/* Work Flow Section */
.work-flow {
    padding: 80px 0;
    background: #0a0a0a;
}

.work-flow__heading {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #fff;
    text-align: center;
}

/* Cards Container */
.work-flow__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    position: relative;
}

/* Work Flow Card */
.work-flow-card {
    background: #1a1a1a;
    border: 1px solid #222;
    padding: 40px 30px;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.work-flow-card:first-child {
    border-radius: 12px 0 0 12px;
}

.work-flow-card:last-child {
    border-radius: 0 12px 12px 0;
}

.work-flow-card:not(:last-child) {
    border-right: none;
}

/* Title */
.work-flow-card__title {
    font-size: 22px;
    font-weight: 600;
    color: var(--accent-color);
    line-height: 1.3;
    min-height: 60px;
}

/* Description */
.work-flow-card__desc {
    font-size: 14px;
    line-height: 1.7;
    color: #888;
    flex: 1;
}

/* Triangle Arrow (Desktop) */
.work-flow-card__img {
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    z-index: 3;
    fill: #1a1a1a;
    filter: drop-shadow(2px 0 0 #222);
    transition: all 0.3s ease;
}

.work-flow-card:last-child .work-flow-card__img {
    display: none;
}

/* Mobile Triangle */
.work-flow-card__mob-triangle {
    display: none;
}

.work-flow-card:nth-child(2) {
    background: #2c2c2c;
}

.work-flow-card:nth-child(2) .work-flow-card__img {
    fill: #2c2c2c;
}

.work-flow-card:nth-child(3) {
    background: #4e4e4e;
}

/* Responsive */
@media (max-width: 1024px) {
    .work-flow__heading {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .work-flow-card {
        padding: 30px 25px;
    }

    .work-flow-card__title {
        font-size: 20px;
        min-height: auto;
    }

    .work-flow-card__img {
        width: 50px;
        height: 50px;
        right: -25px;
    }
}

@media (max-width: 768px) {
    .work-flow {
        padding: 60px 0;
    }

    .work-flow__heading {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .work-flow__cards {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .work-flow-card {
        border-radius: 0 !important;
        border-right: 1px solid #222 !important;
        padding: 30px 20px 40px;
    }

    .work-flow-card:first-child {
        border-radius: 12px 12px 0 0 !important;
    }

    .work-flow-card:last-child {
        border-radius: 0 0 12px 12px !important;
    }

    .work-flow-card:not(:last-child) {
        border-bottom: none;
    }

    /* Hide desktop triangle */
    .work-flow-card__img {
        display: none;
    }

    /* Show mobile triangle */
    .work-flow-card__mob-triangle {
        display: block;
        position: absolute;
        bottom: -20px;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 0;
        border-left: 20px solid transparent;
        border-right: 20px solid transparent;
        border-top: 20px solid #1a1a1a;
        z-index: 3;
        filter: drop-shadow(0 2px 0 #222);
    }

    .work-flow-card:last-child .work-flow-card__mob-triangle {
        display: none;
    }

    .work-flow-card:hover .work-flow-card__mob-triangle {
        border-top-color: #1f1f1f;
    }

    .work-flow-card__title {
        font-size: 18px;
    }

    .work-flow-card__desc {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .work-flow__heading {
        font-size: 26px;
    }

    .work-flow-card {
        padding: 25px 15px 35px;
    }

    .work-flow-card__title {
        font-size: 17px;
    }
}




/* Advantages Section */
.advantages {
    padding: 80px 0;
    background: #0a0a0a;
}

.advantages__heading {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #fff;
    text-align: center;
}

/* Advantages Grid */
.advantages__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Advantage Card */
.advantage-card {
    background: var(--dark-color-light);
    border: 1px solid #222;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
    position: relative;
}

.advantage-card:hover {
    border-color: var(--accent-color);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

/* Image Container */
.advantage-card__image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
    background: #111;
}

.advantage-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.advantage-card:hover .advantage-card__image img {
    transform: scale(1.1);
}

.advantage-card__image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.9), transparent);
}

/* Content */
.advantage-card__content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.advantage-card__title {
    font-size: 22px;
    font-weight: 600;
    color: var(--accent-color);
    line-height: 1.3;
}

.advantage-card__desc {
    font-size: 14px;
    line-height: 1.7;
    color: #888;
}

/* Responsive */
@media (max-width: 1024px) {
    .advantages__heading {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .advantages__grid {
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .advantages {
        padding: 60px 0;
    }

    .advantages__heading {
        font-size: 32px;
        margin-bottom: 30px;
    }

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

    .advantage-card__image {
        height: 200px;
    }

    .advantage-card__content {
        padding: 25px 20px;
    }

    .advantage-card__title {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .advantages__heading {
        font-size: 26px;
    }

    .advantage-card__title {
        font-size: 18px;
    }

    .advantage-card__desc {
        font-size: 13px;
    }
}




/* About Section */
.about-us {
    padding: 80px 0;
    background: rgba(255, 255, 255, .05);
    position: relative;
    overflow: hidden;
}

/* Background decoration */
.about-us::before {
    content: 'АВТО';
    position: absolute;
    top: 50%;
    right: -200px;
    transform: translateY(-50%);
    font-size: 300px;
    font-weight: 900;
    color: #0a0a0a;
    opacity: 0.3;
    pointer-events: none;
    z-index: 1;
}

.about-us__container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Left Side - Content */
.about-us__content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.about-us__heading {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 10px;
}

.about-us__subtitle {
    font-size: 18px;
    color: #888;
    font-weight: 500;
    margin-bottom: 15px;
}

.about-us__text {
    font-size: 15px;
    line-height: 1.8;
    color: #aaa;
}

.about-us__text p {
    margin-bottom: 15px;
}

.about-us__text p:last-child {
    margin-bottom: 0;
}

/* Stats */
.about-us__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 15px;
}

.stat-item {
    background: var(--dark-color-light);
    border: 1px solid #222;
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item:hover {
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.stat-item__number {
    font-size: 36px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 8px;
    display: block;
}

.stat-item__label {
    font-size: 14px;
    color: #888;
}

/* Right Side - Image */
.about-us__image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 500px;
    background: #1a1a1a;
}

.about-us__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-us__image:hover img {
    transform: scale(1.05);
}

.about-us__image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.8), transparent);
    pointer-events: none;
}

/* Image Badge */
.image-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid #333;
    border-radius: 10px;
    padding: 20px 25px;
    z-index: 2;
}

.image-badge__title {
    font-size: 16px;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 5px;
}

.image-badge__text {
    font-size: 13px;
    color: #888;
}

/* CTA Button */
.about-us__cta {
    margin-top: 20px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent-color);
    color: var(--light-color);
    padding: 15px 30px;
    border: 1px solid #333;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.cta-btn:hover::before {
    width: 300px;
    height: 300px;
}

.cta-btn span {
    position: relative;
    z-index: 1;
}

.cta-btn:hover {
    border-color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.cta-btn svg {
    width: 18px;
    height: 18px;
    fill: #fff;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.cta-btn:hover svg {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 1024px) {
    .about-us__container {
        gap: 40px;
    }

    .about-us__heading {
        font-size: 36px;
    }

    .about-us__image {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .about-us {
        padding: 60px 0;
    }

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

    .about-us__heading {
        font-size: 32px;
    }

    .about-us__subtitle {
        font-size: 16px;
    }

    .about-us__text {
        font-size: 14px;
    }

    .about-us__stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .stat-item {
        padding: 20px 15px;
    }

    .stat-item__number {
        font-size: 28px;
    }

    .stat-item__label {
        font-size: 12px;
    }

    .about-us__image {
        height: 350px;
        order: -1;
    }

    .about-us::before {
        font-size: 200px;
        right: -50px;
    }
}

@media (max-width: 480px) {
    .about-us__heading {
        font-size: 26px;
    }

    .about-us__stats {
        grid-template-columns: 1fr;
    }

    .stat-item__number {
        font-size: 32px;
    }

    .image-badge {
        bottom: 20px;
        left: 20px;
        padding: 15px 20px;
    }

    .image-badge__title {
        font-size: 14px;
    }
}




/* FAQ Section */
.faq {
    padding: 80px 0;
    background: #0a0a0a;
}

.faq__heading {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #fff;
    text-align: center;
}

/* FAQ Items Container */
.faq__items {
    display: flex;
    flex-direction: column;
}

/* FAQ Item */
.faq-item {
    background: transparent;
    border: 1px solid #111;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: #1f1f1f;
}

.faq-item.active {
    background: #1f1f1f;
    border-color: #444;
}

/* Title Container */
.faq-item__title-container {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    transition: background 0.3s ease;
}

/* Title */
.faq-item__title {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.faq-item.active .faq-item__title {
    /*color: #111;*/
}

/* Accordion Arrow */
.accordion-arrow__container {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.accordion-arrow {
    position: relative;
    width: 20px;
    height: 20px;
    display: block;
}

.accordion-arrow span {
    position: absolute;
    background: var(--accent-color);
    transition: all 0.3s ease;
}

.faq-item.active .accordion-arrow span {
    /*background: #111;*/
}

.accordion-arrow span:first-child {
    width: 20px;
    height: 2px;
    top: 9px;
    left: 0;
}

.accordion-arrow span:last-child {
    width: 2px;
    height: 20px;
    top: 0;
    left: 9px;
    opacity: 1;
}

.faq-item.active .accordion-arrow span:last-child {
    opacity: 0;
    transform: rotate(90deg);
}

.faq-item.active .accordion-arrow span:first-child {
    transform: rotate(180deg);
}

/* Description */
.faq-item__description {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 30px;
}

.faq-item.active .faq-item__description {
    max-height: 500px;
    padding: 0 30px 25px;
}

.faq-item__description p {
    font-size: 15px;
    line-height: 1.7;
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .faq {
        padding: 60px 0;
    }

    .faq__heading {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .faq-item__title-container {
        padding: 20px 20px;
    }

    .faq-item__title {
        font-size: 16px;
    }

    .faq-item.active .faq-item__description {
        padding: 0 20px 20px;
    }

    .faq-item__description p {
        font-size: 14px;
    }

    .accordion-arrow {
        width: 18px;
        height: 18px;
    }

    .accordion-arrow span:first-child {
        width: 18px;
        top: 8px;
    }

    .accordion-arrow span:last-child {
        height: 18px;
        left: 8px;
    }
}

@media (max-width: 480px) {
    .faq__heading {
        font-size: 26px;
    }

    .faq-item__title-container {
        padding: 18px 15px;
        gap: 15px;
    }

    .faq-item__title {
        font-size: 15px;
    }

    .faq-item.active .faq-item__description {
        padding: 0 15px 18px;
    }

    .faq-item__description p {
        font-size: 13px;
    }
}




/* Contacts Section */
.contacts {
    padding: 80px 0;
    background: #0a0a0a;
}

.contacts__heading {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #fff;
    text-align: center;
}

.contacts__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: flex-start;
    gap: 50px;
    margin-bottom: 60px;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info__intro {
    font-size: 16px;
    line-height: 1.7;
    color: #aaa;
}

.contact-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: #1a1a1a;
    border: 1px solid #222;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.contact-item__icon {
    width: 50px;
    height: 50px;
    background: #222;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-item__icon {
    background: #2a2a2a;
    transform: scale(1.1) rotate(5deg);
}

.contact-item__icon svg {
    width: 24px;
    height: 24px;
    fill: var(--accent-color);
}

.contact-item__content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-item__label {
    font-size: 13px;
    color: #888;
    font-weight: 500;
}

.contact-item__value {
    font-size: 16px;
    color: #fff;
    font-weight: 600;
}

.contact-item__value a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item__value a:hover {
    color: #ccc;
}

/* Contact Form */
.contact-form {
    background: #1a1a1a;
    border: 1px solid #222;
    border-radius: 12px;
    padding: 35px;
}

.contact-form__title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
}

.contact-form__subtitle {
    font-size: 14px;
    color: #888;
    margin-bottom: 25px;
}

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

.form-group br {
    display: none !important;
}

.form-label {
    display: block;
    font-size: 14px;
    color: #aaa;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px 15px;
    background: #0a0a0a;
    border: 1px solid #222;
    border-radius: 8px;
    color: #fff;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #444;
    background: #111;
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.form-submit {
    width: 100%;
    padding: 15px;
    background: var(--accent-color);
    border: 1px solid #333;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.form-submit input {
    width: 100%;
    height: 100%;

    color: #fff;
    font-size: 15px;
    font-weight: 600;

    position: relative;
    z-index: 1;

    background: transparent;
    border: none;
    outline: none;

    cursor: pointer;
}

.form-submit::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.form-submit:hover::before {
    width: 600px;
    height: 600px;
}

.form-submit span {
    position: relative;
    z-index: 1;
}

.form-submit:hover {
    border-color: #444;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

/* Map Section */
.map-section {
    width: 100%;
    height: 450px;
    background: #1a1a1a;
    border: 1px solid #222;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(1) invert(0.9) contrast(0.9);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: #222;
    border: 1px solid #333;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #2a2a2a;
    border-color: var(--accent-color);
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: var(--accent-color);
}

/* Responsive */
@media (max-width: 1024px) {
    .contacts__container {
        gap: 40px;
    }

    .contact-form {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .contacts {
        padding: 60px 0;
    }

    .contacts__heading {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .contacts__container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-form {
        padding: 25px 20px;
    }

    .contact-form__title {
        font-size: 22px;
    }

    .map-section {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .contacts__heading {
        font-size: 26px;
    }

    .contact-item {
        padding: 20px;
        gap: 15px;
    }

    .contact-item__icon {
        width: 45px;
        height: 45px;
    }

    .contact-item__icon svg {
        width: 20px;
        height: 20px;
    }

    .contact-form__title {
        font-size: 20px;
    }

    .form-input,
    .form-textarea {
        padding: 10px 12px;
        font-size: 14px;
    }

    .map-section {
        height: 300px;
    }
}





/* Footer */
.footer {
    background: #0a0a0a;
    border-top: 1px solid #222;
    padding: 60px 0 30px;
}

.footer__wrapper {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

/* Footer Top */
.footer__top {
    display: flex;
    justify-content: space-between;
    gap: 60px;
}

.footer__top-left {
    flex-shrink: 0;
}

.footer__logo img {
    height: 45px;
    display: block;
}

.footer__logo svg {
    height: 45px;
    width: auto;
}

.footer__top-right {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    flex: 1;
}

/* Footer Column */
.footer__column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__schedule {
    gap: 10px;
}

.schedule__days {
    font-weight: 600;
    color: var(--accent-color);
}

.schedule__day-off {
    color: #888;
}

/* Text Button */
.text-btn {
    color: #888;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    width: fit-content;
}

.text-btn::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.text-btn:hover {
    color: var(--accent-color);
}

.text-btn:hover::after {
    width: 100%;
}

.text-btn--m {
    font-size: 14px;
}

.text--m {
    font-size: 14px;
    color: #aaa;
}

/* Footer Bottom */
.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid #222;
    gap: 20px;
}

.footer__copyright {
    font-size: 13px;
    color: #666;
}

.footer__copyright a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__copyright a:hover {
    color: #fff;
}

.footer__additional-links {
    display: flex;
    gap: 25px;
}

.footer__additional-links .text-btn {
    font-size: 13px;
}

/* Responsive */
@media (max-width: 1024px) {
    .footer__top {
        gap: 40px;
    }

    .footer__top-right {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .footer__additional-link {
        grid-column: span 3;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 50px 0 25px;
    }

    .footer__wrapper {
        gap: 40px;
    }

    .footer__top {
        flex-direction: column;
        gap: 35px;
    }

    .footer__top-right {
        grid-template-columns: 1fr 1fr;
        gap: 30px 25px;
    }

    .footer__column:nth-child(3) {
        grid-column: span 2;
    }

    .footer__additional-link {
        grid-column: span 2;
    }

    .footer__bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding-top: 25px;
    }

    .footer__additional-links {
        flex-direction: column;
        gap: 10px;
    }
}

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

    .footer__logo img,
    .footer__logo svg {
        height: 35px;
    }

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

    .footer__column:nth-child(3),
    .footer__additional-link {
        grid-column: span 1;
    }

    .footer__bottom {
        padding-top: 20px;
    }

    .footer__copyright {
        font-size: 12px;
    }

    .text-btn,
    .text-btn--m {
        font-size: 13px;
    }

    .text--m {
        font-size: 13px;
    }
}










/* Service Hero */
.page-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1486262715619-67b85e0b08d3?w=1600&h=800&fit=crop&q=80') center/cover;
    opacity: 0.05;
    z-index: 0;
}

.page-hero__content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.page-hero__breadcrumbs {
    display: flex;
    flex-flow: row wrap;
    gap: 10px;
    align-items: center;
    margin-bottom: 20px;
    font-size: 14px;
    color: #888;
}

.page-hero__breadcrumbs span {
    color: var(--accent-color);
}

.page-hero__breadcrumbs a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-hero__breadcrumbs a:hover {
    color: var(--accent-color);
}

.page-hero__title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-hero__description {
    font-size: 18px;
    line-height: 1.7;
    color: #aaa;
    margin-bottom: 30px;
}

.page-hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent-color);
    color: var(--light-color);
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.page-hero__cta:hover {
    box-shadow: 0 8px 20px rgba(255, 92, 0, 0.2);
}

@media (max-width: 700px) {
    .page-hero__title {
        font-size: 30px;
    }
}













/* Services Grid */
.services-grid {
    padding: 80px 0;
}

.services-grid__title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    color: #fff;
}

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

/* Service Card */
.service-card {
    background: var(--dark-color-light);
    border: 1px solid #222;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
    position: relative;
}

.service-card:hover {
    border-color: var(--accent-color);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.service-card__image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: #111;
    position: relative;
}

.service-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-card__image img {
    transform: scale(1.1);
}

.service-card__content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card__icon {
    width: 50px;
    height: 50px;
    background: #222;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service-card:hover .service-card__icon {
    background: #2a2a2a;
    transform: scale(1.1) rotate(5deg);
}

.service-card__icon svg {
    width: 24px;
    height: 24px;
    fill: var(--accent-color);
}

.service-card__title {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
}

.service-card__description {
    font-size: 15px;
    line-height: 1.6;
    color: #888;
    margin-bottom: 20px;
    flex: 1;
}

.service-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #222;
}

.service-card__price {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-color);
}

.service-card__link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-color);
    font-size: 14px;
    font-weight: 600;
    transition: gap 0.3s ease;
}

.service-card:hover .service-card__link {
    gap: 12px;
}

.service-card__arrow {
    transition: transform 0.3s ease;
}

.service-card:hover .service-card__arrow {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 768px) {
    .services-grid {
        padding: 60px 0;
    }

    .services-grid__title {
        font-size: 32px;
        margin-bottom: 30px;
    }

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

    .service-card__image {
        height: 200px;
    }

    .services-cta {
        padding: 60px 0;
    }

    .services-cta__title {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .service-card__content {
        padding: 25px 20px;
    }

    .services-cta__title {
        font-size: 26px;
    }
}










/* About Story */
.about-story {
    padding: 80px 0;
}

.about-story__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-story__image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 500px;
}

.about-story__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-story__image:hover img {
    transform: scale(1.05);
}

.about-story__content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #fff;
}

.about-story__content p {
    font-size: 16px;
    line-height: 1.8;
    color: #aaa;
    margin-bottom: 20px;
}

/* Stats Section */
.about-stats {
    padding: 80px 0;
}

.about-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-card {
    text-align: center;
    padding: 40px 20px;
    background: #1a1a1a;
    border: 1px solid #222;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.stat-card__number {
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 10px;
    display: block;
}

.stat-card__label {
    font-size: 16px;
    color: #888;
}

/* Values Section */
.about-values {
    padding: 80px 0;
    background: #0f0f0f;
}

.about-values__title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #fff;
}

.about-values__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-card {
    background: var(--dark-color-light);
    border: 1px solid #222;
    border-radius: 12px;
    padding: 40px 30px;
    transition: all 0.3s ease;
}

.value-card:hover {
    border-color: var(--accent-color);
}

.value-card__icon {
    width: 60px;
    height: 60px;
    background: #222;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.value-card:hover .value-card__icon {
    background: #2a2a2a;
    transform: scale(1.1) rotate(5deg);
}

.value-card__icon svg {
    width: 32px;
    height: 32px;
    fill: var(--accent-color);
}

.value-card__title {
    font-size: 20px;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 12px;
}

.value-card__description {
    font-size: 14px;
    line-height: 1.7;
    color: #888;
}

/* Equipment Section */
.about-equipment {
    padding: 80px 0;
}

.about-equipment__title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #fff;
}

.about-equipment__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.equipment-card {
    display: flex;
    gap: 25px;
    background: var(--dark-color-light);
    border: 1px solid #222;
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
}

.equipment-card:hover {
    border-color: var(--accent-color);
}

.equipment-card__image {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: #111;
}

.equipment-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.equipment-card__content {
    flex: 1;
}

.equipment-card__name {
    font-size: 20px;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 8px;
}

.equipment-card__description {
    font-size: 14px;
    line-height: 1.6;
    color: #888;
}

/* Responsive */
@media (max-width: 1024px) {
    .about-story__grid {
        gap: 40px;
    }

    .about-stats__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-team__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-values__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-story__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-story__image {
        height: 350px;
    }

    .about-story__content h2,
    .about-team__title,
    .about-values__title,
    .about-equipment__title {
        font-size: 32px;
    }

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

    .about-team__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-values__grid {
        grid-template-columns: 1fr;
    }

    .about-equipment__grid {
        grid-template-columns: 1fr;
    }

    .equipment-card {
        flex-direction: column;
    }

    .equipment-card__image {
        width: 100%;
        height: 200px;
    }
}

@media (max-width: 480px) {
    .stat-card__number {
        font-size: 36px;
    }
}










/* Blog Content */
.blog-content {
    padding: 80px 0;
}

.blog-content__grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

/* Articles List */
.articles-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Article Card */
.article-card {
    background: var(--dark-color-light);
    border: 1px solid #222;
    border-radius: 12px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 350px 1fr;
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
    cursor: pointer;
}

.article-card:hover {
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.article-card__image {
    width: 100%;
    overflow: hidden;
    background: #111;
}

.article-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.article-card:hover .article-card__image img {
    transform: scale(1.1);
}

.article-card__content {
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.article-card__meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 13px;
    color: #666;
}

.article-card__date,
.article-card__reading-time {
    display: flex;
    align-items: center;
    gap: 6px;
}

.article-card__date svg,
.article-card__reading-time svg {
    width: 14px;
    height: 14px;
    fill: #666;
}

.article-card__category {
    display: inline-block;
    background: #222;
    color: var(--accent-color);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
    width: fit-content;
}

.article-card__title {
    font-size: 24px;
    font-weight: 700;
    color: var(--light-color);
    margin-bottom: 12px;
    line-height: 1.3;
}

.article-card__excerpt {
    font-size: 15px;
    line-height: 1.7;
    color: #888;
    margin-bottom: 20px;
    flex: 1;
}

.article-card__link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: gap 0.3s ease;
}

.article-card:hover .article-card__link {
    gap: 12px;
}

.article-card__arrow {
    transition: transform 0.3s ease;
}

.article-card:hover .article-card__arrow {
    transform: translateX(5px);
}

/* Sidebar */
.blog-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-block {
    background: var(--dark-color-light);
    border: 1px solid #222;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
}

.sidebar-block__title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--accent-color);
}

/* Categories */
.categories-list {
    list-style: none;
}

.categories-list__item {
    border-bottom: 1px solid #222;
    cursor: pointer;
}

.categories-list__item:last-child {
    border-bottom: none;
}

.categories-list__item.active {
    background: #222;
    border-radius: 10px;
}

.categories-list__link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 12px;
    color: #888;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.categories-list__link:hover {
    color: var(--accent-color);
}

.categories-list__count {
    background: #222;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
}


.categories-list__item.active .categories-list__link,
.categories-list__item.active .categories-list__count {
    color: var(--accent-color);
}

/* Responsive */
@media (max-width: 1024px) {
    .blog-content__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .blog-sidebar {
        position: static;
        order: 1;
    }

    .articles-list {
        order: 2;
    }

    .article-card {
        grid-template-columns: 250px 1fr;
    }

    .article-card__image {
        height: 100%;
    }
}

@media (max-width: 768px) {
    .blog-content {
        padding: 60px 0;
    }

    .articles-list {
        gap: 30px;
    }

    .article-card {
        grid-template-columns: 1fr;
    }

    .article-card__image {
        height: 250px;
    }

    .article-card__content {
        padding: 25px 20px;
    }

    .article-card__title {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .article-card__title {
        font-size: 18px;
    }

    .sidebar-block {
        padding: 25px 20px;
    }
}












/* Article Hero */
.article-hero__breadcrumbs {
    display: flex;
    flex-flow: row wrap;
    gap: 10px;
    align-items: center;
    margin-bottom: 30px;
    font-size: 14px;
    color: #888;
}

.article-hero__breadcrumbs a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s ease;
}

.article-hero__breadcrumbs span {
    color: var(--accent-color);
}

.article-hero__breadcrumbs a:hover {
    color: var(--accent-color);
}

.article-hero__category {
    display: inline-block;
    background: #222;
    color: var(--accent-color);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.article-hero__title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    max-width: 900px;
}

.article-hero__meta {
    display: flex;
    flex-flow: row wrap;
    gap: 30px;
    align-items: center;
    font-size: 14px;
    color: #888;
}

.article-hero__meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.article-hero__meta-item svg {
    width: 16px;
    height: 16px;
    fill: #888;
}

/* Article Image */
.article-image {
    padding: 60px 0;
}

.article-image__container {
    width: 100%;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
}

.article-image__container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Article Content */
.article-content {
    padding: 40px 0 80px;
}

.article-content__grid {
    display: grid;
    grid-template-columns: 200px 1fr 250px;
    gap: 60px;
}

/* Social Share (Left) */
.article-share {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.article-share__title {
    font-size: 14px;
    font-weight: 600;
    color: #888;
    margin-bottom: 15px;
}

.article-share__links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.share-btn {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a1a1a;
    border: 1px solid #222;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.share-btn svg {
    width: 20px;
    height: 20px;
    fill: var(--accent-color);
}

.share-btn:hover {
    background: #222;
    border-color: #444;
    transform: translateY(-2px);
}

/* Article Body (Center) */
.article-body {
    max-width: 720px;
}

.article-body h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 40px 0 20px;
    color: #fff;
}

.article-body h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 30px 0 15px;
    color: #fff;
}

.article-body p {
    font-size: 16px;
    line-height: 1.8;
    color: #aaa;
    margin-bottom: 20px;
}

.article-body ul,
.article-body ol {
    margin: 20px 0;
    padding-left: 30px;
}

.article-body li {
    font-size: 17px;
    line-height: 1.8;
    color: #aaa;
    margin-bottom: 10px;
}

.article-body blockquote,
.service-main blockquote {
    background: var(--dark-color-light);
    border-left: 4px solid var(--accent-color);
    padding: 20px 25px;
    margin: 30px 0;
    border-radius: 0 8px 8px 0;
}

.article-body blockquote p {
    font-size: 16px;
    font-style: italic;
    color: #ccc;
    margin: 0;
}

.article-body img {
    width: 100%;
    border-radius: 8px;
    margin: 30px 0;
}

/* Info Box */
.info-box {
    background: var(--dark-color-light);
    border: 1px solid var(--accent-color);
    border-radius: 12px;
    padding: 25px;
    margin: 30px 0;
}

.info-box__title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 12px;
}

.info-box__title i {
    width: 20px;
    height: 20px;
    color: var(--accent-color);
}

.info-box__content {
    font-size: 15px;
    line-height: 1.7;
    color: #aaa;
}

/* Article Sidebar (Right) */
.article-sidebar {
    position: sticky;
    top: 133px;
    height: fit-content;
}

.sidebar-block {
    background: var(--dark-color-light);
    border: 1px solid #222;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
}

.sidebar-block__title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.toc-list {
    list-style: none;
}

.toc-list li {
    margin-bottom: 10px;
}

.toc-list a {
    color: #888;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: block;
    padding: 5px 0;
}

.toc-list a:hover {
    color: #fff;
    padding-left: 5px;
}

/* Tags */
.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 40px 0;
}

.article-tag {
    background: var(--dark-color-light);
    border: 1px solid #222;
    color: var(--accent-color);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.article-tag:hover {
    background: #222;
    border-color: #444;
}

/* Related Articles */
.related-articles {
    padding: 80px 0;
    background: #0f0f0f;
}

.related-articles__title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #fff;
}

.related-articles__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.related-card {
    background: var(--dark-color-light);
    border: 1px solid #222;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s ease;
}

.related-card:hover {
    border-color: var(--accent-color);
}

.related-card__image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.related-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.related-card:hover .related-card__image img {
    transform: scale(1.1);
}

.related-card__content {
    padding: 20px;
}

.related-card__title {
    font-size: 18px;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 8px;
}

.related-card__date {
    font-size: 13px;
    color: #666;
}

/* Responsive */
@media (max-width: 1024px) {
    .article-content__grid {
        grid-template-columns: 1fr;
    }

    .article-share,
    .article-sidebar {
        display: none;
    }
}

@media (max-width: 768px) {
    .article-hero__title {
        font-size: 36px;
    }

    .article-image__container {
        height: 300px;
    }

    .article-body h2 {
        font-size: 26px;
    }

    .article-body h3 {
        font-size: 20px;
    }

    .article-body p,
    .article-body li {
        font-size: 16px;
    }

    .related-articles__grid {
        grid-template-columns: 1fr;
    }
}












/* Service Content */
.service-content {
    padding: 80px 0;
}

.service-content__grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

/* Main Content */
.service-main h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #fff;
}

.service-main h3 {
    font-size: 24px;
    margin: 40px 0 15px;
    color: #fff;
}

.service-main p {
    font-size: 16px;
    line-height: 1.8;
    color: #aaa;
    margin-bottom: 20px;
}

.service-main ul {
    list-style: none;
    margin: 20px 0;
}

.service-main ul li {
    padding: 12px 0 12px 30px;
    position: relative;
    color: #aaa;
    font-size: 16px;
    line-height: 1.6;
}

.service-main ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

/* Sidebar */
.service-sidebar {
    position: sticky;
    top: 135px;
    height: fit-content;
}

.service-sidebar__block {
    background: var(--dark-color-light);
    border: 1px solid #222;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
}

.service-sidebar__title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.service-sidebar__price {
    font-size: 36px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.service-sidebar__price-note {
    font-size: 13px;
    color: #666;
    margin-bottom: 20px;
}

.service-sidebar__btn {
    display: block;
    width: 100%;
    padding: 15px;
    background: var(--accent-color);
    color: var(--light-color);
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-sidebar__btn:hover {
    background: #f0f0f0;
    color: var(--dark-color-light);
}

.service-sidebar__info {
    list-style: none;
}

.service-sidebar__info li {
    padding: 12px 0;
    border-bottom: 1px solid #222;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.service-sidebar__info li:last-child {
    border-bottom: none;
}

.service-sidebar__info-label {
    color: #888;
}

.service-sidebar__info-value {
    color: var(--accent-color);
    font-weight: 600;
}

/* Sub Services Section */
.sub-services {
    padding: 80px 0;
    background: #0f0f0f;
}

.sub-services__title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    color: #fff;
}

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

/* Sub Service Card */
.sub-service-card {
    background: var(--dark-color-light);
    border: 1px solid #222;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
    position: relative;
}

.sub-service-card:hover {
    border-color: var(--accent-color);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.sub-service-card__image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #111;
    position: relative;
}

.sub-service-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.sub-service-card:hover .sub-service-card__image img {
    transform: scale(1.1);
}

.sub-service-card__content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.sub-service-card__title {
    font-size: 20px;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 12px;
}

.sub-service-card__description {
    font-size: 14px;
    line-height: 1.6;
    color: #888;
    margin-bottom: 20px;
    flex: 1;
}

.sub-service-card__link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-color);
    font-size: 14px;
    font-weight: 600;
    transition: gap 0.3s ease;
}

.sub-service-card:hover .sub-service-card__link {
    gap: 12px;
}

.sub-service-card__arrow {
    transition: transform 0.3s ease;
}

.sub-service-card:hover .sub-service-card__arrow {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 1024px) {
    .service-content__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .service-content {
        padding: 60px 0;
    }

    .service-main h2 {
        font-size: 28px;
    }

    .service-main h3 {
        font-size: 20px;
    }

    .sub-services {
        padding: 60px 0;
    }

    .sub-services__title {
        font-size: 32px;
        margin-bottom: 30px;
    }

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

@media (max-width: 480px) {
    .sub-services__title {
        font-size: 26px;
    }
}







/* Pricing Content */
.pricing-content {
    padding: 80px 0;
}

.pricing-content__grid {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 60px;
}

/* Sidebar Navigation */
.pricing-nav {
    position: sticky;
    top: 133px;
    height: fit-content;
}

.pricing-nav__title {
    font-size: 14px;
    font-weight: 600;
    color: #888;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-nav__list {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-nav__item {
    margin-bottom: 10px;
}

.pricing-nav__link {
    color: #888;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: block;
    padding: 8px 0;
    border-left: 2px solid transparent;
    padding-left: 15px;
}

.pricing-nav__link:hover {
    color: var(--accent-color);
    border-left-color: var(--accent-color);
    padding-left: 20px;
}

/* Pricing Info Box */
.pricing-info {
    background: #1a1a1a;
    border: 1px solid #222;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    gap: 15px;
}

.pricing-info__icon {
    flex-shrink: 0;
}

.pricing-info__icon svg {
    width: 24px;
    height: 24px;
    fill: var(--accent-color);
}

.pricing-info__text {
    font-size: 13px;
    line-height: 1.6;
    color: #aaa;
}

/* Pricing Body */
.pricing-body {
    max-width: 900px;
}

.pricing-intro {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    border: 1px solid #222;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 50px;
}

.pricing-intro p {
    font-size: 16px;
    line-height: 1.8;
    color: #aaa;
    margin: 0;
}

/* Pricing Section */
.pricing-section {
    margin-bottom: 60px;
}

.pricing-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 25px;
    color: #fff;
    padding-bottom: 15px;
    border-bottom: 2px solid #222;
}

/* Pricing Table */
.pricing-table {
    width: 100%;
    background: #1a1a1a;
    border: 1px solid #222;
    border-radius: 12px;
    overflow: hidden;
}

.pricing-table thead {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
}

.pricing-table th {
    padding: 20px 25px;
    text-align: left;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid #222;
}

.pricing-table th:last-child {
    text-align: right;
    width: 180px;
}

.pricing-table td {
    padding: 25px;
    border-bottom: 1px solid #222;
    vertical-align: top;
}

.pricing-table tr:last-child td {
    border-bottom: none;
}

.pricing-table tbody tr {
    transition: background 0.3s ease;
}

.pricing-table tbody tr:hover {
    background: #0f0f0f;
}

.service-name {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 5px;
}

.service-desc {
    font-size: 14px;
    color: #888;
    line-height: 1.5;
}

.price-cell {
    text-align: right;
    font-size: 18px;
    font-weight: 700;
    color: var(--accent-color);
    white-space: nowrap;
}

/* Responsive */
@media (max-width: 1024px) {
    .pricing-content__grid {
        grid-template-columns: 1fr;
    }

    .pricing-nav {
        position: static;
        margin-bottom: 40px;
        display: flex;
        gap: 30px;
        align-items: flex-start;
    }

    .pricing-nav__list {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 0;
    }

    .pricing-nav__link {
        background: #1a1a1a;
        border: 1px solid #222;
        border-radius: 8px;
        padding: 10px 20px !important;
        border-left: none !important;
    }

    .pricing-nav__link:hover {
        background: var(--accent-color);
        color: #fff;
    }

    .pricing-info {
        flex: 1;
    }
}

@media (max-width: 768px) {
    .pricing-content {
        padding: 60px 0;
    }

    .pricing-nav {
        flex-direction: column;
    }

    .pricing-intro {
        padding: 20px;
    }

    .pricing-intro p {
        font-size: 15px;
    }

    .pricing-section h2 {
        font-size: 26px;
    }

    .pricing-table th,
    .pricing-table td {
        padding: 15px;
        font-size: 13px;
    }

    .pricing-table th:last-child {
        width: 100px;
    }

    .service-name {
        font-size: 15px;
    }

    .service-desc {
        font-size: 13px;
    }

    .price-cell {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .pricing-table {
        display: block;
    }

    .pricing-table thead {
        display: none;
    }

    .pricing-table tbody,
    .pricing-table tr,
    .pricing-table td {
        display: block;
        width: 100%;
    }

    .pricing-table tr {
        margin-bottom: 20px;
        border: 1px solid #222;
        border-radius: 8px;
        overflow: hidden;
    }

    .pricing-table td {
        padding: 15px 20px;
        border: none;
    }

    .pricing-table td:first-child {
        background: #0f0f0f;
        padding-bottom: 10px;
    }

    .price-cell {
        text-align: left;
        padding-top: 10px;
        border-top: 1px solid #222;
        font-size: 18px;
    }

    .price-cell::before {
        content: "Цена: ";
        color: #888;
        font-weight: 400;
        font-size: 14px;
    }
}







/* Privacy Content */
.privacy-content {
    padding: 80px 0;
}

.privacy-content__grid {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 60px;
}

/* Sidebar Navigation */
.privacy-nav {
    position: sticky;
    top: 133px;
    height: fit-content;
}

.privacy-nav__title {
    font-size: 14px;
    font-weight: 600;
    color: #888;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.privacy-nav__list {
    list-style: none;
}

.privacy-nav__item {
    margin-bottom: 10px;
}

.privacy-nav__link {
    color: #888;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: block;
    padding: 8px 0;
    border-left: 2px solid transparent;
    padding-left: 15px;
}

.privacy-nav__link:hover {
    color: var(--accent-color);
    border-left-color: var(--accent-color);
    padding-left: 20px;
}

/* Privacy Body */
.privacy-body {
    max-width: 800px;
}

.privacy-body h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 50px 0 20px;
    color: #fff;
    padding-top: 20px;
}

.privacy-body h2:first-child {
    margin-top: 0;
}

.privacy-body h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 30px 0 15px;
    color: #fff;
}

.privacy-body p {
    font-size: 16px;
    line-height: 1.8;
    color: #aaa;
    margin-bottom: 20px;
}

.privacy-body ul,
.privacy-body ol {
    margin: 20px 0;
    padding-left: 30px;
}

.privacy-body li {
    font-size: 16px;
    line-height: 1.8;
    color: #aaa;
    margin-bottom: 10px;
}

.privacy-body strong {
    color: var(--accent-color);
    font-weight: 600;
}

/* Table */
.privacy-table {
    width: 100%;
    background: #1a1a1a;
    border: 1px solid #222;
    border-radius: 8px;
    overflow: hidden;
    margin: 30px 0;
}

.privacy-table th,
.privacy-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #222;
}

.privacy-table th {
    background: #0f0f0f;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 14px;
}

.privacy-table td {
    color: #aaa;
    font-size: 15px;
}

.privacy-table tr:last-child td {
    border-bottom: none;
}

/* Responsive */
@media (max-width: 1024px) {
    .privacy-content__grid {
        grid-template-columns: 1fr;
    }

    .privacy-nav {
        position: static;
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .privacy-content {
        padding: 60px 0;
    }

    .privacy-body h2 {
        font-size: 26px;
    }

    .privacy-body h3 {
        font-size: 20px;
    }

    .privacy-body p,
    .privacy-body li {
        font-size: 15px;
    }

    .privacy-contact {
        padding: 30px 20px;
    }

    .privacy-table th,
    .privacy-table td {
        padding: 12px 15px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .privacy-contact__title {
        font-size: 24px;
    }
}








.wpcf7-response-output {
border: none !important;
    padding: 0 !important;
    margin: 20px 0 0 !important;
    color: var(--accent-color);
}

.wpcf7-spinner {
    display: none !important;
}






.open-modal {
    cursor: pointer;
}

/* Оверлей */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: block;
    opacity: 1;
}

/* Модальное окно */
.modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 90%;
    max-width: 500px;
    background: var(--dark-color-light);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    opacity: 0;
    transition: all 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
}

.modal.active {
    display: block;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* Заголовок */
.modal__header {
    padding: 24px;
    border-bottom: 1px solid #e9ecef;
    position: relative;
}

.modal__title {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    color: var(--light-color);
}

.modal__subtitle {
    margin: 8px 0 0;
    font-size: 14px;
    color: var(--light-color);
}

.modal__close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: background 0.2s ease;
}

.modal__close::before,
.modal__close::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background: #333;
    border-radius: 2px;
}

.modal__close:hover::before,
.modal__close:hover::after {
    background: var(--accent-color);
}

.modal__close::before {
    transform: rotate(45deg);
}

.modal__close::after {
    transform: rotate(-45deg);
}

/* Контент */
.modal__body {
    padding: 24px;
}

.modal__form {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.form-label .required {
    color: red;
    margin-left: 2px;
}

/* Футер */
.modal__footer p {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.modal__footer br {
    display: none;
}

.modal__btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.modal__btn--cancel {
    background: #f0f0f0;
    color: #333;
}

.modal__btn--cancel:hover {
    background: var(--dark-color);
    color: var(--light-color);
}

.modal__btn--submit {
    background: var(--accent-color);
    color: var(--light-color);
}

.modal__btn--submit:hover {
    background: var(--light-color);
    color: var(--accent-color);
}

.modal__btn--submit:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

/* Блокировка скролла */
body.modal-open {
    overflow: hidden;
}

/* Адаптив */
@media (max-width: 576px) {
    .modal {
        width: 95%;
        max-height: 95vh;
    }

    .modal__header,
    .modal__body,
    .modal__footer {
        padding: 20px;
    }

    .modal__title {
        font-size: 20px;
    }

    .modal__footer {
        flex-direction: column;
    }

    .modal__btn {
        width: 100%;
    }
}






/* Контейнер формы */
.wpcf7 {
    position: relative;
}

/* Скрываем стандартное сообщение CF7 */
.wpcf7 .wpcf7-response-output {
    display: none !important;
}

/* ВАЖНО: Скрываем поля после отправки (форма имеет класс form-sent) */
form.wpcf7-form.sent .form-fields,
form.wpcf7-form.sent .form-group,
form.wpcf7-form.sent .modal__footer,
form.wpcf7-form.sent .modal__title,
form.wpcf7-form.sent .modal__subtitle,
form.wpcf7-form.sent .contact-form__title,
form.wpcf7-form.sent .contact-form__subtitle {
    display: none !important;
}

form.wpcf7-form.sent .modal__header {
    border: none;
}

/* Блок успеха (скрыт по умолчанию) */
.wpcf7-success-message {
    display: none !important;
    text-align: center;
    padding: 60px 20px;
}

/* Показываем блок успеха после отправки */
form.wpcf7-form.sent .wpcf7-success-message {
    display: block !important;
    animation: fadeIn 0.5s ease;
}

/* Убираем лишние отступы от параграфов CF7 */
.wpcf7-success-message p {
    margin: 0;
    padding: 0;
}

/* Зеленый круг с галочкой */
.success-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: #4CAF50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: scaleIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.3);
}

.success-icon i {
    font-size: 50px;
    color: #fff;
}

/* Текст успеха */
.success-text {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.success-text p {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
}

.success-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.success-description p {
    font-size: 16px;
    color: #666;
}

/* Анимации */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    0% {
        transform: scale(0) rotate(-180deg);
        opacity: 0;
    }
    50% {
        transform: scale(1.1) rotate(20deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}







/* Контейнер раскрывающегося блока */
.collapsible-box {
    border: 2px solid var(--accent-color);
    border-radius: 8px;
    margin: 20px 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.collapsible-box:hover {
    opacity: .8;
}

/* Заголовок (кликабельный) */
.collapsible-box__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background: var(--dark-color-light);
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
}

.collapsible-box__header:hover {
}

.collapsible-box__title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 700;
    color: var(--accent-color);
}

.collapsible-box__title i {
    font-size: 20px;
}

/* Стрелка */
.collapsible-box__arrow {
    font-size: 16px;
    color: var(--accent-color);
    transition: transform 0.3s ease;
}

.collapsible-box.open .collapsible-box__arrow {
    transform: rotate(180deg);
}

    /* Контент (скрыт по умолчанию) */
.collapsible-box__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.collapsible-box.open .collapsible-box__content {
    max-height: 2000px; /* большое значение для анимации */
}

.collapsible-box__inner {
    padding: 25px;
    color: #aaa;
    background: var(--dark-color-light);
}

/* Стили для контента внутри */
.collapsible-box__inner p:first-child {
    margin-top: 0;
}

.collapsible-box__inner p:last-child {
    margin-bottom: 0;
}