/* ==========================================================================
   1. ზოგადი პარამეტრები (Variables & Reset)
   ========================================================================== */
:root {
    --primary: #00605E;
--primary-gradient: linear-gradient(to right, #00605E, #008986);
    --dark: #1e293b;
    --light: #f8fafc;
    --white: #ffffff;
    --text-main: #1f2937;
    --text-muted: #94a3b8;
    --border-color: #f1f5f9;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 2px 15px rgba(0,0,0,0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ფონტების იმპორტი */
@font-face {
    font-family: 'b1';
    src: url('../fonts/font-2.otf');
}

@font-face {
    font-family: 'abrama';
    src: url('../fonts/dafont.ttf');
}

body {
    font-family: 'Fira GO', 'b1', sans-serif;
    background-color: var(--light);
    color: var(--text-main);
    line-height: 1.6;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px;
}

/* ==========================================================================
   2. მთავარი ნავბარი (Main Navbar)
   ========================================================================== */
.main-navbar {
    background: var(--white);
    height: 80px;
    display: flex;
    align-items: center;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 2px solid #00605E;
}

.nav-wrapper {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ლოგო და ბურგერ ღილაკი */
.nav-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.burger-btn {
    font-size: 22px;
    cursor: pointer;
    color: var(--dark);
    transition: var(--transition);
}

.burger-btn:hover {
    color: var(--primary);
}

.logo {
    text-decoration: none;
    font-size: 24px;
    font-weight: 800;
    color: var(--dark);
}

.logo span {
    color: var(--primary);
}

/* ცენტრალური ლინკები (Desktop) */
.nav-center {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-center a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: var(--transition);
    font-family: 'abrama';
}

.nav-center a:hover {
    color: var(--primary);
}

/* მარჯვენა მხარე - კონტაქტის ღილაკი */
.btn-call {
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.2);
    transition: var(--transition);
}

.btn-call:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.3);
}

/* ==========================================================================
   3. გვერდითა მენიუ (Side Menu & Overlay)
   ========================================================================== */
.side-menu {
    position: fixed;
    left: -320px;
    top: 0;
    width: 300px;
    height: 100%;
    background: var(--white);
    z-index: 1001;
    transition: var(--transition);
    padding: 30px 20px;
    box-shadow: 5px 0 20px rgba(0,0,0,0.1);
    overflow-y: auto; 
    scrollbar-width: thin;
    scrollbar-color: var(--primary) transparent;
}

.side-menu.active {
    left: 0;
}

/* გვერდითა მენიუს ჰეადერი */
.side-menu-header {
    background: var(--primary-gradient);
    margin: -30px -20px 20px -20px;
    padding: 22px 20px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close-side {
    background: rgba(255, 255, 255, 0.2);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    color: white;
}

/* ძირითადი გვერდების ლინკები მენიუში */
.side-main-links {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.side-main-links li a {
    text-decoration: none;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 15px;
    font-weight: 600;
    font-size: 17px;
    border-radius: 10px;
    transition: var(--transition);
}

.side-main-links li a i {
    color: var(--primary);
    width: 20px;
}

.side-main-links li a:hover {
    background: var(--light);
}

/* კატეგორიების სექცია მენიუში */
.side-divider {
    display: flex;
    justify-content: center;
    padding: 10px 15px;
    font-size: 14px;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 1px;
    font-weight: 700;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 15px;
}

.side-nav-links {
    list-style: none;
    padding: 0;
}

.side-nav-links a {
    text-decoration: none;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 15px;
    border-radius: 12px;
    transition: var(--transition);
    margin-bottom: 5px;
}

.side-nav-links a:hover {
    background: rgba(39, 174, 96, 0.08);
    color: var(--primary);
}

/* კატეგორიის ფოტოების სტილი */
.side-cat-img {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #eee;
    transition: var(--transition);
}

.side-cat-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.side-nav-links a:hover .side-cat-img {
    border-color: var(--primary);
    transform: scale(1.1);
}

/* ბუნდოვანი ფონი მენიუს დროს */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1000;
    display: none;
    backdrop-filter: blur(3px);
}

.nav-overlay.active {
    display: block;
}

/* ==========================================================================
   4. კონტენტის სექციები (Categories Grid)
   ========================================================================== */



   .cat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.cat-item {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.cat-item:hover {
    transform: translateY(-5px);
}

.cat-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: transform 0.4s ease-in-out;
}

.cat-item:hover img {
  
    transform: scale(1.1); 
}

.cat-item h3 {
    padding: 15px;

}

a{
text-decoration: none;
color: #141414;
}


/* ==========================================================================
   5. ფუტერი (Footer)
   ========================================================================== */
footer {
    text-align: center;
    padding: 40px 0;
    background: var(--dark);
    color: var(--white);
    margin-top: 50px;
}

/* ==========================================================================
   7. About Page Styles
   ========================================================================== */

/* Hero Section */
.about-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../assets/img/about-bg.jpg');
    background-size: cover;
    background-position: center;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.about-hero h1 {
    font-family: 'abrama', sans-serif;
    font-size: 48px;
    margin-bottom: 10px;
}

.about-hero p {
    font-size: 18px;
    opacity: 0.9;
}

/* Story Section */
.about-story {
    padding: 80px 20px;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.story-img {
    position: relative;
}

.story-img img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary);
    color: white;
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(39, 174, 96, 0.4);
}

