/* --- Global Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #fcfcfc;
    color: #444; /* Soft grey instead of pure black */
    line-height: 1.7;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(13, 61, 122, 0.98);
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

    .navbar ul {
        display: flex;
        list-style: none;
        gap: 40px;
    }

        .navbar ul li a {
            color: #fff;
            text-decoration: none;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 1.2px;
            text-transform: uppercase;
            transition: 0.3s;
        }

        .navbar ul li a:hover {
            color: #ffc107;
        }

/* --- Hero Section --- */
.hero-section {
    background-color: #0d3d7a;
    color: white;
    text-align: center;
    padding: 160px 20px 100px 20px;
}

    .hero-section img {
        width: 100px;
        margin-bottom: 25px;
    }

    .hero-section h1 {
        font-size: 3rem;
        font-weight: 800;
        margin-bottom: 15px;
        letter-spacing: -1px;
    }

    .hero-section p {
        font-size: 1.1rem;
        font-weight: 300;
        max-width: 600px;
        margin: 0 auto 35px;
        opacity: 0.9;
    }

/* --- Buttons --- */
.quote-btn, .submit-btn {
    background: #ffc107;
    color: #0d3d7a;
    padding: 12px 30px;
    border-radius: 5px; /* Rounded pill shape */
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: 0.3s;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

    .quote-btn:hover, .submit-btn:hover {
        background: #fff;
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    }

/* --- Services --- */
section {
    padding: 100px 20px;
}

    h2 {
        font-size: 32px;
        text-align: center;
        color: #0d3d7a;
        margin-bottom: 50px;
        font-weight: 800;
    }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

    .card {
        background: #fff;
        padding: 40px;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.03);
        transition: 0.4s;
        border-top: 5px solid #ffc107;
    }

    .card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    }

        .card h3 {
            color: #0d3d7a;
            margin-bottom: 15px;
        }

/* --- About Section --- */
.about-section {
    background-color: #f4f7fa;
}

    .about-text {
        text-align: center;
        max-width: 800px;
        margin: 0 auto 40px;
        font-size: 1.1rem;
        color: #555;
    }

    .company-card {
        background: #fff;
        max-width: 500px;
        margin: 0 auto;
        padding: 30px;
        border-radius: 15px;
        text-align: center;
        box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    }

        .company-name {
            font-weight: 800;
            color: #0d3d7a;
            font-size: 1.2rem;
        }

/* --- FAQ & Contact --- */
.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

    .faq-item {
        margin-bottom: 15px;
        border-radius: 10px;
        background: #fff;
        box-shadow: 0 2px 10px rgba(0,0,0,0.02);
    }

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

    .contact-form input, .contact-form textarea {
        padding: 15px 20px;
        border-radius: 10px;
        border: 1px solid #e1e1e1;
        background-color: #fff;
        font-family: inherit;
        transition: 0.3s;
    }

    .contact-form input:focus, .contact-form textarea:focus {
        border-color: #ffc107;
        outline: none;
    }

/* FAQ Styling */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    overflow: hidden;
    border: 1px solid #eee;
}

.faq-question {
    width: 100%;
    padding: 22px 25px;
    background: #fff;
    border: none;
    text-align: left;
    color: #0d3d7a;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s;
}

.faq-question:hover {
    background: #fcfcfc;
}

.faq-question::after {
    content: '+';
    font-size: 20px;
    color: #ffc107;
    transition: 0.3s;
}

.faq-question.active::after {
    content: '−';
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
    background: #f9fbff;
}

.faq-answer p {
    padding: 20px 25px;
    color: #555;
    line-height: 1.6;
    border-top: 1px solid #f0f0f0;
}

/* Contact Form Fix (ბოლო სქრინშოტისთვის) */
.contact-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    display: block; /* აი ეს დასვამს ველებს ერთმანეთის ქვეშ */
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    box-sizing: border-box; /* რომ პედინგმა სიგანე არ გაზარდოს */
    font-family: 'Poppins', sans-serif;
}

.contact-form textarea {
    height: 120px;
    resize: vertical;
}

.submit-btn {
    width: 100%; /* ღილაკი რომ გაიჭიმოს და ლამაზი იყოს */
    padding: 15px;
}


/* --- Scroll Top --- */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #ffc107;
    border: none;
    border-radius: 50%;
    color: #0d3d7a;
    font-size: 20px;
    cursor: pointer;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
}

/* --- Footer --- */
.main-footer {
    background: #0d3d7a;
    color: #fff;
    padding: 60px 20px;
    text-align: center;
    font-size: 14px;
    opacity: 0.8;
}

/* --- New Logo Styles --- */
.main-logo {
    width: 125px; /* ზომა გაზრდილია (იყო 100px) */
    height: auto;
    display: block;
    margin: 0 auto 15px;
    
    /* თეთრი ნაზი ჩარჩო */
    border: 2.5px solid rgba(255, 255, 255, 0.3); 
    border-radius: 22px; /* SVG-ს კუთხეებს რომ მოერგოს */
    padding: 5px; /* სივრცე ჩარჩოსა და ლოგოს შორის */
    
    /* ჩრდილი უკეთესი გამოკვეთისთვის */
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.3);
    
    transition: all 0.3s ease;
    background-color: rgba(13, 61, 122, 0.5); /* დამატებითი სიღრმე */
}

.main-logo:hover {
    transform: scale(1.08);
    border-color: #ffc107; /* მაუსის მიტანისას ჩარჩო ყვითლდება */
    box-shadow: 0px 15px 35px rgba(0, 0, 0, 0.4);
}

/* --- Language Switcher --- */
.navbar {
    justify-content: space-around; /* ნავიგაციასა და ენებს შორის სივრცისთვის */
}

.lang-switch {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
}

.lang-switch a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: 0.3s;
}

.lang-switch a:hover, .lang-switch a.active {
    color: #ffc107; /* აქცენტის ფერი */
}

.lang-switch span {
    color: rgba(255, 255, 255, 0.3);
}

/* მობილურზე რომ არ აირიოს */
@media (max-width: 600px) {
    .navbar {
        flex-direction: column;
        height: auto;
        padding: 10px 0;
    }
    .navbar ul {
        gap: 15px;
        margin-bottom: 5px;
    }
}

.service-card img {
    width: 100%;
    max-width: 250px; /* შეგიძლია შეცვალო ზომა სურვილისამებრ */
    height: auto;
    border-radius: 12px;
    margin-bottom: 15px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
