/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}
body {
    font-family: "Albert Sans", sans-serif;
    color: #1a1a2e;
    background: #fff;
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 72px; /* fixed header height */
}
img {
    max-width: 100%;
    display: block;
}
a {
    text-decoration: none;
    color: inherit;
}
ul {
    list-style: none;
}

/* ===== VARIABLES ===== */
:root {
    --yellow: #f5c518;
    --yellow-dark: #e0b000;
    --dark: #0d0d1a;
    --dark2: #1a1a2e;
    --dark3: #16213e;
    --gray: #6b7280;
    --light: #f8f9fa;
    --white: #ffffff;
    --radius: 12px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    --transition: 0.3s ease;
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
    white-space: nowrap;
}
.btn--primary {
    background: var(--yellow);
    color: var(--dark);
    border-color: var(--yellow);
}
.btn--primary:hover {
    background: var(--yellow-dark);
    border-color: var(--yellow-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(245, 197, 24, 0.4);
}
.btn--outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
}
.btn--outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}
.btn--dark {
    background: var(--dark);
    color: var(--white);
    border-color: var(--dark);
}
.btn--dark:hover {
    background: var(--dark2);
    transform: translateY(-2px);
}
.btn--outline-dark {
    background: transparent;
    color: var(--dark);
    border-color: var(--dark);
}
.btn--outline-dark:hover {
    background: var(--dark);
    color: var(--white);
}
.btn--sm {
    padding: 10px 20px;
    font-size: 0.85rem;
}
.btn--full {
    width: 100%;
    justify-content: center;
}

/* ===== LANG DROPDOWN ===== */
.lang-menu {
    display: none;
}
.lang-menu.open {
    display: block !important;
}
.lang-dropdown {
    position: relative;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #ffffff;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    transition: all var(--transition);
}
.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 24px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--dark);
}
.logo__icon {
    color: var(--yellow);
    font-size: 1.2rem;
}
.logo--white {
    color: var(--white);
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav__link {
    color: var(--gray);
    font-weight: 500;
    font-size: 0.9rem;
    transition: color var(--transition);
    position: relative;
}
.nav__link::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--yellow);
    transform: scaleX(0);
    transition: transform var(--transition);
}
.nav__link:hover {
    color: var(--dark);
}
.nav__link:hover::after {
    transform: scaleX(1);
}

.header__right {
    display: flex;
    align-items: center;
    gap: 16px;
}
.header__phone {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--dark);
    text-decoration: none;
    transition: opacity var(--transition);
}
.header__phone:hover {
    opacity: 0.85;
}
.header__phone-icon {
    width: 40px;
    height: 40px;
    background: var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.header__phone-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--dark);
}
.header__phone-texts {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}
.header__phone-label {
    font-size: 0.72rem;
    color: var(--gray);
    font-weight: 400;
}
.header__phone-num {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--dark);
}
.header__construction-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--dark);
    background: var(--yellow);
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.3px;
    transition: all var(--transition);
    white-space: nowrap;
    padding: 9px 16px;
    border-radius: 7px;
    border: 2px solid var(--yellow);
}
.header__construction-link:hover {
    background: var(--yellow-dark);
    border-color: var(--yellow-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(245, 197, 24, 0.35);
}
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: all var(--transition);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero__bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            135deg,
            rgba(13, 13, 26, 0.97) 0%,
            rgba(22, 33, 62, 0.92) 60%,
            rgba(13, 13, 26, 0.85) 100%
        ),
        url("https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1600&q=80")
            center/cover no-repeat;
}
video.hero__bg--video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(13, 13, 26, 0.88) 0%,
        rgba(22, 33, 62, 0.75) 70%,
        rgba(13, 13, 26, 0.5) 100%
    );
}
.hero__bg::after {
    display: none;
}
.hero__content {
    position: relative;
    z-index: 2;
    padding-top: 60px;
    padding-bottom: 80px;
    max-width: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 60px;
    align-items: end;
}
.hero__label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--yellow);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 0;
    grid-column: 1 / -1;
}
.hero__label::before {
    content: "";
    display: inline-block;
    width: 32px;
    height: 2px;
    background: var(--yellow);
}
.hero__title {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 0;
    letter-spacing: -0.5px;
}
.hero__sub {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1rem;
    margin-bottom: 0;
    max-width: none;
    line-height: 1.7;
    align-self: center;
}
.hero__btns {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    grid-column: 1 / -1;
    align-items: center;
}

.hero__content--center {
    grid-template-columns: 1fr;
    text-align: left;
    justify-items: start;
    justify-content: start;
    align-items: start;
    padding-top: 120px;
    padding-bottom: 140px;
    padding-left: 108px;
    margin-left: 0;
    margin-right: auto;
}
.hero__content--center > * {
    justify-self: start;
    margin-left: 0;
    margin-right: 0;
}
.hero__content--center .hero__btns {
    justify-content: flex-start;
}
@media (max-width: 768px) {
    .hero__content--center {
        padding-left: 24px;
    }
}

.hero__title--big {
    font-size: clamp(2.8rem, 6.5vw, 5.2rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1px;
    line-height: 1.05;
    max-width: 1000px;
}

.hero__title--stacked {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    text-transform: uppercase;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -1px;
    color: var(--white);
    max-width: 1100px;
    margin: 0;
    padding-left: 0;
}
.hero__content--center .hero__btns {
    padding-left: 0;
    margin-left: 0;
}
.hero__title--stacked .hero__title__top,
.hero__title--stacked .hero__title__bot {
    font-size: clamp(1.4rem, 2.4vw, 2.2rem);
    font-weight: 700;
    letter-spacing: 0.02em;
}
.hero__title--stacked .hero__title__mid {
    font-size: 80px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -2px;
}
.hero__title--stacked em {
    color: var(--yellow);
    font-style: normal;
}

.hero__play-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: var(--yellow);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition);
}
.hero__play-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--white);
    color: var(--yellow);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.15);
}
.hero__play-btn:hover .hero__play-icon {
    transform: scale(1.08);
    box-shadow: 0 0 0 12px rgba(255, 255, 255, 0.25);
}
.hero__play-text {
    color: var(--yellow);
}
.hero__play-btn:hover .hero__play-text {
    opacity: 0.85;
}

.hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}
.hero__scroll span {
    display: block;
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    position: relative;
}
.hero__scroll span::after {
    content: "";
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--yellow);
    border-radius: 2px;
    animation: scrollDot 1.5s infinite;
}
@keyframes scrollDot {
    0% {
        top: 6px;
        opacity: 1;
    }
    100% {
        top: 20px;
        opacity: 0;
    }
}

