﻿.data-enlargable{
    cursor: pointer;
}
/* =========================================================
   GLOBAL
========================================================= */
:root {
    --header-total-height: 94px;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

.section {
    padding: 10vh 8vw;
}


.p_cls {
    margin-top: 10px;
}



/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;
    height: 82vh;
    min-height: 620px;
    max-height: 880px;
    padding-top: var(--header-total-height);
    overflow: hidden;
}

.hero-slides {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.9s ease;
}

    .hero-slide:first-child {
        opacity: 1;
    }

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
}

.hero-inner {
    position: relative;
    z-index: 2;
    padding: 14vh 8vw;
}

.hero-eyebrow {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 18px;
    color: #fff !important;
}

.hero-title .line {
    display: block;
    font-size: clamp(2.8rem, 6vw, 4.2rem);
    line-height: 1.05;
    color: #fff !important;
}

/* Look / Stone label */
.hero-meta {
    position: absolute;
    bottom: 24px;
    right: 32px;
    font-size: 13px;
    opacity: 0.85;
}

    .hero-meta .look {
        margin-right: 10px;
    }

/* =========================================================
   GALLERY
========================================================= */

.gallery-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.gallery-eyebrow {
    font-size: 13px;
    opacity: 0.7;
    margin-bottom: 12px;
}

.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 28px;
    margin-bottom: 50px;
}

    .gallery-tabs .tab {
        flex: 0 0 auto;
        white-space: nowrap;
        font-size: 13px;
        padding: 8px 14px;
    }

        .gallery-tabs .tab.active {
            background: #000;
            color: #fff;
            outline: 1px solid #fff;
        }

.gallery-wrapper {
    position: relative;
}

.gallery-set {
    display: none;
    position: relative;
}

    .gallery-set.active {
        display: block;
    }

.gallery-viewport {
    overflow: hidden;
}

.gallery-track {
    display: flex;
    gap: 24px;
    transition: transform 0.6s ease;
}

.gallery-item {
    flex: 0 0 calc((100% - 48px) / 3);
    position: relative;
    overflow: hidden; /* 🔑 REQUIRED for zoom */
}

    /* IMAGE */
    .gallery-item img {
        width: 100%;
        height: 420px;
        object-fit: cover;
        transition: transform 0.8s ease;
    }

    /* TEXT */
    .gallery-item span {
        position: absolute;
        bottom: 16px;
        left: 16px;
        font-size: 14px;
        z-index: 2;
    }

/* DESKTOP HOVER ZOOM */
@media (hover: hover) and (pointer: fine) {
    .gallery-item:hover img {
        transform: scale(1.08);
    }
}




/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1024px) {

    .gallery-item {
        flex: 0 0 calc((100% - 24px) / 2);
    }

        .gallery-item img {
            height: 300px;
        }

    .gallery-tabs {
        overflow-x: auto;
        justify-content: flex-start;
        padding: 0 16px;
    }

        .gallery-tabs::-webkit-scrollbar {
            display: none;
        }
}



@media (max-width: 640px) {

    .gallery-arrow {
        display: none;
    }

    .gallery-viewport {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .gallery-track {
        gap: 16px;
    }

    .gallery-item {
        flex: 0 0 85%;
        scroll-snap-align: start;
    }

        .gallery-item img {
            height: 260px;
        }
}



/* =========================================================
   FEATURED PRODUCT
========================================================= */

.featured {
    padding: 6vh 0;
    background: #0b0b0b;
}

.featured-inner {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 8vw;
    gap: 6vw;
}

/* CONTENT */
.featured-content {
    max-width: 520px;
}

.featured-title {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 20px;
}

.featured-text {
    font-size: 15px;
    opacity: 0.75;
    margin-bottom: 32px;
}

.featured-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 26px;
    background: #fff;
    color: #000;
    font-size: 14px;
    transition: background 0.25s ease, transform 0.25s ease;
}

    .featured-cta:hover {
        background: #eaeaea;
        transform: translateX(4px);
    }

/* IMAGE */
.featured-media {
    overflow: hidden;
}

    .featured-media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

    /* Subtle zoom */
    .featured-media:hover img {
        transform: scale(1.05);
    }

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1024px) {

    .featured-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .featured-media {
        order: -1; /* image first on tablet/mobile */
    }
}

