/* --- 1. ფონტების იმპორტი (ზუსტი სახელები, რაც ატვირთეთ) --- */

@font-face {

    font-family: 'HelveticaWorld';

    /* ფაილის სახელი ზუსტად ისე, როგორც ატვირთეთ */

    src: url('Linotype - Helvetica Neue World 55 Roman.ttf') format('truetype');

    font-weight: normal;

    font-style: normal;

}



@font-face {

    font-family: 'HelveticaWorld';

    /* ფაილის სახელი ზუსტად ისე, როგორც ატვირთეთ */

    src: url('Linotype - Helvetica Neue World 75 Bold.ttf') format('truetype');

    font-weight: bold;

    font-style: normal;

}



:root {

    --primary-dark: #144272;

    --primary-blue: #3177C6;

    --mist: #E3EDF6;

    --white: #FFFFFF;

    --accent-gold: #C9A44A;

    --accent-cyan: #00C2A8;

    --text-main: #F5F7FB;

    --text-muted: #B7C2D9;

    --max-width: 1280px;

    --radius-lg: 24px;

    --radius-md: 16px;

    --shadow-soft: 0 18px 50px rgba(0, 0, 0, 0.35);

}



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

html {
    scroll-behavior: smooth;
}



body {

    font-family: 'HelveticaWorld', Arial, sans-serif;

    background: radial-gradient(circle at top left, #1F4E8A 0, #081326 45%, #030711 100%);

    color: var(--text-main);

    line-height: 1.6;

    -webkit-user-select: none;
    user-select: none;

}



input,
textarea {
    -webkit-user-select: text;
    user-select: text;
    font-family: inherit;
}

img {
    max-width: 100%;
    display: block;
    pointer-events: none;
}

a img {
    pointer-events: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

.page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}



/* HEADER FIX (ერთ ხაზზე) */

header {

    position: sticky;
    top: 0;
    z-index: 40;

    backdrop-filter: blur(18px);

    background: linear-gradient(120deg, rgba(8, 19, 38, 0.98), rgba(9, 24, 54, 0.98));

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);

    padding: 12px 0;

}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: nowrap;
}

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

.header-center {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}



.header-contact-info {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 13px;
    color: var(--text-muted);
    white-space: nowrap;
    flex-shrink: 0;
}

.header-contact-info a:hover {
    color: var(--text-main);
}



.logo-wrap a {

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

    background-color: #ffffff;
    padding: 2px;
    border-radius: 50%;

    box-shadow: 0 0 15px rgba(0, 194, 168, 0.2);

    transition: 0.3s;
    height: 55px;
    width: 55px;
    overflow: hidden;
    flex-shrink: 0;

}

.main-logo-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transform: scale(1.05);
}

.logo-wrap a:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(0, 194, 168, 0.4);
}



nav {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    font-weight: bold;
    white-space: nowrap;
}

nav a {
    position: relative;
    padding-bottom: 4px;
    transition: 0.3s;
}

nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-gold));
    transition: width 0.25s ease;
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
}

nav a.active {
    color: var(--text-main);
}



.btn {
    border-radius: 50px;
    padding: 10px 20px;
    font-size: 12px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    white-space: nowrap;
    font-weight: bold;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-cyan), #2563eb);
    color: #fff;
    box-shadow: 0 8px 25px rgba(0, 194, 168, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 194, 168, 0.5);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-main);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-cyan);
}

.lang-toggle {
    font-size: 12px;
    color: var(--text-main);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 5px 10px;
    border-radius: 20px;
    cursor: pointer;
    transition: 0.3s;
}



/* HERO (Centered Layout Fix) */

.hero {
    padding: 100px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.hero-kicker {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--accent-cyan);
    margin-bottom: 14px;
    font-weight: bold;
}

.hero-title {
    font-size: 40px;
    line-height: 1.2;
    font-weight: bold;
    margin-bottom: 16px;
    color: #fff;
}