/* ===== TICKER ===== */
.ticker {
    background: var(--yellow);
    padding: 14px 0;
    overflow: hidden;
    white-space: nowrap;
}
.ticker__track {
    display: inline-flex;
    align-items: center;
    gap: 32px;
    animation: ticker 25s linear infinite;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.ticker__dot {
    color: var(--dark2);
    font-size: 0.7rem;
    display: inline-flex;
    align-items: center;
}
.ticker__dot svg {
    display: block;
}
@keyframes ticker {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* ===== SECTION ===== */
.section {
    padding: 100px 0;
    overflow: hidden;
}
.section--dark {
    background: var(--light);
}
.section__head {
    text-align: center;
    margin-bottom: 60px;
}
.section__label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--yellow);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.section__label::before,
.section__label::after {
    content: "";
    display: inline-block;
    width: 24px;
    height: 2px;
    background: var(--yellow);
}
.section__label--yellow {
    color: var(--yellow);
}
.section__title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 500;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 16px;
}
.section__title--white {
    color: var(--white);
}
.section__sub {
    color: var(--gray);
    font-size: 1rem;
    max-width: 560px;
    margin: 0 auto;
}
.section__sub--gray {
    color: rgba(255, 255, 255, 0.5);
}

/* ===== SLIDER ===== */
.slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 24px;
    max-width: 1368px;
    margin: 0 auto;
}
.slider-outer {
    flex: 1;
    max-width: 1256px;
    overflow: hidden;
    border-radius: 4px;
    padding: 16px;
}
.slider {
    display: flex;
    gap: 24px;
    overflow: visible;
    flex: 1;
}
.slider-btn {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--yellow);
    background: var(--white);
    color: var(--dark);
    cursor: pointer;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.slider-btn svg {
    width: 18px;
    height: 18px;
}
.slider-btn:hover {
    background: var(--yellow);
    transform: scale(1.05);
}
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}
.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all var(--transition);
    border: none;
}
.slider-dot.active {
    background: var(--yellow);
    width: 24px;
    border-radius: 4px;
}

/* ===== CARD ===== */
.card {
    min-width: calc(33.333% - 16px);
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: none;
    transition:
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.35s ease;
    flex-shrink: 0;
    border: 1px solid #eef0f3;
}
.card:hover {
    transform: translateY(-4px);
    border-color: #e5e7eb;
    box-shadow: 0 4px 12px rgba(17, 24, 39, 0.05);
}
.card__img-wrap {
    position: relative;
    overflow: hidden;
    height: 240px;
}
.card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.card:hover .card__img {
    transform: scale(1.08);
}
.card__badge {
    position: absolute;
    left: 0;
    bottom: 0;
    top: auto;
    background: var(--yellow);
    color: var(--dark);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 8px 16px 8px 18px;
    border-radius: 0;
    border-top-right-radius: 12px;
    text-transform: none;
    letter-spacing: 0.2px;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.08);
}
.card__body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0;
}
.card__title {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.25;
    letter-spacing: -0.2px;
    margin: 0 0 14px;
}
.card__divider {
    height: 1px;
    background: #e5e7eb;
    margin: 0 0 18px;
}
.card__price {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--yellow-dark);
}

/* ===== SERVICES (GoRent style) ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}
.srv-card {
    position: relative;
    background: #1e1e2e;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 38px 30px 32px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    isolation: isolate;
}
.srv-card::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: var(--yellow);
    transform: scaleX(0.4);
    transform-origin: left center;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 1;
}
.srv-card:hover {
    border-color: rgba(245, 197, 24, 0.35);
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}
.srv-card:hover::after {
    transform: scaleX(1);
}
.srv-card > * {
    position: relative;
    z-index: 1;
}

.srv-card__num {
    position: absolute;
    top: 28px;
    right: 32px;
    font-size: 2.6rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.06);
    line-height: 1;
    letter-spacing: -1px;
    z-index: 1;
    transition: color 0.4s ease;
}
.srv-card:hover .srv-card__num {
    color: rgba(245, 197, 24, 0.18);
}

.srv-card__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    color: var(--yellow);
}
.srv-card__icon svg {
    width: 44px;
    height: 44px;
    stroke: var(--yellow);
    stroke-width: 1.2;
}
.srv-card__icon img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.srv-card__title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--yellow);
    margin-bottom: 14px;
    line-height: 1.3;
}
.srv-card__desc {
    color: #9ca3af;
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 22px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.srv-card__link {
    color: var(--white);
    font-weight: 600;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.srv-card__link:hover {
    color: var(--yellow);
    gap: 14px;
}

/* ===== ABOUT ===== */
.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about__img-wrap {
    position: relative;
}
.about__img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.15);
}
.about__badge-float {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: var(--yellow);
    color: var(--dark);
    border-radius: var(--radius);
    padding: 24px 32px;
    text-align: center;
    box-shadow: 0 12px 32px rgba(245, 197, 24, 0.4);
}
.about__badge-float span {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
}
.about__badge-float p {
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 4px;
}
.about__content {
    padding-right: 0;
}
.about__content .section__title,
.about__content .about__text {
    display: block;
    width: 100%;
}
.about__text {
    color: var(--gray);
    margin: 20px 0 36px;
    line-height: 1.8;
    text-align: justify;
}
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 36px;
}
.stat {
    background: var(--light);
    border-radius: 14px;
    padding: 24px;
}
.stat__num {
    display: block;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--dark);
    line-height: 1;
}
.stat__label {
    display: block;
    font-size: 0.8rem;
    color: var(--gray);
    margin-top: 6px;
    font-weight: 500;
}

/* ===== ORDER ===== */
.order-section {
    background: var(--dark3);
}
.order-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.order__img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    border-radius: var(--radius);
}
.order-form {
    margin-top: 32px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}
.form-group {
    margin-bottom: 16px;
}
.form-group:last-child {
    margin-bottom: 0;
}
.form-label {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 8px;
}
.form-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 14px 16px;
    color: var(--white);
    font-size: 0.9rem;
    font-family: inherit;
    transition: all var(--transition);
    outline: none;
    appearance: none;
}
.form-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}
.form-input:focus {
    border-color: var(--yellow);
    background: rgba(245, 197, 24, 0.05);
    box-shadow: 0 0 0 3px rgba(245, 197, 24, 0.1);
}
.form-input option {
    background: var(--dark2);
    color: var(--white);
}
.form-textarea {
    resize: vertical;
    min-height: 100px;
}
.alert {
    padding: 14px 18px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 20px;
}
.alert--success {
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #4ade80;
}
.alert--error {
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #f87171;
}

/* ===== ABOUT SLOGAN ===== */
.about__slogan {
    font-style: italic;
    color: #b8920a;
    font-weight: 600;
    margin: 0 0 28px;
    font-size: 1rem;
    letter-spacing: 0.01em;
}

/* ===== WHY US ===== */
.why-section {
    background: var(--white);
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 40px;
}
.why-card {
    background: var(--white);
    border: 1px solid #f0f0f0;
    border-radius: var(--radius);
    padding: 28px 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all var(--transition);
}
.why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--yellow);
}
.why-card__icon {
    width: 56px;
    height: 56px;
    background: var(--yellow);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}
