:root {
    --primary: #00d4ff;
    --primary-dark: #0099cc;
    --secondary: #7b2cbf;
    --accent: #ff006e;
    --dark: #0a0a0a;
    --light: #f8f9fa;
    --gray: #6c757d;
    --gray-light: #e9ecef;
    --success: #00ff88;
    --warning: #ffbe0b;
    
    --shadow: 0 8px 30px rgba(0, 212, 255, 0.1);
    --shadow-lg: 0 20px 50px rgba(0, 212, 255, 0.15);
    --radius: 16px;
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
    --gradient-tech: linear-gradient(135deg, var(--primary), #7b2cbf, var(--accent));
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Noto Sans Georgian', sans-serif;
    line-height: 1.7;
    color: var(--light);
    background-color: var(--dark);
    overflow-x: hidden;
    position: relative;
}

.footer-bottom a {
    color: inherit;
    text-decoration: none;
    font-weight: 500;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

.led-line {
    height: 10px;
    background: var(--gradient-tech);
    width: 100%;
    margin: 10px 0;
    position: relative;
    overflow: hidden;
}

.led-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    animation: ledMove 3s linear infinite;
}

@keyframes ledMove {
    0% { left: -100%; }
    100% { left: 100%; }
}

.led-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    display: inline-block;
    margin: 0 5px;
    animation: pulse 2s infinite;
    box-shadow: 0 0 10px var(--primary);
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}

.logo {
    font-size: 30px;
    font-weight: 800;
    color: var(--primary);
    display: flex;
    align-items: center;
    letter-spacing: -0.5px;
    text-decoration: none;
}

.logo span {
    color: var(--secondary);
    background: var(--gradient-tech);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    text-decoration: none;
    color: var(--light);
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    border-radius: 3px;
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 15px;
    padding-left: 15px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}
.lang-switcher .lang-link {
    font-size: 14px;
    font-weight: 700;
    opacity: 0.7;
}
.lang-switcher .lang-link:hover,
.lang-switcher .lang-link.active {
    opacity: 1;
    color: var(--primary);
}
.lang-switcher .lang-sep {
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
}

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 26px;
    color: var(--light);
    background: none;
    border: none;
}

/* Hero Section */
.hero {
    padding: 110px 0 50px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(123, 44, 191, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.hero-content {
    max-width: 700px;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 52px;
    line-height: 1.5;
    margin-bottom: 25px;
    font-weight: 800;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero h1 span {
    -webkit-text-fill-color: var(--accent);
}

.hero p {
    font-size: 19px;
    color: var(--gray-light);
    margin-bottom: 35px;
    max-width: 600px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient);
    color: var(--dark);
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.5);
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--light);
    backdrop-filter: blur(10px);
}

.cta-button.secondary:hover {
    background: var(--gradient);
    color: var(--dark);
}

.tech-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 212, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 1;
    pointer-events: none;
}

.stats {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
    flex-wrap: wrap;
    gap: 20px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    backdrop-filter: blur(10px);
    flex: 1;
    min-width: 180px;
    transition: var(--transition);
    border: 1px solid rgba(0, 212, 255, 0.1);
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.2);
    border-color: var(--primary);
}

.stat-number {
    font-size: 46px;
    font-weight: 800;
    color: var(--primary);
    display: block;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-text {
    color: var(--gray-light);
    font-size: 16px;
    font-weight: 600;
}

/* Section Title */
.section-title {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
}

.section-title h1,
.section-title h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--light);
    font-weight: 800;
}

.section-title p {
    color: var(--gray-light);
    max-width: 600px;
    margin: 0 auto;
    font-size: 18px;
}

.text-center {
    text-align: center;
}

/* === ყველა გვერდის საერთო სტილები === */

/* Featured Projects Section (index.html) */
.featured-projects {
    padding: 20px 0;
    background-color: #111111;
    position: relative;
}

.featured-projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.featured-project {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    padding: 40px 30px;
    border: 1px solid rgba(0, 212, 255, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.featured-project:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.1);
}

.featured-project-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient);
    color: var(--dark);
    padding: 6px 15px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
}

.featured-project h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary);
}

.featured-project p {
    color: var(--gray-light);
    margin-bottom: 25px;
    font-size: 16px;
}

