* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, "Noto Sans Georgian", sans-serif;
    background: #0f172a;
    color: #222;
}


/* =================================
   GICAV — ზედა მენიუ
   ================================= */

header {
    background: #0f172a;
    color: white;
    padding: 14px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}


/* GICAV ბრენდი */

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand {
    text-decoration: none;
    font-size: 29px;
    font-weight: bold;
    letter-spacing: 1.5px;
}

.brand-main {
    color: #ffffff;
}

.brand-domain {
    color: #38bdf8;
}

.brand-subtitle {
    margin-top: 6px;
    font-size: 8px;
    letter-spacing: 2px;
    color: #94a3b8;
}


/* მენიუ */

nav {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

nav a {
    color: #e2e8f0;
    text-decoration: none;
    font-size: 15px;
    padding: 9px 13px;
    border-radius: 6px;
    transition: 0.25s;
}

nav a:hover {
    color: #ffffff;
    background: rgba(56,189,248,0.12);
}


/* ??????? ?????? */

.hero {
    min-height: 620px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 75px 20px 90px;
    background:
        radial-gradient(circle at 50% 20%, rgba(56,189,248,0.18), transparent 35%),
        linear-gradient(135deg, #0f172a, #172554 55%, #0f3b5f);
    color: white;
}

.hero p {
    font-size: 21px;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 0 40px;
    color: #dbeafe;
}

/* ??????? ???????? */

.main-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.button {
    display: inline-block;

    padding: 15px 25px;

    background: white;
    color: #111827;

    text-decoration: none;

    border-radius: 8px;

    font-weight: bold;

    transition: 0.3s;
}

.button:hover {
    transform: translateY(-3px);
}


/* ???????? */

.service-section {
    max-width: 1200px;
    margin: auto;

    padding: 80px 25px;
}

.service-section h2 {
    font-size: 34px;
    margin-bottom: 15px;
}

.service-section > p {
    font-size: 18px;
    color: #555;

    max-width: 800px;

    margin-bottom: 40px;
}


/* ???????? */

.cards {
    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(240px, 1fr));

    gap: 25px;
}

.card {
    background: white;

    padding: 30px;

    border-radius: 12px;

    box-shadow:
        0 5px 20px rgba(0,0,0,0.08);

    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.card h3 {
    margin-top: 0;

    font-size: 21px;
}

.card p {
    color: #666;

    line-height: 1.6;
}


/* ???????? */

.contact {
    text-align: center;

    padding: 90px 20px;

    background: #e5e7eb;
}

.contact h2 {
    font-size: 34px;
}

.contact p {
    font-size: 18px;
}

.contact button {
    margin-top: 20px;

    padding: 15px 35px;

    border: none;

    border-radius: 8px;

    background: #111827;
    color: white;

    font-size: 16px;

    cursor: pointer;
}


/* ????? ?????? */

footer {
    background: #111827;

    color: white;

    text-align: center;

    padding: 25px;
}


/* ????????? ?????? */

@media (max-width: 700px) {

    header {
    flex-direction: column;
    gap: 12px;
    padding: 14px 12px;
    }

    nav {
        justify-content: center;
        gap: 4px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 18px;
    }

    .service-section h2 {
        font-size: 28px;
    }

}

.service-logo {
    max-width: 220px;
    max-height: 120px;
    object-fit: contain;
    margin-bottom: 25px;
}

/* ??????? ?????????????? ???????? */

.main-services {
    width: 100%;
    max-width: 900px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-top: 28px;
}


.main-service-card {
    display: block;

    padding: 35px 28px;

    border-radius: 15px;

    background: #101010;

    color: #ffffff;

    text-decoration: none;

    border: 1px solid rgba(255, 255, 255, 0.08);

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.35);

    transition:
        transform 0.3s,
        box-shadow 0.3s,
        background 0.3s;
}

.main-service-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 18px 35px rgba(0,0,0,0.25);
}


.main-service-card .service-icon {
    font-size: 45px;

    margin-bottom: 15px;
}


.main-service-card h2 {
    font-size: 24px;

    margin: 10px 0 15px;
}


.main-service-card p {
    font-size: 16px;

    line-height: 1.6;

    color: #cbd5e1;

    min-height: 80px;
}