.why-card__icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--dark);
}
.why-card__title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}
.why-card__desc {
    font-size: 0.82rem;
    color: var(--gray);
    line-height: 1.6;
}

/* ===== TESTIMONIALS ===== */
.testi-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.testi-card {
    background: var(--white);
    border: 1px solid #f0f0f0;
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow);
    transition: all var(--transition);
}
.testi-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}
.testi-card__stars {
    color: var(--yellow);
    font-size: 1rem;
    margin-bottom: 14px;
    letter-spacing: 2px;
}
.testi-card__text {
    color: var(--gray);
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}
.testi-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testi-card__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--yellow);
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    flex-shrink: 0;
}
.testi-card__author strong {
    display: block;
    font-size: 0.9rem;
    color: var(--dark);
}
.testi-card__author span {
    font-size: 0.78rem;
    color: var(--gray);
}

/* ===== EQ CTA ===== */
.eq-cta {
    padding: 0 0 96px;
    background: var(--light);
}
.eq-cta__card {
    position: relative;
    background: var(--white);
    border: 1px solid #ececec;
    border-radius: 20px;
    padding: 56px 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}
.eq-cta__card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: var(--yellow);
}
.eq-cta__glow {
    position: absolute;
    right: -120px;
    top: -120px;
    width: 340px;
    height: 340px;
    background: radial-gradient(
        circle at center,
        rgba(245, 197, 24, 0.18) 0%,
        rgba(245, 197, 24, 0) 70%
    );
    pointer-events: none;
}
.eq-cta__body {
    flex: 1;
    min-width: 280px;
    position: relative;
    z-index: 1;
}
.eq-cta__label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: var(--dark);
    text-transform: uppercase;
    margin-bottom: 14px;
}
.eq-cta__label::before {
    content: "";
    display: inline-block;
    width: 24px;
    height: 2px;
    background: var(--yellow);
}
.eq-cta__title {
    font-size: clamp(1.6rem, 3.2vw, 2.4rem);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
    letter-spacing: -0.5px;
}
.eq-cta__btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}
@media (max-width: 768px) {
    .eq-cta {
        padding: 0 0 72px;
    }
    .eq-cta__card {
        padding: 40px 28px;
        gap: 28px;
    }
    .eq-cta__btns {
        width: 100%;
    }
    .eq-cta__btns .btn {
        flex: 1;
        justify-content: center;
    }
}

/* ===== SITE FOOTER ===== */
.site-footer {
    position: relative;
    background: #ffffff;
    color: #1a1a2e;
    overflow: hidden;
    isolation: isolate;
    border-top: 1px solid #e5e7eb;
}
.site-footer__accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(245, 197, 24, 0.5) 15%,
        var(--yellow) 50%,
        rgba(245, 197, 24, 0.5) 85%,
        transparent 100%
    );
    z-index: 3;
}
.site-footer__glow {
    display: none;
}
.site-footer__inner {
    position: relative;
    z-index: 1;
    max-width: none;
    padding: 56px 108px 56px;
}
.site-footer__bar .container {
    max-width: none;
    padding: 0 108px;
}

/* Footer columns */
.site-footer__cols {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1.4fr 1.4fr;
    gap: 48px;
}
.site-footer__col--brand {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.site-footer__logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #1a1a2e;
    font-weight: 800;
    font-size: 1.35rem;
    letter-spacing: 0.6px;
    text-decoration: none;
    flex-shrink: 0;
}
.site-footer__logo-icon {
    color: var(--yellow);
    font-size: 1.45rem;
    line-height: 1;
}
.site-footer__logo-text {
    color: #1a1a2e;
}
.site-footer__desc {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.65;
    margin: 0;
}
.site-footer__col-title {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #1a1a2e;
    margin: 0 0 18px;
}
.site-footer__col-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.site-footer__col-nav a {
    position: relative;
    color: #4b5563;
    font-size: 0.92rem;
    font-weight: 500;
    text-decoration: none;
    transition: color var(--transition);
    padding-left: 14px;
}
.site-footer__col-nav a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--yellow);
    opacity: 0;
    transition: opacity var(--transition);
}
.site-footer__col-nav a:hover {
    color: var(--yellow);
}
.site-footer__col-nav a:hover::before {
    opacity: 1;
}
/* Contact list */
.site-footer__contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.site-footer__contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: #4b5563;
    line-height: 1.5;
}
.site-footer__contact-list li svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
    stroke: var(--yellow);
}
.site-footer__contact-list a {
    color: #4b5563;
    text-decoration: none;
    transition: color var(--transition);
}
.site-footer__contact-list a:hover {
    color: var(--yellow);
}
.site-footer__socials {
    display: flex;
    gap: 10px;
}
.site-footer__social {
    position: relative;
    overflow: hidden;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #4b5563;
    text-decoration: none;
    transition:
        color var(--transition),
        border-color var(--transition),
        transform var(--transition);
}
.site-footer__social::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--yellow);
    transform: translateY(100%);
    transition: transform var(--transition);
}
.site-footer__social > * {
    position: relative;
    z-index: 1;
}
.site-footer__social:hover {
    color: var(--dark);
    border-color: var(--yellow);
    transform: translateY(-3px);
}
.site-footer__social:hover::before {
    transform: translateY(0);
}

/* Bottom bar */
.site-footer__bar {
    position: relative;
    z-index: 1;
    border-top: 1px solid #e5e7eb;
    padding: 22px 0;
    background: #fafafa;
}
.site-footer__bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 0.82rem;
    color: #6b7280;
}
.site-footer__bar-inner p {
    margin: 0;
}
.site-footer__bar a {
    color: var(--yellow);
    font-weight: 600;
    text-decoration: none;
    transition: opacity var(--transition);
}
.site-footer__bar a:hover {
    opacity: 0.78;
}
.site-footer__bar .site-footer__socials {
    gap: 8px;
}
.site-footer__bar .site-footer__social {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    color: #4b5563;
    font-weight: 400;
}
.site-footer__bar .site-footer__social:hover {
    color: var(--dark);
    opacity: 1;
}
.site-footer__sep {
    opacity: 0.3;
    margin: 0 4px;
}

@media (max-width: 1200px) {
    .site-footer__inner {
        padding: 56px 64px;
    }
    .site-footer__bar .container {
        padding: 0 64px;
    }
    .site-footer__cols {
        grid-template-columns: 1.4fr 1fr 1.2fr 1.2fr;
        gap: 36px;
    }
}
@media (max-width: 960px) {
    .site-footer__cols {
        grid-template-columns: 1fr 1fr;
        gap: 36px 48px;
    }
}
@media (max-width: 768px) {
    .site-footer__inner {
        padding: 40px 24px;
    }
    .site-footer__bar .container {
        padding: 0 24px;
    }
    .site-footer__bar-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}
