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

body {
    font-family: 'Golos Text', sans-serif;
    background: #000000;
    color: #ffffff;
    overflow-x: hidden;
}


body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1920px;
    height: 1200px;
    background: url('/templates/Default/assets/svg/bg.svg') no-repeat center top;
    background-size: cover;
    z-index: -1;
    pointer-events: none;
}




/* ============================================
   HEADER SECTION
============================================ */

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;

    --bg-alpha: 0;
    background: rgba(0, 0, 0, var(--bg-alpha));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    padding: 20px 0;
    transition: background 0.25s ease;
}



.header-container {
    max-width: 1216px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    width: auto;
}

nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-family: 'Golos Text', sans-serif;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #FFAE00;
}

.nav-links .active {
    color: #FFAE00;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.language-selector img {
    width: 20px;
    height: 20px;
}

.language-selector span {
    font-family: 'Golos Text', sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: #ffffff;
}

.login-btn {
    background: url('/templates/Default/assets/svg/login.svg') no-repeat center;
    background-size: contain;
    width: 100px;
    height: 40px;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease;
        margin-right: -5px;
}

.login-btn:hover {
    transform: scale(1.05);
}

/* ============================================
   HERO SECTION
============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
    overflow: hidden;
}



.particle {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

.particle-1 {
    position: absolute;
    top: 208px;
    left: 50%;
    transform: translateX(-622px);
    width: 200px;
    height: 200px;
    pointer-events: none;
    z-index: 1;
}

.particle-2 {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-809px);
    width: 400px;
    height: 400px;
    pointer-events: none;
    z-index: 1;
}


.particle-3 {
    position: absolute;
    top: 84px;
    left: 50%;
    transform: translateX(570px);
    width: 200px;
    height: 200px;
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
    padding: 0 40px;
    padding-top: 100px;
    letter-spacing: 0.02em;
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 70px;
    line-height: 90px;
    letter-spacing: 0.02em;
    margin-bottom: 20px;
    color: #ffffff;
    background: linear-gradient(180deg, #FFFFFF 31.75%, #e7e7e7 62.52%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    text-shadow: 0px 10px 25px rgba(28, 1, 0, 0.8);
    margin-top: -100px;
}

.hero-title .highlight {
    background: linear-gradient(180deg, #FFAE00 37.74%, #FF4D00 71.07%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-family: 'Golos Text';
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 29px;
    align-items: center;
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 50px;
    flex: none;
    order: 1;
    align-self: stretch;
    flex-grow: 0;
}

.cta-button {
    display: inline-block;
    background: url('/templates/Default/assets/svg/c-b.svg') no-repeat center;
    background-size: contain;
    width: 200px;
    height: 60px;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease;
    margin-bottom: 150px;
    margin-top: 60px;
}

.cta-button:hover {
    transform: scale(1.05);
}

.domain-button {
    display: inline-block;
    background: url('/templates/Default/assets/svg/c-d.svg') no-repeat center;
    background-size: contain;
    width: 200px;
    height: 60px;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease;
    margin-bottom: 150px;
    margin-top: 60px;
}

.domain-button:hover {
    transform: scale(1.05);
}

/* ============================================
   RESPONSIVE - TABLET
============================================ */
@media (max-width: 1024px) {
    .header-container {
        padding: 0 30px;
    }

    .nav-links {
        gap: 25px;
    }

    .nav-links a {
        font-size: 15px;
    }

    .hero-content {
        padding: 0 30px;
        padding-top: 40px;
    }

    .hero-title {
        font-size: 50px;
        line-height: 65px;
    }

    .hero-subtitle {
        font-size: 20px;
        line-height: 26px;
    }

    .cta-button, .domain-button, {
        width: 180px;
        height: 54px;
        margin-top: 40px;
        margin-bottom: 100px;
    }

    .particle-1 {
        width: 150px;
        height: 150px;
        top: 220px;
    }

    .particle-2 {
        width: 300px;
        height: 300px;
        top: 200px;
    }

    .particle-3 {
        width: 150px;
        height: 150px;
        top: 60px;
    }
}

/* ============================================
   RESPONSIVE - MOBILE
============================================ */
@media (max-width: 768px) {
    header {
        padding: 15px 0;
    }

    .header-container {
        padding: 0 20px;
        flex-wrap: wrap;
    }

    .logo img {
        height: 32px;
    }

    nav {
        width: 100%;
        order: 3;
        margin-top: 15px;
        justify-content: center;
    }

    .nav-links {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-links a {
        font-size: 13px;
    }

    .header-right {
        gap: 15px;
    }

    .language-selector img {
        width: 18px;
        height: 18px;
    }

    .language-selector span {
        font-size: 13px;
    }

    .login-btn {
        width: 80px;
        height: 32px;
    }

    .hero {
        min-height: 100vh;
        padding-top: 140px;
    }

    .hero-content {
        padding: 0 20px;
        padding-top: 20px;
    }

    .hero-title {
        font-size: 32px;
        line-height: 42px;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 16px;
        line-height: 22px;
        margin-bottom: 30px;
    }

    .cta-button, .domain-button {
        width: 160px;
        height: 48px;
        margin-top: 20px;
        margin-bottom: 60px;
    }

    .particle {
        display: none;
    }

    .hero-bg {
        height: calc(100% + 100px);
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 15px;
    }

    .logo img {
        height: 28px;
    }

    .nav-links {
        gap: 10px;
    }

    .nav-links a {
        font-size: 12px;
    }

    .login-btn {
        width: 70px;
        height: 28px;
    }

    .hero-content {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 26px;
        line-height: 34px;
    }

    .hero-subtitle {
        font-size: 14px;
        line-height: 20px;
    }

    .cta-button, .domain-button {
        width: 140px;
        height: 44px;
    }
}


/* ============================================
   WHY SECTION
============================================ */
.why {
    position: relative;
    padding: 0px 40px 120px;
    text-align: center;
    overflow: hidden;

}

.why-header {
    margin-bottom: 80px;
}

.why-title {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 60px;
    letter-spacing: 0.02em;
    color: #ffffff;
    margin-bottom: 20px;
    color: #ffffff;
    background: linear-gradient(180deg, #FFFFFF 31.75%, #e7e7e7 62.52%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    text-shadow: 0px 10px 25px rgba(28, 1, 0, 0.8);
}

.why-title .highlight {
    background: linear-gradient(180deg, #FFAE00 37.74%, #FF4D00 71.07%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.why-subtitle {
    font-family: 'Golos Text';
    font-weight: 500;
    font-size: 24px;
    line-height: 29px;
    color: rgba(255, 255, 255, 0.8);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 40px;
    max-width: 1216px;
    margin: 0 auto;
}

.why-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 0;
}

.why-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 30px;
    position: relative;
}

.why-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(239, 239, 239, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.why-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0px 0px 20px rgba(239, 239, 239, 0.3));
}