.main-service-card span {
    display: inline-block;

    margin-top: 15px;

    font-weight: bold;

    font-size: 15px;
}


/* ????? ?????????????? ????????? */

.law-card {
    border-top: 5px solid #334155;
}


.electric-card {
    border-top: 5px solid #f59e0b;
}


.shop-card {
    border-top: 5px solid #0ea5e9;
}


/* ????????? ?????? */

@media (max-width: 850px) {

    .main-services {
        grid-template-columns: 1fr;
        max-width: 550px;
    }

    .main-service-card {
        padding: 30px 25px;
    }

}

/* ??????? ?????? */

.cart-icon {
    position: relative;

    width: 55px;
    height: 55px;

    margin: 0 auto 15px;
}


.cart-body {
    position: absolute;

    width: 38px;
    height: 27px;

    left: 9px;
    top: 12px;

    border: 4px solid #0ea5e9;
    border-top: none;

    transform: skew(-8deg);
}


.cart-body::before {
    content: "";

    position: absolute;

    width: 18px;
    height: 4px;

    background: #0ea5e9;

    left: -10px;
    top: -8px;

    transform: rotate(15deg);

    border-radius: 3px;
}


.cart-wheel {
    position: absolute;

    width: 7px;
    height: 7px;

    background: #0ea5e9;

    border-radius: 50%;

    bottom: 7px;
}


.wheel-left {
    left: 17px;
}


.wheel-right {
    left: 39px;
}

/* =========================
   ??????????? ????????
   ========================= */

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 35px;
}

.product-card {
    background: white;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.product-image {
    height: 180px;
    background: #f1f5f9;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 15px;
    margin-bottom: 20px;
}

.product-card h3 {
    font-size: 19px;
    margin: 0 0 10px;
}

.product-card p {
    color: #666;
    line-height: 1.5;
    font-size: 15px;
    margin-bottom: 20px;
}

.product-bottom {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.product-price {
    font-weight: bold;
    color: #111827;
    font-size: 14px;
}

.product-bottom button {
    border: none;
    background: #0ea5e9;
    color: white;
    padding: 10px 16px;
    border-radius: 7px;
    cursor: pointer;
    font-weight: bold;
}

.contact-button:hover {
    background: #0284c7;
    transform: translateY(-2px);
}


/* Facebook ??????? */

.facebook-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.facebook-links .contact-link {
    margin-top: 4px;
}


/* =================================
   GICAV — კონტაქტი
   ================================= */

.contact-section {
    background: #0f172a;
    padding: 80px 25px 90px;
    color: white;
}


/* სათაური */

.contact-header {
    width: 100%;
    max-width: 850px;
    margin: 0 auto 50px;
    text-align: center;
}

.contact-header h2 {
    margin: 0 0 16px;
    color: #ffffff;
    font-size: 36px;
    line-height: 1.3;
}

.contact-header p {
    margin: 0;
    color: #94a3b8;
    font-size: 18px;
    line-height: 1.8;
}


/* =================================
   საკონტაქტო ბარათები
   ================================= */

.contact-grid {
    width: 100%;
    max-width: 1150px;
    margin: 0 auto;
    
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}


/* ცალკეული ბარათი */

.contact-card {
    width: 100%;
    background: #172033;
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-top: 4px solid #38bdf8;
    border-radius: 12px;
    
    padding: 32px 28px;
    
    text-align: center;
    
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18);
    
    transition: 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);
    
    border-top-color: #7dd3fc;
    
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
}


/* ნომერი */

.contact-icon {
    width: 45px;
    height: 45px;
    
    margin: 0 auto 18px;
    
    border-radius: 50%;
    
    background: #0f172a;
    border: 1px solid rgba(56, 189, 248, 0.35);
    
    color: #38bdf8;
    
    display: flex;
    align-items: center;
    justify-content: center;
    
    font-size: 13px;
    font-weight: bold;
}


/* ბარათის სათაური */

.contact-card h3 {
    margin: 0 0 13px;
    
    color: #ffffff;
    font-size: 21px;
    line-height: 1.4;
}


/* ტექსტი */

.contact-card p {
    margin: 0;
    
    color: #94a3b8;
    
    font-size: 15px;
    line-height: 1.7;
    
    min-height: 75px;
}