@media (max-width: 640px) {

    .featured {
        padding: 10vh 0;
    }

    .featured-inner {
        padding: 0 6vw;
    }
}




/* =========================================================
   INSPIRATION SLIDER
========================================================= */

.inspiration-slider {
    
}

/* ================= HEADER ================= */

.inspiration-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

    .inspiration-header h2 {
        font-size: 32px;
        font-weight: 500;
    }

/* ================= VIEW TOGGLE ================= */

.view-toggle {
    display: flex;
    gap: 12px;
}

    .view-toggle button {
        background: none;
        border: 1px solid transparent;
        padding: 8px 10px;
        cursor: pointer;
        opacity: 0.6;
    }

        .view-toggle button.active {
            opacity: 1;
            border-color: #fff;
        }

/* ================= FILTERS ================= */

.gallery-filters {
    display: flex;
    gap: 14px;
    margin-bottom: 28px;
}

    .gallery-filters button {
        background: #fff;
        color: #000;
        border: none;
        padding: 6px 14px;
        font-size: 13px;
        cursor: pointer;
    }

        .gallery-filters button.active {
            background: #000;
            color: #fff;
            outline: 1px solid #fff;
        }

/* ================= SLIDER CORE ================= */

.slider-wrapper {
    position: relative;
}

.slider-viewport {
    height: 620px; /* 🔒 ONE HEIGHT */
    overflow-x: auto;
    overflow-y: hidden;
    cursor: grab;
    user-select: none;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

    .slider-viewport.dragging {
        cursor: grabbing;
    }

    .slider-viewport::-webkit-scrollbar {
        display: none;
    }

.slider-viewport {
    scrollbar-width: none;
}

/* ================= TRACK ================= */

.slider-track {
    display: flex;
    gap: 24px;
    height: 100%;
    align-items: stretch;
}

/* ================= ITEM ================= */

.slider-item {
    flex: 0 0 auto;
    height: 100%;
    overflow: hidden;
    background: #111;
}

    .slider-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.8s ease;
    }