@media (max-width: 540px) {
    .site-footer__cols {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}
@media (max-width: 480px) {
    .site-footer__inner {
        padding: 32px 20px;
    }
    .site-footer__bar .container {
        padding: 0 20px;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
    .testi-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .why-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .card {
        min-width: calc(50% - 12px);
    }
}
@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
    .about {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .about__img-wrap {
        order: -1;
    }
    .about__content {
        padding-right: 0;
    }
    .about__badge-float {
        right: 16px;
        bottom: -16px;
    }
    .order-wrap {
        grid-template-columns: 1fr;
    }
    .order__right {
        display: none;
    }
    .card {
        min-width: calc(50% - 12px);
    }
}
@media (max-width: 768px) {
    .hero__content {
        grid-template-columns: 1fr;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .nav {
        display: none;
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    }
    .nav.open {
        display: flex;
    }
    .burger {
        display: flex;
    }
    .header__phone {
        display: none;
    }
    .header__right {
        margin-left: auto;
    }
    .section {
        padding: 72px 0;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .testi-grid {
        grid-template-columns: 1fr;
    }
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    .card {
        min-width: calc(33.333% - 14px);
    }
    .card__img-wrap {
        height: 160px;
    }
    .card__body {
        padding: 14px;
    }
    .card__title {
        font-size: 0.85rem;
        margin: 0 0 8px;
    }
    .card__divider {
        margin: 0 0 8px;
    }
    .card__spec {
        font-size: 0.72rem;
    }
    .card__btn {
        padding: 10px 14px;
        font-size: 0.78rem;
    }
}
@media (max-width: 480px) {
    .hero__btns {
        flex-direction: column;
    }
    .btn {
        width: 100%;
        justify-content: center;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
    position: relative;
    padding: 52px 0 48px;
    background: linear-gradient(135deg, #fafafa 0%, #fff9e6 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    overflow: hidden;
}
.page-hero::after {
    content: "";
    position: absolute;
    right: -80px;
    top: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(
        circle,
        rgba(245, 197, 24, 0.12) 0%,
        transparent 70%
    );
    pointer-events: none;
}
.page-hero__content {
    position: relative;
    z-index: 2;
}
.page-hero__title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--dark);
    letter-spacing: -1px;
    margin-bottom: 16px;
    text-transform: uppercase;
}
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray);
}
.breadcrumb a {
    color: var(--gray);
    transition: color var(--transition);
}
.breadcrumb a:hover {
    color: var(--yellow-dark);
}
.breadcrumb__sep {
    color: rgba(0, 0, 0, 0.3);
}
.breadcrumb__current {
    color: var(--dark);
}

/* ===== LANG SWITCHER ===== */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--gray);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    padding: 6px 10px;
    border-radius: 6px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    transition: all var(--transition);
}
.lang-switcher:hover {
    border-color: var(--yellow);
    color: var(--yellow);
}

/* ===== CRANES GRID ===== */
.cranes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    padding: 16px;
}
.crane-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow:
        0 1px 2px rgba(17, 24, 39, 0.04),
        0 4px 14px rgba(17, 24, 39, 0.06);
    border: 1px solid #eef0f3;
    transition:
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.35s ease;
    display: flex;
    flex-direction: column;
}
.crane-card:hover {
    transform: translateY(-4px);
    border-color: #e5e7eb;
    box-shadow:
        0 2px 4px rgba(17, 24, 39, 0.03),
        0 8px 18px rgba(17, 24, 39, 0.05),
        0 18px 36px rgba(17, 24, 39, 0.06);
}
.crane-card__img-wrap {
    position: relative;
    height: 230px;
    overflow: hidden;
    background: #f2f3f6;
}
.crane-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.crane-card:hover .crane-card__img {
    transform: scale(1.06);
}
.crane-card__badge {
    position: absolute;
    left: 0;
    bottom: 0;
    background: var(--yellow);
    color: var(--dark);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 8px 16px 8px 18px;
    border-top-right-radius: 12px;
    letter-spacing: 0.2px;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.08);
}
.crane-card__body {
    padding: 22px 22px 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.crane-card__title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--dark);
    margin: 0 0 14px;
    line-height: 1.25;
    letter-spacing: -0.2px;
}
.crane-card__divider {
    height: 1px;
    background: #e5e7eb;
    margin: 0 0 18px;
}
.crane-card__specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 14px;
    column-gap: 20px;
    margin-bottom: 20px;
}
.crane-spec {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #8a8f98;
    font-weight: 500;
    min-width: 0;
}
.crane-spec > span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.crane-spec__icon {
    width: 20px;
    height: 20px;
    color: #8a8f98;
    flex-shrink: 0;
}
.crane-card__btn {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--yellow);
    color: var(--dark);
    font-weight: 700;
    font-size: 0.92rem;
    padding: 13px 20px;
    border-radius: 10px;
    transition:
        background var(--transition),
        transform var(--transition);
    width: 100%;
}
.crane-card__btn svg {
    transition: transform var(--transition);
}
.crane-card__btn:hover {
    background: var(--yellow-dark);
}
.crane-card__btn:hover svg {
    transform: translateX(4px);
}
@media (max-width: 960px) {
    .cranes-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }
}
@media (max-width: 768px) {
    .cranes-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }
    .crane-card__title {
        font-size: 0.85rem;
    }
    .crane-card__body {
        padding: 14px;
    }
}
@media (max-width: 620px) {
    .cranes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .crane-card__img-wrap {
        height: 180px;
    }
    .crane-card__title {
        font-size: 0.8rem;
    }
    .crane-card__specs {
        gap: 6px;
    }
    .crane-card__spec-label,
    .crane-card__spec-val {
        font-size: 0.7rem;
    }
    .crane-card__btn {
        font-size: 0.75rem;
        padding: 8px 12px;
    }
}