/* საკონტაქტო ბმული */

.contact-link {
    display: inline-block;
    
    margin-top: 15px;
    
    color: #38bdf8;
    text-decoration: none;
    
    font-weight: bold;
    font-size: 15px;
    
    transition: 0.25s;
}

.contact-link:hover {
    color: #7dd3fc;
    text-decoration: underline;
}


/* Facebook ბმულები */

.facebook-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.facebook-links .contact-link {
    margin-top: 5px;
}


/* =================================
   გაქვთ კონკრეტული საკითხი?
   ================================= */

.contact-request {
    width: 100%;
    max-width: 1150px;
    
    margin: 45px auto 0;
    
    padding: 42px 35px;
    
    background: #172033;
    
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-left: 4px solid #38bdf8;
    
    border-radius: 12px;
    
    text-align: center;
    
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18);
}


/* სათაური */

.contact-request h3 {
    margin: 0 0 15px;
    
    color: #ffffff;
    font-size: 27px;
    line-height: 1.4;
}


/* ტექსტი */

.contact-request p {
    width: 100%;
    max-width: 750px;
    
    margin: 0 auto;
    
    color: #94a3b8;
    
    font-size: 16px;
    line-height: 1.8;
}


/* მოგვწერეთ ღილაკი */

.contact-button {
    display: inline-block;
    
    margin-top: 25px;
    
    padding: 13px 32px;
    
    background: #38bdf8;
    color: #0f172a;
    
    text-decoration: none;
    
    border-radius: 7px;
    
    font-weight: bold;
    font-size: 15px;
    
    transition: 0.3s;
}

.contact-button:hover {
    background: #7dd3fc;
    transform: translateY(-2px);
}


/* =================================
   კონტაქტი — მობილური
   ================================= */

@media (max-width: 800px) {

    .contact-section {
        padding: 60px 20px 70px;
    }


    .contact-header {
        max-width: 600px;
        margin-bottom: 35px;
    }


    .contact-header h2 {
        font-size: 30px;
    }


    .contact-header p {
        font-size: 16px;
        line-height: 1.7;
    }


    /* სამი ბარათი ერთ სვეტად */

    .contact-grid {
        width: 100%;
        max-width: 550px;
        
        margin: 0 auto;
        
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }


    .contact-card {
        width: 100%;
        padding: 28px 22px;
    }


    .contact-card h3 {
        font-size: 20px;
    }


    .contact-card p {
        min-height: auto;
        font-size: 15px;
    }


    /* ქვედა დიდი ბლოკი */

    .contact-request {
        width: 100%;
        max-width: 550px;
        
        margin: 35px auto 0;
        
        padding: 30px 22px;
    }


    .contact-request h3 {
        font-size: 23px;
    }


    .contact-request p {
        font-size: 15px;
    }


    .contact-button {
        margin-top: 22px;
        padding: 12px 28px;
    }

}

/* =================================
   ?????????? ???????????? ???????
   ================================= */

.law-section {
    background:
        radial-gradient(
            circle at 50% 18%,
            rgba(30, 100, 190, 0.55) 0%,
            rgba(15, 55, 110, 0.38) 25%,
            rgba(15, 23, 42, 0.92) 55%,
            #07101f 100%
        );

    padding-top: 70px;
    padding-bottom: 90px;
}

.law-section .service-logo {
    display: block;

    width: 125px;
    height: 125px;
    max-width: none;
    max-height: none;

    margin: 0 auto 28px;
    object-fit: contain;

    /* ლოგოს გარშემო ხელოვნურ თეთრ წრეს ვაქრობთ */
    background: transparent;
    border-radius: 0;
    padding: 0;

    /* მხოლოდ რბილი ლურჯი ნათება */
    filter:
        drop-shadow(0 0 10px rgba(56, 189, 248, 0.65))
        drop-shadow(0 0 24px rgba(37, 99, 235, 0.50));
}

.law-section > h2 {
    text-align: center;
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 20px;

    text-shadow:
        0 2px 3px rgba(0, 0, 0, 1),
        0 4px 10px rgba(0, 0, 0, 0.95),
        0 0 18px rgba(0, 0, 0, 0.75);
}