.project-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.project-link:hover {
    gap: 12px;
    color: var(--accent);
}

/* Services Preview Section (index.html) */
.services-preview {
    padding: 20px 0;
    background-color: #0a0a0a;
    position: relative;
}

.services-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 80% 20%, rgba(123, 44, 191, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(255, 0, 110, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    padding: 40px 30px;
    border: 1px solid rgba(0, 212, 255, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    text-align: center;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--dark);
    font-size: 30px;
    box-shadow: 0 10px 20px rgba(0, 212, 255, 0.2);
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--light);
}

.service-card p {
    color: var(--gray-light);
    margin-bottom: 25px;
    font-size: 16px;
}

.service-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.service-link:hover {
    gap: 12px;
    color: var(--accent);
}

/* CTA Section */
.cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--dark);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="white" opacity="0.1" d="M0,0 L100,0 L100,100 Q50,80 0,100 Z"/></svg>') no-repeat;
    background-size: cover;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    font-size: 42px;
    margin-bottom: 25px;
    font-weight: 800;
}

.cta-section p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

/* Footer */
footer {
    background-color: #050505;
    color: white;
    padding: 5px 0 5px;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 1px;
}

.footer-column h3 {
    font-size: 24px;
    margin-bottom: 25px;
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient);
    border-radius: 3px;
}

.footer-column p, .footer-column a {
    color: #b0b7c3;
    margin-bottom: 15px;
    display: block;
    text-decoration: none;
    transition: var(--transition);
    font-size: 16px;
}

.footer-column a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.contact-info i {
    width: 20px;
    margin-right: 10px;
    color: var(--primary);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-icons a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
    font-size: 18px;
}

.social-icons a:hover {
    background: var(--gradient);
    color: var(--dark);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #8a94a6;
    font-size: 15px;
}

/* === პროექტების გვერდის სპეციფიკური სტილები (projects.html) === */

.projects-page {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
}

/* Projects Slider - FIXED */
.projects-slider-container {
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius);
    padding: 40px;
    border: 1px solid rgba(0, 212, 255, 0.1);
    margin-bottom: 60px;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.projects-slider-header {
    text-align: center;
    margin-bottom: 50px;
}

.projects-slider-header h2 {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.projects-slider-header p {
    color: var(--gray-light);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

/* სლაიდერის მთავარი კონტეინერი */
.projects-slider-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    padding: 10px 0;
    margin: 0 -10px;
}

/* სლაიდების კონტეინერი - გასწორებული */
.projects-slider {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
}

/* ცალკეული სლაიდი - გასწორებული */
.project-slide {
    flex: 0 0 calc(33.333% - 17px); /* 3 სლაიდი გათვალისწინებული gap-ით */
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0, 212, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    animation: slideIn 0.5s ease forwards;
    opacity: 0;
    animation-delay: calc(var(--slide-index) * 0.1s);
    box-sizing: border-box;
}

.project-slide:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--primary);
    box-shadow: 0 25px 50px rgba(0, 212, 255, 0.2);
}

.project-slide.active {
    border-color: var(--accent);
    box-shadow: 0 0 30px rgba(255, 0, 110, 0.3);
}

/* სლაიდის კონტენტი */
.project-slide-content {
    padding: 5px;
}

.project-slide-content h3 {
    font-size: 24px;
    margin-bottom: 1px;
}

.project-slide-url {
    color: var(--primary);
    font-size: 12px;
    margin-bottom: 1px;
    display: block;
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.project-slide-url:hover {
    color: var(--accent);
    gap: 12px;
}

.project-slide-description {
    color: var(--gray-light);
    font-size: 12px;
    margin-bottom: 1px;
    line-height: 3;
    min-height: 60px;
}

/* სლაიდის თაგები (ტექნოლოგიები) */
.project-slide-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 3px;
}