/* ===== DETAIL PAGE ===== */
.detail-section {
    padding: 80px 0;
}
.detail-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    align-items: start;
}
.detail-main-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 32px;
}
.detail-contact-box {
    background: var(--dark);
    border-radius: var(--radius);
    padding: 28px;
    position: sticky;
    top: 96px;
}
.detail-contact-box h3 {
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.detail-contact-box p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin-bottom: 20px;
    line-height: 1.6;
}
.contact-btns {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.contact-btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}
.contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.92rem;
    transition: all var(--transition);
    cursor: pointer;
}
.contact-btn--call {
    background: var(--yellow);
    color: var(--dark);
}
.contact-btn--call:hover {
    background: var(--yellow-dark);
    transform: translateY(-2px);
}
.contact-btn--wa {
    background: #25d366;
    color: #fff;
}
.contact-btn--wa:hover {
    background: #1ebe5a;
    transform: translateY(-2px);
}
.contact-btn--email {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.12);
}
.contact-btn--email:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-2px);
}
.contact-btn--pdf {
    background: #dc2626;
    color: #fff;
}
.contact-btn--pdf:hover {
    background: #b91c1c;
    transform: translateY(-2px);
}
.contact-btn--disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.detail-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
    flex-wrap: wrap;
    gap: 12px;
}
.detail-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
}
.detail-model-badge {
    font-size: 0.85rem;
    color: var(--gray);
    font-weight: 500;
}
.detail-tab {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--dark);
    border-bottom: 2px solid var(--dark);
    padding-bottom: 4px;
    margin-bottom: 10px;
    display: inline-block;
}
.detail-desc {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 28px;
}
.detail-icons {
    display: flex;
    gap: 0;
    border: 1px solid #e8e8e8;
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 32px;
}
.detail-icon-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 18px 8px;
    border-right: 1px solid #e8e8e8;
    text-align: center;
}
.detail-icon-item:last-child {
    border-right: none;
}
.detail-icon-item svg,
.detail-icon-item .icon-emoji {
    width: 32px;
    height: 32px;
    margin-bottom: 8px;
    stroke: var(--yellow-dark);
    display: block;
    flex-shrink: 0;
}
.detail-icon-val {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--dark);
    display: block;
    line-height: 1.2;
}
.detail-icon-lbl {
    font-size: 0.7rem;
    color: var(--gray);
    display: block;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    line-height: 1.3;
}
.detail-info-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}
.detail-info-table__head {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
    font-size: 0.95rem;
}
.detail-info-table__head::before {
    content: "";
    display: inline-block;
    width: 4px;
    height: 16px;
    background: var(--yellow);
    border-radius: 2px;
}
.detail-info-table tr {
    border-bottom: 1px solid #f0f0f0;
}
.detail-info-table tr:last-child {
    border-bottom: none;
}
.detail-info-table td {
    padding: 13px 0;
    vertical-align: middle;
}
.detail-info-table td:first-child {
    color: var(--gray);
    font-weight: 500;
    width: 55%;
}
.detail-info-table td:last-child {
    font-weight: 600;
    color: var(--dark);
    text-align: right;
}

/* ===== CONTACT PAGE ===== */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}
.contact-info-card {
    background: var(--white);
    border: 1px solid #f0f0f0;
    border-radius: var(--radius);
    padding: 36px 24px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all var(--transition);
}
.contact-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}
.contact-info-icon {
    width: 60px;
    height: 60px;
    background: var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}
.contact-info-icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--dark);
}
.contact-info-card h3 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray);
    font-weight: 600;
    margin-bottom: 10px;
}
.contact-info-card p,
.contact-info-card a {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.5;
}
.contact-info-card a:hover {
    color: var(--yellow-dark);
}

.contact-form-section {
    background: var(--dark);
    border-radius: 16px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 440px;
}
.contact-map {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    display: block;
    filter: grayscale(20%);
}
.contact-form-side {
    padding: 48px 40px;
}
.contact-form-side h2 {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 28px;
}
.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}
.contact-form-full {
    margin-bottom: 14px;
}

/* ===== RESPONSIVE NEW PAGES ===== */
@media (max-width: 900px) {
    .cranes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .detail-layout {
        grid-template-columns: 1fr;
    }
    .contact-form-section {
        grid-template-columns: 1fr;
    }
    .contact-map {
        min-height: 250px;
    }
}
@media (max-width: 768px) {
    .cranes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-cards {
        grid-template-columns: 1fr;
    }
    .contact-form-grid {
        grid-template-columns: 1fr;
    }
    .detail-icons {
        flex-wrap: wrap;
    }
    .detail-icon-item {
        flex: 0 0 33.33%;
        border-bottom: 1px solid #e8e8e8;
    }
}
@media (max-width: 480px) {
    .cranes-grid {
        grid-template-columns: 1fr;
    }
    .detail-icon-item {
        flex: 0 0 50%;
    }
    .contact-form-side {
        padding: 28px 20px;
    }
}

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
.fade-in:nth-child(2) {
    transition-delay: 0.1s;
}
.fade-in:nth-child(3) {
    transition-delay: 0.2s;
}
.fade-in:nth-child(4) {
    transition-delay: 0.3s;
}

/* ===== EQ-SERVICES PAGE ===== */
.eq-page-hero {
    position: relative;
    padding: 140px 0 60px;
    background:
        linear-gradient(
            135deg,
            rgba(13, 13, 26, 0.96) 0%,
            rgba(22, 33, 62, 0.92) 60%,
            rgba(13, 13, 26, 0.88) 100%
        ),
        url("https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1600&q=80")
            center/cover no-repeat;
    overflow: hidden;
}
.eq-page-hero__content {
    position: relative;
    z-index: 2;
}
.eq-page-hero__title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--white);
    letter-spacing: -1px;
    margin-bottom: 16px;
    text-transform: uppercase;
}
.eq-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.45);
}
.eq-breadcrumb a {
    color: var(--yellow);
    text-decoration: none;
}
.eq-breadcrumb a:hover {
    color: var(--yellow-dark);
}

.eq-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 40px;
}
.eq-srv-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px 32px 40px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition:
        transform var(--transition),
        box-shadow var(--transition);
}
.eq-srv-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}
.eq-srv-card__icon-wrap {
    width: 64px;
    height: 64px;
    background: var(--yellow);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}
.eq-srv-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
}
.eq-srv-card__icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--dark);
}
.eq-srv-card__title {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
}
.eq-srv-card__desc {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.7;
}
.eq-srv-card__num {
    position: absolute;
    bottom: 20px;
    right: 24px;
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.04);
    line-height: 1;
    pointer-events: none;
}
@media (max-width: 900px) {
    .eq-services-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 600px) {
    .eq-services-grid {
        grid-template-columns: 1fr;
    }
}

/* EQ-SERVICES DETAIL GRID */
.eq-srv-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 1rem;
}
.eq-srv-detail-card {
    background: var(--white);
    border: 1px solid #e8e8e8;
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
}
.eq-srv-detail-card__head {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 2px solid var(--yellow);
}
.eq-srv-detail-card__icon {
    width: 48px;
    height: 48px;
    background: var(--yellow);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.eq-srv-detail-card__icon svg {
    width: 22px;
    height: 22px;
    color: var(--dark);
}
.eq-srv-detail-card__head h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
}
.eq-srv-detail-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.eq-srv-detail-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: var(--dark2);
    line-height: 1.5;
}
.eq-srv-detail-list li svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--yellow);
}
@media (max-width: 768px) {
    .eq-srv-detail-grid {
        grid-template-columns: 1fr;
    }
}

/* CARD SPECS - 2 col grid like crane-card */
.card__specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 14px;
    column-gap: 20px;
    margin: 0 0 20px;
}
.card__spec {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #8a8f98;
    font-weight: 500;
    min-width: 0;
}
.card__spec > span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.card__spec-icon {
    width: 20px;
    height: 20px;
    color: #8a8f98;
    flex-shrink: 0;
}

