@font-face {
    font-family: 'Lora';
    src: url('fonts/Lora-VariableFont_wght.ttf') format('truetype');
    font-weight: 300 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poiret One';
    src: url('fonts/PoiretOne-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'ALK Sanet';
    src: url('fonts/alk-sanet.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DM Archium';
    src: url('fonts/dm-archium.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

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

html, body {
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Lora', serif;
    background: linear-gradient(to bottom, #05060a, #000000);
    color: #e0e0e0;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
.hero-content p {
    font-family: 'Poiret One', cursive;
}

html[lang="ka"] body {
    font-family: 'ALK Sanet', serif;
}

html[lang="ka"] h1,
html[lang="ka"] h2,
html[lang="ka"] h3,
html[lang="ka"] h4,
html[lang="ka"] .hero-content p {
    font-family: 'ALK Sanet', serif;
}

h2 {
    font-size: 35px;
    margin-bottom: 30px;
    line-height: 35px;
}

.description, .review-card p, .feature-card p, .product-description {
    font-family: 'Lora', serif;
}

.top-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1001;
    background: rgba(5, 6, 10, 0.9);
    backdrop-filter: blur(5px);
    border-bottom: 1px solid #1a2436;
}

.lang-selector button {
    background: #0f141d;
    color: #7fbcd2;
    border: 1px solid #1a2436;
    padding: 5px 10px;
    margin-left: 5px;
    cursor: pointer;
    border-radius: 4px;
    font-weight: bold;
    transition: background 0.3s ease, color 0.3s ease;
}

.lang-selector button:hover {
    background: #7fbcd2;
    color: #05060a;
}

.lang-selector button[data-lang="ru"]::before { content: "🇷🇺"; }
.lang-selector button[data-lang="en"]::before { content: "🇬🇧"; }
.lang-selector button[data-lang="ka"]::before { content: "🇬🇪"; }

.lang-selector button {
    display: inline-flex;
    align-items: center;
    gap: 4px; 
}

.lang-selector button.active {
    border: 1px solid #d4af37; 
    background: rgba(212, 175, 55, 0.15);
}


.desktop-nav {
    display: flex;
    gap: 20px;
}

.desktop-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.desktop-nav a:hover {
    color: #7fbcd2;
}

.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.burger-menu span {
    width: 28px;
    height: 3px;
    background: #e0e0e0;
}

.mobile-menu {
    position: fixed;
    left: -100%;
    width: 100%;
    height: calc(100vh - 60px);
    background: rgba(5, 6, 10, 0.95); 
    backdrop-filter: blur(10px);      
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;         
    padding-bottom: 90px;            
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1); 
    z-index: 1000;
}

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

.mobile-menu a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1.8rem;
    margin: 10px 0;
    display: block;
    transition: color 0.3s ease;
}

.mobile-menu a:hover {
    color: #7fbcd2;
}

#hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('images/hero.png') no-repeat center center/cover;
    position: relative;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

#hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent, #05060a);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start; 
    gap: 10px;
}

.hero_tit {
    margin-bottom: -10px;
}

.logo-img {
    max-width: 400px;
    margin-bottom: 10px;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.5));
}

.hero-content p {
    font-size: 1.6rem;
    margin: 5px 0;
    color: #ffffff;
    line-height: 1.2;
}

.main-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.main-nav a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 5px;
    padding: 12px 24px;
    background: #0f141d;
    color: #7fbcd2;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.3s ease, color 0.3s ease;
    font-weight: bold;
    border: 1px solid #1a2436;
}

.main-nav a:hover {
    background: #7fbcd2;
    color: #05060a;
}

.nav-icon {
    width: 16px;
    height: 16px;
    vertical-align: middle; 
}

.top-info-block {
    position: relative;
    background: #0f141d;
    padding: 20px;
    border-radius: 10px;
    margin: 20px auto;
    max-width: 80%; 
    border: 1px solid #1a2436;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    animation: fadeIn 0.5s ease-in-out;
    text-align: center; 
}

.top-info-content {
    padding-right: 40px;
    text-align: center; 
}

.top-info-content h3 {
    text-align: center; 
    margin-bottom: 10px;
}

.top-info-content div {
    text-align: center;
}