.law-intro {
    max-width: 850px;
    margin: 0 auto 45px !important;
    text-align: center;
    font-size: 19px !important;
    line-height: 1.8;
    color: #94a3b8 !important;
}


/* ????????????? ???????????? ???????? */

.law-section .cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.law-section .card {
    background: linear-gradient(
        145deg,
        #1d2940 0%,
        #172033 55%,
        #111a2b 100%
    );

    color: #ffffff;

    border: 1px solid rgba(96, 165, 250, 0.45);
    border-top: 2px solid rgba(147, 197, 253, 0.85);
    border-bottom: 4px solid rgba(5, 15, 30, 0.95);

    min-height: 190px;
    padding: 28px;
    border-radius: 10px;

    box-shadow:
        0 9px 0 rgba(5, 12, 25, 0.75),
        0 14px 24px rgba(0, 0, 0, 0.38),
        inset 0 1px 0 rgba(255, 255, 255, 0.10),
        0 0 10px rgba(56, 189, 248, 0.10);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.law-section .card:hover {
    transform: translateY(-5px);
    border-color: rgba(96, 165, 250, 0.80);

    box-shadow:
        0 12px 0 rgba(5, 12, 25, 0.70),
        0 20px 30px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.14),
        0 0 18px rgba(56, 189, 248, 0.22);
}

.law-section .card h3 {
    color: #ffffff;
    margin-bottom: 12px;
}

.law-section .card p {
    color: #cbd5e1;
    line-height: 1.65;
}

/* მეშვიდე ბარათი - ცენტრში */

.law-section .cards .card:last-child {
    grid-column: 2;
}

/* ?????????? ??????????? */

.law-experience {
    max-width: 1150px;
    margin: 60px auto 0;
    padding: 40px;

    background: #172033;

    border: 1px solid rgba(148, 163, 184, 0.14);
    border-left: 5px solid #64748b;

    border-radius: 10px;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.22);
}

.law-experience h3 {
    margin-top: 0;
    font-size: 26px;
    color: #ffffff;
}

.law-experience p {
    color: #cbd5e1;
    font-size: 17px;
    line-height: 1.8;
}


/* ?????????? ?????????? */