.experience-badge span {
    font-size: 32px;
    font-weight: 800;
    display: block;
    line-height: 1;
}

.experience-badge p {
    font-size: 14px;
    margin: 0;
}

.sub-title {
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    display: block;
    margin-bottom: 15px;
}

.story-text h2 {
    font-size: 36px;
    color: var(--dark);
    margin-bottom: 25px;
    line-height: 1.3;
}

.story-text p {
    color: #64748b;
    margin-bottom: 20px;
    font-size: 17px;
}

.story-features {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--dark);
}

.feature-item i {
    color: var(--primary);
    font-size: 20px;
}

/* Stats Section */
.stats-section {
    background: var(--dark);
    padding: 80px 0;
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-box h3 {
    font-size: 42px;
    color: var(--primary);
    margin-bottom: 10px;
}

.stat-box p {
    font-size: 16px;
    opacity: 0.8;
}

/* ==========================================================================
   8. Contact Page Styles
   ========================================================================== */

.page-title {
    background: var(--dark);
    padding: 60px 0;
    text-align: center;
    color: var(--white);
}

.page-title h1 {
    font-family: 'abrama', sans-serif;
    font-size: 42px;
    color: var(--primary);
    margin-bottom: 10px;
}

.contact-content {
    padding: 80px 20px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: start;
}

/* საკონტაქტო ბარათები */
.info-card {
    background: var(--white);
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.info-card:hover {
    transform: translateX(10px);
    border-color: var(--primary);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(39, 174, 96, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 24px;
}

.info-text h3 {
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 5px;
}

.info-text p, .info-text a {
    color: #64748b;
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s;
}

.info-text a:hover {
    color: var(--primary);
}

/* სოციალური ქსელები */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: var(--white);
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
    text-decoration: none;
}

.social-links a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-5px);
}

/* რუკის სექცია */
.contact-map {
    height: 500px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}




/* ==========================================================================
   5. ფუტერი (Footer - Updated Style)
   ========================================================================== */
.main-footer {
    background: #1a1a1a; 
    color: var(--white);
    padding-top: 40px;
    margin-top: 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding-bottom: 40px;
    align-items: center;
}


.logo.white {
    color: #fff;
    font-size: 28px;
}


.contact-box {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-left: 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-icon {
    background: var(--primary); 
    width: 45px;
    height: 45px;
    min-width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 18px;
    color: white;
}

.footer-info {
    display: flex;
    flex-direction: column;
}

.footer-info .label {
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.footer-info .text {
    font-size: 14px;
    color: #b1b1b1;
    margin-top: 2px;
}

/* ქვედა ზოლი */
.footer-bottom {
    background: #111; /* უფრო მუქი ზოლი ბოლოში */
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #888;
}

.creator {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}

.creator:hover {
    color: #2ecc71;
    text-shadow: 0 0 10px rgba(46, 204, 113, 0.3);
}




/* ==========================================================================
   Hero Slider Styles
   ========================================================================== */
.hero-slider {
    position: relative;
    height: 80vh;
    width: 100%;
    overflow: hidden;
}

.mainSwiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.1); /* მცირე Zoom ეფექტისთვის */
    transition: transform 6s ease;
}

/* აქტიური სლაიდის დროს სურათი ნელა მოძრაობს (Ken Burns ეფექტი) */
.swiper-slide-active .slide-bg {
    transform: scale(1);
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom, 
        rgba(0,0,0,0.3) 0%, 
        rgba(0,0,0,0.7) 100%
    );
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    margin-top: 80px;
}

.top-tag {
    display: inline-block;
    background: var(--primary);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: fadeInUp 1s ease forwards;
}

.slide-content h1 {
    font-family: 'abrama', sans-serif;
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease 0.3s forwards;
    opacity: 0;
}