.why-item-title {
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 30px;
    color: #ffffff;
    margin-bottom: 15px;
}

.why-item-text {
    font-family: 'Golos Text';
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: rgba(255, 255, 255, 0.7);
}

.why-particle {
    position: absolute;
    bottom: -150px;
    left: 50%;
    transform: translateX(340px);
    width: 400px;
    height: 400px;
    pointer-events: none;
    z-index: 1;
}

/* ============================================
   RESPONSIVE - TABLET
============================================ */
@media (max-width: 1024px) {
    .why {
        padding: 60px 30px 100px;
    }

    .why-header {
        margin-bottom: 60px;
    }

    .why-title {
        font-size: 36px;
        line-height: 45px;
    }

    .why-subtitle {
        font-size: 20px;
        line-height: 26px;
    }

    .why-grid {
        gap: 50px 30px;
    }

    .why-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 25px;
    }

    .why-icon::before {
        width: 120px;
        height: 120px;
    }

    .why-item-title {
        font-size: 20px;
        line-height: 26px;
    }

    .why-item-text {
        font-size: 15px;
        line-height: 19px;
    }

    .why-particle {
        width: 150px;
        height: 150px;
    }
}

/* ============================================
   RESPONSIVE - MOBILE
============================================ */
@media (max-width: 768px) {
    .why {
        padding: 40px 20px 80px;
    }

    .why-header {
        margin-bottom: 40px;
    }

    .why-title {
        font-size: 28px;
        line-height: 36px;
    }

    .why-subtitle {
        font-size: 18px;
        line-height: 24px;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 400px;
    }

    .why-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }

    .why-icon::before {
        width: 100px;
        height: 100px;
    }

    .why-item-title {
        font-size: 20px;
        line-height: 26px;
    }

    .why-item-text {
        font-size: 14px;
        line-height: 18px;
    }

    .why-particle {
        width: 120px;
        height: 120px;
        bottom: 20px;
        right: 2%;
    }
}

@media (max-width: 480px) {
    .why {
        padding: 30px 15px 60px;
    }

    .why-title {
        font-size: 24px;
        line-height: 32px;
    }

    .why-subtitle {
        font-size: 16px;
        line-height: 22px;
    }

    .why-grid {
        gap: 35px;
    }

    .why-particle {
        width: 100px;
        height: 100px;
    }
}

/* ============================================
   TARIFF FILTERS (DESKTOP BASE)
============================================ */
.tariff-filters-wrapper {
    width: 100%;
    display: flex;
    justify-content: center; 
    margin-bottom: 60px;
}

.tariff-filters-container {
    max-width: 1216px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.filter-category {
    display: flex;
    align-items: center;
    gap: 0;
    border: 2px solid;
    background: linear-gradient(90.73deg, #464646, #000000);
    padding: 8px 8px 8px 20px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid #5A5A5A;
}

.filter-category-label {
    font-family: 'Golos Text', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: rgba(255, 174, 0, 1);
    white-space: nowrap;
    /* Desktop-ի հատուկ մարջինները */
    margin-right: 103px; 
    position: relative;
    left: 10px;
}

.filter-icons {
    display: flex;
    gap: 0;
    margin-left: auto;
}

.icon-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    margin: 0 5px;
}

.icon-btn img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.icon-btn.active {
    background: rgba(255, 255, 255, 0.15);
}

.icon-btn:hover:not(.active) {
    background: rgba(255, 255, 255, 0.08);
}

.os-note {
    font-family: 'Golos Text', sans-serif;
    font-weight: 400;
    font-size: 13px;
    color: rgba(255, 174, 0, 0.9);
    margin-left: 16px;
    white-space: nowrap;
    margin-right: 30px;
}

/* ============================================
   RESPONSIVE - TABLET (1024px and down)
============================================ */
@media (max-width: 1024px) {
    .tariff-filters-container {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }

    .filter-category {
        width: 100%;
        box-sizing: border-box; /* Կարևոր է, որ padding-ը չլայնացնի */
    }

    .os-note {
        margin-left: 12px;
    }
}

/* ============================================
   RESPONSIVE - MOBILE (MAX ADAPTATION)
============================================ */
@media (max-width: 768px) {
    .tariff-filters-wrapper {
        padding: 0 16px;
        margin-bottom: 40px;
    }

    .tariff-filters-container {
        gap: 12px;
    }

    .filter-category {
        /* Փոխում ենք ուղղությունը սյունակի, որ տեղավորվի */
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 16px 12px; /* Ավելի հարմար padding */
        border-radius: 24px; /* Մոբայլում շատ կլորը տեղ է խլում, մի փոքր քառակուսացնում ենք */
        gap: 12px;
        height: auto;
    }

    .filter-category-label {
        /* Չեղարկում ենք դեսկթոփի ֆիքսված դիրքերը */
        margin-right: 0;
        margin-bottom: 4px;
        left: auto;
        position: static;
        
        /* Մոբայլ ոճավորում */
        font-size: 15px;
        text-align: center;
        white-space: normal; /* Թույլ ենք տալիս տեքստին տեղափոխվել նոր տող */
    }

    .filter-icons {
        margin-left: 0;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap; /* Եթե իկոնկաները շատ լինեն, կիջնեն ներքև */
        gap: 8px; /* Արանք իկոնկաների մեջ */
    }

    .icon-btn {
        /* Մի փոքր փոքրացնում ենք, բայց պահում ենք հարմար սեղմելու համար */
        width: 48px;
        height: 48px;
        margin: 0; /* Հանում ենք կողային մարջինները, օգտագործում ենք gap */
    }

    .icon-btn img {
        width: 32px;
        height: 32px;
    }

    .os-note {
        display: none; /* Մոբայլում սովորաբար թաքցնում են կամ տեղափոխում ներքև */
    }
}

/* Շատ փոքր էկրանների համար (iPhone SE և այլն) */
@media (max-width: 380px) {
    .filter-category {
        padding: 12px 10px;
    }
    
    .icon-btn {
        width: 42px;
        height: 42px;
    }

    .icon-btn img {
        width: 24px;
        height: 24px;
    }
}


/* Tariff Section */
.tariff-section {
    padding: 60px 0;
}

.tariff-section .container {
    max-width: 1216px;
    margin: 0 auto;
    padding: 0 0px;
}



/* Tariff Grid - Կենտրոնացված */
.tariff-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1216px;
    margin: 0 auto;
}

/* Tariff Card */
.tariff-card {
    position: relative;
    cursor: pointer;

    padding: 24px 20px;
    border-radius: 24px;

    /* === BACKGROUND (FIGMA) === */
    background: linear-gradient(
        161.11deg,
        #B50000 -19.98%,
        #000000 72.64%
    );

    backdrop-filter: blur(15.694502830505371px);

    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);

    z-index: 1;
}
.tariff-card::before {
    content: "";
    position: absolute;
    inset: 0;

    padding: 3px; /* border: 3px */
    border-radius: 24px;

    background: linear-gradient(
        164deg,
        rgba(181, 0, 0, 0) 19.37%,
        #F5AF19 83.75%
    );

    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;

    pointer-events: none;
    z-index: -1;
}


