/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
:root {
    --navy: #1a2e4a;
    --navy-dark: #0f1e31;
    --orange: #d4820a;
    --orange-light: #f0a020;
    --gray-bg: #f5f6f8;
    --gray-border: #e0e4ea;
    --text: #1a1a1a;
    --text-light: #555;
}
body {
    font-family: 'Noto Sans Georgian', 'Segoe UI', Arial, sans-serif;
    color: var(--text);
    background: #fff;
    font-size: 15px;
    line-height: 1.65;
    padding-bottom: 80px;
}
img {
    max-width: 100%;
    display: block;
}
a {
    text-decoration: none;
    color: inherit;
}
ul {
    list-style: none;
}

/* ===== HEADER ===== */
.site-header {
    background: var(--navy-dark);
    padding: 10px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 70px;
    position: sticky;
    top: 0;
    z-index: 200;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
    gap: 20px;
    flex-wrap: wrap;
    row-gap: 8px;
}
.logo img {
    height: 44px;
    width: auto;
}
.main-nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
}
.main-nav a {
    white-space: nowrap;
    color: #fff;
    font-weight: 600;
    font-size: 13px;
    transition: color 0.2s;
}
.main-nav a:hover {
    color: var(--orange-light);
}
.header-right {
    display: flex;
    align-items: center;
    gap: 14px;
}
.h-phone {
    color: #fff;
    font-weight: 700;
    font-size: 16px;
}
.h-phone:hover {
    color: var(--orange-light);
}
.h-wa {
    background: #25d366;
    color: #fff;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
}
.lang-switch {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 4px 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    transition: 0.2s;
}
.lang-switch:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.35);
}
.hero-content {
    position: relative;
    z-index: 1;
    padding: 50px 30px;
    max-width: 700px;
}
.hero-badge {
    display: inline-block;
    background: var(--orange);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 2px;
    margin-bottom: 16px;
}
.hero h1 {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 12px;
}
.hero-sub {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    margin-bottom: 28px;
    max-width: 520px;
}
.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--orange);
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    padding: 14px 32px;
    border-radius: 4px;
    transition: background 0.2s;
}
.btn-primary:hover {
    background: var(--orange-light);
}
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25d366;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    padding: 14px 32px;
    border-radius: 4px;
}
.btn-secondary:hover {
    background: #1da851;
}

/* ===== TRUST BAR ===== */
.trust-bar {
    background: var(--navy);
    padding: 16px 24px;
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}
.trust-item {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.trust-item strong {
    color: var(--orange-light);
    font-size: 18px;
}

/* ===== SECTION ===== */
.section-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 24px;
}
.section-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 8px;
}
.section-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 32px;
    line-height: 1.3;
}

/* ===== SERVICES CARDS ===== */
.services-bg {
    background: var(--gray-bg);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}
.service-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.service-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}
.service-card h3 {
    padding: 14px 16px 4px;
    font-size: 17px;
    color: var(--navy);
}
.service-card p {
    padding: 0 16px 18px;
    font-size: 14px;
    color: var(--text-light);
}

/* ===== PROBLEMS ===== */
.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}
.problem-item {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid var(--gray-border);
    transition: 0.2s;
}
.problem-item:hover {
    border-color: var(--orange);
}
.problem-icon {
    font-size: 28px;
    display: block;
    margin-bottom: 8px;
}
.problem-item h3 {
    font-size: 16px;
    color: var(--navy);
    margin-bottom: 4px;
}
.problem-item p {
    font-size: 14px;
    color: var(--text-light);
}

/* ===== WHY US ===== */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.why-photo {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}
.why-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.why-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
}
.why-list li::before {
    content: "✓";
    background: var(--orange);
    color: #fff;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ===== GALLERY ===== */
.gallery-bg {
    background: var(--gray-bg);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}
.gallery-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    transition: opacity 0.2s;
}
.gallery-grid img:hover {
    opacity: 0.85;
}

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.contact-phone {
    font-size: 40px;
    font-weight: 700;
    color: var(--navy);
    display: block;
    margin: 12px 0 20px;
    line-height: 1;
}
.contact-phone:hover {
    color: var(--orange);
}
.contact-detail {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 6px;
}
.contact-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
}
.contact-photo {
    width: 100%;
    height: 340px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--navy-dark);
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    padding: 30px 20px;
    font-size: 13px;
}
.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}
.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s;
}
.footer-links a:hover {
    color: var(--orange-light);
}

