@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


/* MAIN STYLES */
html {
    background-color: var(--secondary);
    scroll-behavior: smooth;
}
body {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.wrapper {
    width: 100dvw;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px 0;
}
.content-wrapper {
    width: 1600px;
    height: 100%;
}
.content-wrapper-mini {
    width: 1300px;
    height: 100%;
}
.block-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}
.block-header .h2 { text-align: center; }
.block-header .h3 {
    text-align: center;
    color: var(--gray);
}

/* TEXT STYLES */
.h1 {
    font-weight: 800;
    font-size: 64px;
    line-height: 115%;
}
.h2 {
    font-weight: 700;
    font-size: 38px;
}
.h3 {
    font-weight: 700;
    font-size: 18px;
}
.card-h3 {
    font-weight: 700;
    font-size: 20px;
}
p {
    font-weight: 500;
    font-size: 18px;
}
.card-p {
    font-weight: 500;
    font-size: 16px;
}
.span-text {
    font-weight: 700;
    font-size: 16px;
}
.btn-text {
    font-weight: 600;
    font-size: 18px;
}
.label-text {
    font-weight: 500;
    font-size: 20px;
}
.brand-text {
    font-weight: 800;
    font-size: 22px;
}

/* COMPONENTS */
.btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background-color: var(--main);

    width: 380px;
    padding: 12px 0;
    box-sizing: border-box; 

    color: white;

    box-shadow: 0px 10px 26px rgba(0, 0, 0, 0);
    webkit-box-shadow: 0px 10px 26px rgba(0, 0, 0, 0);
    transition: all 0.15s ease-in-out;
}
.btn .icon {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    height: 30px;
    width: 30px;
    background: url(./src/icons/icon=arrow_right_white.png); 
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0;
    transition: all 0.15s ease-in-out;
}
.btn:hover {
    box-shadow: 0px 10px 26px rgba(0, 0, 0, 0.15);
    webkit-box-shadow: 0px 10px 26px rgba(0, 0, 0, 0.15);
    cursor: pointer;
}
.btn:hover .icon {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
}
.scnd-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    border: 2px solid var(--main);

    width: 380px;
    padding: 12px 0;
    box-sizing: border-box; 

    color: var(--main);

    box-shadow: 0px 10px 26px rgba(0, 0, 0, 0);
    webkit-box-shadow: 0px 10px 26px rgba(0, 0, 0, 0);
    transition: all 0.15s ease-in-out;
}
.scnd-btn .icon {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    height: 30px;
    width: 30px;
    background: url(./src/icons/icon=arrow_right.png); 
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0;
    transition: all 0.15s ease-in-out;
}
.scnd-btn:hover {
    box-shadow: 0px 10px 26px rgba(0, 0, 0, 0.15);
    webkit-box-shadow: 0px 10px 26px rgba(0, 0, 0, 0.15);
    cursor: pointer;
}
.scnd-btn:hover .icon {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
}

/* COLORS */
:root {
   --main: rgb(0 54 100);
    --secondary: rgb(241, 241, 241);
    --gray: rgb(101, 101, 101);

    --whatsapp: rgb(0, 184, 108);
    --telegram: rgb(0, 129, 255);
    --facebook: rgb(0, 95, 255);
    --instagram: rgb(252, 0, 119);
    --viber: rgb(102, 92, 167);
}
.color-text {
    color: var(--main);
}

#about, #services, #cars, #faq {
    scroll-margin-top: 120px;
}