/* CARD BODY - equal height buttons */
.card__body {
    display: flex;
    flex-direction: column;
}
.card__body .btn {
    margin-top: auto;
}

.card__btn {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--yellow);
    color: var(--dark);
    font-weight: 700;
    font-size: 0.92rem;
    padding: 13px 20px;
    border-radius: 10px;
    transition:
        background var(--transition),
        transform var(--transition);
    width: 100%;
}
.card__btn svg {
    transition: transform var(--transition);
}
.card__btn:hover {
    background: var(--yellow-dark);
}
.card__btn:hover svg {
    transform: translateX(4px);
}

/* WHY US - new layout */
.why-layout {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 4rem;
    align-items: start;
}
.why-left {
    position: sticky;
    top: 100px;
}
.why-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    background: transparent;
    border: none;
    border-radius: 0;
    overflow: visible;
}
.why-item {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 30px 28px 28px;
    background: #1e1e2e;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    overflow: hidden;
    isolation: isolate;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.why-item:hover {
    border-color: rgba(245, 197, 24, 0.35);
    transform: translateY(-6px);
}
.why-item > * {
    position: relative;
    z-index: 1;
}

.why-item__top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
}
.why-item__icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(245, 197, 24, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--yellow);
    flex-shrink: 0;
}
.why-item__icon svg {
    width: 26px;
    height: 26px;
    stroke-width: 1.8;
}
.why-item__arrow {
    flex: 1;
    height: 10px;
    color: rgba(255, 255, 255, 0.25);
    transition: color 0.4s ease;
}
.why-item:hover .why-item__arrow {
    color: rgba(245, 197, 24, 0.55);
}
.why-item__num {
    font-size: 2.3rem;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1.2px rgba(255, 255, 255, 0.28);
    line-height: 1;
    letter-spacing: -1px;
    flex-shrink: 0;
    transition: -webkit-text-stroke-color 0.4s ease;
}
.why-item:hover .why-item__num {
    -webkit-text-stroke-color: rgba(245, 197, 24, 0.6);
}

.why-item__title {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--yellow);
    margin-bottom: 10px;
    line-height: 1.3;
}
.why-item__desc {
    font-size: 0.88rem;
    color: #9ca3af;
    line-height: 1.7;
    margin: 0;
}

/* TESTIMONIALS - dark bg + featured card */
.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.testi-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    transition: border-color var(--transition);
}
.testi-card:hover {
    border-color: rgba(245, 197, 24, 0.4);
}
.testi-card--featured {
    background: var(--yellow);
    border-color: var(--yellow);
    grid-row: span 1;
}
.testi-card--featured .testi-card__text,
.testi-card--featured .testi-card__author strong,
.testi-card--featured .testi-card__author span {
    color: var(--dark) !important;
}
.testi-card--featured .testi-card__stars {
    color: var(--dark);
}
.testi-card__stars {
    color: var(--yellow);
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}
.testi-card--featured .testi-card__stars {
    color: var(--dark);
}
.testi-card__text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    line-height: 1.65;
    flex: 1;
    margin-bottom: 1.5rem;
}
.testi-card__author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: auto;
}
.testi-card__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(245, 197, 24, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: var(--yellow);
    flex-shrink: 0;
}
.testi-card--featured .testi-card__avatar {
    background: rgba(0, 0, 0, 0.15);
    color: var(--dark);
}
.testi-card__author strong {
    display: block;
    font-size: 0.88rem;
    color: var(--white);
}
.testi-card__author span {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5);
}
@media (max-width: 900px) {
    .why-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .why-left {
        position: static;
    }
    .testi-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 600px) {
    .why-right {
        grid-template-columns: 1fr;
    }
    .testi-grid {
        grid-template-columns: 1fr;
    }
}

/* EQ-SERVICES FULL CARDS - same design, button always at bottom */
.eq-srv-full-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.eq-srv-full-card {
    background: var(--white);
    border: 1px solid #e8e8e8;
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    transition:
        box-shadow var(--transition),
        transform var(--transition);
}
.eq-srv-full-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    transform: translateY(-3px);
}
.eq-srv-full-card__icon {
    width: 52px;
    height: 52px;
    background: var(--yellow);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}
.eq-srv-full-card__icon svg {
    width: 24px;
    height: 24px;
    color: #fff;
    stroke: #fff;
}
.eq-srv-full-card__icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}
.eq-srv-full-card__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.6rem;
}
.eq-srv-full-card__desc {
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.65;
    margin-bottom: 1.25rem;
}
.eq-srv-full-card__list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}
.eq-srv-full-card__list li {
    font-size: 0.82rem;
    color: var(--dark2);
    padding-left: 1.1rem;
    position: relative;
    line-height: 1.5;
}
.eq-srv-full-card__list li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: var(--yellow);
    font-size: 0.7rem;
    top: 2px;
}
.eq-srv-full-card .btn {
    margin-top: auto;
    text-align: center;
}
@media (max-width: 900px) {
    .eq-srv-full-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 600px) {
    .eq-srv-full-grid {
        grid-template-columns: 1fr;
    }
}

/* EQ SERVICE DETAIL */
.eq-srv-detail {
    max-width: 860px;
    margin: 0 auto;
    padding: 2rem 0;
}
.eq-srv-detail__icon {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    background: var(--yellow);
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}
.eq-srv-detail__icon svg {
    width: 40px;
    height: 40px;
}
.eq-srv-detail__icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: brightness(0) invert(0.15);
}
.eq-srv-detail__desc {
    color: var(--gray);
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 1rem 0 2.5rem;
}
.eq-srv-detail__subtitle {
    font-size: 1.4rem;
    font-weight: 800;
    margin: 2rem 0 1rem;
    color: var(--dark);
}
.eq-srv-detail__list {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem;
    display: grid;
    gap: 0.75rem;
}
.eq-srv-detail__list li {
    padding: 1rem 1.25rem 1rem 2.75rem;
    background: #f8f8fa;
    border-radius: 10px;
    position: relative;
    color: var(--dark);
    line-height: 1.5;
}
.eq-srv-detail__list li::before {
    content: "✓";
    position: absolute;
    left: 1rem;
    top: 1rem;
    width: 22px;
    height: 22px;
    background: var(--yellow);
    color: var(--dark);
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
}
.eq-srv-detail__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}
.eq-srv-detail__nav {
    max-width: 860px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid #e8e8e8;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}
.eq-srv-detail__nav-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--dark);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s;
}
.eq-srv-detail__nav-link:hover {
    color: var(--yellow-dark);
}
.eq-srv-detail__nav-link--next {
    margin-left: auto;
}
@media (max-width: 600px) {
    .eq-srv-detail__actions {
        flex-direction: column;
    }
    .eq-srv-detail__actions .btn {
        width: 100%;
        text-align: center;
    }
}