/* DESKTOP HOVER ZOOM */
@media (hover: hover) and (pointer: fine) {
    .slider-item:hover img {
        transform: scale(1.08);
    }
}
    /* 🔑 FILTER HIDE */
    .slider-item.hidden {
        display: none !important;
    }

    /* ================= VIEW MODES ================= */

    .slider-track.view-4 .slider-item {
        width: calc((100% - 72px) / 4);
    }

    .slider-track.view-2 .slider-item {
        width: calc((100% - 24px) / 2);
    }

    .slider-track.view-1 .slider-item {
        width: 100%;
    }

    /* Toggle helpers */
    .cls4,
    .cls2,
    .cls1 {
        display: block;
    }

    /* ================= RESPONSIVE ================= */

    .gallery-filters {
        display: flex;
        gap: 12px;
        margin-bottom: 24px;
    }

    /* Tablet & below */
    @media (max-width: 1024px) {
        .inspiration-slider {
            padding: 80px 30px;
        }

        .gallery-filters {
            flex-wrap: nowrap; /* ❌ no wrapping */
            overflow-x: auto; /* ✅ horizontal scroll */
            overflow-y: hidden;
            white-space: nowrap;
            padding-bottom: 6px;
            -webkit-overflow-scrolling: touch;
        }

            /* Hide scrollbar but keep scrolling */
            .gallery-filters::-webkit-scrollbar {
                display: none;
            }

        .gallery-filters {
            scrollbar-width: none;
        }

            .gallery-filters button {
                flex: 0 0 auto; /* ✅ preserve button width */
                white-space: nowrap;
                font-size: 13px;
                padding: 8px 14px;
            }

        .view-toggle {
            display: none;
        }

        .slider-viewport {
            scroll-snap-type: x mandatory;
        }

        .slider-item {
            scroll-snap-align: start;
        }

        .cls4,
        .cls2,
        .cls1 {
            display: none;
        }
    }

    @media (max-width: 768px) {
        .inspiration-slider {
            padding: 80px 30px;
        }

        .gallery-filters {
            flex-wrap: nowrap; /* ❌ no wrapping */
            overflow-x: auto; /* ✅ horizontal scroll */
            overflow-y: hidden;
            white-space: nowrap;
            padding-bottom: 6px;
            -webkit-overflow-scrolling: touch;
        }

            /* Hide scrollbar but keep scrolling */
            .gallery-filters::-webkit-scrollbar {
                display: none;
            }

        .gallery-filters {
            scrollbar-width: none;
        }

            .gallery-filters button {
                flex: 0 0 auto; /* ✅ preserve button width */
                white-space: nowrap;
                font-size: 13px;
                padding: 8px 14px;
            }

        .slider-viewport {
            height: 420px;
        }

        .slider-track.view-4 .slider-item,
        .slider-track.view-2 .slider-item,
        .slider-track.view-1 .slider-item {
            width: 85%;
        }

        .cls4,
        .cls2,
        .cls1 {
            display: none;
        }
    }

    @media (max-width: 480px) {
        .inspiration-slider {
            padding: 80px 15px;
        }

        .gallery-filters {
            flex-wrap: nowrap; /* ❌ no wrapping */
            overflow-x: auto; /* ✅ horizontal scroll */
            overflow-y: hidden;
            white-space: nowrap;
            padding-bottom: 6px;
            -webkit-overflow-scrolling: touch;
        }

            /* Hide scrollbar but keep scrolling */
            .gallery-filters::-webkit-scrollbar {
                display: none;
            }

        .gallery-filters {
            scrollbar-width: none;
        }

            .gallery-filters button {
                flex: 0 0 auto; /* ✅ preserve button width */
                white-space: nowrap;
                font-size: 13px;
                padding: 8px 14px;
            }

        .slider-viewport {
            height: 360px;
        }

        .cls4,
        .cls2,
        .cls1 {
            display: none;
        }
    }







    /* =========================================================
   INTRO – ARCHITECTURAL STYLE
========================================================= */

    .intro-architectural {
        background: #000;
        color: #fff;
    }

    .intro-grid {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1.1fr 1.4fr;
        gap: 80px;
        align-items: start;
    }

    /* Eyebrow */
    .intro-eyebrow {
        display: block;
        font-size: 12px;
        letter-spacing: 2px;
        text-transform: uppercase;
        opacity: 0.6;
        margin-bottom: 16px;
    }

    /* Heading */
    .intro-statement h2 {
        font-size: clamp(2.4rem, 4vw, 3.2rem);
        line-height: 1.1;
        font-weight: 500;
    }

    /* Lead text */
    .intro-lead {
        font-size: 18px;
        line-height: 1.6;
        opacity: 0.9;
        margin-bottom: 18px;
        max-width: 520px;
    }

    /* Points */
    .intro-points {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }

        .intro-points h4 {
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .intro-points p {
            font-size: 14px;
            line-height: 1.6;
            opacity: 0.75;
        }

    /* Responsive */
    @media (max-width: 992px) {
        .intro-grid {
            grid-template-columns: 1fr;
            gap: 48px;
        }

        .intro-points {
            grid-template-columns: 1fr;
            gap: 24px;
        }
    }




    /* =========================================================
   FEATURE TECHNOLOGY — THEME ALIGNED
========================================================= */

    .feature-tech {
        background: var(--bg-primary);
    }

    /* Layout */
    .feature-tech-inner {
        display: grid;
        grid-template-columns: 1fr 1.15fr;
        align-items: center;
        gap: 90px;
    }

    /* ================= TEXT ================= */

    .feature-tech-content h2 {
        font-size: 40px;
        font-weight: 300;
        line-height: 1.28;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--text-primary);
        margin-bottom: 36px;
    }

    /* CTA */
    .feature-tech-btn {
        display: inline-flex;
        align-items: center;
        gap: 14px;
        padding: 14px 26px;
        border: 1px solid var(--border-light);
        color: #000;
        background: #fff;
        font-size: 14px;
        letter-spacing: 1px;
        text-decoration: none;
        transition: all 0.35s ease;
    }

        .feature-tech-btn span {
            font-size: 18px;
            transition: transform 0.35s ease;
        }

        .feature-tech-btn:hover {
            border-color: var(--accent);
        }

            .feature-tech-btn:hover span {
                transform: translateX(6px);
            }

    /* ================= IMAGE ================= */

    .feature-tech-media {
        width: 100%;
        height: 100%;
        position: relative;
        overflow: hidden;
    }

        .feature-tech-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.8s ease;
        }

    /* DESKTOP HOVER ZOOM */
    @media (hover: hover) and (pointer: fine) {
        .feature-tech-media:hover img {
            transform: scale(1.08);
        }
    }
        /* =========================================================
   RESPONSIVE
========================================================= */

        @media (max-width: 1024px) {
            .feature-tech {
                padding: 90px 40px;
            }

            .feature-tech-inner {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .feature-tech-content h2 {
                font-size: 34px;
            }
        }

        @media (max-width: 768px) {
            .feature-tech {
                padding: 40px 24px;
            }

            .feature-tech-content h2 {
                font-size: 28px;
                line-height: 1.35;
            }
        }

        @media (max-width: 480px) {
            .feature-tech-content h2 {
                font-size: 24px;
                letter-spacing: 1.5px;
            }

            .section {
                padding: 5vh 8vw;
            }
        }




/* =========================================================
   FOLLOW ALONG (INSTAGRAM GRID)
========================================================= */
        /* ================= FOLLOW GRID ================= */

        .follow-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .follow-item {
            position: relative;
            aspect-ratio: 3 / 4;
            cursor: pointer;
            overflow: hidden;
            background: #111;
        }

            .follow-item img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                transition: transform 0.8s ease;
            }

        /* DESKTOP HOVER ZOOM */
        @media (hover: hover) and (pointer: fine) {
            .follow-item:hover img {
                transform: scale(1.08);
            }
        }
            /* Play icon */
            .play-icon {
                position: absolute;
                inset: 0;
                display: grid;
                place-items: center;
            }

                .play-icon::before {
                    content: "▶";
                    font-size: 48px;
                    color: #fff;
                    background: rgba(0,0,0,0.5);
                    width: 72px;
                    height: 72px;
                    border-radius: 50%;
                    display: grid;
                    place-items: center;
                }

            /* ================= MODAL ================= */

            .media-modal {
                position: fixed;
                inset: 0;
                display: none;
                z-index: 5000;
            }

                .media-modal.active {
                    display: block;
                }

            .media-overlay {
                position: absolute;
                inset: 0;
                background: rgba(0,0,0,0.85);
            }

            .media-content {
                position: relative;
                width: 90vw;
                max-width: 600px;
                aspect-ratio: 3 / 4;
                margin: auto;
                top: 50%;
                transform: translateY(-50%);
            }

                .media-content img,
                .media-content iframe {
                    width: 100%;
                    height: 50%;
                    display: none;
                    object-fit: contain;
                    margin-top: 30%;
                }

            .media-close {
                position: absolute;
                top: -40px;
                right: 0;
                font-size: 32px;
                color: #fff;
                background: none;
                border: none;
                cursor: pointer;
            }

            /* Responsive */
            @media (max-width: 768px) {
                .follow-grid {
                    grid-template-columns: repeat(2, 1fr);
                }
            }


