:root {
    --primary: #232c51;
    --primary-soft: #30395f;
    --red: #de0021;
    --white: #ffffff;
    --light: #f4f5f8;
    --dark-text: #07143d;
    --muted: #6f7482;
    --border: #d7d7d7;
    --font-main: Arial, Helvetica, sans-serif;
}
svg {
    width: 1em;
    height: 1em;
    display: block;
    fill: currentColor;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-main);
    color: var(--dark-text);
    background: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
}

.navbar {
    padding: 26px 0;
}

.nav-container {
    max-width: 1220px;
}

.logo-wrap img {
    width: 96px;
    height: auto;
    display: block;
}

.navbar-nav {
    gap: 28px;
}

.navbar-dark .navbar-nav .nav-link {
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    padding: 0;
    transition: 0.25s ease;
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: var(--red);
}

.language-dropdown .dropdown-toggle::after {
    margin-left: 8px;
    vertical-align: middle;
}

.flag-icon {
    font-size: 16px;
}

.dropdown-menu {
    border: 0;
    border-radius: 0;
    padding: 8px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.16);
}

.dropdown-item {
    font-weight: 700;
    border-radius: 0;
    padding: 8px 14px;
}

.dropdown-item.active,
.dropdown-item:active {
    background: var(--red);
    color: var(--white);
}

.custom-toggler {
    width: 42px;
    height: 38px;
    border: 0;
    box-shadow: none !important;
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
}

.custom-toggler span {
    display: block;
    height: 3px;
    width: 28px;
    background: #fff;
}

.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
    isolation: isolate;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(36, 42, 86, 0.8),
        rgba(36, 42, 86, 0.8)
    );
    z-index: -1;
}


.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 70px;
}

.hero-content h1 {
    font-size: clamp(44px, 5vw, 74px);
    line-height: 1.12;
    font-weight: 900;
    margin-bottom: 48px;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: clamp(19px, 1.4vw, 25px);
    line-height: 1.55;
    font-weight: 600;
    margin: 4px 0;
}

.phone-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    background: var(--red);
    color: #fff;
    padding: 15px 25px;
    font-size: 21px;
    font-weight: 700;
    margin-top: 52px;
    min-height: 52px;
    transition: 0.25s ease;
}

.phone-btn:hover {
    background: #bc001c;
    color: #fff;
    transform: translateY(-2px);
}

.section-padding {
    padding: 95px 0;
}

.services-section {
    background: var(--light);
}

.section-title {
    text-align: center;
    color: var(--dark-text);
    font-size: clamp(36px, 3vw, 44px);
    font-weight: 900;
    margin-bottom: 78px;
}

.service-card {
    height: 312px;
    background: #fff;
    padding: 45px 30px;
    position: relative;
    overflow: hidden;
    transition: 0.25s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(35, 44, 81, 0.12);
}

.service-card h3 {
    color: var(--dark-text);
    font-size: 25px;
    line-height: 1.24;
    font-weight: 900;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.service-card p {
    color: var(--dark-text);
    font-size: 16px;
    line-height: 1.7;
    font-weight: 500;
    margin: 0;
    position: relative;
    z-index: 2;
}

.service-bg-icon {
    position: absolute;
    right: -3px;
    top: -4px;
    width: 138px;
    height: 138px;
    color: rgba(35, 44, 81, 0.035);
    z-index: 1;
}

.service-bg-icon svg {
    width: 100%;
    height: 100%;
}

.faq-section {
    background: #fff;
    min-height: 663px;
}

.faq-wrap {
    max-width: 1200px;
    margin: 0 auto;
}

.custom-accordion .accordion-item {
    border: 1px solid var(--border);
    border-radius: 0;
    margin-bottom: 10px;
    overflow: hidden;
}

.custom-accordion .accordion-button {
    color: var(--dark-text);
    background: #fff;
    font-size: 22px;
    font-weight: 900;
    padding: 15px 15px;
    box-shadow: none;
    min-height: 55px;
}

.custom-accordion .accordion-button::after {
    background-image: none;
    content: "+";
    font-size: 22px;
    font-weight: 500;
    transform: none;
    width: auto;
    height: auto;
}

.custom-accordion .accordion-button:not(.collapsed)::after {
    content: "-";
}

.custom-accordion .accordion-body {
    color: var(--dark-text);
    font-size: 16px;
    line-height: 1.7;
    padding: 0 15px 16px;
}

.cta-section {
    background: var(--primary-soft);
    color: #fff;
    padding: 82px 0 42px;
}

.cta-section h2 {
    font-size: clamp(34px, 3vw, 43px);
    font-weight: 900;
    margin-bottom: 24px;
}

.cta-section p {
    font-size: 20px;
    line-height: 1.45;
    font-weight: 600;
    max-width: 800px;
    margin: 0;
}

.contacts-section {
    background: #fff;
    padding-top: 98px;
    padding-bottom: 100px;
}

.contact-title {
    color: var(--dark-text);
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 22px;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--dark-text);
    font-size: 16px;
}