/* HEADER */
.header {
    position: fixed;
    top: 20px;
    width: 1600px;
    height: 80px;
    background-color: white;
    border-radius: 20px;
    box-shadow: 0px 10px 26px rgba(0, 0, 0, 0.15);
    webkit-box-shadow: 0px 10px 26px rgba(0, 0, 0, 0.15);

    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    box-sizing: border-box;

    z-index: 100;
}
.header-branding {
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo {
    background: url(./src/images/logo.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.nav-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    gap: 40px;
}
.nav-wrapper a{
    color: var(--gray);
    border-bottom: 2px solid rgb(from var(--main) r g b / 0);
    transition: all 0.15s ease-in-out;
}
.nav-wrapper a:hover{
    color: var(--main);
    border-bottom: 2px solid rgb(from var(--main) r g b / 100);
}

.header-links {
    display: flex;
    gap: 10px;
}
.header-button {
    width: 70px;
    height: 50px;
    padding: 10px 20px;
    box-sizing: border-box;
    border-radius: 16px;
    background-color: var(--secondary);

    display: flex;
    align-items: center;
    justify-content: center;

    transition: all ease-in-out 0.15s;
    box-shadow: 0px 10px 26px rgba(0, 0, 0, 0);
    webkit-box-shadow: 0px 10px 26px rgba(0, 0, 0, 0);
}
.header-button:hover {
    box-shadow: 0px 10px 26px rgba(0, 0, 0, 0.15);
    webkit-box-shadow: 0px 10px 26px rgba(0, 0, 0, 0.15);
    cursor: pointer;
}
.header-links .telegram,
.mobile-nav-contacts .telegram { background-color: var(--telegram); }
.header-links .whatsapp,
.mobile-nav-contacts .whatsapp { background-color: var(--whatsapp); }
.header-links .call,
.mobile-nav-contacts .call { background-color: var(--main); }
.header-links .telegram .icon,
.mobile-nav-contacts .telegram .icon {
    background: url(./src/icons/icon=telegram_white.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.header-links .whatsapp .icon,
.mobile-nav-contacts .whatsapp .icon {
    background: url(./src/icons/icon=whatsapp_white.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.header-links .call .icon,
.mobile-nav-contacts .call .icon {
    background: url(./src/icons/icon=phone_white.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.header-button .icon {
    height: 30px;
    width: 30px;
    flex-shrink: 0;

    transition: all 0.15s ease-in-out;
}
.header-button:hover .icon {
    height: 34px;
    width: 34px;
}

.lang-change-button {
    position: relative;
    width: fit-content;
    height: fit-content;
    padding: 10px;
    box-sizing: border-box;
    border-radius: 16px;
    background-color: var(--secondary);

    display: flex;
    align-items: center;
    justify-content: center;

    transition: all ease-in-out 0.15s;
    box-shadow: 0px 10px 26px rgba(0, 0, 0, 0);
    webkit-box-shadow: 0px 10px 26px rgba(0, 0, 0, 0);
}
.lang-change-button:hover {
    box-shadow: 0px 10px 26px rgba(0, 0, 0, 0.15);
    webkit-box-shadow: 0px 10px 26px rgba(0, 0, 0, 0.15);
    cursor: pointer;
}
.lang-change-button .icon{
    background: url(./src/icons/icon=arrow_down_faq.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;

    height: 20px;
    width: 20px;
    transition: transform 0.25s ease-in-out;
}
.lang-change-button.open .icon {
    transform: rotate(180deg);
}
.lang-change-button > .lang-icon {
    background: url(./src/icons/language/lang=UA.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;

    height: 30px;
    width: 30px;
}
.lang-change-button.lang-ru > .lang-icon {
    background-image: url(./src/icons/language/lang=RU.png);
}
.lang_choose_menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(-8px);

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 15px;
    box-sizing: border-box;
    border-radius: 16px;

    background-color: var(--main);
    box-shadow: 0px 10px 26px rgba(0, 0, 0, 0.2);

    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out;
}
.lang-change-button.open .lang_choose_menu {
    opacity: 1;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}
.lang-option {
    display: flex;
    align-items: center;
    gap: 6px;
    border-radius: 8px;
    padding: 6px 10px;
    background-color: rgba(0, 0, 0, 0);
    transition: all 0.15s ease-in-out;
    cursor: pointer;
}
.lang-option p { color: white; }
.lang-option:hover {
    background-color: rgba(0, 0, 0, 0.15);
}
.lang-option.active {
    background-color: rgba(255, 255, 255, 0.15);
}
.lang-option .lang-icon {
    height: 24px;
    width: 24px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    flex-shrink: 0;
}
.lang-option[data-lang="ua"] .lang-icon {
    background-image: url(./src/icons/language/lang=UA.png);
}
.lang-option[data-lang="ru"] .lang-icon {
    background-image: url(./src/icons/language/lang=RU.png);
}

/* MAIN BLOCK */
.main-block {
    height: 100dvh;
    background: rgb(241, 241, 241) url(./src/images/main-block-bg.png) no-repeat bottom / cover;
}
.main-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 30px;
}
.main-content .cta-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}
.main-content .scnd-btn{
    background-color: var(--secondary);
}

/* ABOUT BLOCK */
.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}
.about {
    display: flex;
    gap: 30px;
}
.about-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}
.about-image {
    width: 600px;
    height: 450px;
    background: url(./src/images/about-image.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 20px;
}
.about-stats {
    display: flex;
    align-items: center;
    gap: 70px;
    padding: 50px 0;
}
.about-stats-elem {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.about-stats-elem .h1 {
    color: var(--main);
}
.about-stats-elem .label-text {
    color: var(--gray);
}

/* SERVICES BLOCK */
.services-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}
.services {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
}
.services-elem {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    box-sizing: border-box;
    border-radius: 18px;
    background-color: white;
    height: 450px;
}
.services-elem-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.services-elem-info .card-p {
    color: var(--gray);
}
.services-icon-wrapper {
    width: 72px;
    height: 72px;
    background-color: var(--secondary);
    border-radius: 1000px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.services-icon {
    width: 40px;
    height: 40px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.services-icon.plane     { background-image: url(./src/icons/big/big-icon=plane.png); }
.services-icon.globe     { background-image: url(./src/icons/big/big-icon=globe.png); }
.services-icon.individual{ background-image: url(./src/icons/big/big-icon=individual.png); }
.services-icon.thousand  { background-image: url(./src/icons/big/big-icon=1000+.png); }
.services-icon.home      { background-image: url(./src/icons/big/big-icon=home.png); }
.services-icon.group     { background-image: url(./src/icons/big/big-icon=group.png); }
.services-elem .scnd-btn{
    width: 100%;
}
.main-services-elem {
    grid-column: span 3;
    height: 450px;
    position: relative;
    overflow: hidden;
}
.main-services-elem .services-elem-info,
.main-services-elem .scnd-btn {
    z-index: 1;
}
.main-services-elem  .directions-wrapper {
    display: flex;
    gap: 5px;
}
.main-services-elem  .direction {
    background-color: var(--main);
    border-radius: 12px;
    padding: 5px 15px;
}
.main-services-elem  .direction p {
    color: white;
}
.main-services-elem-image {
    position: absolute;
    top: 0;
    right: 0;

    width: 593px;
    height: 631px;
    background: url(./src/images/main-services-elem-image.png);
    background-repeat: no-repeat;
    background-size: cover;
}

/* FEATURES BLOCK */
.features-block {
    background-color: white;
}
.features-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}
.features-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    width: 100%;
}
.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}
.feature-icon-wrapper {
    width: 72px;
    height: 72px;
    background-color: var(--secondary);
    border-radius: 1000px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.feature-icon {
    width: 40px;
    height: 40px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.feature-icon.home       { background-image: url(./src/icons/big/big-icon=home.png); }
.feature-icon.time       { background-image: url(./src/icons/big/big-icon=time.png); }
.feature-icon.secure     { background-image: url(./src/icons/big/big-icon=secure.png); }
.feature-icon.transport  { background-image: url(./src/icons/big/big-icon=1000+.png); }
.feature-icon.individual { background-image: url(./src/icons/big/big-icon=individual.png); }
.feature-icon.group      { background-image: url(./src/icons/big/big-icon=group.png); }
.feature-icon.shield     { background-image: url(./src/icons/big/big-icon=shield.png); }
.feature-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}
.feature-info .card-p {
    text-align: center;
    color: var(--gray);
}

/* CATALOG BLOCK */
.catalog-block {
    background-color: white;
}
.catalog-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}
.catalog-carousel {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.carousel-viewport {
    overflow: hidden;
    padding-bottom: 36px;
    margin-bottom: -36px;
    touch-action: pan-y;
}
.carousel-track {
    display: flex;
    transition: transform 0.4s ease-in-out;
}
.carousel-page {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    min-width: 100%;
    flex-shrink: 0;
}
.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}
.carousel-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--main);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
    flex-shrink: 0;
}
.carousel-arrow:disabled {
    opacity: 0.3;
    cursor: default;
}
.arrow-icon {
    width: 18px;
    height: 18px;
    background: url(./src/icons/icon=arrow_right_white.png) no-repeat center / contain;
    flex-shrink: 0;
}
.prev-icon {
    transform: rotate(180deg);
}
.carousel-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}
.dot {
    height: 10px;
    width: 10px;
    border-radius: 5px;
    background-color: rgb(0 54 100 / 0.2);
    cursor: pointer;
    transition: all 0.25s ease-in-out;
}
.dot.active {
    background-color: var(--main);
    width: 28px;
}
.auto-card {
    background-color: var(--secondary);
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.auto-image {
    width: 100%;
    height: 280px;
    background: no-repeat center / cover;
    position: relative;
}
.auto-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--main);
    padding: 5px 15px;
    border-radius: 12px;
}
.auto-badge .card-p {
    color: white;
    font-size: 14px;
    font-weight: 600;
}
.auto-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}
.auto-stats {
    display: flex;
    gap: 20px;
    align-items: center;
}
.seats-info,
.rating-info {
    display: flex;
    align-items: center;
    gap: 8px;
}
.auto-stats .label-text{
    color: var(--main);
}
.seats-icon {
    width: 30px;
    height:30px;
    background: url(./src/icons/icon=group.png) no-repeat center / contain;
    flex-shrink: 0;
}
.star-icon {
    width: 30px;
    height: 30px;
    background: url(./src/icons/icon=star.png) no-repeat center / contain;
    flex-shrink: 0;
}
.auto-stats .card-p {
    color: var(--gray);
}
.auto-desc {
    color: var(--gray);
}
.auto-info-desc {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.auto-info-desc .card-p {
    color: var(--gray);
}
.auto-btns {
    padding: 10px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.auto-btns .btn,
.auto-btns .scnd-btn {
    width: 100%;
}

/* PRICING BLOCK */
.pricing-block {
    background-color: white;
}
.pricing-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}
.pricing-table-card {
    width: 860px;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0px 20px 60px rgba(0, 0, 0, 0.12);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}
.pricing-col-header {
    background-color: var(--main);
    padding: 26px 36px;
    display: flex;
    align-items: center;
    gap: 16px;
}
.pricing-header-right {
    border-left: 2px solid rgba(255, 255, 255, 0.12);
}
.pricing-col-header .btn-text {
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.pricing-vehicle-icon {
    width: 34px;
    height: 34px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    filter: brightness(0) invert(1);
    flex-shrink: 0;
}
.pricing-sedan-icon   { background-image: url(./src/icons/big/big-icon=1000+.png); }
.pricing-minivan-icon { background-image: url(./src/icons/big/big-icon=ven.png); }
.pricing-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 36px;
    border-bottom: 1.5px solid var(--secondary);
    transition: background-color 0.15s ease-in-out;
}
.pricing-row-right {
    border-left: 2px solid var(--secondary);
}
.pricing-row:nth-last-child(1),
.pricing-row:nth-last-child(2) {
    border-bottom: none;
}
.pricing-row:hover {
    background-color: rgba(0, 54, 100, 0.04);
}
.pricing-city {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #1c1c1c;
}
.pricing-price-tag {
    display: flex;
    align-items: baseline;
    gap: 5px;
    background: rgba(0, 54, 100, 0.08);
    padding: 8px 18px;
    border-radius: 50px;
}
.pricing-from {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: var(--gray);
}
.pricing-amount {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: var(--main);
}

/* REVIEWS BLOCK */
.reviews-block {
    background-color: white;
}
.reviews-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 90px;
}
.reviews-cards-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
}
.review-card {
    background-color: white;
    border-radius: 18px;
    padding: 30px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: 0px 10px 26px rgba(0, 0, 0, 0.15);
    webkit-box-shadow: 0px 10px 26px rgba(0, 0, 0, 0.15);
}
.review-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
}
.review-card-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--main);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.avatar-p {
    color: white;
    font-weight: 700;
    font-size: 32px;
}
.review-card-meta {
    display: flex;
    flex-direction: column;
}
.review-card-meta p {
    color: var(--gray);
}
.review-stars {
    display: flex;
}
.star {
    width: 30px;
    height: 30px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    flex-shrink: 0;
}
.star.filled { background-image: url(./src/icons/icon=star_filled.png); }
.star.empty  { background-image: url(./src/icons/icon=star.png); }
.review-card .card-p {
    color: var(--gray);
}
.review-route {
    margin-top: auto;
    font-weight: 700;
    font-size: 18px;
    color: var(--main);
}
.reviews-stats {
    width: fit-content;
    background-color: var(--secondary);
    border-radius: 20px;
    padding: 30px 50px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
}
.reviews-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}
.reviews-stat .h2 {
    color: var(--main);
}
.reviews-stat .label-text {
    color: var(--gray);
}
.reviews-rating-wrapper {
    display: flex;
    align-items: center;
    gap: 14px;
}
.review-stars-wrapper {
    display: flex;
    gap: 4px;
}
.star-image {
    width: 28px;
    height: 28px;
    background: url(./src/icons/icon=star_filled.png) no-repeat center / contain;
    flex-shrink: 0;
}

