body {
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #fff;
    color: #222;
}

/* Top Bar */
.top-bar {
    background: #111;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    height: 38px;
    font-size: 0.95em;
}

.top-bar-left,
.top-bar-center,
.top-bar-right {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 38px;
    gap: 16px;
}

.top-bar-left span,
.top-bar-right span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar a {
    color: var(--brand-green);
    text-decoration: none;
    font-size: 1.1em;
    transition: color 0.2s;
}

.top-bar a:hover {
    color: #fff;
}

/* Header */
header {
    background: #fff;
    padding: 16px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 50;
}

.main-header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.logo-area {
    flex-shrink: 0;
}


/* Sections */
.section {
    padding: 60px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Hero Home Section */
.home {
    background: #fff;
    text-align: left;
    padding: 60px 0;
}

.hero-home {
    background: #fff;
}

.hero-container {
    display: flex;
    gap: 48px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.hero-left {
    flex: 1;
}

.hero-left h1 {
    font-size: 3.6em;
    font-weight: 700;
    line-height: 1.3;
    color: #0b2324;
    margin: 0 0 20px 0;
}

.hero-green {
    color: #39B54A;
}

.hero-desc {
    font-size: 1.1em;
    color: #666;
    line-height: 1.8;
    margin-bottom: 28px;
}

.hero-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--brand-green);
    color: #fff;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05em;
    transition: background 0.2s, transform 0.2s;
    border: none;
    cursor: pointer;
}

.hero-cta-btn:hover {
    background: var(--brand-green);
    transform: translateY(-2px);
}

.hero-cta-btn i {
    font-size: 1em;
}

.hero-right {
    flex: 1;
}

.hero-img-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.hero-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

/* Services Section */
.services {
    background: #fff;
    text-align: center;
    padding: 60px 0;
}

.services-heading {
    font-size: 2.2em;
    font-weight: 700;
    margin-bottom: 12px;
}

.services-title-black {
    color: #181d23;
}

.services-title-green {
    color: var(--brand-green);
    letter-spacing: 1px;
}

.services-subtitle {
    font-size: 1.1em;
    color: #666;
    margin-bottom: 40px;
}

.service-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 40px;
}