.contact-item:hover {
    color: var(--red);
}

.contact-item span {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border: 2px solid #111;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 22px;
    color: #111;
}

.contact-item p {
    margin: 0;
    line-height: 1.5;
}

.map-box {
    width: 100%;
    border: 2px solid #2f78ff;
    overflow: hidden;
}

.footer {
    background: var(--primary);
    color: #fff;
    padding: 26px 0 30px;
}

.footer p {
    margin: 0;
    font-weight: 700;
}

.chat-btn {
    position: fixed;
    right: 28px;
    bottom: 22px;
    width: 54px;
    height: 54px;
    background: #79cf85;
    color: #fff;
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-size: 29px;
    z-index: 100;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.18);
    transition: 0.25s ease;
}

.chat-btn:hover {
    color: #fff;
    transform: translateY(-3px);
}

/* Georgian font adjustment */
html[lang="ka"] body {
    font-family: Arial, Helvetica, sans-serif;
}

html[lang="ka"] .hero-content h1,
html[lang="ka"] .section-title,
html[lang="ka"] .service-card h3,
html[lang="ka"] .custom-accordion .accordion-button,
html[lang="ka"] .cta-section h2,
html[lang="ka"] .contact-title {
    letter-spacing: -0.5px;
}

/* Mobile */
@media (max-width: 991px) {
    .navbar {
        padding: 18px 0;
    }

    .logo-wrap img {
        width: 86px;
    }

    .custom-toggler {
        display: flex;
    }

    .navbar-collapse {
        background: rgba(35, 44, 81, 0.98);
        margin-top: 18px;
        padding: 28px;
    }

    .navbar-nav {
        gap: 18px;
        align-items: flex-start !important;
    }

    .navbar-dark .navbar-nav .nav-link {
        font-size: 20px;
    }

    .hero-section {
        min-height: 760px;
        background-position: center;
    }

    .hero-content h1 {
        margin-bottom: 32px;
    }

    .phone-btn {
        font-size: 18px;
        padding: 14px 20px;
        margin-top: 36px;
    }

    .section-padding {
        padding: 70px 0;
    }

    .section-title {
        margin-bottom: 45px;
    }

    .service-card {
        height: auto;
        min-height: 270px;
    }

    .cta-section {
        padding: 65px 0;
        text-align: center;
    }

    .cta-section p {
        margin: 0 auto;
    }

    .contacts-section {
        padding-top: 70px;
    }
}

@media (max-width: 575px) {
    .container {
        padding-left: 22px;
        padding-right: 22px;
    }

    .hero-section {
        min-height: 680px;
    }

    .hero-content p {
        font-size: 17px;
    }

    .phone-btn {
        width: 100%;
        max-width: 300px;
        font-size: 17px;
    }

    .service-card {
        padding: 35px 24px;
    }

    .custom-accordion .accordion-button {
        font-size: 18px;
        line-height: 1.35;
    }

    .custom-accordion .accordion-body {
        font-size: 15px;
    }

    .contact-item {
        align-items: flex-start;
    }

    .map-box iframe {
        height: 260px;
    }

    .chat-btn {
        right: 18px;
        bottom: 18px;
        width: 50px;
        height: 50px;
    }
}