/* Custom Variables */
:root {
    --primary-color: #0d6efd;
    --secondary-color: #6c757d;
    --dark-color: #212529;
}

/* Global Styles */
body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

/* Hero Section */
.hero {
    background: linear-gradient(120deg, #2b4bf2 0%, #4c6ef5 100%);
    position: relative;
    overflow: hidden;
}

/* გრადიენტის ეფექტის გასაძლიერებლად დავამატოთ pattern */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, rgba(0, 0, 0, 0) 50%);
    pointer-events: none;
}

/* Navbar Styles */
.navbar {
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(33, 37, 41, 0.98) !important;
    backdrop-filter: blur(10px);
}

/* Feature Cards */
.feature-card {
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

/* Animations */
.navbar-brand {
    font-weight: 700;
}

.nav-link {
    position: relative;
    padding: 0.5rem 1rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background-color: white;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-link:hover::after {
    transform: scaleX(1);
}

/* Navigation Styles */
.navbar-nav .nav-link {
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    font-weight: 500;
}

.navbar-brand {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    font-size: 1.4rem;
}

.navbar-brand i {
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

/* Tech Icons */
.tech-icon {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.tech-icon:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.tech-icon i {
    font-size: 3rem;
}

/* Pricing Cards */
.hover-card {
    transition: all 0.3s ease-in-out;
}

.hover-card:hover {
    transform: translateY(-5px);
}

/* Pricing Header */
.card .display-5 {
    background: linear-gradient(120deg, #2b4bf2 0%, #4c6ef5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    font-size: 2.5rem !important; /* ფასის ზომის შემცირება */
}

.card h3 {
    font-size: 1.25rem !important; /* სათაურის ზომის შემცირება */
}

/* Popular Badge */
.ribbon {
    border-radius: 0 0 0 0.5rem;
    font-size: 0.8rem; /* "პოპულარული" ბეჯის ზომის შემცირება */
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* List Items */
.list-unstyled li {
    padding: 0.3rem 0; /* შემცირებული padding ლისტის ელემენტებს შორის */
    font-size: 0.9rem;
    line-height: 1.4; /* შემცირებული ხაზებს შორის დაშორება */
    border-bottom: 1px dashed rgba(0,0,0,0.1);
}

.list-unstyled li:last-child {
    border-bottom: none;
}

.list-unstyled i {
    transition: all 0.3s ease;
}

.hover-card:hover .list-unstyled i.text-primary {
    transform: scale(1.2);
}

/* Buttons */
.card .btn {
    padding: 0.8rem 2rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    font-size: 0.9rem; /* ღილაკის ტექსტის ზომის შემცირება */
}

.card .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.card .text-muted {
    margin-bottom: 0.5rem; /* შემცირებული margin მუქ ტექსტთან */
    font-size: 0.85rem; /* დამატებითი ტექსტის ზომის შემცირება */
}

/* Pricing Cards Styles */
.card .card-body {
    padding: 1.5rem !important; /* შემცირებული padding კარდის შიგნით */
}

.card .mb-4 {
    margin-bottom: 1rem !important; /* შემცირებული margin სათაურის ქვემოთ */
}

.card hr.my-4 {
    margin: 0.75rem 0 !important; /* შემცირებული margin გამყოფ ხაზთან */
}

.list-unstyled {
    margin-bottom: 1rem !important; /* შემცირებული margin ლისტის ქვემოთ */
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    /* Common Mobile Fixes */
    .page-header {
        padding: 4rem 0 2rem !important;
    }

    .page-header .display-4 {
        font-size: 2rem !important;
        margin-bottom: 1rem !important;
    }

    .page-header .lead {
        font-size: 1rem !important;
    }

    /* About Page Mobile */
    .team-section .row > [class^="col-"] {
        margin-bottom: 2rem;
    }

    .team-section .display-5 {
        font-size: 2rem !important;
    }

    /* Services Page Mobile */
    .services-grid .col-lg-4 {
        margin-bottom: 1.5rem;
    }

    .services-grid .card {
        height: auto !important;
    }

    /* Contact Page Mobile */
    .contact-info .d-flex {
        margin-bottom: 1.5rem;
    }

    .contact-info .fs-3 {
        font-size: 1.5rem !important;
    }

    /* Footer Mobile */
    footer .row > [class^="col-"] {
        margin-bottom: 2rem;
    }

    footer .row > [class^="col-"]:last-child {
        margin-bottom: 0;
    }

    /* Navigation Mobile */
    .navbar-collapse {
        background: var(--dark-color);
        padding: 1rem;
        border-radius: 0.5rem;
        margin-top: 1rem;
    }

    .nav-link {
        padding: 0.75rem 1rem !important;
    }

    /* Hero Mobile Fixes */
    .hero {
        padding: 6rem 0 3rem;
        min-height: auto;
    }

    .hero .col-lg-6:last-child {
        margin-top: 3rem;
    }

    .hero .row.g-4 {
        margin: 0 -0.5rem;
    }

    .hero .col-4 {
        padding: 0.5rem;
    }

    .tech-icon {
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 1.5rem;
    }

    .tech-icon i {
        font-size: 2rem;
    }
}