.project-slide-tag {
    background: rgba(0, 212, 255, 0.1);
    color: var(--primary);
    padding: 1px 8px;
    border-radius: 10px;
    font-size: 10px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.project-badge {
    display: inline-block;
    background: var(--gradient);
    color: var(--dark);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.project-slide-tag:hover {
    background: var(--primary);
    color: var(--dark);
    transform: translateY(-2px);
}

/* სლაიდერის დოტები (ინდიკატორები) */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 14px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.slider-dot::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.slider-dot.active {
    transform: scale(1.3);
}

.slider-dot.active::before {
    transform: translateX(100%);
}

.slider-dot:hover {
    background: var(--primary);
    transform: scale(1.2);
}

/* სლაიდერის ინფორმაცია და კონტროლები */
.slider-info-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 20px;
}

.slider-counter {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.slider-counter span {
    font-size: 28px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.slider-controls {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.slider-control-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    color: var(--light);
    padding: 10px 22px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.slider-control-btn:hover {
    background: var(--gradient);
    color: var(--dark);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.3);
}

.slider-control-btn i {
    font-size: 16px;
}

/* Projects Categories */
.projects-categories {
    margin-bottom: 60px;
}

.projects-categories h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--light);
    display: flex;
    align-items: center;
    gap: 15px;
}

.projects-categories h3 .led-dot {
    animation-delay: 0.5s;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.category-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    padding: 30px;
    border: 1px solid rgba(0, 212, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.category-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.15);
}

.category-card:hover::before {
    opacity: 0.05;
}

.category-card > * {
    position: relative;
    z-index: 1;
}

.category-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--dark);
    transition: transform 0.3s ease;
}

.category-card:hover .category-icon {
    transform: scale(1.1) rotate(5deg);
}

.category-card h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--light);
}

.category-card p {
    color: var(--gray-light);
    font-size: 14px;
    margin-bottom: 15px;
    min-height: 60px;
}

.category-project-count {
    display: inline-block;
    background: rgba(0, 212, 255, 0.1);
    color: var(--primary);
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}

.category-card:hover .category-project-count {
    background: var(--primary);
    color: var(--dark);
}

/* Work Process */
.work-process {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.process-step {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(0, 212, 255, 0.1);
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient);
    border-radius: 4px 4px 0 0;
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.process-step:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.1);
}

.process-step:hover::before {
    transform: scaleX(1);
}

.process-step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    color: var(--dark);
    margin: 0 auto 20px;
    transition: transform 0.3s ease;
}

.process-step:hover .process-step-number {
    transform: scale(1.1);
}

.process-step h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--light);
}

.process-step p {
    color: var(--gray-light);
    font-size: 14px;
    line-height: 1.6;
}

/* Projects Stats */
.projects-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin: 60px 0;
}

.projects-stats .stat-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    padding: 35px 25px;
    text-align: center;
    border: 1px solid rgba(0, 212, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    position: relative;
    overflow: hidden;
}

.projects-stats .stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.projects-stats .stat-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 25px 50px rgba(0, 212, 255, 0.15);
}

.projects-stats .stat-item:hover::before {
    opacity: 0.05;
}

.projects-stats .stat-item > * {
    position: relative;
    z-index: 1;
}

.projects-stats .stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
    line-height: 1;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.projects-stats .stat-text {
    font-size: 18px;
    color: var(--gray-light);
    font-weight: 600;
}

/* Project Details */
.project-details {
    margin-bottom: 60px;
}

.project-details h3 {
    font-size: 28px;
    margin-bottom: 25px;
    color: var(--light);
    display: flex;
    align-items: center;
    gap: 15px;
}

.project-details h3 .led-dot {
    animation-delay: 0.3s;
}

.project-details p {
    color: var(--gray-light);
    font-size: 16px;
    line-height: 1.8;
    max-width: 800px;
}