.law-principles {
    max-width: 1100px;
    margin: 45px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.principle {
    background: #1e293b;
    color: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
}

.principle h3 {
    margin-top: 0;
    font-size: 20px;
}

.principle p {
    margin-bottom: 0;
    line-height: 1.6;
    color: #e2e8f0;
}


/* ???????? ?????? */

@media (max-width: 900px) {

    .law-section .cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .law-principles {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 600px) {

    .law-section {
        padding-top: 50px;
        padding-bottom: 60px;
    }

    .law-section > h2 {
        font-size: 29px;
    }

    .law-intro {
        font-size: 17px !important;
    }

    .law-section .cards {
        grid-template-columns: 1fr;
    }

    .law-experience {
        padding: 25px;
    }

    .law-experience h3 {
        font-size: 23px;
    }

    .law-experience p {
        font-size: 16px;
    }
}

/* =================================
   ?????? / ??????? ???????
   ================================= */

.electric-section {
    background:
        radial-gradient(
            circle at 50% 12%,
            rgba(245, 158, 11, 0.10) 0%,
            rgba(30, 100, 190, 0.30) 22%,
            rgba(15, 55, 110, 0.25) 38%,
            rgba(15, 23, 42, 0.96) 65%,
            #07101f 100%
        );

    padding-top: 75px;
    padding-bottom: 90px;
}

.electric-section .service-logo {
    display: block;

    width: 145px;
    height: 145px;
    max-width: none;
    max-height: none;

    margin: 0 auto 28px;

    object-fit: contain;

    background: transparent;
    padding: 0;

    filter:
        drop-shadow(0 0 8px rgba(251, 191, 36, 0.45))
        drop-shadow(0 0 20px rgba(245, 158, 11, 0.28));
}

.electric-section > h2 {
    text-align: center;

    font-size: 36px;
    color: #ffffff;

    margin-bottom: 20px;

    text-shadow:
        0 2px 3px rgba(0, 0, 0, 1),
        0 4px 10px rgba(0, 0, 0, 0.90),
        0 0 18px rgba(245, 158, 11, 0.15);
}

.electric-intro {
    max-width: 850px;
    margin: 0 auto 50px !important;
    text-align: center;
    font-size: 19px !important;
    line-height: 1.8;
    color: #94a3b8 !important;
}


/* ??????? ???????????? ???????? */

.electric-services {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.electric-card {
    position: relative;

    background: linear-gradient(
        145deg,
        #1d2940 0%,
        #172033 55%,
        #111a2b 100%
    );

    padding: 30px 25px 28px;
    border-radius: 10px;

    border: 1px solid rgba(245, 158, 11, 0.45);
    border-top: 2px solid rgba(251, 191, 36, 0.90);
    border-bottom: 4px solid rgba(5, 15, 30, 0.95);

    box-shadow:
        0 9px 0 rgba(5, 12, 25, 0.75),
        0 14px 24px rgba(0, 0, 0, 0.38),
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 0 10px rgba(245, 158, 11, 0.10);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;

    overflow: hidden;
}

.electric-card:hover {
    transform: translateY(-5px);

    border-color: rgba(251, 191, 36, 0.80);

    box-shadow:
        0 12px 0 rgba(5, 12, 25, 0.70),
        0 20px 30px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 0 18px rgba(245, 158, 11, 0.20);
}

.electric-number {
    font-size: 14px;
    font-weight: bold;
    color: #fbbf24;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.electric-card h3 {
    margin: 0 0 13px;
    color: #ffffff;
    font-size: 20px;
}

.electric-card p {
    margin: 0;
    color: #cbd5e1;
    line-height: 1.65;
    font-size: 15px;
}


/* ?????????? ??????? */

.electric-approach {
    max-width: 950px;
    margin: 65px auto 0;
    padding: 42px 45px;

    background:
        linear-gradient(
            145deg,
            rgba(29, 41, 64, 0.96) 0%,
            rgba(23, 32, 51, 0.98) 55%,
            rgba(13, 24, 42, 0.98) 100%
        );

    border: 1px solid rgba(245, 158, 11, 0.55);
    border-left: 4px solid #f59e0b;
    border-radius: 10px;

    box-shadow:
        0 12px 28px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 0 18px rgba(245, 158, 11, 0.08);
}

.electric-approach h3 {
    margin-top: 0;
    font-size: 26px;
    color: white;
}

.electric-approach p {
    color: #cbd5e1;
    font-size: 17px;
    line-height: 1.8;
}


/* ??????? */

@media (max-width: 1000px) {

    .electric-services {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* ???????? */

@media (max-width: 600px) {

    .electric-section {
        padding-top: 50px;
        padding-bottom: 60px;
    }

    .electric-section > h2 {
        font-size: 29px;
    }

    .electric-intro {
        font-size: 17px !important;
    }

    .electric-services {
        grid-template-columns: 1fr;
    }

    .electric-card {
        padding: 27px 23px;
    }

    .electric-approach {
        padding: 25px;
        margin-top: 40px;
    }

    .electric-approach h3 {
        font-size: 23px;
    }

    .electric-approach p {
        font-size: 16px;
    }
}

/* =================================
   GICAV — სასარგებლო ბმულები
   ================================= */

.useful-links-section {
    background: #0f172a;
    padding: 80px 25px 90px;
    color: white;
}

.useful-links-header {
    max-width: 850px;
    margin: 0 auto 50px;
    text-align: center;
}

.useful-links-header h2 {
    margin: 0 0 16px;
    font-size: 36px;
    color: #ffffff;
    letter-spacing: 0.3px;
}

.useful-links-header p {
    margin: 0;
    color: #94a3b8;
    font-size: 18px;
    line-height: 1.8;
}


/* ბარათების განლაგება */

.useful-links-grid {
    max-width: 1150px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}


/* ცალკეული ბარათი */

.useful-links-card {
    background: #172033;
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-top: 4px solid #38bdf8;
    border-radius: 12px;
    padding: 28px 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18);
    transition: 0.3s;
}

.useful-links-card:hover {
    transform: translateY(-4px);
    border-top-color: #7dd3fc;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
}


/* ბარათის სათაური */

.useful-links-card-title {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 22px;
}

.links-number {
    flex-shrink: 0;
    font-size: 13px;
    font-weight: bold;
    color: #38bdf8;
    letter-spacing: 1px;
    padding-top: 4px;
}

.useful-links-card-title h3 {
    margin: 0;
    color: #ffffff;
    font-size: 20px;
    line-height: 1.4;
}


/* ბმულები */

.resource-links {
    display: flex;
    flex-direction: column;
}

.resource-links a {
    position: relative;
    display: block;
    padding: 10px 0 10px 18px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.10);

    color: #cbd5e1;
    text-decoration: none;
    font-size: 15px;
    line-height: 1.5;

    transition: 0.25s;
}

.resource-links a:last-child {
    border-bottom: none;
}

.resource-links a::before {
    content: "›";
    position: absolute;
    left: 0;
    top: 9px;
    color: #38bdf8;
    font-size: 20px;
    line-height: 1;
}

.resource-links a:hover {
    color: #ffffff;
    padding-left: 23px;
}


/* =================================
   სასარგებლო ბმულები — მობილური
   ================================= */

@media (max-width: 700px) {

    .useful-links-section {
        padding: 60px 20px 70px;
    }

    .useful-links-header {
        margin-bottom: 35px;
    }

    .useful-links-header h2 {
        font-size: 29px;
    }

    .useful-links-header p {
        font-size: 16px;
    }

    .useful-links-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .useful-links-card {
        padding: 25px 22px;
    }

    .useful-links-card-title h3 {
        font-size: 18px;
    }

    .resource-links a {
        font-size: 14px;
    }

}



/* =================================
   GICAV — Footer
   ================================= */

.site-footer {
    background: #0b1120;
    color: #ffffff;
    padding: 55px 25px 0;
}

.footer-grid {
    max-width: 1050px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 55px;
    padding-bottom: 45px;
}

.footer-block {
    text-align: left;
}

.footer-block h3 {
    margin: 0 0 16px;
    color: #38bdf8;
    font-size: 19px;
}

.footer-block p {
    margin: 0 0 10px;
    color: #cbd5e1;
    line-height: 1.7;
    font-size: 15px;
}

.footer-block a {
    display: block;
    color: #cbd5e1;
    text-decoration: none;
    margin-bottom: 12px;
    line-height: 1.5;
    font-size: 15px;
    transition: 0.25s;
}

.footer-block a:hover {
    color: #38bdf8;
}

.footer-bottom {
    max-width: 1050px;
    margin: 0 auto;
    padding: 18px 0 20px;
    border-top: 1px solid rgba(255,255,255,0.12);
    text-align: center;
    color: #94a3b8;
    font-size: 13px;
}


/* =================================
   Footer — მობილური
   ================================= */

@media (max-width: 700px) {

    .site-footer {
        padding: 45px 20px 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding-bottom: 30px;
    }

    .footer-block {
        text-align: center;
    }

    .footer-block h3 {
        font-size: 18px;
    }

    .footer-bottom {
        padding-top: 16px;
        font-size: 12px;
    }

}


/* ========================================
   სასარგებლო ბმულების ლოგოები
======================================== */

.resource-links a {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 10px 12px;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.25s;
}

.resource-links a:hover {
    background: rgba(56, 189, 248, 0.08);
    transform: translateX(4px);
}

.resource-logo {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;

    object-fit: contain;

    background: #ffffff;
    border-radius: 7px;

    padding: 4px;

    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.20);
}

.resource-name {
    flex: 1;
    line-height: 1.45;
}

@media (max-width: 600px) {

    .resource-logo {
        width: 30px;
        height: 30px;
        flex-basis: 30px;
    }

    .resource-links a {
        gap: 10px;
        padding: 9px 8px;
    }

}

/* მთავარი გვერდის მომსახურების ბარათები */

.main-service-card.law-card,
.main-service-card.electric-card {
    background: #101010;
    color: #ffffff;
}

./* =========================================
   მთავარი გვერდი — PREMIUM SERVICE CARDS
   ========================================= */

.main-service-card.law-card,
.main-service-card.electric-card {
    position: relative;

    background-size: cover;
    background-repeat: no-repeat;

    border: 1px solid rgba(245, 158, 11, 0.70);
    border-top: 2px solid rgba(251, 191, 36, 0.95);
    border-bottom: 3px solid rgba(180, 83, 9, 0.75);

    border-radius: 16px;

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.50),
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 0 16px rgba(245, 158, 11, 0.13);

    overflow: hidden;

    transition:
        transform 0.30s ease,
        box-shadow 0.30s ease,
        border-color 0.30s ease;
}


/* ⚖️ საადვოკატო მომსახურება */

.main-service-card.law-card {
    background-image:
        linear-gradient(
            to bottom,
            rgba(5, 15, 30, 0.18) 0%,
            rgba(5, 15, 30, 0.45) 42%,
            rgba(5, 15, 30, 0.92) 72%,
            rgba(5, 15, 30, 0.98) 100%
        ),
        url("images/law-card-bg.jpg");

    background-position: center 25%;
}


/* ⚡ ნათება / ელექტრო სერვისი */

.main-service-card.electric-card {
    background-image:
        linear-gradient(
            to bottom,
            rgba(5, 15, 30, 0.18) 0%,
            rgba(5, 15, 30, 0.45) 42%,
            rgba(5, 15, 30, 0.92) 72%,
            rgba(5, 15, 30, 0.98) 100%
        ),
        url("images/electric-card-bg.jpg");

    background-position: center 25%;
}


/* ბარათის მოძრაობა */

.main-service-card.law-card:hover,
.main-service-card.electric-card:hover {
    transform: translateY(-7px);

    border-color: rgba(251, 191, 36, 1);

    box-shadow:
        0 18px 38px rgba(0, 0, 0, 0.60),
        inset 0 1px 0 rgba(255, 255, 255, 0.10),
        0 0 24px rgba(245, 158, 11, 0.24);
}

/* მთავარი გვერდის PREMIUM ბარათების ზომა */

.main-service-card.law-card,
.main-service-card.electric-card {
    min-height: 430px;
    padding: 38px 32px 32px;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}


/* სათაურები */

.main-service-card.law-card h2,
.main-service-card.electric-card h2 {
    color: #ffffff;

    font-size: 25px;
    line-height: 1.3;

    margin-bottom: 14px;

    text-shadow:
        0 2px 4px rgba(0, 0, 0, 1),
        0 0 12px rgba(0, 0, 0, 0.90);
}


/* აღწერის ტექსტი */

.main-service-card.law-card p,
.main-service-card.electric-card p {
    color: #d5deea;

    font-size: 16px;
    line-height: 1.65;

    text-shadow:
        0 2px 4px rgba(0, 0, 0, 1);
}


/* ბარათების პატარა ზედა სიმბოლო */

.main-service-card.law-card .service-icon,
.main-service-card.electric-card .service-icon {
    color: #fbbf24;
}


/* ვრცლად */

.main-service-card.law-card > span,
.main-service-card.electric-card > span {
    color: #fbbf24;
    font-weight: 700;

    margin-top: 18px;

    text-shadow:
        0 2px 4px rgba(0, 0, 0, 0.90);
}

/* =========================================
   მთავარი ბარათები — ტექსტის საბოლოო განლაგება
   ========================================= */

.main-service-card.law-card,
.main-service-card.electric-card {
    min-height: 430px;

    padding:
        210px
        32px
        30px;

    justify-content: flex-start;
}


/* სიმბოლოები ⚖ / ⚡ */

.main-service-card.law-card .service-icon,
.main-service-card.electric-card .service-icon {
    font-size: 30px;
    margin-bottom: 10px;
    color: #fbbf24;
}


/* სათაური */

.main-service-card.law-card h2,
.main-service-card.electric-card h2 {
    font-size: 24px;
    margin: 0 0 12px;
}


/* აღწერა */

.main-service-card.law-card p,
.main-service-card.electric-card p {
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 18px;
}

.main-service-card.law-card h2,
.main-service-card.electric-card h2 {
    color: #ffffff;
}

.main-service-card.law-card p,
.main-service-card.electric-card p {
    color: #cbd5e1;
}

.main-service-card.law-card span,
.main-service-card.electric-card span {
    color: #ffffff;
}

/* ========================================
   LAW - მეშვიდე ბარათი და მობილური
======================================== */

/* კომპიუტერზე მეშვიდე ბარათი ცენტრში */
.law-section .cards .card:last-child {
    grid-column: 2;
}

/* ტელეფონზე ყველა ბარათი ერთ სვეტად */
@media (max-width: 600px) {

    .law-section .cards {
        grid-template-columns: 1fr;
    }

    .law-section .cards .card:last-child {
        grid-column: auto;
    }
}

/* მთავარი გვერდი — ბარათების საბოლოო ზომა */

.main-services {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.main-service-card.law-card,
.main-service-card.electric-card {
    min-height: 480px;
    padding: 235px 34px 32px;
}


/* „გაიგე მეტი“ — PREMIUM ღილაკი */

/* „გაიგე მეტი“ — PREMIUM ღილაკი */

.main-service-card.law-card > span,
.main-service-card.electric-card > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 180px;
    min-height: 46px;

    margin: 22px auto 0;
    padding: 0 24px;

    color: #fbbf24;
    background: rgba(5, 15, 30, 0.78);

    border: 1px solid rgba(251, 191, 36, 0.80);
    border-radius: 10px;

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 4px 12px rgba(0, 0, 0, 0.30),
        0 0 10px rgba(245, 158, 11, 0.10);

    font-weight: 700;

    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.main-service-card.law-card:hover > span,
.main-service-card.electric-card:hover > span {
    transform: translateY(-2px);

    background: rgba(245, 158, 11, 0.14);
    border-color: #fbbf24;

    box-shadow:
        0 6px 16px rgba(0, 0, 0, 0.38),
        0 0 16px rgba(245, 158, 11, 0.25);
}

.main-service-card.law-card:hover > span,
.main-service-card.electric-card:hover > span {
    transform: translateY(-2px);

    background: rgba(245, 158, 11, 0.13);
    border-color: #fbbf24;

    box-shadow:
        0 6px 16px rgba(0, 0, 0, 0.38),
        0 0 16px rgba(245, 158, 11, 0.22);
}

/* =========================================
   მთავარი გვერდი — ბარათების საბოლოო ჩარჩო
   ========================================= */

.main-service-card.law-card,
.main-service-card.electric-card {
    border: 1px solid rgba(251, 191, 36, 0.78);
    border-top: 2px solid rgba(251, 191, 36, 0.95);

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.48),
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 0 14px rgba(245, 158, 11, 0.12);
}

.main-service-card.law-card:hover,
.main-service-card.electric-card:hover {
    border-color: #fbbf24;

    box-shadow:
        0 18px 38px rgba(0, 0, 0, 0.58),
        inset 0 1px 0 rgba(255, 255, 255, 0.10),
        0 0 22px rgba(245, 158, 11, 0.24);
}

/* =========================================
   MOBILE HAMBURGER MENU
   ========================================= */

/* კომპიუტერზე hamburger დამალულია */
.menu-toggle {
    display: none;
}


/* ტელეფონი */
@media (max-width: 600px) {

    header {
        position: relative;
        min-height: 70px;
        padding: 12px 20px;

        display: flex;
        align-items: center;
        justify-content: space-between;
    }


    /* GICAV.ge მარცხნივ */
    header .logo {
        position: relative;
        z-index: 1002;
    }


    /* ☰ ღილაკი */
    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;

        width: 44px;
        height: 44px;

        padding: 0;

        background: rgba(15, 23, 42, 0.95);

        color: #38bdf8;
        font-size: 27px;
        line-height: 1;

        border: 1px solid rgba(56, 189, 248, 0.45);
        border-radius: 8px;

        cursor: pointer;

        position: relative;
        z-index: 1002;
    }


    /* ჩვეულებრივი მენიუ დამალულია */
    header nav {
        display: none;

        position: absolute;
        top: 100%;
        left: 0;
        right: 0;

        padding: 12px 20px 18px;

        background: rgba(7, 16, 31, 0.98);

        border-top: 1px solid rgba(56, 189, 248, 0.20);
        border-bottom: 1px solid rgba(56, 189, 248, 0.25);

        box-shadow: 0 12px 25px rgba(0, 0, 0, 0.45);

        z-index: 1001;
    }


    /* ეს კლასი მენიუს გახსნის */
    header nav.active {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }


    header nav a {
        display: block;

        padding: 13px 8px;

        text-align: center;

        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    }


    header nav a:last-child {
        border-bottom: none;
    }
}