/* ===== FLOATING BAR ===== */
.float-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    z-index: 999;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.2);
}
.float-call {
    flex: 1;
    background: var(--orange);
    color: #fff;
    text-align: center;
    padding: 15px;
    font-size: 16px;
    font-weight: 700;
}
.float-wa {
    flex: 1;
    background: #25d366;
    color: #fff;
    text-align: center;
    padding: 15px;
    font-size: 16px;
    font-weight: 700;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .site-header {
        padding: 0 16px;
        flex-wrap: wrap;
        height: auto;
        padding-top: 10px;
        padding-bottom: 10px;
        gap: 10px;
    }
    .main-nav ul {
        gap: 14px;
        flex-wrap: wrap;
    }
    .main-nav a {
        font-size: 13px;
    }
    .h-wa {
        display: none;
    }
    .hero h1 {
        font-size: 26px;
    }
    .hero-content {
        padding: 40px 20px;
    }
    .section-wrap {
        padding: 40px 16px;
    }
    .why-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .why-photo,
    .contact-photo {
        height: 240px;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery-grid img {
        height: 150px;
    }
    .trust-bar {
        gap: 16px;
        padding: 12px 16px;
    }
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
    .contact-phone {
        font-size: 30px;
    }
    .footer-links {
        gap: 14px;
    }
}
@media (max-width: 480px) {
    .main-nav ul {
        gap: 10px;
    }
    .main-nav a {
        font-size: 12px;
    }
    .hero h1 {
        font-size: 22px;
    }
    .hero-actions .btn-primary,
    .hero-actions .btn-secondary {
        padding: 12px 18px;
        font-size: 14px;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
    .gallery-grid img {
        height: 120px;
    }
    .problems-grid {
        grid-template-columns: 1fr 1fr;
    }
}
/* ===== PAGE HERO (service pages) ===== */
.page-hero {
    background: var(--navy-dark);
    padding: 50px 24px;
    text-align: center;
}
.page-hero h1 {
    color: #fff;
    font-size: 32px;
    line-height: 1.25;
}
.page-hero p {
    color: rgba(255, 255, 255, 0.7);
    max-width: 640px;
    margin: 12px auto 0;
}
.page-hero .hero-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 24px;
}

/* ===== CONTENT GRID + SIDEBAR ===== */
.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}
.sidebar-box {
    background: var(--gray-bg);
    padding: 24px;
    border-radius: 8px;
    position: sticky;
    top: 90px;
}
.sidebar-box h3 {
    color: var(--navy);
    font-size: 18px;
    margin-bottom: 12px;
}
.sidebar-box .note {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 16px;
}
.sidebar-call {
    display: block;
    background: var(--orange);
    color: #fff;
    text-align: center;
    padding: 14px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 18px;
}
.sidebar-wa {
    display: block;
    background: #25d366;
    color: #fff;
    text-align: center;
    padding: 12px;
    border-radius: 4px;
    font-weight: 600;
    margin-top: 10px;
}
.sidebar-hours {
    font-size: 13px;
    color: var(--text-light);
    text-align: center;
    border-top: 1px solid var(--gray-border);
    margin-top: 20px;
    padding-top: 16px;
}

/* ===== ICON CARDS ===== */
.icon-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.icon-card {
    background: #fff;
    padding: 24px;
    border-radius: 8px;
    border: 1px solid var(--gray-border);
}
.icon-card .ic {
    font-size: 32px;
}
.icon-card h3 {
    color: var(--navy);
    margin: 8px 0 4px;
    font-size: 17px;
}
.icon-card p {
    color: var(--text-light);
    font-size: 14px;
}
.icon-card .price {
    font-weight: 700;
    color: var(--orange);
    margin-top: 8px;
}

/* ===== PROBLEM LIST (service pages) ===== */
.problem-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.problem-list li {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 12px;
    background: var(--gray-bg);
    border-radius: 6px;
}
.problem-list .p-ic {
    font-size: 24px;
    flex-shrink: 0;
}