/* Animation for new project slide */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* სლაიდის გამოჩენის ანიმაცია */
.project-slide {
    animation: slideIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

/* === რესპონსიული დიზაინი სლაიდერისთვის === */

@media (max-width: 1200px) {
    .project-slide {
        flex: 0 0 calc(50% - 13px); /* 2 სლაიდი */
    }
    
    .slider-nav-btn.prev {
        left: -15px;
    }
    
    .slider-nav-btn.next {
        right: -15px;
    }
}

@media (max-width: 768px) {
    .projects-slider-container {
        padding: 30px 20px;
        margin: 0 -10px 50px;
        border-radius: 0;
        border-left: none;
        border-right: none;
    }
    
    .project-slide {
        flex: 0 0 calc(100% - 10px); /* 1 სლაიდი */
        min-width: 0;
    }
    
    .slider-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .slider-nav-btn.prev {
        left: 5px;
    }
    
    .slider-nav-btn.next {
        right: 5px;
    }
    
    .projects-slider-header h2 {
        font-size: 26px;
        flex-direction: column;
        gap: 10px;
    }
    
    .slider-info-controls {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }
    
    .slider-counter {
        justify-content: center;
    }
    
    .slider-controls {
        justify-content: center;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .work-process {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .work-process {
        grid-template-columns: 1fr;
    }
    
    .projects-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .projects-stats .stat-number {
        font-size: 36px;
    }
    
    .slider-control-btn {
        width: 100%;
        justify-content: center;
    }
}

/* მობილურისთვის დამატებითი სტილები */
@media (max-width: 400px) {
    .project-slide-content {
        padding: 20px;
    }
    
    .project-slide-content h3 {
        font-size: 20px;
    }
    
    .slider-counter {
        font-size: 18px;
    }
    
    .slider-counter span {
        font-size: 24px;
    }
}

/* ტაჩ-მობაილისთვის სვაიპის ეფექტი */
@media (hover: none) and (pointer: coarse) {
    .project-slide:hover {
        transform: none;
    }
    
    .project-slide:active {
        transform: scale(0.98);
    }
    
    .slider-nav-btn:hover {
        transform: translateY(-50%);
    }
    
    .slider-control-btn:hover {
        transform: none;
    }
}

/* === სერვისების გვერდის სტილები (services.html) === */

.services-page {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
}

.service-detail {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    padding: 40px;
    margin-bottom: 40px;
    border: 1px solid rgba(0, 212, 255, 0.1);
}

.service-detail h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 15px;
}

.service-detail h3 .led-dot {
    margin: 0;
}

.service-detail ul {
    list-style-type: none;
    margin: 20px 0;
}

.service-detail li {
    padding: 10px 0;
    color: var(--gray-light);
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.service-detail li:last-child {
    border-bottom: none;
}

.service-detail li i {
    color: var(--success);
    margin-right: 12px;
    font-size: 16px;
    min-width: 20px;
}

/* === პაკეტების გვერდის სტილები (packages.html) === */

.packages-page {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, #111111 0%, #1a1a2e 100%);
}

.package-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.package-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    padding: 50px 40px;
    border: 1px solid rgba(0, 212, 255, 0.1);
    flex: 1;
    min-width: 320px;
    max-width: 520px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: var(--transition);
}

.package-card:hover::before {
    transform: scaleX(1);
}

.package-card.featured {
    border: 2px solid var(--primary);
    transform: scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 212, 255, 0.15);
}

.package-card:hover {
    transform: translateY(-15px);
    border-color: var(--primary);
    box-shadow: 0 30px 60px rgba(0, 212, 255, 0.15);
}

.package-card.featured:hover {
    transform: translateY(-15px) scale(1.02);
}

.package-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--gradient);
    color: var(--dark);
    padding: 10px 40px;
    font-weight: 700;
    font-size: 14px;
    transform: rotate(45deg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.package-header {
    text-align: center;
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 2px dashed rgba(0, 212, 255, 0.3);
}

.package-header h3 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--light);
}

.price {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 5px;
    line-height: 1;
}

.price-period {
    color: var(--gray-light);
    font-size: 17px;
}

.package-features {
    list-style-type: none;
    margin-bottom: 40px;
}

.package-features li {
    padding: 15px 0;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--gray-light);
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features li i {
    margin-right: 15px;
    font-size: 20px;
    min-width: 24px;
}

.package-features li i.fa-check {
    color: var(--success);
}

.package-features li i.fa-times {
    color: rgba(255, 255, 255, 0.2);
}

.package-button {
    width: 100%;
    padding: 20px;
    border-radius: 50px;
    background: var(--gradient);
    color: var(--dark);
    border: none;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.package-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.4);
}

/* === კონტაქტის გვერდის სტილები (contact.html) === */

.contact-page {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
}

.contact-form-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    padding: 40px;
    border: 1px solid rgba(0, 212, 255, 0.1);
    backdrop-filter: blur(10px);
}

.contact-form {
    display: grid;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--light);
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 8px;
    color: var(--light);
    font-size: 16px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(0, 212, 255, 0.2);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-button {
    background: var(--gradient);
    color: var(--dark);
    padding: 18px;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 10px;
}

