:root {
    --primary: #0a3d62;
    --primary-light: #1e6091;
    --accent: #00a8cc;
    --bg-light: #f8fafc;
    --bg-alt: #f1f5f9;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --white: #ffffff;
    --border: #e2e8f0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Noto Sans Georgian', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
}

header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}

.logo span {
    color: var(--accent);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.2s;
}

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

.hero {
    background: linear-gradient(135deg, var(--primary) 0%, #0c2461 100%);
    color: var(--white);
    padding: 5rem 2rem;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 2.4rem;
    margin-bottom: 1.2rem;
    line-height: 1.3;
}

.hero p {
    font-size: 1.15rem;
    color: #dcdde1;
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    padding: 0.8rem 1.8rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.2s;
}

.btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.bg-alt {
    background-color: var(--bg-alt);
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-header h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.8rem;
}

.section-header p {
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--border);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.04);
    transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.08);
}

.card-icon {
    width: 44px;
    height: 44px;
    background: #e0f2fe;
    color: var(--accent);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
}

.card h3 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 0.8rem;
}

.card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.contact-section {
    background: var(--white);
    border-top: 1px solid var(--border);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.contact-item {
    margin-bottom: 1.2rem;
}

.contact-item strong {
    display: block;
    color: var(--primary);
    margin-bottom: 0.2rem;
}

.contact-item span,
.contact-item a {
    color: var(--text-muted);
    text-decoration: none;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    padding: 0.8rem;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent);
}

.form-status {
    font-size: 0.9rem;
    font-weight: 500;
    min-height: 1.2rem;
}

.form-status.success {
    color: #16a34a;
}

footer {
    background: #061e31;
    color: #94a3b8;
    padding: 2rem;
    text-align: center;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 1.5rem 2rem;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    /* მთავარი გვერდის საკონტაქტო ფორმის გასწორება */
section#contact form.consult-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    width: 100%;
    max-width: 500px;
}

section#contact form.consult-form .form-field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

section#contact form.consult-form label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-dark, #333);
}

section#contact form.consult-form input,
section#contact form.consult-form textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--border, #ccc);
    border-radius: 8px;
    font-size: 0.95rem;
    background-color: #fdfdfd;
    box-sizing: border-box;
    outline: none;
}

section#contact form.consult-form input:focus,
section#contact form.consult-form textarea:focus {
    border-color: var(--accent, #00a8cc);
    box-shadow: 0 0 0 3px rgba(0, 168, 204, 0.15);
    background-color: #fff;
}

section#contact form.consult-form .submit-btn {
    background: linear-gradient(135deg, var(--primary, #0a3d62) 0%, var(--primary-light, #1e3799) 100%);
    color: #fff;
    padding: 0.9rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 0.5rtrem;
    transition: transform 0.2s, box-shadow 0.2s;
}

section#contact form.consult-form .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(10, 61, 98, 0.25);
}
}