/* LANG DROPDOWN FIX - override inline display:none */
.lang-menu {
    display: none !important;
}
.lang-menu.open {
    display: block !important;
}

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

/* ===== TESTIMONIALS (con-testi) ===== */
.con-testi-section {
    padding: 96px 0;
    background: var(--light);
}
.con-sec-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--gray);
    text-transform: uppercase;
    margin-bottom: 10px;
}
.con-sec-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.15;
}
.con-sec-title--big {
    font-size: clamp(2rem, 4vw, 3rem);
}
.con-sec-head {
    margin-bottom: 48px;
}
.con-sec-head--center {
    text-align: center;
}
.con-testi-section .con-sec-label {
    color: var(--dark);
}
.con-testi-section .con-sec-title {
    color: var(--dark);
}
.con-testi-nav {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-bottom: 24px;
}
.con-testi-nav__btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: var(--yellow);
    color: var(--dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition:
        background var(--transition),
        transform var(--transition),
        box-shadow var(--transition);
    box-shadow: 0 6px 16px rgba(245, 197, 24, 0.35);
}
.con-testi-nav__btn:hover {
    background: var(--dark);
    color: var(--yellow);
}
.con-testi-nav__btn svg {
    width: 18px;
    height: 18px;
}
.con-testi-grid {
    display: flex;
    gap: 24px;
    align-items: stretch;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 20px;
}
.con-testi-grid::-webkit-scrollbar {
    display: none;
}

/* ===== TESTIMONIAL CAROUSEL ===== */
.testi-carousel {
    position: relative;
    padding: 0 0 48px;
}
.testi-carousel__viewport {
    overflow: hidden;
}
.testi-carousel__track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}
.testi-carousel__slide {
    flex: 0 0 calc((100% - 48px) / 3);
    min-width: 0;
}
.testi-carousel__btn {
    position: absolute;
    top: 50%;
    transform: translateY(-70%);
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: var(--yellow);
    color: var(--dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(245, 197, 24, 0.35);
    transition:
        background var(--transition),
        transform var(--transition);
}
.testi-carousel__btn:hover {
    background: var(--yellow-dark);
    transform: translateY(-70%) scale(1.08);
}
.testi-carousel__btn--prev {
    left: -22px;
}
.testi-carousel__btn--next {
    right: -22px;
}
.testi-carousel__dots {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    align-items: center;
}
.testi-carousel__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all var(--transition);
}
.testi-carousel__dot.active {
    background: var(--yellow);
    width: 24px;
    border-radius: 4px;
}
@media (max-width: 900px) {
    .testi-carousel__slide {
        flex: 0 0 calc((100% - 24px) / 2);
    }
    .testi-carousel__btn--prev {
        left: -16px;
    }
    .testi-carousel__btn--next {
        right: -16px;
    }
}
@media (max-width: 600px) {
    .testi-carousel__slide {
        flex: 0 0 100%;
    }
    .testi-carousel__btn {
        width: 36px;
        height: 36px;
    }
    .testi-carousel__btn--prev {
        left: 0;
    }
    .testi-carousel__btn--next {
        right: 0;
    }
}

.con-testi-card {
    background: var(--white);
    border: 1px solid #ececec;
    border-radius: 14px;
    padding: 28px 26px 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
    transition: border-color var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 18px;
    overflow: hidden;
    flex: 0 0 calc((100% - 48px) / 3);
    scroll-snap-align: start;
}
.con-testi-card--featured {
    border-color: var(--yellow);
}
.con-testi-card:not(.con-testi-card--featured):hover {
    border-color: var(--yellow);
}
.con-testi-grid:has(.con-testi-card:not(.con-testi-card--featured):hover)
    .con-testi-card--featured {
    border-color: #ececec;
}
.con-testi-card__head {
    display: flex;
    align-items: center;
    gap: 14px;
}
.con-testi-card__avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(245, 197, 24, 0.15);
    color: var(--yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 800;
    flex-shrink: 0;
    border: 2px solid rgba(245, 197, 24, 0.25);
}
.con-testi-card__info {
    flex: 1;
    min-width: 0;
}
.con-testi-card__name {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.25;
}
.con-testi-card__pos {
    display: block;
    font-size: 0.82rem;
    color: var(--gray);
    margin-top: 4px;
}
.con-testi-card__quote-icon {
    position: absolute;
    top: 0;
    right: 0;
    width: 48px;
    height: 48px;
    border-radius: 0 14px 0 16px;
    background: var(--yellow);
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
}
.con-testi-card__quote-icon svg {
    width: 22px;
    height: 22px;
}
.con-testi-card__quote {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.7;
    margin: 0;
    flex: 1;
}
.con-testi-card__stars {
    display: flex;
    gap: 3px;
    margin-top: auto;
}
@media (max-width: 900px) {
    .con-testi-card {
        flex: 0 0 calc((100% - 24px) / 2);
    }
}
@media (max-width: 600px) {
    .con-testi-card {
        flex: 0 0 100%;
    }
}

/* ===== SCROLL ANIMATIONS ===== */
[data-anim] {
    opacity: 0;
    transform: translateY(40px);
    transition:
        opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
[data-anim="fade-right"] {
    transform: translateX(-40px);
}
[data-anim="fade-left"] {
    transform: translateX(40px);
}
[data-anim="scale"] {
    transform: scale(0.92);
}
[data-anim].is-visible {
    opacity: 1;
    transform: none;
}
[data-anim][data-delay="1"] {
    transition-delay: 0.1s;
}
[data-anim][data-delay="2"] {
    transition-delay: 0.2s;
}
[data-anim][data-delay="3"] {
    transition-delay: 0.3s;
}
[data-anim][data-delay="4"] {
    transition-delay: 0.4s;
}

/* ===== DECORATIVE BG ===== */
.section,
.section--dark,
.section--light {
    position: relative;
    overflow: clip;
}
.decor-icon {
    position: absolute;
    opacity: 0.03;
    pointer-events: none;
    user-select: none;
    z-index: 0;
}
.decor-icon--1 {
    top: 10%;
    right: -3%;
    width: 320px;
    height: 320px;
}
.decor-icon--2 {
    bottom: 5%;
    left: -4%;
    width: 280px;
    height: 280px;
}
.decor-icon--3 {
    top: -5%;
    left: 50%;
    width: 400px;
    height: 400px;
    transform: translateX(-50%);
}
.decor-icon--4 {
    bottom: -8%;
    right: 8%;
    width: 260px;
    height: 260px;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-16px);
    }
}
.decor-float {
    animation: float 6s ease-in-out infinite;
}
.decor-float--slow {
    animation-duration: 8s;
}
.decor-float--delay {
    animation-delay: 2s;
}