.tariff-card:hover {
    transform: translateY(-8px);

    /* Hover background */
    background: linear-gradient(
        161.44deg,
        #F12711 -40.39%,
        #000000 60.77%
    );

    backdrop-filter: blur(15.694502830505371px);

    box-shadow:
        0px 20px 40px 0px #FF4D00B2;
}

.tariff-card:hover::before {
    background: linear-gradient(
        164deg,
        rgba(181, 0, 0, 0) 19.37%,
        #F5AF19 83.75%
    );
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #ffffff2b;
    padding-bottom: 20px;
}

.card-header h3 {
    color: #ffffff;
    font-size: 30px;
    font-weight: 600;
    margin: 0;
    font-family: 'Oxanium', Sans-Serif;
    padding: 0 10px 0 0;
}

.flag-icon {
width: 80px;
height: 50px;



}

.flag-icon img {
width: 80px;
height: 50px;
    object-fit: cover;
    opacity: 1;
    border-radius: 25px;
    border-width: 2px;
    border: 2px solid white;
}

.card-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 50px;
    margin-bottom: 24px;
}

.card-specs > :nth-child(5) {
    margin-top: 20px; 
}
.card-specs > :nth-child(6) {
    margin-top: 20px; 
}




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

.spec-icon {
    width: 18px;
    height: 18px;
}

.spec-label {
    color: #E6B45C;
    font-size: 14px;
    font-weight: 500;
}

.spec-value {
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
}

/* Card Pricing */
.card-pricing {
    margin-bottom: 20px;
    text-align: center;
}

.price-main {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    border-bottom: 1px solid #ffffff4d;
    margin: 8px 48px;
    padding-bottom: 8px;
}

.price-main .price {
    color: #FFAE00;
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
}

.price-main .period {
    color: #D4A574;
    font-size: 13px;
    font-weight: 400;
}

.price-discount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.price-discount .price {
    color: #E6B45C;
    font-size: 15px;
    font-weight: 600;
}

.price-discount .period {
    color: #D4A574;
    font-size: 13px;
    font-weight: 400;
}

/* Order Button - 80% լայնք */
.order-btn {
    width: 62%;
    height: 37px;
    margin: 0 auto;
    display: block;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: transparent;
    position: relative;
    overflow: hidden;
    padding: 0;
}

.order-btn .order-icon,
.order-btn .order-icon-hover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
    position: absolute;
    top: 0;
    left: 0;
}

.order-btn .order-icon-hover {
    opacity: 0;
}

.order-btn:hover {
    transform: scale(1.05);
}

.order-btn:hover .order-icon {
    opacity: 0;
}

.order-btn:hover .order-icon-hover {
    opacity: 1;
}

/* Responsive */
@media (max-width: 1024px) {
    .tariff-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .tariff-section {
        padding: 40px 0;
    }

    .filter-bar {
        flex-direction: column;
        gap: 15px;
    }

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

    .tariff-card {
        padding: 24px 20px;
    }

    .card-header h3 {
        font-size: 24px;
    }

    .flag-icon {
        width: 45px;
        height: 45px;
    }

    .price-main .price {
        font-size: 36px;
    }

    .order-btn {
        width: 85%;
    }
}

@media (max-width: 480px) {
    .filter-group {
        width: 100%;
        padding: 8px 16px;
    }

    .filter-btn {
        width: 36px;
        height: 36px;
    }

    .order-btn {
        width: 90%;
    }
    
    .flag-icon img {
            position: relative;
    right: 37px;
    }
    
    .tariff-grid {
            padding: 0 20px;
    }
    
    .icon-btn img {
        width: 40px;
        height: 40px;
    }
}

/* ============================================
STATES LIST SECTION
============================================ */
.states-list {
    position: relative;
    padding: 80px 40px;
    background: #000000;
}

.states-container {
    max-width: 1280px;
    margin: 0 auto;
}

.states-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

/* ============================================
   STATE ITEM
============================================ */




.state-name {
    font-family: 'Golos Text', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
    z-index: 1;
    transition: color 0.3s ease;
}

.state-item:hover .state-name,
.state-item.hover-state .state-name {
    color: rgba(255, 255, 255, 1);
}

/* ============================================
   RESPONSIVE - TABLET
============================================ */
@media (max-width: 1024px) {
    .states-list {
        padding: 60px 30px;
    }

    .states-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }

    .state-item {
        padding: 6px 14px;
        gap: 10px;
    }

    .state-flag {
        width: 44px;
        height: 44px;
    }

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