.close-top-info-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    color: #7fbcd2;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.close-top-info-btn:hover {
    color: #fff;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.products-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.products-title {
    margin-top: 40px;
    justify-self: center;
}

.product-card {
    background: #0f141d;
    border: 1px solid #1a2436;
    border-radius: 8px;
    padding: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 350px;
    margin: 10px;
}

.product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(127, 188, 210, 0.3);
    background: #1a2436;
}

.product-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 8px;
}

.product-card h3 {
    color: #7fbcd2;
    margin: 8px 0;
    font-size: 1.1rem;
    word-break: break-word;
}

.product-card .product-description {
    color: #e0e0e0;
    font-size: 0.8rem;
    margin: 8px 0;
    line-height: 1.3;
    word-break: break-word;
}

.product-card .product-prices {
    margin: 10px 0;
    text-align: center;
}

.product-card .price-item {
    background: #05060a;
    color: #7fbcd2;
    padding: 3px 8px;
    border-radius: 4px;
    margin: 2px 0;
    font-size: 0.8rem;
    display: inline-block;
    margin: 1px 2px;
}

.product-card .buy-btn {
    text-decoration: none;
    background: #7fbcd2;
    color: #05060a;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s ease;
    font-size: 0.9rem;
}

.product-card .buy-btn:hover {
    background: #5fa8b8;
}

.load-more-btn {
    margin-top: 30px;
    justify-self: center;
    padding: 12px 24px;
    background: #0f141d;
    color: #7fbcd2;
    border: 1px solid #1a2436;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    transition: background 0.3s ease, color 0.3s ease;
}

.load-more-btn:hover {
    background: #7fbcd2;
    color: #05060a;
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 карточки в ряд */
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr; /* 1 карточка в ряд */
    }
    
    .product-card {
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .price-tooltip {
        display: none;
    }

    .desktop-nav {
        display: none;
    }

    .burger-menu {
        display: flex;
    }
}

#vacancies {
    padding: 60px 20px;
    text-align: center;
}

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

