﻿.about-page {
    padding-top: 72px;
}

.about-hero {
    position: relative;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    height: 22vw;
    min-height: 220px;
    max-height: 420px;
    overflow: hidden;
}

.about-hero img,
.about-hero__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-hero__track {
    position: relative;
    width: 100%;
    height: 100%;
}

.about-hero__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.about-hero__slide.is-active {
    opacity: 1;
    z-index: 1;
    pointer-events: auto;
}

.about-hero__arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s;
}

.about-hero__arrow:hover {
    background: rgba(255, 255, 255, 0.45);
}

.about-hero__arrow--prev {
    left: 16px;
}

.about-hero__arrow--next {
    right: 16px;
}

.about-hero__dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    z-index: 3;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.about-hero__dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.about-hero__dot.is-active {
    background: #fff;
    transform: scale(1.15);
}
.about-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    pointer-events: none;
}
.about-hero__title {
    font-size: 42px;
    font-weight: 700;
    letter-spacing: 4px;
}

.about-hero__subtitle {
    margin-top: 12px;
    font-size: 14px;
    opacity: 0.85;
    letter-spacing: 2px;
}
.about-hero__breadcrumb {
    position: absolute;
    top: 24px;
    left: 8%;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
}
.my_header--light {
    background: #fff !important;
    color: #333;
    border-bottom: 1px solid #eee;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.my_header--light .my_navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    min-width: auto;
}

.my_header--light .inner_navbar {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.header-phone-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-left: 24px;
    padding: 0 22px;
    height: 36px;
    background: #ff6b00;
    border-radius: 999px;
    color: #fff !important;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
    transition: opacity 0.2s;
}

.header-phone-btn:hover {
    opacity: 0.9;
    color: #fff !important;
}

.header-phone-btn__icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.site-nav {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 8px;
}

.site-nav__item {
    position: relative;
    height: 72px;
    display: flex;
    align-items: center;
}

.site-nav__item > a {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0 20px;
    height: 72px;
    font-size: 15px;
    font-weight: 500;
    color: #333 !important;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s;
}

.site-nav__item > a:hover,
.site-nav__item.active > a {
    color: #DA4200 !important;
}

.site-nav__arrow {
    display: inline-block;
    width: 10px;
    height: auto;
    margin-left: 4px;
    vertical-align: middle;
    opacity: 0.6;
    transition: opacity 0.2s;
}

.site-nav__item--dropdown:hover .site-nav__arrow {
    opacity: 1;
}

.site-nav__dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 140px;
    background: #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    padding: 8px 0;
    z-index: 1000;
    list-style: none;
    margin: 0;
}

.site-nav__item--dropdown:hover .site-nav__dropdown {
    display: block;
}

.site-nav__dropdown li a {
    display: block;
    padding: 10px 24px;
    color: #333 !important;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
}

.site-nav__dropdown li a:hover {
    color: #DA4200 !important;
    background: #fafafa;
}

.about-page .page-content {
    padding-bottom: 40px;
}

.about-page .homeContent {
    margin: 56px auto 0;
}

.about-page .homeContent:first-child {
    margin-top: 48px;
}

.about-page .contactUs {
    margin: 48px auto 80px;
}