/* =========================================================
   RENOVATION CTA SECTION
========================================================= */

.renovation-cta {
    background: radial-gradient( circle at top left, #151515 0%, #0a0a0a 60%, #000 100% );
    padding: 100px 70px;
}

/* Layout */
.renovation-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

/* ================= CONTENT ================= */

.renovation-content h2 {
    font-size: 42px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #f5f5f5;
}

.renovation-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #bdbdbd;
    max-width: 520px;
    margin-bottom: 36px;
}

/* Button (reuses your theme logic) */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 26px;
    font-size: 14px;
    letter-spacing: 0.5px;
    color: #fff;
    border: 1px solid #fff;
    background: transparent;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .btn-primary:hover {
        background: #fff;
        color: #000;
    }

/* ================= IMAGE ================= */

.renovation-image {
    position: relative;
    overflow: hidden;
}

    .renovation-image img {
        width: 100%;
        height: 100%;
        max-height: 520px;
        object-fit: cover;
        display: block;
        border-radius: 2px;
        transition: transform 0.8s ease;
    }

/* DESKTOP HOVER ZOOM */
@media (hover: hover) and (pointer: fine) {
    .renovation-image:hover img {
        transform: scale(1.08);
    }
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1024px) {
    .renovation-inner {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .renovation-image img {
        max-height: 420px;
    }
}

@media (max-width: 768px) {
    .renovation-cta {
        padding: 70px 24px;
    }

    .renovation-content h2 {
        font-size: 32px;
    }

    .renovation-content p {
        font-size: 15px;
    }
}




/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    background: #ececec;
    color: #111;
    padding: 40px 70px 30px;
    font-size: 15px;
}

    .site-footer::before {
        content: "";
        position: absolute;
        inset: 0;
        background: #ececec;
        z-index: 0;
    }