.hero-sub {
    font-size: 15px;
    color: var(--text-muted);
    max-width: 520px;
    margin-bottom: 22px;
    text-align: center;
}

.hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-bottom: 18px;
}

.hero-card {
    border-radius: var(--radius-lg);
    border: 1px solid rgba(148, 163, 184, 0.35);
    background: radial-gradient(circle at 0% 0%, rgba(0, 194, 168, 0.12), transparent 55%), rgba(15, 23, 42, 0.9);
    padding: 30px;
    box-shadow: var(--shadow-soft);
}

.hero-card-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

.hero-card-title {
    font-size: 20px;
    font-weight: bold;
    margin: 8px 0;
    color: #fff;
}

.hero-card-text {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.hero-tag-row {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.hero-tag {
    font-size: 12px;
    border-radius: 20px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-muted);
    transition: 0.3s;
    cursor: pointer;
}

.hero-tag:hover {
    border-color: var(--accent-cyan);
    color: #fff;
    background: rgba(0, 194, 168, 0.1);
}



/* SECTIONS */

section {
    padding: 80px 0;
    position: relative;
}

.section-header {
    margin-bottom: 40px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-kicker {
    font-size: 12px;
    color: var(--accent-cyan);
    text-transform: uppercase;
    letter-spacing: 0.25em;
    margin-bottom: 12px;
    font-weight: bold;
}

.section-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 16px;
    color: #fff;
}

.section-sub {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.6;
    text-align: center;
}



/* GRIDS */

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 30px;
}

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



/* CARDS */

.service-card,
.project-card,
.news-card,
.team-card {

    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);

    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: 0.3s;

    display: flex;
    flex-direction: column;
    cursor: pointer;
    height: 100%;
    text-decoration: none;

}

.service-card {
    padding: 24px;
    background: linear-gradient(145deg, rgba(20, 30, 48, 0.8), rgba(36, 59, 85, 0.4));
}

.team-card {
    padding: 30px 20px;
    text-align: center;
    justify-content: center;
}



.service-card:hover,
.project-card:hover,
.news-card:hover,
.team-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-cyan);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}



/* Card Contents */

.service-code {
    font-size: 11px;
    letter-spacing: 0.2em;
    color: var(--accent-cyan);
    margin-bottom: 12px;
    text-transform: uppercase;
    background: rgba(0, 194, 168, 0.1);
    width: fit-content;
    padding: 4px 8px;
    border-radius: 4px;
}

.service-name,
.project-title,
.news-heading {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #fff;
}

.service-text,
.project-desc,
.news-excerpt {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 16px;
    flex-grow: 1;
    line-height: 1.6;
}

.service-foot {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 10px;
}

.team-name {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 6px;
}

.team-role {
    font-size: 12px;
    color: var(--accent-cyan);
    text-transform: uppercase;
    font-weight: bold;
}

.project-img-wrap {
    height: 220px;
    overflow: hidden;
}

.project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s;
}

.project-card:hover .project-img {
    transform: scale(1.1);
}

.project-content,
.news-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.project-tags span,
.news-date {
    font-size: 10px;
    text-transform: uppercase;
    background: var(--primary-dark);
    color: var(--accent-cyan);
    padding: 5px 10px;
    border-radius: 20px;
    font-weight: bold;
}

.news-link {
    font-size: 13px;
    color: var(--accent-cyan);
    font-weight: bold;
    text-transform: uppercase;
    margin-top: auto;
}



/* PARTNERS */

.partners-section {
    background: rgba(255, 255, 255, 0.02);
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    align-items: center;
}

.partner-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0 25px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    cursor: pointer;
    min-width: 160px;
}

.partner-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.partner-card img {
    max-height: 45px;
    max-width: 140px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.7);
    transition: 0.3s;
}

.partner-card:hover img {
    filter: grayscale(0%) opacity(1);
}



/* CONTACT */