/* ============================================
   RESPONSIVE - MOBILE
============================================ */
@media (max-width: 768px) {
    .states-list {
        padding: 40px 20px;
    }

    .states-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .state-item {
        padding: 6px 12px;
        gap: 8px;
    }

    .state-flag {
        width: 40px;
        height: 40px;
    }

    .state-name {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .states-list {
        padding: 30px 15px;
    }

    .states-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .state-item {
        padding: 8px 14px;
        gap: 10px;
    }

    .state-flag {
        width: 42px;
        height: 42px;
    }

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

.map-container {
    display: none;
}

.map-container[data-view="map"] {
    display: block;
}


/* ============================================
   FEATURES SECTION
============================================ */
.features {
    position: relative;
    padding: 80px 40px;
    background: #000000;
    overflow: hidden;
}

.features-particle-top {
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(295px);
    width: 400px;
    height: 400px;
    pointer-events: none;
    z-index: 1;
    opacity: 0.8;
}


.features-particle-bottom {
    position: absolute;
    bottom: -150px;
    left: 50%;
    transform: translateX(-720px); 
    width: 400px;
    height: 400px;
    pointer-events: none;
    z-index: 1;
    opacity: 0.8;
}


.features-container {
    max-width: 1216px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

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

/* ============================================
   FEATURE BLOCKS
============================================ */
.features-column {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.feature-block {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-title {
        font-family: 'Golos Text', sans-serif;
    font-weight: 400;
    font-size: 24px;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 8px;
}

.feature-subtitle {
    font-family: 'Golos Text', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 8px;
    margin-bottom: 4px;
}

.feature-text {
    font-family: 'Golos Text', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feature-list li {
    font-family: 'Golos Text', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    padding-left: 20px;
    position: relative;
}

.feature-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color:rgba(255, 255, 255, 0.7);
    font-size: 20px;
    line-height: 1.6;
}

/* ============================================
   RESPONSIVE - TABLET
============================================ */
@media (max-width: 1024px) {
    .features {
        padding: 60px 30px;
    }

    .features-particle-top {
        width: 150px;
        height: 150px;
        top: 40px;
        right: 3%;
    }

    .features-particle-bottom {
        width: 170px;
        height: 170px;
        bottom: 40px;
        left: 3%;
    }

    .features-grid {
        gap: 35px;
    }

    .features-column {
        gap: 35px;
    }

    .feature-title {
        font-size: 22px;
    }

    .feature-text,
    .feature-list li,
    .feature-subtitle {
        font-size: 15px;
    }
}

/* ============================================
   RESPONSIVE - MOBILE
============================================ */
@media (max-width: 768px) {
    .features {
        padding: 40px 20px;
    }

    .features-particle-top {
        width: 120px;
        height: 120px;
        top: 30px;
        right: 2%;
    }

    .features-particle-bottom {
        width: 140px;
        height: 140px;
        bottom: 30px;
        left: 2%;
    }

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

    .features-column {
        gap: 30px;
    }

    .feature-block {
        gap: 14px;
    }

    .feature-title {
        font-size: 20px;
    }

    .feature-text,
    .feature-list li,
    .feature-subtitle {
        font-size: 14px;
    }

    .feature-list {
        gap: 6px;
    }

    .feature-list li {
        padding-left: 18px;
    }

    .feature-list li::before {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .features {
        padding: 30px 15px;
    }

    .features-particle-top {
        width: 100px;
        height: 100px;
        top: 20px;
    }

    .features-particle-bottom {
        width: 120px;
        height: 120px;
        bottom: 20px;
    }

    .features-grid {
        gap: 25px;
    }

    .features-column {
        gap: 25px;
    }

    .feature-block {
        gap: 12px;
    }

    .feature-title {
        font-size: 18px;
        margin-bottom: 6px;
    }

    .feature-text,
    .feature-list li,
    .feature-subtitle {
        font-size: 14px;
    }

    .feature-list li {
        padding-left: 16px;
    }
}


/* ============================================
   FAQ SECTION
============================================ */
.faq {
    position: relative;
    padding: 80px 40px;
    background: #000000;
    overflow: hidden;
}

.faq-container {
    max-width: 1216px;
    margin: 0 auto;
}

.faq-title {
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    font-size: 48px;
    color: #ffffff;
    text-align: center;
    margin-bottom: 16px;
    font-family: 'Orbitron', sans-serif;




    color: #ffffff;
    background: linear-gradient(180deg, #FFFFFF 31.75%, #e7e7e7 62.52%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    text-shadow: 0px 10px 25px rgba(28, 1, 0, 0.8);
}

.faq-title-highlight {
    color: #FFAE00;
    background: linear-gradient(180deg, #FFAE00 37.74%, #FF4D00 71.07%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-subtitle {
    font-family: 'Golos Text', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    margin-bottom: 60px;
}

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

/* ============================================
   FAQ ACCORDION
============================================ */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: rgba(60, 60, 60, 0.4);
    border: 2px solid transparent;
    border-radius: 50px;
    overflow: hidden;
    transition: all 0.3s ease;
}



.faq-item.active {
    border-color: rgba(255, 174, 0, 0.6);
    box-shadow: 0 0 20px rgba(255, 174, 0, 0.2);
}




.faq-question span {
    font-family: 'Golos Text', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
}

.faq-item.active .faq-question span {
    color: #ffffff;
}

.faq-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.expanded .faq-icon {
    transform: rotate(180deg);
}



.faq-item.expanded .faq-answer {
    max-height: 300px;
    padding: 0 30px 24px 30px;
    text-align: left;
}

.faq-answer-text {
    font-family: 'Golos Text', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #FFAE00;
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   FAQ FORM
============================================ */
.faq-form-wrapper {
    position: sticky;
    top: 100px;
}

.faq-form-card {
    background: rgba(50, 50, 50, 0.5);
    border: 2px solid rgba(80, 80, 80, 0.6);
    border-radius: 30px;
    padding: 40px 32px;
    backdrop-filter: blur(10px);
}



.faq-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-input,
.faq-textarea {
    width: 100%;
    padding: 16px 20px;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-family: 'Golos Text', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    outline: none;
    transition: border-color 0.3s ease;
}

.faq-input::placeholder,
.faq-textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.faq-input:focus,
.faq-textarea:focus {
    border-bottom-color: rgba(255, 174, 0, 0.6);
}

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

.validity-dropdown-menu {
    border: 3px solid transparent;
    border-radius: 30px;
    background: linear-gradient(173deg, #464646, #000000) padding-box,
        linear-gradient(173deg, #5A5A5A00, #464646) border-box !important;
}

.validity-dropdown-item.active {
    background: rgba(40, 40, 40, 0.8) !important;
    border-color: #787878 !important;
    color: #ffffff !important;
}

.validity-dropdown-item:hover {
    background: rgba(40, 40, 40, 0.8) !important;
    border-color: #787878 !important;
    color: #ffffff;
}

.dropdown-discount {
    font-weight: 500;
    color: #FFAE00
}

.validity-dropdown-item.active .dropdown-discount {
    color: #FF4D00;
}

.validity-dropdown-toggle .dropdown-discount {
    color: #FF4D00;
}

.validity-dropdown-item.active::after {
    content: '';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14' fill='none'%3E%3Cpath d='M7 14C6.03167 14 5.12167 13.8162 4.27 13.4487C3.41833 13.0812 2.6775 12.5825 2.0475 11.9525C1.4175 11.3225 0.91875 10.5817 0.55125 9.73C0.18375 8.87833 0 7.96833 0 7C0 6.03167 0.18375 5.12167 0.55125 4.27C0.91875 3.41833 1.4175 2.6775 2.0475 2.0475C2.6775 1.4175 3.41833 0.91875 4.27 0.55125C5.12167 0.18375 6.03167 0 7 0C7.96833 0 8.87833 0.18375 9.73 0.55125C10.5817 0.91875 11.3225 1.4175 11.9525 2.0475C12.5825 2.6775 13.0812 3.41833 13.4487 4.27C13.8162 5.12167 14 6.03167 14 7C14 7.96833 13.8162 8.87833 13.4487 9.73C13.0812 10.5817 12.5825 11.3225 11.9525 11.9525C11.3225 12.5825 10.5817 13.0812 9.73 13.4487C8.87833 13.8162 7.96833 14 7 14Z' fill='%23FFAE00'/%3E%3Cpath d='M7 10C6.585 10 6.195 9.92125 5.83 9.76375C5.465 9.60625 5.1475 9.3925 4.8775 9.1225C4.6075 8.8525 4.39375 8.535 4.23625 8.17C4.07875 7.805 4 7.415 4 7C4 6.585 4.07875 6.195 4.23625 5.83C4.39375 5.465 4.6075 5.1475 4.8775 4.8775C5.1475 4.6075 5.465 4.39375 5.83 4.23625C6.195 4.07875 6.585 4 7 4C7.415 4 7.805 4.07875 8.17 4.23625C8.535 4.39375 8.8525 4.6075 9.1225 4.8775C9.3925 5.1475 9.60625 5.465 9.76375 5.83C9.92125 6.195 10 6.585 10 7C10 7.415 9.92125 7.805 9.76375 8.17C9.60625 8.535 9.3925 8.8525 9.1225 9.1225C8.8525 9.3925 8.535 9.60625 8.17 9.76375C7.805 9.92125 7.415 10 7 10Z' fill='%23B50000'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
}



.validity-dropdown-toggle::before {
    content: "";
    position: absolute;
    inset: 0;
     padding: 2px 3px 2px 2px;
    border-radius: 50px;
    background: linear-gradient(90deg, #FFAE00, #B50000);
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: -1;
}


.filter-toggle {
    display: flex;
    gap: 4px;
    padding: 9px;
    background: rgba(255, 255, 255, 0.05); /* քո իրական ֆոնը */
    border: 0;
    border-radius: 50px;
    position: relative;
    z-index: 1;
}

.filter-toggle::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px 3px 2px 2px;
    border-radius: 50px;
    background: linear-gradient(90deg, #FFAE00, #B50000);
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
    z-index: -1;
}

.location-input {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.05); /* քո ֆոնը */
    border: 0;
    border-radius: 50px;
    position: relative;
    z-index: 1;
}

.location-input::before {
    content: "";
    position: absolute;
    inset: 0;
        padding: 2px 3px 2px 2px;
    border-radius: 50px;
    background: linear-gradient(90deg, #FFAE00, #B50000);

    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;

    pointer-events: none;
    z-index: -1;
}




.location-search-btn {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 2px solid #B50000;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.location-search-btn:hover {
    border-color: #FFAE00;
    background: rgba(255, 174, 0, 0.1);
}


.location-flag {
    width: 80px;
    height: 50px;
    border-radius: 25px;
    object-fit: cover;
    border: 2px solid #fff;
}

.toggle-btn {
    flex: 1;
    padding: 17px 20px;
    font-family: 'Golos Text';
    font-weight: 500;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    background: transparent;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.state-flag {
    width: 80px;
    height: 50px;
    border-radius: 30px;
    border: 2px solid #fff;
    object-fit: cover;
    flex-shrink: 0;
    z-index: 1;
}





/* ===============================
   STATE ITEM (FULL VERSION)
   =============================== */

.state-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 8px 16px 8px 8px;
    border-radius: 50px;

    /* === BACKGROUND (as requested) === */
    background: linear-gradient(
        91.58deg,
        #B50000 -12.76%,
        #000000 85.98%,
        #000000 93.63%
    );

    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1;
        border: none;
}

/* === DEFAULT GRADIENT BORDER === */
.state-item::before {
    content: "";
    position: absolute;
    inset: 0;

    padding: 2px; /* border thickness */
    border-radius: 50px;

    background: linear-gradient(
        91.2deg,
        rgba(181, 0, 0, 0) 16.38%,
        #F5AF19 79.61%
    );

    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;

    pointer-events: none;
    z-index: -1;
}

/* === HOVER BORDER (same gradient, stronger effect) === */
.state-item::after {
    content: "";
    position: absolute;
    inset: 0;

    padding: 2px;
    border-radius: 50px;

    background: linear-gradient(
        91.2deg,
        rgba(181, 0, 0, 0) 16.38%,
        #F5AF19 79.61%
    );

    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;

    opacity: 0;
    transition: opacity 0.25s ease;

    pointer-events: none;
    z-index: -1;
}

/* === HOVER EFFECTS === */
.state-item:hover::after {
    opacity: 1;
}

.state-item:hover {
    backdrop-filter: blur(15.694502830505371px);
    box-shadow: 12px 0px 20px 0px #FF8800CC;
     transform: translateX(-4px); /* ← 4px ձախ */
}



.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px;
     background: linear-gradient(
        90deg,
        #464646 0%,
        #000000 100%
    );
    border: none;
    cursor: pointer;
    text-align: left;
    gap: 20px;
}

.faq-item.expanded .faq-question{
  background: none;
}

.faq-item.expanded {
   background: linear-gradient(
        90deg,
        #464646 0%,
        #000000 100%
    );
    border-color: #5A5A5A;
    box-shadow: 0 0 30px rgba(255, 174, 0, 0.3);
    border-radius: 30px;
}

.faq-answer-text {
    font-family: 'Golos Text', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #FFAE00;
    line-height: 1.6;
    margin: 0;
}

.faq-answer {
    font-family: 'Golos Text', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #FFAE00;
    line-height: 1.6;
    margin: 0;
}

.faq-item:hover {
    border-color: #FFAE00;
}

.faq-form-title {
    font-family: 'Oxanium', sans-serif;
    font-weight: 600;
    font-size: 28px;
    color: #ffffff;
    text-align: center;
    margin-bottom: 32px;
    line-height: 1.3;
}

.faq-submit {
    width: 200px;              
    margin: 16px auto 0;       

    padding: 16px 32px;

    font-family: 'Golos Text', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #ffffff;

    background: linear-gradient(
        118deg,
        #F5AF19 -13.09%,
        #F12711 86.11%
    );

    border: none;
    border-radius: 50px;
    cursor: pointer;

    display: block;            /* կարևոր է auto margin-ի համար */
    transition: all 0.3s ease;
}


.faq-submit:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 20px rgba(255, 77, 0, 0.4);
}

/* ============================================
   RESPONSIVE - TABLET
============================================ */
@media (max-width: 1024px) {
    .faq {
        padding: 60px 30px;
    }

    .faq-title {
        font-size: 40px;
    }

    .faq-subtitle {
        font-size: 16px;
        margin-bottom: 50px;
    }

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

    .faq-form-wrapper {
        position: static;
    }

    .faq-form-card {
        max-width: 500px;
        margin: 0 auto;
    }
}

/* ============================================
   RESPONSIVE - MOBILE
============================================ */
@media (max-width: 768px) {
    .faq {
        padding: 40px 20px;
    }

    .faq-title {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .faq-subtitle {
        font-size: 15px;
        margin-bottom: 40px;
    }

    .faq-accordion {
        gap: 12px;
    }

    .faq-item {
        border-radius: 40px;
    }

    .faq-item.expanded {
        border-radius: 25px;
    }

    .faq-question {
        padding: 16px 20px;
    }

    .faq-question span {
        font-size: 16px;
    }

    .faq-icon {
        width: 20px;
        height: 20px;
    }

    .faq-item.expanded .faq-answer {
        padding: 0 20px 20px 20px;
    }

    .faq-answer-text {
        font-size: 15px;
    }

    .faq-form-card {
        padding: 32px 24px;
        border-radius: 25px;
    }

    .faq-form-title {
        font-size: 24px;
        margin-bottom: 28px;
    }

    .faq-input,
    .faq-textarea {
        padding: 14px 16px;
        font-size: 15px;
    }

    .faq-textarea {
        min-height: 100px;
    }

    .faq-submit {
        padding: 14px 28px;
        font-size: 16px;
    }
}

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

    .faq-question {
        padding: 14px 18px;
    }

    .faq-question span {
        font-size: 15px;
    }

    .faq-form-card {
        padding: 28px 20px;
    }

    .faq-form-title {
        font-size: 22px;
    }
}



/* ============================================
   RENT SERVER SECTION
============================================ */
.rent-server {
    position: relative;
    padding: 80px 40px 120px;
    text-align: center;
    overflow: hidden;
}

.rent-particle-left {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-640px);
    width: 300px;
    height: 300px;
    pointer-events: none;
    z-index: 1;
}


.rent-container {
    max-width: 1216px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.rent-title {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 60px;
    letter-spacing: 0.02em;
    color: #ffffff;
    margin-bottom: 60px;
}

.rent-title .highlight {
    background: linear-gradient(180deg, #FFAE00 37.74%, #FF4D00 71.07%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rent-filters {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 30px;
}

.filter-group {
    flex: 1;
    text-align: left;
}

.filter-label {
    display: block;
    font-family: 'Golos Text';
    font-weight: 400;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 12px;
}





.toggle-btn.active {
    background: linear-gradient(118deg, #F5AF19 -13.09%, #F12711 86.11%);

    color: #ffffff;
}

.filter-select {
    position: relative;
}

.custom-select {
    width: 100%;
    padding: 16px 20px;
    font-family: 'Golos Text';
    font-weight: 500;
    font-size: 16px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid #FF4D00;
    border-radius: 50px;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='white' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
}

.custom-select option {
    background: #1a1a1a;
    color: #ffffff;
}

.filter-location {
    display: flex;
    align-items: center;
    gap: 20px;
}





.location-search {
    flex: 1;
    font-family: 'Golos Text';
    font-weight: 500;
    font-size: 16px;
    color: #ffffff;
    background: transparent;
    border: none;
    outline: none;
}

.location-search::placeholder {
    color: rgba(255, 255, 255, 0.5);
}



.location-search-btn:hover {
    border-color: #FFAE00;
    background: rgba(255, 174, 0, 0.1);
}

.location-view-toggle {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
    margin-bottom: 40px;
}

.view-label {
    font-family: 'Golos Text';
    font-weight: 400;
    font-size: 12px;
    line-height: 14px;
    color: rgba(255, 255, 255, 0.6);
    text-align: right;
}

.view-buttons {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    padding: 4px;
    gap: 4px;
}

.view-btn {
    padding: 8px 24px;
    font-family: 'Golos Text';
    font-weight: 500;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    background: transparent;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-btn.active {
   background: linear-gradient(141.58deg, #F5AF19 -34.66%, #F12711 98.32%);

    color: #ffffff;
}










.location-popup {
    position: absolute;
       bottom: 89px;
    right: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 10;
}

.location-popup.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.popup-border {
    position: relative;
    background: rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(7.85px);
    border-radius: 24px;
    padding: 2px;
        background: linear-gradient(180deg, #F12711 0%, #FFAE00 60%);
}

.popup-border::before {
    content: '';
    position: absolute;
    inset: 2px;
    background: rgba(0, 0, 0, 0.95);
    border-radius: 22px;
    backdrop-filter: blur(7.85px);
}

.popup-content {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 8px 8px;
    z-index: 1;

}

.popup-flag-wrapper {
    position: relative;
    width: 170px;
    height: 100px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid #ffffff;
}

.popup-flag {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popup-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-right: 112.7px;
}

.popup-label {
    font-family: 'Golos Text';
    font-weight: 400;
    font-size: 14px;
    color: #C3C3C3;
    line-height: 1.2;
}

.popup-state {
    font-family: 'Orbitron';
    font-weight: 600;
    font-size: 24px;
    color: #ffffff;
    line-height: 1.2;
    text-align: left;
    font-family: 'Golos Text';
}

/* ============================================
   RESPONSIVE - TABLET
============================================ */
@media (max-width: 1024px) {
    .location-popup {
        right: 40px;
        bottom: 30px;
    }

    .popup-content {
        gap: 16px;
        padding: 16px 24px;
    }

    .popup-flag-wrapper {
        width: 140px;
        height: 83px;
    }

    .popup-label {
        font-size: 13px;
    }

    .popup-state {
        font-size: 20px;
    }
}

/* ============================================
   RESPONSIVE - MOBILE
============================================ */
@media (max-width: 768px) {
    .location-popup {
        right: 20px;
        bottom: 20px;
    }

    .popup-content {
        gap: 12px;
        padding: 12px 18px;
    }

    .popup-flag-wrapper {
        width: 100px;
        height: 60px;
    }

    .popup-label {
        font-size: 12px;
    }

    .popup-state {
        font-size: 18px;
    }

    .popup-border {
        border-radius: 18px;
    }

    .popup-border::before {
        border-radius: 16px;
    }
}

@media (max-width: 480px) {
    .location-popup {
        right: 10px;
        bottom: 10px;
    }

    .popup-content {
        gap: 10px;
        padding: 10px 14px;
    }

    .popup-flag-wrapper {
        width: 80px;
        height: 48px;
    }

    .popup-label {
        font-size: 11px;
    }

    .popup-state {
        font-size: 16px;
    }
}

/* ============================================
   RESPONSIVE - TABLET
============================================ */
@media (max-width: 1024px) {
    .rent-server {
        padding: 60px 30px 100px;
    }

    .rent-title {
        font-size: 36px;
        line-height: 45px;
        margin-bottom: 40px;
    }

    .rent-filters {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 25px;
    }

    .filter-group {
        width: 100%;
    }

    .location-view-toggle {
        margin-bottom: 30px;
    }

    .location-popup {
        right: 40px;
        bottom: 30px;
    }

    .rent-particle-left {
        width: 150px;
        height: 150px;
        bottom: 100px;
    }
}

/* ============================================
   RESPONSIVE - MOBILE
============================================ */
@media (max-width: 768px) {
    .rent-server {
        padding: 40px 20px 80px;
    }

    .rent-title {
        font-size: 28px;
        line-height: 36px;
        margin-bottom: 30px;
    }

    .rent-filters {
        margin-bottom: 20px;
    }

    .toggle-btn {
        padding: 10px 14px;
        font-size: 14px;
    }

    .custom-select {
        padding: 12px 16px;
        font-size: 14px;
    }

    .location-input {
        padding: 8px 12px;
    }

    .location-flag {
        width: 28px;
        height: 28px;
    }

    .location-search {
        font-size: 14px;
    }

    .location-view-toggle {
        justify-content: center;
        margin-bottom: 25px;
    }

    .view-btn {
        padding: 6px 18px;
        font-size: 12px;
    }

    .location-popup {
        right: 20px;
        bottom: 20px;
        padding: 15px 20px;
    }

    .popup-flag {
        width: 50px;
        height: 50px;
    }

    .popup-state {
        font-size: 20px;
    }

    .rent-particle-left {
        width: 120px;
        height: 120px;
        bottom: 70px;
        left: 2%;
    }
}

@media (max-width: 480px) {
    .rent-title {
        font-size: 24px;
        line-height: 32px;
    }

    .location-popup {
        right: 10px;
        bottom: 10px;
        padding: 12px 16px;
    }

    .popup-content {
        gap: 15px;
    }

    .popup-flag {
        width: 45px;
        height: 45px;
    }

    .popup-state {
        font-size: 18px;
    }

    .popup-label {
        font-size: 12px;
    }

    .rent-particle-left {
        width: 100px;
        height: 100px;
        bottom: 60px;
    }
}
/* ============================================
   VALIDITY PERIOD DROPDOWN
============================================ */
.custom-dropdown {
    position: relative;
    width: 100%;
}

.validity-dropdown-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 24px;
    background: transparent;
    border: 2px solid rgba(255, 140, 0, 0.6);
    border-radius: 50px;
    font-family: 'Golos Text', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.validity-dropdown-toggle:hover {
    border-color: rgba(255, 140, 0, 0.8);
    box-shadow: 0 0 20px rgba(255, 140, 0, 0.3);
}

.validity-dropdown-toggle.active {
    border-color: #FFAE00;
    box-shadow: 0 0 25px rgba(255, 174, 0, 0.4);
}

.validity-dropdown-text {
    display: flex;
    align-items: center;
    gap: 4px;
}

.validity-dropdown-arrow {
    transition: transform 0.3s ease;
}

.validity-dropdown-toggle.active .validity-dropdown-arrow {
    transform: rotate(180deg);
}

/* Validity Dropdown Menu */
.validity-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    padding: 16px;
    display: none;
    flex-direction: column;
    gap: 8px;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.validity-dropdown-menu.show {
    display: flex;
}

.validity-dropdown-item {
    width: 100%;
    
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    background: transparent;
    border: 2px solid transparent;
    border-radius: 50px;
    font-family: 'Golos Text', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    position: relative;
}





/* ============================================
   CUSTOM DROPDOWN
============================================ */
.custom-dropdown {
    position: relative;
    width: 100%;
}



.dropdown-toggle:hover {
    border-color: rgba(255, 140, 0, 0.8);
    box-shadow: 0 0 20px rgba(255, 140, 0, 0.3);
}

.dropdown-toggle.active {
    border-color: #FFAE00;
    box-shadow: 0 0 25px rgba(255, 174, 0, 0.4);
}

.dropdown-text {
    display: flex;
    align-items: center;
    gap: 4px;
}



.dropdown-arrow {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.dropdown-toggle.active .dropdown-arrow {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: rgba(50, 50, 50, 0.95);
    border: 2px solid rgba(255, 140, 0, 0.4);
    border-radius: 30px;
    padding: 16px;
    display: none;
    flex-direction: column;
    gap: 8px;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.dropdown-menu.show {
    display: flex;
}

.dropdown-item {
    width: 100%;

    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    background: transparent;
    border: 2px solid transparent;
    border-radius: 50px;
    font-family: 'Golos Text', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    position: relative;
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 140, 0, 0.3);
    color: #ffffff;
}

.dropdown-item.active {
    background: rgba(40, 40, 40, 0.8);
    border-color: rgba(255, 140, 0, 0.6);
    color: #ffffff;
}

.dropdown-item.active::after {
    content: '';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: #FFAE00;
    border-radius: 50%;
}

.dropdown-item .dropdown-discount {
    color: #FFAE00;
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 768px) {
    .dropdown-toggle {
        padding: 12px 20px;
        font-size: 15px;
    }

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

    .dropdown-menu {
        padding: 14px;
        border-radius: 25px;
    }

    .dropdown-item {
        padding: 10px 16px;
        font-size: 15px;
    }

    .dropdown-item.active::after {
        width: 10px;
        height: 10px;
        right: 16px;
    }
}

@media (max-width: 480px) {
    .dropdown-toggle {
        padding: 10px 18px;
        font-size: 14px;
    }

    .dropdown-arrow {
        width: 16px;
        height: 16px;
    }

    .dropdown-menu {
        padding: 12px;
    }

    .dropdown-item {
        padding: 9px 14px;
        font-size: 14px;
    }
}


/* ============================================
   HEADER - MORE DROPDOWN
============================================ */
.nav-dropdown {
    position: relative;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dropdown-arrow-icon {
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-arrow-icon {
    transform: rotate(180deg);
}

.dropdown-submenu {
    position: absolute;
    top: calc(100% + 20px);
    left: 50%;
    transform: translateX(-50%);
    background: rgba(40, 40, 40, 0.95);
    border: 2px solid rgba(255, 140, 0, 0.4);
    border-radius: 20px;
    padding: 12px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.dropdown-submenu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid rgba(255, 140, 0, 0.4);
}

.nav-dropdown:hover .dropdown-submenu {
    opacity: 1;
    visibility: visible;
    top: calc(100% + 10px);
}

.dropdown-submenu li {
    list-style: none;
}

.dropdown-submenu a {
    display: block;
    padding: 12px 20px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-size: 15px;
}

.dropdown-submenu a:hover {
    background: rgba(255, 140, 0, 0.1);
    color: #FFAE00;
}

/* ============================================
   MOBILE MENU TOGGLE (HAMBURGER)
============================================ */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    margin-left: 16px;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

/* ============================================
   LOGIN MODAL
============================================ */
.login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.login-modal.show {
    display: flex;
}

.login-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    animation: fadeIn 0.3s ease;
}

.login-modal-content {
    position: relative;
    width: 90%;
    max-width: 440px;
    background: linear-gradient(135deg, rgba(40, 40, 40, 0.95) 0%, rgba(30, 30, 30, 0.95) 100%);
    border: 2px solid rgba(255, 140, 0, 0.3);
    border-radius: 30px;
    padding: 40px;
    z-index: 1;
    animation: slideUp 0.3s ease;
}

.login-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.7);
}

.login-modal-close:hover {
    background: rgba(255, 140, 0, 0.2);
    color: #FFAE00;
    transform: rotate(90deg);
}

.login-modal-title {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 32px;
    color: #ffffff;
    margin-bottom: 8px;
    text-align: center;
}

.login-modal-subtitle {
    font-family: 'Golos Text', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 32px;
    text-align: center;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: 'Golos Text', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.form-group input {
    width: 100%;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-family: 'Golos Text', sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: #ffffff;
    outline: none;
    transition: all 0.3s ease;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group input:focus {
    border-color: rgba(255, 140, 0, 0.6);
    background: rgba(255, 255, 255, 0.08);
}

.form-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: -8px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-family: 'Golos Text', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.forgot-link {
    font-family: 'Golos Text', sans-serif;
    font-size: 14px;
    color: #FFAE00;
    text-decoration: none;
    transition: color 0.3s ease;
}

.forgot-link:hover {
    color: #FF8C00;
}

.login-submit {
    width: 100%;
    padding: 16px;
    margin-top: 8px;
    font-family: 'Golos Text', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #ffffff;
    background: linear-gradient(90deg, #FF8C00 0%, #FF4D00 100%);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.login-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.4);
}

.login-signup-link {
    font-family: 'Golos Text', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    margin-top: 8px;
}

.login-signup-link a {
    color: #FFAE00;
    text-decoration: none;
    transition: color 0.3s ease;
}

.login-signup-link a:hover {
    color: #FF8C00;
}

/* ============================================
   ANIMATIONS
============================================ */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

/* ============================================
   RESPONSIVE - TABLET & MOBILE
============================================ */
@media (max-width: 1024px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 43px;
        left: 0;
        width: 100%;
        height: calc(100vh - 54px);
        background: rgba(20, 20, 20, 0.98);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
        backdrop-filter: blur(10px);
        overflow-y: auto;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-links {
        flex-direction: column;
        padding: 40px 30px;
        gap: 0;
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links a {
        display: block;
        padding: 20px 0;
        font-size: 18px;
    }

    /* Mobile Dropdown */
    .nav-dropdown {
        position: relative;
    }

    .dropdown-submenu {
        position: static;
        transform: none;
        opacity: 0;
        max-height: 0;
        overflow: hidden;
        visibility: visible;
        transition: all 0.3s ease;
        margin-top: 0;
        padding: 0;
        border: none;
        background: transparent;
    }

    .dropdown-submenu::before {
        display: none;
    }

    .nav-dropdown.active .dropdown-submenu {
        opacity: 1;
        max-height: 400px;
        padding: 12px 0 12px 20px;
    }

    .dropdown-submenu a {
        padding: 12px 0;
        font-size: 16px;
    }

    .mobile-menu-overlay.active {
        display: block;
    }

    .login-modal-content {
        padding: 32px 24px;
    }

    .login-modal-title {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .nav-links {
        padding: 30px 20px;
    }

    .nav-links a {
        font-size: 16px;
        padding: 16px 0;
    }

    .login-modal-content {
        padding: 28px 20px;
    }

    .login-modal-title {
        font-size: 24px;
    }

    .login-modal-subtitle {
        font-size: 14px;
    }

    .form-group input {
        padding: 12px 16px;
        font-size: 14px;
    }

    .login-submit {
        padding: 14px;
        font-size: 15px;
    }
}


.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

button[data-type="dedicated"] {
    display: none;
}



























/* ============================================
   FOOTER
============================================ */
.footer {
    position: relative;
    background: linear-gradient(
        180deg,
        #191919 0%,
        #000000 100%
    );
    padding: 40px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
    max-width: 1216px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: start;
    gap: 60px;
}

/* ============================================
   FOOTER LEFT
============================================ */
.footer-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    height: 40px;
    width: auto;
}

.footer-copyright {
    display: flex;
    flex-direction: column;
    gap: 0px;
    margin-top: -12px;
}

.footer-copyright p {
    font-family: 'Golos Text', sans-serif;
    font-weight: 400;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    line-height: 1.4;
}

/* ============================================
   FOOTER CENTER
============================================ */
.footer-center {
    display: flex;
    flex-direction: column;
    gap: 56px;
    align-items: center;
    text-align: center;
}

.footer-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.footer-link {
    font-family: 'Golos Text', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.footer-link:hover {
    color: #FFAE00;
}

.footer-link-active {
    color: #FFAE00;
}

.footer-legal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.footer-legal-link {
    font-family: 'Golos Text', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.footer-legal-link:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   FOOTER RIGHT
============================================ */
.footer-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-end;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 11px;
}

.footer-social {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 174, 0, 0);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer-social img {
    width: 30px;
    height: 30px;
}

.footer-social:hover {
    border-color: #FFAE00;
    background: rgba(255, 174, 0, 0.1);
    box-shadow: 0px 8px 15px 0px #FF4D00CC;
    z-index: 1;
}

.footer-contacts {
    display: flex;
    flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    margin-right: -3px;
}

.footer-contact {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-contact-icon {
    width: 20px;
    height: 20px;
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-position: center;
            mask-position: center;
    -webkit-mask-size: contain;
            mask-size: contain;
   
    opacity: 1;
}

.footer-contact span {
    font-family: 'Golos Text', sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact:hover span {
    color: #FFAE00;
}

/* ============================================
   RESPONSIVE - TABLET
============================================ */
@media (max-width: 1024px) {
    .footer {
        padding: 35px 30px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-left,
    .footer-right {
        align-items: center;
        text-align: center;
    }

    .footer-center {
        order: -1;
    }

    .footer-nav {
        gap: 24px;
    }

    .footer-contacts {
        align-items: center;
    }

    .footer-legal {
        justify-content: center;
    }
}

/* ============================================
   RESPONSIVE - MOBILE
============================================ */
@media (max-width: 768px) {
    .footer {
        padding: 30px 20px;
    }

    .footer-container {
        gap: 30px;
    }

    .footer-logo {
        height: 36px;
    }

    .footer-copyright p {
        font-size: 13px;
    }

    .footer-nav {
        flex-direction: column;
        gap: 16px;
    }

    .footer-link {
        font-size: 15px;
    }

    .footer-contacts {
        gap: 16px;
    }

    .footer-contact span {
        font-size: 15px;
    }

    .footer-socials {
        gap: 3px;
    }

    .footer-social {
        width: 40px;
        height: 40px;
    }

    .footer-social img {
        width: 20px;
        height: 20px;
    }

    .footer-legal {
        flex-direction: column;
        gap: 12px;
    }

    .footer-legal-link {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 25px 15px;
    }

    .footer-logo {
        height: 32px;
    }

    .footer-copyright p {
        font-size: 12px;
    }

    .footer-link {
        font-size: 14px;
    }

    .footer-contact span {
        font-size: 14px;
    }

    .footer-contact-icon {
        width: 18px;
        height: 18px;
    }

    .footer-social {
        width: 38px;
        height: 38px;
    }

    .footer-social img {
        width: 18px;
        height: 18px;
    }
}

.state-item.disabled {
      opacity: 0.4!important;
}

.rent-server {
    overflow: visible !important;
}

.rent-container {
    overflow: visible !important;
}

.rent-filters {
    overflow: visible !important;
    position: relative;
    z-index: 100;
}

.tariff-section {
    position: relative;
    z-index: 1;
}

.lang-switch {
    position: relative;
    display: inline-block;
    font-family: 'Golos Text', sans-serif;
}

/* Trigger */


/* Dropdown */
.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 160px;
    background: rgba(18,18,18,.95);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 14px;
    padding: 6px;
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(0,0,0,.5);
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
    transition: .2s ease;
}

.lang-dropdown.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.lang-dropdown button {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: background .15s ease;
}

.lang-dropdown button:hover {
    background: rgba(255,255,255,.08);
}

.lang-dropdown button img {
    width: 18px;
    height: 18px;
}