.submit-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.3);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.contact-info-item {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    border: 1px solid rgba(0, 212, 255, 0.1);
    transition: var(--transition);
}

.contact-info-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.1);
}

.contact-info-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--dark);
    font-size: 24px;
}

.contact-info-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--light);
}

.contact-info-item p {
    color: var(--gray-light);
    font-size: 16px;
}

.contact-info-item a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

.contact-info-item a:hover {
    color: var(--accent);
}

/* მარტივი ავტო-კარუსელი */
.integration-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel-container {
    overflow: hidden;
}

.carousel-track {
    display: flex;
    animation: scroll 15s linear infinite;
    gap: 10px;
}

.carousel-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-49px * 7 - 10px * 6));
    }
}

.carousel-item {
    flex: 0 0 49px;
    height: 49px;
}

/* === რესპონსიული დიზაინი === */

@media (max-width: 768px) {
    /* Projects slider responsive */
    .projects-slider-container {
        padding: 20px 15px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .projects-slider-header h2 {
        font-size: 26px;
    }
    
    .projects-slider-info {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .work-process {
        grid-template-columns: 1fr;
    }
    
    .projects-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .projects-stats .stat-number {
        font-size: 36px;
    }
}

/* General Responsive Design */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 60px;
    }
    
    .section-title h1,
    .section-title h2 {
        font-size: 36px;
    }
    
    .package-card.featured {
        transform: none;
    }
    
    .package-card.featured:hover {
        transform: translateY(-15px);
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: center;
        padding-top: 60px;
        transition: var(--transition);
        gap: 25px;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .hero {
        padding: 100px 0 5px;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .stats {
        flex-direction: column;
        align-items: center;
    }
    
    .stat-item {
        width: 100%;
        max-width: 300px;
    }
    
    .package-card {
        min-width: 100%;
    }
    
    .contact-form-container,
    .service-detail {
        padding: 30px 20px;
    }
    
    .featured-projects-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 32px;
    }
    
    .hero p {
        font-size: 17px;
    }
    
    .cta-button {
        padding: 16px 30px;
        font-size: 16px;
        width: 100%;
        justify-content: center;
    }
    
    .section-title h1,
    .section-title h2 {
        font-size: 28px;
    }
    
    .price {
        font-size: 42px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}
/* ინტეგრაციის კარუსელი */
.integration-carousel {
    position: relative;
    width: 100%;
    max-width: 350px; /* 4 */
    margin: 15px 0;
}

.carousel-container {
    overflow: hidden;
    border-radius: 8px;
    width: 100%;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 10px;
    width: fit-content;
}

.carousel-item {
    flex: 0 0 49px;
    height: 49px;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.carousel-item a {
    display: block;
    width: 49px;
    height: 49px;
    text-decoration: none;
}

.carousel-item img {
    width: 49px;
    height: 49px;
    object-fit: contain;
    border-radius: 8px;
    background: rgba(255,255,255,0.1);
    padding: 5px;
    transition: transform 0.3s ease;
}

.carousel-item:hover img {
    transform: scale(1.1);
}

/* ========== რესპონსივი ========== */

/* დესკტოპი - 4 იკონი */
@media (min-width: 1025px) {
    .integration-carousel {
        max-width: 350px;
    }
}

/* ტაბლეტი - 3 იკონი */
@media (max-width: 1024px) and (min-width: 769px) {
    .integration-carousel {
        max-width: 350px; /* 3 იკონი: */
    }
}

@media (max-width: 768px) and (min-width: 481px) {
    .integration-carousel {
        max-width: 350px;
    }
    
    .footer-column {
        flex: 0 0 50%;
        margin-bottom: 30px;
    }
}

/* მობილური - 2 იკონი */
@media (max-width: 480px) {
    .integration-carousel {
        max-width: 350px; /* 2 იკონი */
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-column {
        flex: 0 0 100%;
        width: 100%;
        margin-bottom: 30px;
    }
    
    .footer-column:last-child {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .integration-carousel {
        margin-left: auto;
        margin-right: auto;
    }
}

/* ძალიან პატარა მობილური */
@media (max-width: 320px) {
    .integration-carousel {
        max-width: 108px;
    }
}

.badge-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin: 20px 0;
}