.contact-layout {
    display: grid;
    grid-template-columns: 1.2fr 1.8fr;
    gap: 30px;
    align-items: stretch;
}

.contact-card {
    border-radius: var(--radius-lg);
    background: rgba(20, 30, 48, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-card h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #fff;
}

.contact-grid-2 {
    display: grid;
    gap: 12px;
    grid-template-columns: 1fr 1fr;
}

.input,
.textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    font-size: 14px;
    outline: none;
    transition: 0.3s;
    margin-bottom: 12px;
    font-family: inherit;
}

.input:focus,
.textarea:focus {
    border-color: var(--accent-cyan);
    background: rgba(0, 0, 0, 0.5);
}

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

.maps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 20px;
    height: 200px;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #000;
    position: relative;
    height: 100%;
}

.map-label {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: #fff;
    color: #000;
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: bold;
    z-index: 10;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}



/* INNER PAGES */

.page-header {
    padding: 120px 0 60px;
    background: radial-gradient(circle at top right, #144272 0%, #030711 100%);
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.detail-section {
    padding: 80px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.detail-content h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #fff;
}

.detail-content p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
}

.detail-content ul {
    list-style: none;
    margin-top: 15px;
}

.detail-content li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
    color: #fff;
    font-size: 14px;
}

.detail-content li::before {
    content: "✓";
    color: var(--accent-cyan);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.detail-img img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(148, 163, 184, 0.2);
    width: 100%;
    height: auto;
}



/* FOOTER & EXTRAS */

footer {
    border-top: 1px solid rgba(15, 23, 42, 0.9);
    background: radial-gradient(circle at top, #111827, #020617 60%);
    padding: 40px 0;
    margin-top: 40px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    font-size: 12px;
    color: var(--text-muted);
}

.social-icons {
    display: flex;
    gap: 20px;
    justify-content: center;
    font-size: 20px;
    margin-top: 10px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.fade-in {
    opacity: 0;
    transform: translateY(8px);
    animation: fadeInUp 0.6s ease forwards;
}

.fade-in.delay-1 {
    animation-delay: 0.1s;
}

.fade-in.delay-2 {
    animation-delay: 0.2s;
}

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

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 25px;
    left: 25px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
}



@media (max-width: 1000px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

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

    .projects-grid,
    .news-grid,
    .team-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-layout,
    .detail-grid {
        grid-template-columns: 1fr;
    }

    .detail-grid.reverse {
        display: flex;
        flex-direction: column-reverse;
    }
}

@media (max-width: 960px) {
    .header-center {
        display: none;
    }

    .header-inner {
        justify-content: space-between;
    }
}

@media (max-width: 700px) {

    .services-grid,
    .projects-grid,
    .news-grid,
    .maps-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .header-contact-info {
        display: none;
    }
}

/* --- SHARE BUTTON STYLES --- */

.news-card {

    position: relative;

    /* ეს აუცილებელია ღილაკის პოზიციონირებისთვის */

}



.share-btn {

    position: absolute;

    bottom: 20px;

    right: 20px;

    background: rgba(255, 255, 255, 0.1);

    border: 1px solid rgba(255, 255, 255, 0.2);

    color: var(--text-muted);

    width: 35px;

    height: 35px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    cursor: pointer;

    transition: all 0.3s ease;

    z-index: 10;

    /* რომ სურათზე ზემოდან იყოს */

}



.share-btn:hover {

    background: var(--accent-cyan);

    color: #fff;

    border-color: var(--accent-cyan);

    transform: scale(1.1);

}



/* მცირე შესწორება, რომ ტექსტი ღილაკს არ დააჯდეს */

.news-content {

    padding-bottom: 10px;

}

/* --- MOBILE MENU STYLES --- */



/* ჰამბურგერის აიკონი (დესკტოპზე დამალულია) */

.hamburger {

    display: none;

    font-size: 24px;

    color: #fff;

    cursor: pointer;

    z-index: 1001;
    /* რომ მენიუს ზემოდან იყოს */

    padding: 5px;

}



/* --- MOBILE MENU (პროფესიონალური Overlay) --- */

/* მთავარი კონტეინერის ფიქსაცია, რომ გვერდით არ გაიქცეს */
html,
body {
    overflow-x: hidden;
    /* კრძალავს ჰორიზონტალურ სქროლს */
    width: 100%;
    position: relative;
}

/* როცა მენიუ ღიაა, სქროლი საერთოდ გაითიშოს */
body.menu-open {
    overflow: hidden;
}

/* ჰამბურგერის აიკონი */
.hamburger {
    display: none;
    font-size: 26px;
    color: #fff;
    cursor: pointer;
    z-index: 2001;
    /* მენიუზე ზემოთ */
    padding: 10px;
}

/* მენიუს ფონი (არა გვერდიდან, არამედ ადგილზე გამოჩენა) */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    /* მთელი ეკრანი */
    background-color: rgba(11, 17, 32, 0.98);
    /* ღრმა მუქი ფერი */
    backdrop-filter: blur(15px);
    /* დაბლარვის ეფექტი */
    z-index: 2000;

    /* ცენტრირება */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    /* ანიმაცია: გამჭვირვალობიდან გამოჩენა */
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}