.slide-content p {
    font-size: 20px;
    margin-bottom: 35px;
    opacity: 0;
    animation: fadeInUp 1s ease 0.6s forwards;
}

/* ღილაკები სლაიდერში */
.slide-btns {
    display: flex;
    gap: 15px;
    justify-content: center;
    opacity: 0;
    animation: fadeInUp 1s ease 0.9s forwards;
}

.btn-primary {
    background: var(--primary);
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
}

.btn-outline {
    background: transparent;
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    border: 2px solid white;
    transition: var(--transition);
}

.btn-outline:hover {
    background: white;
    color: var(--dark);
}

/* ანიმაცია */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Swiper-ის ნავიგაციის ფერები */
.swiper-pagination-bullet-active {
    background: var(--primary) !important;
}

.swiper-button-next, .swiper-button-prev {
    color: white !important;
    transform: scale(0.7);
}




/* ==========================================================================
   Preloader Styles (Updated with Icon)
   ========================================================================== */
#preloader {
    position: fixed;
    inset: 0;
    background: #111111; /* მუქი ფონი პრემიუმ იერისთვის */
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s;
}

.loader-content {
    text-align: center;
    width: 100%;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* აიქონის სტილი */
.loader-icon {
    font-size: 50px; /* აიქონის ზომა */
    color: var(--primary); /* შენი მწვანე ფერი */
    margin-bottom: 15px; /* დაშორება ლოგოსთან */
    animation: iconPulse 2s infinite ease-in-out; /* ცალკე ანიმაცია აიქონისთვის */
}

.loader-logo {
    font-family: 'abrama', sans-serif;
    font-size: 32px; /* ოდნავ დავაპატარავე, რომ აიქონთან ბალანსში იყოს */
    color: white;
    letter-spacing: 2px;
    margin-bottom: 25px; /* დაშორება პროგრეს ბართან */
    line-height: 1;
}

.loader-logo span {
    color: var(--primary);
}

/* პროგრესის ზოლი */
.loader-bar {
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    margin-bottom: 15px; /* დაშორება ქვედა ტექსტთან */
}

.bar-progress {
    width: 0;
    height: 100%;
    background: var(--primary);
    box-shadow: 0 0 15px var(--primary);
    animation: loadBar 2.5s ease-in-out forwards;
}

.loader-text {
    color: #888;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}

/* ანიმაციები */
@keyframes loadBar {
    0% { width: 0; }
    50% { width: 70%; }
    100% { width: 100%; }
}

/* აიქონის პულსაციის ანიმაცია */
@keyframes iconPulse {
    0%, 100% { 
        transform: scale(1); 
        opacity: 1;
        filter: drop-shadow(0 0 0px rgba(39, 174, 96, 0));
    }
    50% { 
        transform: scale(1.1); 
        opacity: 0.8;
        filter: drop-shadow(0 0 10px rgba(39, 174, 96, 0.5));
    }
}

/* როცა საიტი ჩაიტვირთება */
#preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

/* ==========================================================================
   Language Selector Styling
   ========================================================================== */

.langcallbg{
display: flex;
}
   .lang-selector {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.08); 
    padding: 6px 12px;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.lang-btn {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.lang-btn img {
    width: 35px;   
    height: 24px;
    object-fit: cover;
    border-radius: 5px; 
    border: 2px solid transparent;
    filter: grayscale(80%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

/* აქტიური დროშის სტილი */
.lang-btn.active img {
    filter: grayscale(0%);
    opacity: 1;
    border-color: var(--primary); /* შენი საიტის მთავარი ფერი */
  
    box-shadow: 0 0 10px rgba(39, 174, 96, 0.4);
}

/* ჰოვერ ეფექტი */
.lang-btn:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: translateY(-2px);
}

/* გამყოფი ხაზი */
.lang-selector .divider {
    width: 1px;
    height: 15px;
    background: rgba(255, 255, 255, 0.2);
}



/* მობილურისთვის მორგება */
@media (max-width: 768px) {
    .lang-selector {
        margin: 0 10px;
        padding: 4px 10px;
    }
    
    .lang-selector a {
        font-size: 12px;
    }
}


/* ==========================================================================
   Custom Modern Scrollbar (No Borders)
   ========================================================================== */


::-webkit-scrollbar {
    width: 8px;
    border-radius: 0px; 
    background-color: #0f172a; 
}


::-webkit-scrollbar-thumb {
    background: var(--primary-gradient); 
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, #008986, #16a085); 
}


::-webkit-scrollbar-track {
    background: transparent; 
}


* {
    scrollbar-width: thin;
    scrollbar-color: #00605E transparent;
}