.service-card {
    background: #fff;
    border: 2px solid var(--brand-green);
    border-radius: 12px;
    padding: 28px 24px 20px 24px;
    text-align: center;
    flex: 0 1 280px;
    box-shadow: 0 2px 9px 0 rgba(57,181,74,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(57,181,74,0.16);
}

.service-card-highlight {
    border-color: var(--brand-green);
    /* background: #f3fff3; */
}

.service-icon-circle {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #e7faec;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}

.service-icon-circle i {
    font-size: 2em;
    color: var(--brand-green);
}

.service-card h3 {
    font-size: 1.3em;
    color: #0b2324;
    margin: 16px 0 12px 0;
    font-weight: 700;
}

.service-desc {
    font-size: 0.98em;
    color: #666;
    line-height: 1.6;
    margin-bottom: 16px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 16px 0;
    text-align: left;
}

.service-features li {
    padding: 8px 0;
    color: #555;
    font-size: 0.95em;
}

.service-features li::before {
    content: "✓ ";
    color: var(--brand-green);
    font-weight: bold;
    margin-right: 8px;
}

.service-learn-btn {
    background: var(--brand-green);
    color: #fff;
    border: none;
    padding: 10px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1em;
    font-weight: 600;
    transition: background 0.2s;
    margin-top: 12px;
}

.service-learn-btn:hover {
    background: var(--brand-green);
}

/* Products Section */
.products {
    background: #f3fff3;
    padding: 60px 0;
}

.featured-heading {
    font-size: 2.2em;
    font-weight: 700;
    text-align: center;
    margin-bottom: 12px;
}

.featured-title-black {
    color: #181d23;
}

.featured-title-green {
    color: var(--brand-green);
}

.featured-desc {
    text-align: center;
    font-size: 1.05em;
    color: #666;
    margin-bottom: 40px;
}

.featured-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 26px;
    margin-top: 32px;
}

.featured-product-card {
    background: #fff;
    border: 1.5px solid var(--brand-green);
    border-radius: 11px;
    padding: 16px 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(57,181,74,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.featured-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(57,181,74,0.12);
}

.fp-img-wrap {
    position: relative;
    margin-bottom: 12px;
    overflow: hidden;
    border-radius: 8px;
}

.fp-img-wrap img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.fp-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.8em;
    font-weight: 600;
    color: #fff;
}

.cat-wash {
    background: var(--brand-green);
}

.cat-garage {
    background: #ff9800;
}

.cat-fuel {
    background: #2196f3;
}

.fp-title {
    font-size: 1.05em;
    font-weight: 600;
    color: #0b2324;
    margin: 8px 0;
}

.fp-desc {
    font-size: 0.9em;
    color: #666;
    line-height: 1.4;
}

/* About Section */
.about {
    background: #fff;
    padding: 60px 0;
}

.about-main {
    background: #fff;
}

.about-heading {
    font-size: 2.2em;
    font-weight: 700;
    text-align: center;
    margin-bottom: 12px;
}

.about-green {
    color: var(--brand-green);
}

.about-subhead {
    text-align: center;
    font-size: 1.05em;
    color: #666;
    margin-bottom: 40px;
}

.about-flex {
    display: flex;
    gap: 48px;
    align-items: flex-start;
    margin-bottom: 40px;
    /* ensure vertical alignment on large screens */
}

.about-img-wrap {
    flex: 0 0 52%;
    min-width: 300px;
    max-width: 720px;
}

.about-img {
    width: 100%;
    border-radius: 12px;
    display: block;
    object-fit: cover;
    box-shadow: 0 18px 40px rgba(11,35,36,0.08);
    border: 1px solid rgba(0,0,0,0.04);
}

/* content column */
.about-content-wrap {
    flex: 1;
    padding-top: 8px;
}

/* heading / why choose us */
.about-why-head {
    font-size: 1.8em;
    font-weight: 700;
    color: #0b2324;
    margin-bottom: 16px;
}

/* feature list styling (icon + text) */
.about-features {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 8px;
}

.about-feature {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.about-feature i {
    font-size: 1.05em;
    color: #fff;
    background: #e7faec;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--brand-green);
    box-shadow: 0 6px 18px rgba(57,181,74,0.08);
}

.about-feature b {
    color: #0b2324;
    display: block;
    font-weight: 700;
    margin-bottom: 4px;
}

.about-feature span {
    display: block;
    font-size: 0.95em;
    color: #666;
    line-height: 1.6;
}

/* counters/cards row (large centered cards like mock) */
.about-counters-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-top: 40px;
}

.about-counter-card {
    background: #fff;
    padding: 26px 18px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(11,35,36,0.04);
    box-shadow: 0 12px 30px rgba(11,35,36,0.06);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.about-counter-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(11,35,36,0.08);
}

.about-counter {
    font-size: 1.8em;
    font-weight: 800;
    color: var(--brand-green);
    margin-bottom: 6px;
}

.about-counter-plus {
    font-size: 1em;
    color: var(--brand-green);
    margin-left: 6px;
    vertical-align: super;
    font-weight: 700;
}

.about-counter-label {
    font-size: 0.95em;
    color: #666;
    margin-top: 8px;
    font-weight: 600;
}

/* responsive: stack image and content on smaller screens and shrink counters */
@media (max-width: 992px) {
    .about-flex {
        flex-direction: column;
        gap: 22px;
    }

    .about-img-wrap {
        order: 0;
        width: 100%;
        flex: 0 0 auto;
    }

    .about-content-wrap {
        order: 1;
    }

    .about-counters-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .main-header-container,
    .hero-container,
    .hero-img-card,
    .container,
    .contact-touch-block,
    .contact-main-container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .about-counters-row {
        grid-template-columns: 1fr;
    }

    .about-why-head {
        font-size: 1.45em;
    }

    .about-counter {
        font-size: 1.5em;
    }
}

/* Testimonials Section */
.testimonials-section {
    background: #fff;
    padding: 60px 0;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.testimonials-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.testimonials-title {
    font-size: 1.3em;
    font-weight: 700;
    line-height: 1.4;
    max-width: 600px;
}

.test-title-line {
    display: block;
    color: #0b2324;
}

.test-title-green {
    display: block;
    color: var(--brand-green);
}

.testimonials-nav {
    display: flex;
    gap: 12px;
}

.test-nav-btn {
    width: 44px;
    height: 44px;
    border: 2px solid var(--brand-green);
    background: #fff;
    color: var(--brand-green);
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.1em;
    transition: all 0.2s;
}

.test-nav-btn:hover {
    background: var(--brand-green);
    color: #fff;
}

.testimonials-carousel {
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    gap: 28px;
    transition: transform 0.4s ease;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - -86px);
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 10px 6px;
    text-align: center;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 16px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--brand-green);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content {
    text-align: center;
}

.testimonial-name {
    font-size: 1.15em;
    font-weight: 700;
    color: #0b2324;
    margin: 0;
}

.testimonial-title {
    font-size: 0.95em;
    color: var(--brand-green);
    margin: 4px 0 12px 0;
}

.testimonial-quote {
    font-size: 1em;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Contact Touch Section */
.contact-touch-section {
    background: #f3fff3;
    padding: 60px 0;
}

.contact-touch-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-touch-header h2 {
    font-size: 2.2em;
    font-weight: 700;
    margin-bottom: 12px;
}

.contact-touch-header p {
    font-size: 1.05em;
    color: #666;
}

.c-black {
    color: #181d23;
}

.c-green {
    color: var(--brand-green);
}

.contact-touch-block {
    display: flex;
    gap: 48px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    align-items: flex-start;
}

.contact-touch-left {
    flex: 1;
}

.touch-logo-card {
    background: #fff;
    padding: 56px 48px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(2,8,12,0.06);
    border: 1px solid rgba(2,8,12,0.03);
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.touch-logo-img {
    width: 160px;
    margin: 0 auto 18px auto;
}

.touch-logo-title {
    font-size: 1.45em;
    font-weight: 800;
    color: #0b2324;
    margin: 18px 0 8px 0;
}

.touch-logo-desc {
    font-size: 0.98em;
    color: #6b7a80;
    line-height: 1.8;
    max-width: 420px;
    margin: 0 auto;
}

.contact-touch-form {
    flex: 1;
    background: transparent;
    padding: 0;
    border-radius: 6px;
    box-shadow: none;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 18px;
    position: relative;
}

.input-group label {
    font-size: 0.95em;
    font-weight: 700;
    color: #1f4442;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-touch-form input,
.contact-touch-form textarea {
    padding: 14px 18px;
    border-radius: 8px;
    border: 1px solid #e6eaec;
    font-size: 1em;
    background: #fff;
    color: #223133;
    font-family: inherit;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.contact-touch-form input:focus,
.contact-touch-form textarea:focus {
    outline: none;
    border-color: var(--brand-green);
    box-shadow: 0 8px 20px rgba(34,197,94,0.06);
}

.touch-send-btn {
    background: linear-gradient(180deg,var(--brand-green),var(--brand-green));
    color: #fff;
    border: none;
    padding: 14px 22px;
    border-radius: 8px;
    font-size: 1.05em;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 10px 28px rgba(32,160,86,0.12);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.touch-send-btn:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(32,160,86,0.16); }

/* icons in labels */
.input-group label i { color: var(--brand-green); font-size: 16px; }

/* make the textarea taller like the screenshot */
.contact-touch-form textarea { min-height: 160px; }

/* Layout tweaks: left card and form widths */
.contact-touch-left { flex: 0 0 52%; }
.contact-touch-form { flex: 0 0 44%; }

@media (max-width: 900px) {
    .contact-touch-block { flex-direction: column; }
    .contact-touch-left, .contact-touch-form { flex: 1 1 100%; }
    .touch-logo-card { min-height: auto; padding: 32px; }
}

/* Footer Section */
.contact-main-section {
    background: #0b2324;
    color: #fff;
    padding: 40px 0 0 0;
    position: relative;
    overflow: hidden;
}

/* removed background glow helper - not required */

/* Footer columns layout to match design */
.contact-main-container .footer-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.contact-main-container .footer-left { flex: 1.6; }
.contact-main-container .footer-links { flex: 1; }
.contact-main-container .footer-services { flex: 1; }
.contact-main-container .footer-follow { flex: 1; align-items: flex-start; }

.footer-brand {
    font-size: 2em;
    color: #39B54A;
    font-weight: 800;
}

.footer-desc {
    color: #98a2ab;
    max-width: 360px;
    line-height: 1.8;
}

.footer-section-title {
    font-size: 1.05em;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-nav-list li a {
    color: #9aa5ad;
    text-decoration: none;
    font-size: 0.98em;
}
.footer-nav-list li a:hover { color: #fff; }

.footer-social-text { color: #98a2ab; font-size: 0.95em; }

/* Toned circular social icons like design */
.footer-social-icons a {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
    color: #cfe9d1;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.03);
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.footer-social-icons a i { font-size: 18px; }
.footer-social-icons a:hover {
    transform: translateY(-4px);
    background: rgba(255,255,255,0.06);
    box-shadow: 0 8px 24px rgba(0,0,0,0.45);
}

/* Footer bottom: split copyright and policy links */
.footer-horizontal-line {
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    z-index: 0;
}

.footer-copyright {
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding: 20px 24px;
    font-size: 0.95em;
    color: #98a2ab;
    background: rgba(8,18,20,0.95);
}
.footer-copyright .policies {
    display:flex;gap:18px;align-items:center;
}
.footer-copyright a { color: #98a2ab; text-decoration:none; }
.footer-copyright a:hover { color:#fff; }

/* removed .bg-glow-center and .bg-glow-right - decorative glows removed */

.contact-main-container {
    display: flex;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 24px;
    position: relative;
    z-index: 1;
}

.contact-main-left {
    flex: 1;
    min-width: 200px;
}

.footer-logo {
    width: 190px;
    margin-bottom: 16px;
}

.footer-brand {
    font-size: 2em;

    font-weight: 700;
    color: #22c55e;
    margin-bottom: 12px;
}

.footer-desc {
    font-size: 0.95em;
    line-height: 1.6;
    color: #9aa6ad;
    max-width: 420px;
}

.contact-main-center {
    flex: 1;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-link-section {
    flex: 1;
}

.footer-section-title {
    font-size: 1.05em;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
}

.footer-link-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-link-section ul li {
    padding: 6px 0;
    color: #9aa5ad;
    font-size: 0.95em;
}

.footer-link-section ul li a {
    color: #9aa5ad;
    text-decoration: none;
    transition: color 0.18s;
}

.footer-link-section ul li a:hover {
    color: #ffffff;
}

/* Footer Social Block */
.footer-social-block {
    margin-top: 24px;
    padding-top: 12px;
}

.footer-social-title {
    font-size: 1.05em;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.footer-social-text {
    font-size: 0.95em;
    color: #9aa6ad;
    margin-bottom: 12px;
}

.footer-social-icons {
    display: flex;
    gap: 12px;
    justify-content: flex-start;
    align-items: center;
    margin-top: 10px;
    z-index: 3;
}

.footer-social-icons a {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
    text-decoration: none;
    transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
    box-shadow: inset 0 -2px 6px rgba(0,0,0,0.35);
    color: #ffffff;
    opacity: 0.95;
}

.footer-social-icons a i {
    font-size: 16px;
    color: #ffffff;
}

.footer-social-icons a:hover {
    transform: translateY(-4px);
    background: rgba(255,255,255,0.06);
    box-shadow: 0 8px 24px rgba(0,0,0,0.45);
}

.footer-social-icons a:focus {
    outline: 3px solid rgba(34,197,94,0.12);
    outline-offset: 2px;
}

.contact-main-right {
    flex: 1;
    min-width: 200px;
}

.footer-box-img {
    width: 100%;
    height: 180px;
    background: rgba(34,197,94,0.06);
    border-radius: 12px;
    margin-bottom: 20px;
}

.footer-contact-details {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.footer-contact-item i {
    font-size: 1.1em;
    color: #22c55e;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-item span {
    font-size: 0.95em;
    color: #cfe3e7;
}

.footer-contact-item b {
    color: #fff;
    display: block;
}

.footer-horizontal-line {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.06);
    margin: 0;
    width: 100%;
}

.footer-copyright {
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding: 20px 24px;
    font-size: 0.95em;
    color: #768890;
    background: rgba(4,12,16,0.95);
}


/* Reveal Animation Support */
/* Reveal Animation Support */
:root {
    --reveal-ease: cubic-bezier(.2,.9,.2,1);
    --brand-green: #1bba0f;
}

.reveal {
    opacity: 0;
    visibility: hidden;
    transform: translateY(18px) scale(0.98);
    transition: opacity 0.62s var(--reveal-ease), transform 0.62s var(--reveal-ease);
    transition-delay: var(--reveal-delay, 0s);
    will-change: opacity, transform;
}

/* Directional variants */
.reveal[data-reveal="up"] { transform: translateY(22px) scale(0.98); }
.reveal[data-reveal="down"] { transform: translateY(-22px) scale(0.98); }
.reveal[data-reveal="left"] { transform: translateX(-24px) scale(0.98); }
.reveal[data-reveal="right"] { transform: translateX(24px) scale(0.98); }
.reveal[data-reveal="zoom"] { transform: scale(0.96); }

.reveal-visible {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

/* Helpful helpers: stagger children when used on a container */
.reveal-stagger > * {
    opacity: 0;
    transform: translateY(10px);
}
.reveal-stagger.reveal-visible > * {
    opacity: 1;
    transform: none;
    transition: opacity 0.5s var(--reveal-ease), transform 0.5s var(--reveal-ease);
}

/* Small performance-friendly focus for images and cards */
.hero-img, .about-img, .fp-img-wrap img, .testimonial-avatar img {
    backface-visibility: hidden;
    transform-origin: center center;
}

/* Smooth scrolling for in-page anchors */
html {
    scroll-behavior: smooth;
}

/* Top-bar responsiveness */
@media (max-width: 720px) {
    /* layout: email left, phone right; icons centered below (slightly down)
       we use absolute positioning for center icons so they appear below the bar */
    .top-bar {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 8px 14px;
        height: 56px;
        gap: 8px;
    }
    .top-bar-left {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 0.95em;
    }
    .top-bar-right {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 0.95em;
        justify-content: flex-end;
    }
    /* place icons centered and slightly below the bar */
    .top-bar-center {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: calc(67% - 10px);
        display: flex;
        gap: 21px;
        align-items: center;
        background: transparent;
    }
}
.footer-contact-item {
    display: flex;
    gap: 10px;
    max-width: 1200px;

    position: relative;
    z-index: 1;
    justify-content: center;
    margin-top: -125px;
        flex-direction: column;
}