/* FAQ BLOCK */
.faq-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}
.faq-item {
    background-color: white;
    border-radius: 18px;
    padding: 26px 50px;
    box-sizing: border-box;
    overflow: hidden;
    cursor: pointer;
}
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.faq-icon {
    width: 24px;
    height: 24px;
    background: url(./src/icons/icon=arrow_down_faq.png) no-repeat center / contain;
    flex-shrink: 0;
    transition: transform 0.25s ease-in-out;
}
.faq-item.open .faq-icon {
    transform: rotate(180deg);
}
.faq-body {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease, margin-top 0.3s ease;
    margin-top: 0;
}
.faq-item.open .faq-body {
    grid-template-rows: 1fr;
    margin-top: 20px;
}
.faq-answer {
    overflow: hidden;
    color: var(--gray);
}

/* SOCIALS BLOCK */
.socials-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}
.socials-cards-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
    padding-bottom: 50px;
}
.social-card {
    background-color: white;
    border-radius: 18px;
    padding: 30px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.social-icon-wrapper {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.whatsapp-bg  { background-color: #E7F6EB; }
.telegram-bg  { background-color: #E3F3FF; }
.instagram-bg { background-color: #FFE3F3; }
.viber-bg     { background-color: #EEEAFF; }
.social-icon {
    width: 60px;
    height: 60px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.whatsapp-icon  { background-image: url(./src/icons/icon=whatsapp.png); }
.telegram-icon  { background-image: url(./src/icons/icon=telegram.png); }
.instagram-icon { background-image: url(./src/icons/icon=instagram.png); }
.viber-icon     { background-image: url(./src/icons/icon=viber.png); }
.social-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex: 1;
}
.social-text .card-h3 {
    text-align: center;
}
.social-text .card-p {
    color: var(--gray);
    text-align: center;
}
.social-card .btn {
    width: 100%;
}
.whatsapp-btn  { background-color: var(--whatsapp); }
.telegram-btn  { background-color: var(--telegram); }
.instagram-btn { background-color: var(--instagram); }
.viber-btn     { background-color: var(--viber); }

/* FOOTER */
.footer-block {
    width: 100dvw;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.footer-main {
    width: 100dvw;
    background-color: var(--main);
    display: flex;
    justify-content: center;
    padding: 50px 0;
}
.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer-left {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.footer-left .h2,
.footer-left p {
    color: white;
}
.footer-contacts {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 14px;
}
.footer-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: white;
    border-radius: 16px;
    padding: 10px 20px;
    box-sizing: border-box;
    cursor: pointer;
    transition: opacity 0.15s ease-in-out;
}
.footer-phone { text-decoration: none; }
.footer-phone:hover { opacity: 0.85; }
.footer-phone-icon {
    width: 24px;
    height: 24px;
    background: url(./src/icons/icon=phone.png) no-repeat center / contain;
    flex-shrink: 0;
}
.footer-phone .btn-text {
    color: var(--main);
}
.footer-socials {
    display: flex;
    gap: 10px;
}
.footer-social-btn {
    width: 70px;
    height: 50px;
    background-color: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity 0.15s ease-in-out;
}
.footer-social-btn { text-decoration: none; }
.footer-social-btn:hover { opacity: 0.85; }
.footer-social-icon {
    width: 30px;
    height: 30px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.whatsapp-social { background-image: url(./src/icons/icon=whatsapp.png); }
.telegram-social { background-image: url(./src/icons/icon=telegram.png); }
.viber-social    { background-image: url(./src/icons/icon=viber.png); }
.footer-bottom {
    width: 100dvw;
    background-color: white;
    display: flex;
    justify-content: center;
    padding: 20px 0;
}
.footer-bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer-copy {
    color: var(--main);
    font-size: 16px;
    font-weight: 500;
}
.footer-credit {
    color: var(--main);
    font-size: 16px;
    font-weight: 700;
    transition: opacity 0.15s ease-in-out;
}
.footer-credit:hover { opacity: 0.6; }

/* ===== BURGER + MOBILE NAV ===== */
.burger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 11px;
    border-radius: 12px;
    background-color: var(--secondary);
    cursor: pointer;
    flex-shrink: 0;
    box-sizing: border-box;
}
.burger-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background-color: var(--main);
    border-radius: 2px;
    transition: transform 0.25s ease-in-out, opacity 0.2s ease-in-out;
}
.burger-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger-btn.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    background: white;
    border-radius: 20px;
    box-shadow: 0px 10px 26px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    z-index: 99;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out, visibility 0s ease-in-out 0.2s;
}
.mobile-nav.open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
    transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out, visibility 0s;
}
.mobile-nav a {
    padding: 18px 28px;
    color: var(--main);
    font-size: 18px;
    font-weight: 700;
    border-bottom: 1.5px solid var(--secondary);
    transition: background-color 0.15s ease-in-out;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { background-color: var(--secondary); }

.mobile-nav-actions {
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-top: 1.5px solid var(--secondary);
}
.mobile-nav-lang {
    display: flex;
    gap: 6px;
}
.mobile-nav-lang .lang-option {
    background-color: var(--secondary);
    border-radius: 10px;
    padding: 8px 12px;
    gap: 6px;
}
.mobile-nav-lang .lang-option p { color: var(--main); }
.mobile-nav-lang .lang-option:hover { background-color: rgba(0, 54, 100, 0.08); }
.mobile-nav-lang .lang-option.active { background-color: rgba(0, 54, 100, 0.14); }
.mobile-nav-contacts {
    display: flex;
    gap: 8px;
}

/* ===== RESPONSIVE ===== */

/* ── 1680px: content widths adapt */
@media (max-width: 1680px) {
    .header {
        width: calc(100% - 40px);
    }
    .content-wrapper,
    .content-wrapper-mini {
        width: calc(100% - 80px);
    }
    .pricing-table-card {
        width: 100%;
    }
}

/* ── 1200px: tablet landscape */
@media (max-width: 1200px) {
    .h1 { font-size: 52px; }

    .about-image { width: 340px; }
    .about-stats { gap: 40px; }

    .services { grid-template-columns: repeat(2, 1fr); }
    .main-services-elem { grid-column: span 2; }

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

    .reviews-cards-wrapper { grid-template-columns: repeat(2, 1fr); }

    .socials-cards-wrapper { grid-template-columns: repeat(2, 1fr); }
}

/* ── 1024px: tablet */
@media (max-width: 1024px) {
    .h1 { font-size: 40px; }
    .h2 { font-size: 30px; }
    .h3 { font-size: 16px; }
    .card-h3 { font-size: 17px; }
    .label-text { font-size: 17px; }

    .content-wrapper,
    .content-wrapper-mini {
        width: calc(100% - 48px);
    }

    #about, #services, #cars, #faq { scroll-margin-top: 100px; }

    /* Header: single-row, burger */
    .header {
        width: calc(100% - 32px);
        height: auto;
        flex-wrap: nowrap;
        row-gap: 0;
        padding: 12px 18px;
        gap: 10px;
    }
    .nav-wrapper { display: none; }
    .header-links .telegram,
    .header-links .whatsapp,
    .lang-change-button { display: none; }
    .header-links { margin-left: auto; }
    .burger-btn { display: flex; }

    /* Main block — content at bottom like mobile */
    .main-content {
        justify-content: flex-end;
        padding-bottom: 44px;
    }
    .main-content .cta-wrapper { width: 100%; flex-direction: column; gap: 12px; }
    .btn, .scnd-btn { width: 100%; max-width: none; }

    /* About */
    .about { flex-direction: column; width: 100%; }
    .about-image { width: 100%; height: 280px; background-size: cover; border-radius: 16px; }
    .about-text { gap: 20px; justify-content: flex-start; }
    .about-stats { gap: 24px; padding: 30px 0; }

    /* Services */
    .services-elem-info { width: 100%; }
    .services-elem { height: auto; justify-content: flex-start; gap: 20px; }
    .main-services-elem { height: 420px; overflow: hidden; grid-column: span 2; background: url(./src/images/main-services-elem-image.png) no-repeat right center / cover; }
    .main-services-elem-image { display: none; }
    .main-services-elem .directions-wrapper { flex-wrap: wrap; }

    /* Footer */
    .footer-content { flex-direction: column; align-items: flex-start; gap: 30px; }
    .footer-contacts { align-items: flex-start; }
}

/* ── 600px: mobile */
@media (max-width: 600px) {
    .h1 { font-size: 36px; }
    .h2 { font-size: 22px; }
    .h3 { font-size: 15px; }
    .card-h3 { font-size: 16px; }
    .btn-text { font-size: 13px; }
    .label-text { font-size: 16px; }
    p { font-size: 15px; }
    .card-p { font-size: 14px; }

    .content-wrapper,
    .content-wrapper-mini {
        width: calc(100% - 32px);
    }

    .wrapper { padding: 36px 0; }

    #about, #services, #cars, #faq { scroll-margin-top: 90px; }

    /* Header: 1-row compact, burger visible */
    .header {
        width: calc(100% - 24px);
        top: 12px;
        padding: 10px 14px;
        flex-wrap: nowrap;
        row-gap: 0;
        gap: 10px;
    }
    .nav-wrapper { display: none; }
    .header-links .telegram,
    .header-links .whatsapp,
    .lang-change-button { display: none; }
    .header-links { margin-left: auto; }
    .burger-btn { display: flex; }
    .brand-text { font-size: 17px; white-space: nowrap; }
    .header-button { width: 46px; height: 46px; padding: 10px; border-radius: 12px; }
    .header-button .icon { width: 24px; height: 24px; }
    .header-button:hover .icon { width: 26px; height: 26px; }
    .lang-change-button { padding: 9px; gap: 4px; }
    .lang-change-button > .lang-icon { width: 26px; height: 26px; }
    .lang-change-button .icon { width: 18px; height: 18px; }
    .logo { width: 40px; height: 40px; }

    /* Main block */
    .main-block {
        padding: 0;
        background-position: 35% center;
    }
    .main-content {
        justify-content: flex-end;
        padding-bottom: 44px;
        gap: 20px;
    }
    .main-content .cta-wrapper {
        width: 100%;
        flex-direction: column;
        gap: 12px;
    }
    .btn, .scnd-btn { width: 100%; max-width: none; }
    .services-elem-info { width: 100%; }
    .auto-btns .btn, .auto-btns .scnd-btn { width: 100%; }

    /* About */
    .about { width: 100%; }
    .about-image { background-size: cover; height: 220px; border-radius: 16px; }
    .about-text { gap: 20px; justify-content: flex-start; }

    /* Services */
    .services { grid-template-columns: 1fr; }
    .services-elem { justify-content: flex-start; gap: 20px; }
    .main-services-elem { grid-column: span 1; overflow: hidden; height: 420px; background: url(./src/images/main-services-elem-image.png) no-repeat right center / cover; }
    .main-services-elem-image { display: none; }
    .main-services-elem .directions-wrapper { flex-wrap: wrap; }

    /* Features: row layout on mobile */
    .features-wrapper { grid-template-columns: 1fr; gap: 28px; }
    .feature { flex-direction: row; align-items: flex-start; gap: 16px; }
    .feature-info { align-items: flex-start; }
    .feature-info .card-p { text-align: left; }
    .feature-icon-wrapper { flex-shrink: 0; }

    /* Catalog */
    .carousel-controls { gap: 10px; }

    /* Reviews */
    .reviews-cards-wrapper { grid-template-columns: 1fr; }
    .reviews-content { gap: 40px; }
    .reviews-stats { flex-direction: column; gap: 0; padding: 10px 30px; }
    .reviews-stat { padding: 22px 0; border-bottom: 1.5px solid rgba(0, 0, 0, 0.08); }
    .reviews-stat:last-child { border-bottom: none; }

    /* About stats */
    .about-stats { flex-direction: column; align-items: center; gap: 20px; }

    /* Pricing */
    .pricing-col-header { padding: 14px 12px; gap: 8px; }
    .pricing-vehicle-icon { width: 24px; height: 24px; }
    .pricing-row { padding: 14px 12px; }
    .pricing-city { font-size: 13px; }
    .pricing-amount { font-size: 14px; }
    .pricing-price-tag { padding: 5px 8px; gap: 2px; }

    /* FAQ */
    .faq-item { padding: 20px 20px; }
    .faq-question { gap: 14px; }

    /* Socials */
    .socials-cards-wrapper { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .social-card { padding: 20px 14px; gap: 12px; }
    .social-icon-wrapper { width: 64px; height: 64px; }
    .social-icon { width: 38px; height: 38px; }

    /* Footer */
    .footer-content { align-items: flex-start; }
    .footer-contacts { align-items: flex-start; }
    .footer-bottom-content { flex-direction: column; align-items: flex-start; gap: 6px; }
}
