/* CSS ცვლადები */
:root {
    --primary-color: #1e7047; /* Gazarde მწვანე */
    --accent-color: #00ff88; /* ნეონური აქცენტი თანამედროვეობისთვის */
    --background-dark: #0a0a0a; /* ულტრა მუქი ფონი */
    --text-light: #f0f0f0; /* ღია ტექსტი */
    --secondary-bg: #1a1a1a;
    --font-heading: 'Space Grotesk', sans-serif; /* ფუტურისტული შრიფტი */
    --font-body: 'Inter', sans-serif;
    --transition-speed: 0.4s;
    --border-light: rgba(255, 255, 255, 0.1);
}

/* ზოგადი სტილები და შრიფტი */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-light);
    background-color: var(--background-dark);
    scroll-behavior: smooth;
}

h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 700;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 30px;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-speed);
}

a:hover {
    color: var(--accent-color);
}

/* Glassmorphism Effect */
.glass-effect {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px); /* მთავარი ეფექტი */
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border-light);
}

/* Header & Navigation */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    /* Glassmorphism ფონი ჰედერისთვის */
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border-light);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo-text {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color); /* ნეონური ლოგო */
    letter-spacing: 2px;
}

.nav a {
    color: var(--text-light);
    margin-left: 30px;
    font-weight: 500;
}

.nav-cta {
    background-color: var(--primary-color);
    padding: 8px 18px;
    border-radius: 4px;
    margin-left: 30px;
    color: var(--background-dark) !important;
    font-weight: 600;
    transition: background-color var(--transition-speed), box-shadow var(--transition-speed);
}

.nav-cta:hover {
    background-color: var(--accent-color);
    box-shadow: 0 0 15px var(--accent-color);
}

/* Hero Section - დიდი, სუფთა ტიპოგრაფია */
.hero {
    padding: 180px 0 150px;
    text-align: center;
    border-bottom: 1px solid var(--border-light);
}

.hero-title {
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 25px;
    line-height: 1.1;
}

.accent-text {
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 300;
    margin-bottom: 50px;
    color: var(--secondary-color);
}

/* Futuristic Button */
.futuristic-button {
    display: inline-flex;
    align-items: center;
    background-color: var(--primary-color);
    color: var(--background-dark);
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.futuristic-button:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--accent-color);
    transition: width var(--transition-speed) ease;
    z-index: -1;
}

.futuristic-button:hover:after {
    width: 100%;
}

.arrow-icon {
    margin-left: 10px;
    width: 20px;
    height: 20px;
    stroke: var(--background-dark);
}

/* Sections */
.section {
    padding: 100px 0;
    text-align: center;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 60px;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* About Section Card */
.about-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    text-align: left;
}

.about-card-text {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 30px;
}

.about-stats {
    display: flex;
    justify-content: space-around;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
    font-weight: 700;
    color: var(--primary-color);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.futuristic-card {
    padding: 40px;
    text-align: left;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.futuristic-card:hover {
    transform: translateY(-15px);
    border-color: var(--primary-color);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 20px;
    display: block;
}

.card-title {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.card-text {
    color: var(--text-light);
    font-size: 1rem;
}

/* Contact Section */
.contact-section {
    padding-top: 100px;
    padding-bottom: 150px;
}

.contact-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
}

.contact-item {
    text-align: center;
}

.contact-label {
    display: block;
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.contact-link {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-light);
}

.contact-link:hover {
    color: var(--accent-color);
}

/* Footer */
.footer {
    background-color: var(--background-dark);
    padding: 30px 0;
    border-top: 1px solid var(--border-light);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive Design (მცირე ეკრანებისთვის) */
@media (max-width: 900px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .header-content {
        flex-direction: column;
        text-align: center;
    }

    .nav {
        margin-top: 15px;
    }

    .nav a {
        margin: 0 10px;
    }
    
    .contact-grid {
        flex-direction: column;
        gap: 30px;
    }
}