/* ===== HERO ANIM ===== */
.hero__content > * {
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero__content > *:nth-child(1) {
    animation-delay: 0.1s;
}
.hero__content > *:nth-child(2) {
    animation-delay: 0.25s;
}
.hero__content > *:nth-child(3) {
    animation-delay: 0.4s;
}
.hero__content > *:nth-child(4) {
    animation-delay: 0.55s;
}
@keyframes heroFadeIn {
    to {
        opacity: 1;
        transform: none;
    }
}

/* ===== CARD STAGGER ===== */
.srv-card[data-anim],
.why-item[data-anim] {
    transition-duration: 0.6s;
}

/* ===== PULSE CTA ===== */
@keyframes pulse-glow {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(245, 197, 24, 0.4);
    }
    50% {
        box-shadow: 0 0 0 12px rgba(245, 197, 24, 0);
    }
}
.btn--primary:not(:hover) {
    animation: pulse-glow 3s ease-in-out infinite;
}

/* ===== SECTION LABEL LINE ===== */
.section__label::before,
.section__label::after {
    transition: width 0.5s ease;
}

/* ===== 375px (mobile) ===== */
@media (max-width: 400px) {
    .header__construction-link,
    .lang-dropdown {
        display: none !important;
    }
    .header__right {
        gap: 0;
        margin-left: auto;
    }

    /* Mobile menu */
    body.menu-open {
        overflow: hidden;
    }
    .nav {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: calc(100vh - 72px);
        background: #ffffff;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        padding: 24px 20px 40px;
        border-bottom: none;
        box-shadow: none;
        overflow-y: auto;
        transform: translateX(100%);
        transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
        display: flex !important;
        z-index: 999;
    }
    .nav.open {
        transform: translateX(0);
    }
    .nav__link {
        font-size: 20px;
        font-weight: 600;
        color: var(--dark);
        padding: 18px 4px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }
    .nav__link::after {
        display: none;
    }

    .nav > .lang-dropdown {
        display: block !important;
        position: static !important;
        margin-top: 24px;
        width: 100%;
    }
    .nav > .lang-dropdown .header__lang {
        display: none !important;
    }
    .nav > .lang-dropdown .lang-menu {
        display: flex !important;
        position: static !important;
        width: 100%;
        gap: 8px;
        padding: 0 !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        border-radius: 0 !important;
        min-width: 0 !important;
    }
    .nav > .lang-dropdown .lang-menu a {
        flex: 1;
        display: flex !important;
        align-items: center;
        justify-content: center;
        padding: 12px 0 !important;
        background: rgba(0, 0, 0, 0.04);
        border-radius: 7px;
        font-size: 0.95rem !important;
    }
    .nav > .header__construction-link {
        display: inline-flex !important;
        justify-content: center;
        width: 100%;
        margin-top: 16px;
        padding: 14px 16px;
        font-size: 0.95rem;
    }

    .breadcrumb,
    .eq-breadcrumb {
        display: none !important;
    }

    .page-hero,
    .eq-page-hero {
        padding-top: 36px !important;
        padding-bottom: 36px !important;
    }
    .page-hero__title,
    .eq-page-hero__title {
        font-size: 24px !important;
    }

    .section__title,
    .con-sec-title,
    .con-sec-title--big,
    .about__slogan,
    h2 {
        font-size: 24px !important;
    }

    .hero {
        min-height: 550px;
        height: 550px;
    }
    .hero__content {
        padding-top: 32px;
        padding-bottom: 40px;
    }

    .hero__title--stacked {
        gap: 14px;
    }
    .hero__title--stacked .hero__title__top,
    .hero__title--stacked .hero__title__bot {
        font-size: 18px;
    }
    .hero__title--stacked .hero__title__mid {
        font-size: 50px;
        letter-spacing: -1px;
    }

    .hero__btns {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 10px;
        align-items: center;
    }
    .hero__btns .btn {
        width: auto;
        flex: 0 1 auto;
        padding: 10px 14px;
        font-size: 0.82rem;
    }
    .hero__play-icon {
        display: none;
    }
    .hero__play-btn {
        padding: 10px 14px;
        border: 2px solid var(--yellow);
        border-radius: 7px;
        font-size: 0.82rem;
        gap: 0;
        flex: 0 1 auto;
        justify-content: center;
    }
    .hero__play-text {
        font-size: 0.82rem;
    }

    #equipments .section__title {
        font-size: 24px;
    }
    #equipments .section__head {
        margin-bottom: 20px;
    }
    #equipments .slider-btn {
        display: none;
    }
    #equipments .slider-wrapper {
        gap: 0;
    }
    #equipments .slider-outer {
        padding: 0;
        max-width: 100%;
    }
    #equipments .card {
        min-width: calc(50% - 8px);
    }
    .card__img-wrap {
        height: 140px;
    }
    .card__body {
        padding: 10px;
        gap: 0;
    }
    .card__title {
        font-size: 0.75rem;
        margin: 0 0 6px;
    }
    .card__divider {
        margin: 0 0 6px;
    }
    .card__specs {
        gap: 4px;
    }
    .card__spec {
        font-size: 0.65rem;
        gap: 4px;
    }
    .card__spec-icon {
        width: 12px;
        height: 12px;
    }
    .card__btn {
        padding: 8px 10px;
        font-size: 0.7rem;
    }
    .card__badge {
        font-size: 0.6rem;
        padding: 4px 8px;
    }

    #services .section__title {
        font-size: 24px;
    }
    #services .section__head {
        margin-bottom: 20px;
    }
    #services .services-grid {
        gap: 16px;
    }

    #why .section__title {
        font-size: 24px;
    }
    #why .why-layout {
        gap: 20px;
    }
    #why .why-left {
        margin-bottom: 0;
        padding-bottom: 0;
    }
    #why .why-left .btn {
        margin-bottom: 0;
    }
    #why .why-right {
        gap: 16px;
    }

    #testimonials .con-sec-title,
    #testimonials .con-sec-title--big {
        font-size: 24px;
    }
    #testimonials .con-sec-head {
        margin-bottom: 20px;
    }
    #testimonials .con-testi-nav {
        display: none;
    }
    #testimonials .con-testi-grid {
        padding: 0;
        gap: 16px;
    }
    #testimonials .con-testi-card {
        flex: 0 0 100%;
    }
    #testimonials .con-testi-dots {
        display: flex;
    }

    .eq-cta__title {
        font-size: 24px;
    }

    .site-footer__top {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .site-footer__nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        width: 100%;
    }
    .section,
    .con-testi-section {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .eq-cta {
        padding: 0 0 40px;
    }

    .site-footer__bar-inner {
        flex-direction: column-reverse;
        gap: 16px;
    }
    .site-footer__inner {
        padding: 40px 16px 20px !important;
    }
    .site-footer__bar {
        padding: 0;
    }
    .site-footer__bar .container {
        padding: 20px 16px !important;
    }
}

/* testimonial dots */
.con-testi-dots {
    display: none;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}
.con-testi-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all var(--transition);
}
.con-testi-dot.active {
    background: var(--yellow);
    width: 24px;
    border-radius: 4px;
}