.footer-inner {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
}

/* ================= LEFT ================= */

.footer-logo {
    max-width: 200px;
    margin-bottom: 24px;
}

.footer-brand p {
    margin-bottom: 16px;
    line-height: 1.6;
    max-width: 320px;
}

.footer-social {
    margin-top: 24px;
    display: flex;
    gap: 12px;
}

    .footer-social a {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: #111;
        color: #fff;
        display: grid;
        place-items: center;
        font-size: 13px;
        text-decoration: none;
    }

/* ================= CENTER ================= */

.footer-links h4 {
    font-size: 22px;
    margin-bottom: 24px;
}

.footer-links ul {
    list-style: none;
    display: -webkit-inline-box;
    gap: 20px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #111;
    text-decoration: none;
}

    .footer-links a:hover {
        text-decoration: underline;
    }

/* ================= RIGHT ================= */

.footer-showrooms h4 {
    font-size: 22px;
    margin-bottom: 24px;
}

.showroom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.showroom-card {
    background: #fff;
    padding: 32px;
    line-height: 1.6;
}

    .showroom-card h5 {
        font-size: 18px;
        margin-bottom: 16px;
    }

    .showroom-card .phone {
        font-weight: 600;
        margin: 12px 0;
    }

    .showroom-card .email {
        color: #2a66c9;
        margin-bottom: 16px;
    }

/* ================= BOTTOM ================= */

.footer-bottom {
    margin-top: 60px;
    padding-top: 24px;
    border-top: 1px solid #ccc;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .footer-bottom p {
        font-size: 14px;
    }

    .footer-bottom span {
        margin: 0 8px;
    }

    .footer-bottom a {
        color: #111;
        text-decoration: none;
    }

        .footer-bottom a:hover {
            text-decoration: underline;
        }

/* Back to top */
.back-to-top {
    width: 42px;
    height: 42px;
    background: #111;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 18px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .showroom-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}


/* ================= FOOTER BASE ================= */

.site-footer {
    position: relative;
    background: #ececec;
    color: #111;
    padding: 40px 70px 30px;
    font-size: 15px;
    overflow: hidden;
}

/* Marble background SVG */
.footer-marble-bg {
    position: absolute;
    inset: 0;
    width: 120%;
    height: 120%;
    left: -10%;
    top: -10%;
    z-index: 0;
    opacity: 0.9;
    animation: marbleDrift 120s linear infinite;
}

/* Subtle stone movement */
@keyframes marbleDrift {
    from {
        transform: translate(0, 0);
    }

    to {
        transform: translate(-6%, -4%);
    }
}

/* Ensure content stays ABOVE marble */
.footer-inner,
.footer-bottom {
    position: relative;
    z-index: 2;
}

/* ================= OPTIONAL DEPTH ================= */

/* Soft inner glow like polished stone */
.site-footer::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient( circle at top left, rgba(255,255,255,0.35), transparent 55% );
    z-index: 1;
    pointer-events: none;
}




/* ================= SOCIAL ICONS Header ================= */

.header-social {
    display: flex;
    align-items: center;
    gap: 14px;
}

    /* Icon button */
    .header-social .social-btn {
        width: 34px;
        height: 34px;
        display: grid;
        place-items: center;
        border: 1px solid rgba(255,255,255,0.25);
        border-radius: 50%;
        transition: all 0.25s ease;
    }

    /* SVG */
    .header-social svg {
        width: 15px;
        height: 15px;
        fill: #fff;
        opacity: 0.85;
    }

    /* Hover — stone polish effect */
    .header-social .social-btn:hover {
        border-color: #d1b16a; /* subtle gold */
        transform: translateY(-1px);
    }

        .header-social .social-btn:hover svg {
            opacity: 1;
        }





/* ================= SOCIAL ICONS Footer ================= */

.social-icons {
    display: flex;
    gap: 14px;
}

    .social-icons a {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        display: grid;
        place-items: center;
        background: #111;
        transition: all 0.25s ease;
    }

    .social-icons svg {
        width: 24px;
        height: 24px;
        fill: #fff;
    }

    /* Hover effect */
    .social-icons a:hover {
        background: #000;
        transform: translateY(-2px);
    }


.top-bar .professional, .top-bar .divider {
    margin-top: 12px;
}