.vacancy-card {
    background: linear-gradient(to bottom, #0f141d, #05060a);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    border: 1px solid #1a2436;
    transition: transform 0.3s ease, border 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    min-height: 350px;
}

.vacancy-card:hover {
    transform: translateY(-5px);
    border: 2px solid #7fbcd2;
}

.vacancy-card h3 {
    color: #7fbcd2;
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.salary {
    color: #ffd700;
    font-weight: bold;
    margin-bottom: 10px;
}

.description {
    color: #cccccc;
    margin-bottom: 15px;
    flex: 1;
}

.city-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 10px;
    margin-bottom: 10px;
}

.city-btn {
    padding: 8px 16px;
    background: #0f141d;
    color: #7fbcd2;
    border: 1px solid #1a2436;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background 0.3s ease, color 0.3s ease;
}

.city-btn:hover {
    background: #7fbcd2;
    color: #05060a;
}

.apply-btn {
    width: 100%;
    padding: 10px;
    background: transparent;
    color: #7fbcd2;
    border: 1px solid #7fbcd2;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background 0.3s ease, color 0.3s ease;
    font-weight: bold;
    margin-top: 10px;
    align-self: stretch;
}

.apply-btn:hover {
    background: #7fbcd2;
    color: #05060a;
}

.application-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.application-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.application-popup-content {
    position: relative;
    background: #0f141d;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    border: 1px solid #7fbcd2;
    max-height: 80vh;
    overflow-y: auto;
    transform: scale(0.8);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.application-popup-overlay.active .application-popup-content {
    transform: scale(1);
    opacity: 1;
}

.close-application-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    color: #ffd700;
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-application-btn:hover {
    color: #ffaa00;
}

.application-form {
    display: none;
}

.application-form.active {
    display: block;
}

.application-form h4 {
    color: #7fbcd2;
    margin-bottom: 15px;
}

.application-form label {
    display: block;
    margin-bottom: 5px;
    color: #e0e0e0;
}

.application-form input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    background: #05060a;
    color: #e0e0e0;
    border: 1px solid #1a2436;
    border-radius: 4px;
}

.application-form button {
    padding: 10px 20px;
    margin-right: 10px;
    background: #0f141d;
    color: #7fbcd2;
    border: 1px solid #1a2436;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s ease, color 0.3s ease;
}

.application-form button:hover {
    background: #7fbcd2;
    color: #05060a;
}

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.popup-content {
    position: relative;
    background: #0f141d;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 800px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    border: 1px solid #7fbcd2;
    max-height: 80vh;
    overflow-y: auto;
    animation: fadeInUp 0.4s ease;
}

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

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    color: #ffd700;
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-btn:hover {
    color: #ffaa00;
}

.payment-grid {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 20px;
}

.payment-product {
    background: radial-gradient(circle at top, #0f172a, #05060a 70%);
    border: 1px solid #1a2436;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
}

.payment-product-title {
    padding: 16px;
    text-align: center;
    font-size: 1.35rem;
    font-weight: 700;
    color: #7fbcd2;
    border-bottom: 1px solid #1a2436;
}

.payment-table {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.payment-table-header {
    padding: 14px;
    text-align: center;
    font-weight: 600;
    color: #7fbcd2;
    background: linear-gradient(to bottom, #0b1220, #070b14);
    border-bottom: 1px solid #1a2436;
}

.payment-cell {
    padding: 14px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid #1a2436;
    font-size: 1.05rem;
}

.payment-cell:nth-child(odd) {
    border-right: 1px solid #1a2436;
}

.payment-cell:hover {
    background: rgba(127, 188, 210, 0.06);
}

.cell-weight {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #e5e7eb;
}

.cell-weight::before {
    content: '';
    width: 18px;
    height: 18px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%237fbcd2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='1.7' d='M12 3v2m-6 4h12M5 7l-2 7a4 4 0 004 4h10a4 4 0 004-4l-2-7M9 7l-1 6m8-6l1 6'/%3E%3C/svg%3E")
        no-repeat center / contain;
}

.cell-price {
    color: #f5c97a;
    font-weight: 700;
    text-shadow: 0 0 8px rgba(245, 201, 122, 0.25);
    white-space: nowrap;
}

@media (max-width: 600px) {
    .payment-table {
        grid-template-columns: 1fr 1fr;
    }

    .payment-cell {
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 12px;
    }

    .cell-price {
        text-align: right;
    }
}


#why-us {
    padding: 60px 20px;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.feature-card {
    background: #0f141d;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid #1a2436;
}

.feature-card:hover {
    transform: translateY(-5px);
    border: 2px solid #7fbcd2;
}

@media (max-width: 768px) {
    .feature-card {
        transition: none; 
    }

    .feature-card:hover {
        transform: none; 
        border: 1px solid #1a2436;
    }
}

.feature-icon {
    margin-bottom: 15px;
}

.feature-icon svg {
    width: 60px;
    height: 60px;
    stroke: #7fbcd2;
    fill: none;
}

.feature-card h3 {
    margin-bottom: 10px;
    color: #7fbcd2;
    font-weight: bold;
}

.feature-card p {
    color: #cccccc;
}

.carousel-container-mobile {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 10px;
    display: none;
}

.carousel-container-mobile .feature-card {
    display: none;
    background: #0f141d;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    border: 1px solid #1a2436;
}

.carousel-container-mobile .feature-card.active {
    display: block;
    border: 2px solid #7fbcd2;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(15, 20, 29, 0.8);
    color: #7fbcd2;
    border: 1px solid #1a2436;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 10px 15px;
    border-radius: 50%;
    z-index: 10;
    transition: background 0.3s ease, color 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.carousel-btn:hover {
    background: #7fbcd2;
    color: #05060a;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

@media (max-width: 768px) {
    .features-grid {
        display: none;
    }

    .carousel-container-mobile {
        display: block;
    }

    .carousel-btn {
        width: 36px;
        height: 36px;
        padding: 8px 12px;
        font-size: 1.2rem;
    }

    .prev {
        left: 8px;
    }
    
    .next {
        right: 8px;
    }
}

#reviews {
    padding: 60px 20px;
    text-align: center;
}

.reviews-carousel-container {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 10px;
    padding: 0 50px; 
}

.review-card {
    display: none;
    background: #0f141d;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: left;
    border: 1px solid #1a2436;
}

.review-card.active {
    display: block;
    border: 2px solid #7fbcd2;
}

.review-card h4 {
    margin-bottom: 10px;
    color: #7fbcd2;
    font-weight: bold;
}

.review-card .stars {
    color: #ffd700;
    margin-top: 10px;
    font-size: 1.2rem;
}

.reviews-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(15, 20, 29, 0.8);
    color: #7fbcd2;
    border: 1px solid #1a2436;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 10px 15px;
    border-radius: 50%;
    z-index: 10;
    transition: background 0.3s ease, color 0.3s ease;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reviews-carousel-btn:hover {
    background: #7fbcd2;
    color: #05060a;
}

.prev {
    left: 5px; 
}

.next {
    right: 5px;
}

#toggle-form-btn {
    margin-top: 30px;
    padding: 12px 24px;
    background: #0f141d;
    color: #7fbcd2;
    border: 1px solid #1a2436;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    transition: background 0.3s ease, color 0.3s ease;
}

#toggle-form-btn:hover {
    background: #7fbcd2;
    color: #05060a;
}

.review-form-container {
    margin-top: 30px;
    background: #0f141d;
    padding: 30px;
    border-radius: 10px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    display: none;
    animation: fadeIn 0.5s forwards;
    border: 1px solid #1a2436;
}

.review-form-container.visible {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.review-form-container input,
.review-form-container textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    background: #05060a;
    color: #e0e0e0;
    border: 1px solid #1a2436;
    border-radius: 4px;
    transition: border 0.3s ease;
}

.review-form-container input:focus,
.review-form-container textarea:focus {
    border: 2px solid #7fbcd2;
    outline: none;
}

.review-form-container button {
    padding: 12px 24px;
    background: #0f141d;
    color: #7fbcd2;
    border: 1px solid #1a2436;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s ease, color 0.3s ease;
}

.review-form-container button:hover {
    background: #7fbcd2;
    color: #05060a;
}

.review-card .stars {
    color: #ffd700;
    margin-top: 10px;
    font-size: 1.2rem;
    text-align: center;
    display: block; 
}

#footer {
    background: #05060a;
    padding: 20px;
    text-align: center;
    border-top: 1px solid #1a2436;
    color: #7fbcd2;
    font-weight: bold;
    margin-top: 30px;
}

@media (max-width: 768px) {

    .top-header {
        padding: 10px 14px;
    }

    .lang-selector button {
        padding: 4px 8px;
        font-size: 0.75rem;
    }

    #hero {
        height: auto;
        min-height: 100vh;
        padding-top: 80px;
    }

    .hero-content {
        padding: 10px;
    }

    .logo-img {
        max-width: 260px;
    }

    .hero-content p {
        font-size: 1.1rem;
        text-align: center;
    }

    .main-nav {
        gap: 8px;
    }

    .main-nav a {
        width: 100%;
        justify-content: center;
        padding: 10px 14px;
        font-size: 0.9rem;
    }

    .nav-icon {
        width: 14px;
        height: 14px;
    }

    #products {
        padding: 40px 14px;
    }

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

    #vacancies {
        padding: 40px 14px;
    }

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

    .vacancy-card {
        min-height: auto;
        padding: 20px;
    }

    .vacancy-card h3 {
        font-size: 1.2rem;
    }

    .description {
        font-size: 0.9rem;
    }

    .city-btn {
        font-size: 0.8rem;
        padding: 6px 12px;
    }

    .application-popup-content,
    .popup-content {
        width: calc(100% - 20px);
        padding: 20px;
        max-height: 85vh;
    }

    .payment-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .payment-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    #why-us {
        padding: 40px 14px;
    }

    .carousel-container-mobile {
        max-width: 100%;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    #reviews {
        padding: 40px 14px;
    }

    .carousel-container {
        padding: 0 40px;
    }

    .review-card {
        padding: 16px;
        font-size: 0.9rem;
    }

    .review-form-container {
        padding: 16px;
    }

    .review-form-container input,
    .review-form-container textarea {
        font-size: 0.9rem;
    }

    #footer {
        padding: 20px 10px;
        font-size: 0.75rem;
        text-align: center;
    }
}