/* აქტიური კლასი */
.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ლინკების სტილი */
.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 35px;
    text-align: center;
}

.mobile-nav-links a {
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
    opacity: 0;
    transform: translateY(20px);
    /* ქვემოდან ამოვა */
    transition: 0.4s ease;
}

/* როცა მენიუ ღიაა, ლინკები ამოცურდეს */
.mobile-menu-overlay.active .mobile-nav-links a {
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav-links a:hover {
    color: var(--accent-cyan);
}

/* --- RESPONSIVE --- */
@media (max-width: 960px) {
    .header-center {
        display: none !important;
    }

    /* დესკტოპ მენიუს დამალვა */
    .header-contact-info {
        display: none !important;
    }

    .hamburger {
        display: block;
    }

    .header-inner {
        justify-content: space-between;
        padding: 0 10px;
    }
}
/* --- BACK TO TOP BUTTON (უფრო კონტრასტული შუშა) --- */
#back-to-top {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(50px);
    
    width: 50px;
    height: 50px;
    
    /* უფრო მკვეთრი გამჭვირვალობა (80%) */
    background: rgba(0, 194, 168, 0.4); 
    
    /* უფრო ძლიერი "დაბლარვა", რომ ტექსტი არ იკითხებოდეს */
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
    
    /* თეთრი ჩარჩო უკეთესი კონტრასტისთვის */
    border: 1px solid rgba(255, 255, 255, 0.2); 
    
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    z-index: 998;
    box-shadow: 0 5px 15px rgba(0, 194, 168, 0.3); 
    
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

#back-to-top:hover {
    /* ჰოვერზე გახდეს სრული ფერის */
    background: var(--accent-cyan);
    border-color: var(--accent-cyan); /* ჩარჩოც გაქრეს */
    transform: translateX(-50%) translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 194, 168, 0.4);
}

#back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

@media (max-width: 768px) {
    #back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
    }
}
/* --- CONTACT TITLES (ზუსტად ცენტრში) --- */

.column-title {
    font-size: 22px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 20px;
    
    /* აი ეს არის ცვლილება: */
    text-align: center;  /* ტექსტის ცენტრირება */
    width: 100%;         /* რომ მთლიანი სიგანე დაიკავოს და შუა ზუსტად იპოვოს */
    padding-left: 0;     /* ძველი მარცხენა დაშორება აღარ გვჭირდება */
}

.contact-col {
    display: flex;
    flex-direction: column;
}
/* პროექტების ტექსტის იძულებითი გაცენტრირება */
p[data-translate-key="projectsSub"] {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    width: 100% !important;
    max-width: 800px !important;
    display: block !important;
}