/* ===== STEPS ===== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.step {
    background: #fff;
    border: 1px solid var(--gray-border);
    border-radius: 8px;
    padding: 20px;
}
.step .num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--orange);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 10px;
}
.step h3 {
    font-size: 15px;
    color: var(--navy);
    margin-bottom: 4px;
}
.step p {
    font-size: 13px;
    color: var(--text-light);
}

/* ===== CTA BAND ===== */
.cta-band {
    margin-top: 40px;
    padding: 28px 24px;
    background: var(--orange);
    color: #fff;
    border-radius: 8px;
    text-align: center;
}
.cta-band .big {
    font-size: 18px;
    font-weight: 700;
}
.cta-band .btn-white {
    display: inline-block;
    margin-top: 12px;
    background: #fff;
    color: var(--orange);
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 18px;
}

/* ===== FAQ ===== */
.faq-item {
    border: 1px solid var(--gray-border);
    border-radius: 8px;
    margin-bottom: 12px;
    background: #fff;
}
.faq-item summary {
    cursor: pointer;
    padding: 16px 44px 16px 20px;
    font-weight: 600;
    color: var(--navy);
    list-style: none;
    position: relative;
}
.faq-item summary::-webkit-details-marker {
    display: none;
}
.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 20px;
    top: 14px;
    color: var(--orange);
    font-size: 22px;
    font-weight: 700;
}
.faq-item[open] summary::after {
    content: "–";
}
.faq-a {
    padding: 0 20px 16px;
    color: var(--text-light);
    font-size: 14px;
}

/* ===== REVIEWS ===== */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.review-card {
    background: #fff;
    border: 1px solid var(--gray-border);
    border-radius: 8px;
    padding: 20px;
}
.review-stars {
    color: #f5a623;
    letter-spacing: 3px;
    margin-bottom: 8px;
    font-size: 15px;
}
.review-card p {
    font-size: 14px;
}
.review-meta {
    margin-top: 12px;
    font-size: 13px;
    color: var(--text-light);
    font-weight: 600;
}

/* ===== LEAD FORM ===== */
.lead-band {
    background: var(--navy);
}
.lead-form h3 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 6px;
}
.lead-form .sub {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    font-size: 14px;
}
.lead-row {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 12px;
}
.lead-form input {
    padding: 14px 16px;
    border-radius: 4px;
    border: none;
    font-family: inherit;
    font-size: 15px;
    width: 100%;
}
.lead-form button {
    background: var(--orange);
    color: #fff;
    border: none;
    padding: 14px 28px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 15px;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}
.lead-form button:hover {
    background: var(--orange-light);
}
.lead-form .privacy {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    margin-top: 12px;
}

/* ===== RELATED LINKS ===== */
.related-links {
    background: var(--gray-bg);
    padding: 24px;
    border-radius: 8px;
    margin-top: 40px;
}
.related-links h2 {
    font-size: 18px;
    color: var(--navy);
    margin-bottom: 14px;
}
.related-links ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.related-links li a {
    display: inline-block;
    background: #fff;
    border: 1px solid var(--gray-border);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    transition: 0.2s;
}
.related-links li a:hover {
    border-color: var(--orange);
    color: var(--orange);
}

/* ===== PRICE TABLE ===== */
.price-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 8px;
}
.price-table th,
.price-table td {
    padding: 12px 14px;
    border: 1px solid var(--gray-border);
    text-align: left;
    font-size: 14px;
}
.price-table th {
    background: var(--navy);
    color: #fff;
    font-weight: 600;
}
.price-table tr:nth-child(even) {
    background: var(--gray-bg);
}
.price-table .pt-price {
    font-weight: 700;
    color: var(--orange);
    white-space: nowrap;
}

/* ===== SEO TEXT BLOCK ===== */
.seo-text {
    max-width: 800px;
}
.seo-text h2 {
    font-size: 22px;
    color: var(--navy);
    margin: 28px 0 10px;
}
.seo-text p {
    margin-bottom: 12px;
    color: var(--text);
}

/* ===== RESPONSIVE ADDITIONS ===== */
@media (max-width: 900px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
    .steps-grid {
        grid-template-columns: 1fr 1fr;
    }
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .icon-cards {
        grid-template-columns: 1fr;
    }
    .lead-row {
        grid-template-columns: 1fr;
    }
    .page-hero h1 {
        font-size: 24px;
    }
}
@media (max-width: 480px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== CLEAN ACCENTS (no icons) ===== */
.problem-list li {
    border-left: 3px solid var(--orange);
}
.problem-item {
    border-left: 3px solid var(--orange);
}
.icon-card {
    border-top: 3px solid var(--orange);
}
.icon-card h3 {
    margin-top: 0;
}
.sidebar-box {
    border-top: 3px solid var(--orange);
}
