/*******************************/
/******** General CSS **********/
/*******************************/
:root {
    --primary-bg: #121518;
    --secondary-bg: #ffffff;
    --primary-color: #ffffff;
    --secondary-color: #121518;
    --accent-color: #aa9166;
    --text-color: #4b5563;
    --heading-color: #0f172a;
    --link-color: #aa9166;
    --link-hover-color: #121518;
    --border-color: rgba(255,255,255,.1);
    --heading-font: 'Playfair Display', 'Times New Roman', serif;
    --body-font: 'Inter', 'Roboto', sans-serif;
    --section-spacing: clamp(3rem, 6vw, 5rem);
    --inner-spacing: clamp(1rem, 3vw, 1.75rem);
    --card-radius: 1rem;
    --card-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.18);
    --transition-speed: .3s;
}

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-color);
    background: var(--secondary-bg);
    min-height: 100vh;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    transition: background 0.5s ease, color 0.5s ease;
}

img, picture {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--link-color);
    transition: color var(--transition-speed) ease;
}

a:hover,
a:focus {
    color: var(--link-hover-color);
    text-decoration: none;
}

button:focus-visible,
a:focus-visible,
.btn:focus-visible {
    outline: 2px dashed var(--accent-color);
    outline-offset: 3px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    color: inherit;
    line-height: 1.2;
    margin-bottom: .75rem;
    word-break: break-word;
}

p, ul, ol, blockquote {
    margin-bottom: 1rem;
    overflow-wrap: anywhere;
}

blockquote {
    border-left: 4px solid var(--accent-color);
    padding-left: 1.5rem;
    color: inherit;
}

.lead {
    font-size: 1.15rem;
    color: inherit;
}

.card {
    border: none;
    border-radius: var(--card-radius);
    box-shadow: var(--card-shadow);
    height: 100%;
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 2rem 3rem rgba(0, 0, 0, 0.18);
}

.card-body {
    padding: var(--inner-spacing);
    color: #1f2530;
}

.card-text {
    color: #4d5665;
}

.card-header {
    background: transparent;
    border-bottom: none;
    padding: var(--inner-spacing);
}

.card a {
    font-weight: 600;
}

.wrapper {
    min-height: 100%;
    width: 100%;
}

.btn {
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: .02em;
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease, background var(--transition-speed) ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0.75rem 1.25rem rgba(0, 0, 0, 0.15);
}

.btn-primary,
.btn-outline-primary:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--secondary-color);
}

.btn-outline-primary {
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.top-bar .logo h1 {
    letter-spacing: .08em;
}

.top-bar .text-muted {
    color: rgba(255, 255, 255, 0.8) !important;
}

.navbar {
    padding: .75rem 1rem;
    box-shadow: 0 0.75rem 2rem rgba(0, 0, 0, 0.08);
    transition: padding var(--transition-speed) ease, background var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.navbar.navbar-scrolled {
    padding-top: .35rem;
    padding-bottom: .35rem;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.12);
}

.navbar-light .navbar-nav .nav-link {
    font-weight: 600;
    letter-spacing: .04em;
    color: var(--secondary-color);
    padding: .75rem 1.25rem;
    text-transform: uppercase;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--accent-color);
}

@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link {
        padding: .5rem 0;
    }
}

.dropdown-menu {
    border: none;
    border-radius: .75rem;
    box-shadow: 0 1.25rem 2.5rem rgba(0, 0, 0, 0.12);
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

@media (max-width: 991.98px) {
    .top-bar .top-bar-right {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .top-bar .text {
        margin-right: 0 !important;
        margin-bottom: .75rem;
    }
}

h1,h2,h3,h4,h5,h6,a,p,button,.btn,.feature-top,.about,.service,.team,
.contact,.testimonial,.portfolio,.faqs,.blog,.timeline,.footer {
    transition: background 0.5s ease, color 0.5s ease, border-color 0.5s ease;
}

/*******************************/
/******** Dark/Light Theme *****/
/*******************************/
body.light-theme {
    --primary-bg: #ffffff;
    --secondary-bg: #121518;
    --primary-color: #121518;
    --secondary-color: #ffffff;
    --accent-color: #aa9166;
    --text-color: #333333;
    --heading-color: #121518;
    --link-color: #121518;
    --link-hover-color: #aa9166;
}

/*******************************/
/******** Carousel CSS *********/
/*******************************/
.carousel {
    position: relative;
    width: 100%;
    min-height: 60vh;
    max-height: 90vh;
    margin: 0 auto;
    text-align: center;
    overflow: hidden;
}

.carousel .carousel-inner,
.carousel .carousel-item {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel .carousel-item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .3);
    z-index: 1;
}

.carousel .carousel-caption {
    position: absolute;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
    padding: 0 2rem;
}

.carousel .carousel-caption h1 {
    color: #ffffff;
    font-size: clamp(2.2rem, 5vw, 3.75rem);
    font-weight: 700;
    margin-bottom: 20px;
}

.carousel .carousel-caption p {
    color: #ffffff;
    font-size: clamp(1.1rem, 2.2vw, 1.5rem);
    max-width: 60ch;
    margin-bottom: 25px;
}

.carousel .carousel-caption .btn {
    padding: 15px 35px;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent-color);
    background: var(--secondary-color);
    border: 2px solid var(--accent-color);
    border-radius: 0;
    transition: .3s;
}

.carousel .carousel-caption .btn:hover {
    color: var(--secondary-color);
    background: var(--accent-color);
}

@media (max-width: 991.98px) {
    .carousel {
        min-height: 75vh;
        max-height: none;
    }
    .carousel .carousel-caption {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .carousel .carousel-caption {
        align-items: flex-start;
        text-align: left;
    }
}

@media (max-width: 575.98px) {
    .carousel {
        min-height: 65vh;
    }
    .carousel .carousel-caption .btn {
        padding: 10px 25px;
        font-size: .95rem;
        font-weight: 500;
        letter-spacing: 0;
    }
}

.carousel .animated {
    animation-duration: 1.5s;
}

/*******************************/
/******* Page Header CSS *******/
/*******************************/
.page-header {
    position: relative;
    margin-bottom: 45px;
    padding: var(--section-spacing) 0;
    text-align: center;
    background: var(--accent-color);
    color: var(--primary-color);
}

.page-header h1,
.page-header h2 {
    position: relative;
    color: var(--primary-color);
    font-size: clamp(2.25rem, 4vw, 3.75rem);
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 5px;
}

.page-header h1::after,
.page-header h2::after {
    position: absolute;
    content: "";
    width: 100px;
    height: 2px;
    left: calc(50% - 50px);
    bottom: 0;
    background: var(--primary-color);
}

.page-header p {
    max-width: 55ch;
    margin: 0 auto 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.page-header .breadcrumb {
    background: transparent;
    justify-content: center;
}

.page-header .breadcrumb a,
.page-header .breadcrumb-item,
.page-header a {
    position: relative;
    padding: 0 12px;
    font-size: 1rem;
    color: var(--primary-color);
}

.page-header a:hover {
    color: var(--secondary-color);
}

.page-header a::after {
    position: absolute;
    content: "/";
    width: 8px;
    height: 8px;
    top: -2px;
    right: -7px;
    text-align: center;
    color: var(--primary-color);
}

.page-header a:last-child::after {
    display: none;
}

@media (max-width: 767.98px) {
    .page-header {
        padding: 3rem 0;
        text-align: left;
    }
    .page-header .breadcrumb {
        justify-content: flex-start;
        padding-left: 0;
    }
}

/*******************************/
/******* Section Header ********/
/*******************************/
.section-header {
    position: relative;
    width: 100%;
    text-align: center;
    margin-bottom: 45px;
}

.section-header h2 {
    margin: 0;
    position: relative;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    white-space: normal;
    line-height: 1.2;
    word-break: break-word;
    z-index: 1;
    color: var(--heading-color);
}

.section-header h2::before,
.section-header h2::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 7px;
    left: 0;
    background: transparent;
    border-top: 1px solid var(--accent-color);
    border-bottom: 1px solid var(--accent-color);
    z-index: -1;
}

.section-header h2::before { top: 21px; }
.section-header h2::after { bottom: 20px; }

@media (max-width: 767.98px) {
    .section-header h2 { font-size: 30px; }
}

@media (max-width: 575.98px) {
    .section-header h2::before,
    .section-header h2::after {
        display: none;
    }
}

/*******************************/
/******* Feature Top ***********/
/*******************************/
.feature-top { background: var(--primary-bg); margin-bottom:45px; }
.feature-top .col-md-3 { border-right:1px solid var(--border-color); border-bottom:1px solid var(--border-color); }
.feature-top .feature-item { padding:30px 0; text-align:center; }
.feature-top .feature-item i { color: var(--accent-color); font-size:35px; margin-bottom:10px; }
.feature-top .feature-item h3 { color: #ffffff; font-size:30px; font-weight:600; }
.feature-top .feature-item p { color: rgba(255, 255, 255, 0.8); font-size:18px; margin:0; }

@media (max-width: 991.98px) {
    .feature-top .col-md-3 {
        border-right: none;
    }
}

@media (max-width: 575.98px) {
    .feature-top .feature-item {
        padding: 20px 0;
    }
}

.stat-number {
    display: inline-flex;
    align-items: baseline;
    justify-content: center;
    font-family: var(--heading-font);
    font-size: clamp(2.5rem, 6vw, 3.75rem);
    line-height: 1;
    gap: .25rem;
    color: var(--secondary-color);
}

/* === About, Service, Feature, Team, FAQs, Testimonial, Blog, Timeline, Portfolio, Contact, Single, Newsletter, Footer === */
/* For brevity, apply the same principle: replace all hard-coded colors with variables and retain all existing styles and media queries */

/*******************************/
/********** About CSS **********/
/*******************************/
.about {
    position: relative;
    width: 100%;
    padding: var(--section-spacing) 0;
}

.about .section-header { margin-bottom: 30px; }

.about .about-img {
    position: relative;
    height: 100%;
    padding: 10px;
    background: var(--primary-bg);
}

.about .about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about .about-text p { font-size: 16px; color: #4b5563; }

.about .about-text a.btn {
    position: relative;
    margin-top: 15px;
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    border-radius: 0;
    background: var(--secondary-color);
    transition: .3s;
}

.about .about-text a.btn:hover {
    color: var(--secondary-color);
    background: var(--accent-color);
}

.about .experience {
    position: absolute !important;
    right: 20px !important;
    bottom: -20px !important;
    width: clamp(170px, 28vw, 240px) !important;
    border-radius: var(--card-radius);
}

@media (max-width: 991.98px) {
    .about .experience {
        bottom: -10px !important;
    }
}

@media (max-width: 767.98px) {
    .about .experience {
        position: relative !important;
        inset: auto !important;
        margin: 1.5rem auto 0 !important;
        width: min(280px, 90%) !important;
    }
}

@media (max-width: 767.98px) {
    .about .about-img { margin-bottom: 30px; height: auto; }
}

/*******************************/
/********** Values CSS *********/
/*******************************/
.values {
    padding: var(--section-spacing) 0;
}

.values .card {
    text-align: center;
    border-radius: var(--card-radius);
    box-shadow: var(--card-shadow);
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.values .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 2.25rem 3.5rem rgba(0, 0, 0, 0.22);
}

.values .value-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(170, 145, 102, 0.2);
    color: var(--accent-color);
}

.values .card h3 {
    color: var(--secondary-color);
}

.values .card p {
    color: #4b5563;
}

/*******************************/
/********* Service CSS *********/
/*******************************/
.service { position: relative; width: 100%; padding: var(--section-spacing) 0; }

.service .service-item {
    position: relative;
    width: 100%;
    background: var(--secondary-bg);
    color: var(--secondary-color);
    margin-bottom: 30px;
    border-radius: var(--card-radius);
    padding: var(--inner-spacing);
    box-shadow: var(--card-shadow);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service .service-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(170, 145, 102, 0.15);
    margin-bottom: 1.25rem;
}

.service .service-icon i {
    font-size: 1.75rem;
    color: var(--accent-color);
}

.service .service-item h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.service .service-item p {
    flex: 1;
    color: #4b5563;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.service .service-item a.btn {
    margin-top: auto;
    padding: 0;
    font-size: .95rem;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
    color: var(--accent-color);
    border: none;
    border-radius: 0;
    background: transparent;
    transition: color var(--transition-speed) ease;
}

.service .service-item a.btn i {
    transition: transform var(--transition-speed) ease;
}

.service .service-item:hover a.btn {
    color: var(--accent-color);
}

.service .service-item:hover a.btn i {
    transform: translateX(4px);
}

.practice-card .card-body {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.practice-card .btn {
    margin-top: auto;
    align-self: center;
}

.practice-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
}

/*******************************/
/********* Feature CSS *********/
/*******************************/
.feature { position: relative; width:100%; padding:var(--section-spacing) 0; }
.feature .feature-item { margin-bottom: 30px; padding: var(--inner-spacing); border-radius: var(--card-radius); background: var(--secondary-bg); box-shadow: var(--card-shadow); }
.feature .feature-icon { width:80px; height:80px; border-radius: 50%; display:flex; align-items:center; justify-content:center; background: rgba(170,145,102,0.15); margin-bottom: 1rem; }
.feature .feature-icon i { font-size:2rem; color: var(--accent-color); transition:.5s; }
.feature .feature-item:hover .feature-icon i { transform: scale(1.05); }
.feature .feature-item h3 { position:relative; margin-bottom:15px; padding-bottom:10px; font-size:1.5rem; font-weight:600; color: var(--secondary-color); }
.feature .feature-item h3::after { position:absolute; content:""; width:50px; height:2px; left:0; bottom:0; background: var(--accent-color); }
.feature .feature-item p { margin:0; font-size:1rem; color: #4b5563; }
.feature .feature-img { height:100%; padding:10px; background: transparent; }
.feature .feature-img img { width:100%; height:100%; object-fit:cover; border-radius: var(--card-radius); box-shadow: var(--card-shadow); }

/*******************************/
/*********** Team CSS **********/
/*******************************/
.team { position:relative; width:100%; padding:var(--section-spacing) 0; }
.team .team-item { margin-bottom:30px; text-align:center; }
.team .team-img {
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.2);
}
.team .team-img img { width:100%; height:100%; object-fit:cover; }
.team .team-text { padding:1.5rem; text-align:center; background: var(--secondary-bg); border-radius: var(--card-radius); box-shadow: var(--card-shadow); }
.team .team-text h2, .team .team-text h3 { font-size:1.25rem; font-weight:600; color: var(--secondary-color); }
.team .team-text p { margin:0 0 .75rem; color: #4b5563; }
.team .team-text .text-primary { color: var(--accent-color) !important; }
.team .team-social { margin-top:1rem; display:flex; justify-content:center; gap:1rem; }
.team .team-social a { font-size:1rem; color: var(--accent-color); transition: color var(--transition-speed) ease; }
.team .team-social a:hover { color: var(--secondary-color); }

/*******************************/
/*********** FAQs CSS **********/
/*******************************/
.faqs { position:relative; width:100%; padding:var(--section-spacing) 0; }
.faqs .faqs-img { height:100%; padding:10px; background: var(--primary-bg); }
.faqs .faqs-img img { width:100%; height:100%; object-fit:cover; }
@media(max-width: 767.98px) { .faqs .faqs-img { margin-bottom:30px; height:auto; } }
.faqs .card { margin-bottom:15px; padding-top:15px; border:none; border-radius:0; border-top:1px solid var(--accent-color); }
.faqs .card:last-child { margin-bottom:0; padding-bottom:15px; border-bottom:1px solid var(--accent-color); }
.faqs .card-header a { color: var(--secondary-color); font-size:18px; line-height:40px; }
.faqs .card-header a span { background: var(--primary-bg); color: var(--accent-color); }
.faqs a.btn { margin-top:15px; padding:15px 35px; font-size:16px; font-weight:500; text-transform:uppercase; color: var(--accent-color); border:2px solid var(--accent-color); background: var(--primary-bg); transition:.3s; }
.faqs a.btn:hover { color: var(--secondary-color); background: var(--accent-color); }

/*******************************/
/******* Testimonial CSS *******/
/*******************************/
.testimonial { padding:var(--section-spacing) 0; }
.testimonial .testimonial-item { margin:0 15px; padding:30px; background: var(--secondary-bg); border-radius: var(--card-radius); box-shadow: var(--card-shadow); overflow:hidden; }
.testimonial .testimonial-item h2 { color: var(--accent-color); font-size:22px; font-weight:600; margin-bottom:5px; }
.testimonial .testimonial-item p { color: #4b5563; font-size:16px; margin:0; }

/*******************************/
/*********** Blog CSS **********/
/*******************************/
.blog { position:relative; width:100%; padding:var(--section-spacing) 0; }
.blog .blog-item { margin:0 15px; background: var(--secondary-bg); overflow:hidden; }
.blog .blog-item h3 { font-size:25px; font-weight:600; color: var(--heading-color); }
.blog .blog-item p { font-size:16px; color: #4b5563; }

/*******************************/
/********* Timeline CSS ********/
/*******************************/
.timeline { position:relative; padding:var(--section-spacing) 0; }
.timeline .timeline-container .timeline-content {
    padding:30px;
    background: var(--secondary-bg);
    border-radius: var(--card-radius);
    border:1px solid rgba(15, 23, 42, 0.08);
    box-shadow: var(--card-shadow);
}
.timeline .timeline-container.right .timeline-content { border-left:5px solid var(--accent-color); border-right:none; }
.timeline .timeline-container:not(.right) .timeline-content { border-right:5px solid var(--accent-color); }
.timeline .timeline-container .timeline-content h2 { color: var(--accent-color); font-size:22px; font-weight:600; margin-bottom:15px; }
.timeline .timeline-container .timeline-content p { color: #4b5563; font-size:16px; margin:0; }

/*******************************/
/******** Portfolio CSS ********/
/*******************************/
.portfolio { position: relative; padding: var(--section-spacing) 0; background: var(--secondary-bg); }
.portfolio #portfolio-flters li,
.portfolio .load-more .btn { color: var(--accent-color); border:2px solid var(--accent-color); background: var(--primary-bg); }
.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active,
.portfolio .load-more .btn:hover { background: var(--accent-color); color: var(--secondary-color); }

/*******************************/
/******** Newsletter CSS *******/
/*******************************/
.newsletter {
    padding: var(--section-spacing) 0;
}

.newsletter .row.align-items-center {
    border-radius: var(--card-radius);
    box-shadow: var(--card-shadow);
}

/*******************************/
/********* Contact CSS *********/
/*******************************/
.contact,
.contact-info,
.contact-form {
    padding: var(--section-spacing) 0;
}

.contact-card {
    background: var(--secondary-bg);
    border-radius: var(--card-radius);
    box-shadow: var(--card-shadow);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-card address,
.contact-card p {
    color: #4b5563;
}

.contact-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(170, 145, 102, 0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
}

.contact-form .form-container {
    border-radius: var(--card-radius);
    box-shadow: var(--card-shadow);
}

.contact-form .form-control,
.contact-form select {
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: #fff;
    color: #1f2933;
    border-radius: .75rem;
    min-height: 3rem;
    padding: 0.85rem 1rem;
}

.contact-form textarea.form-control {
    min-height: 170px;
}

.contact-form .form-control:focus,
.contact-form select:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(170, 145, 102, 0.25);
    background: #fff;
}

.contact-form .form-check-label {
    color: #4b5563;
}

.contact-form .btn {
    border-radius: 999px;
}

.office-hours {
    border-radius: var(--card-radius) !important;
    box-shadow: var(--card-shadow);
}

/*******************************/
/*********** Footer CSS *********/
/*******************************/
.footer {
    background: #0b111b;
    color: #f8f9fa;
    padding-top: var(--section-spacing);
    margin-top: var(--section-spacing);
}

.footer .footer-about h2, .footer .footer-link h2, .footer .footer-contact h2 {
    color: var(--accent-color);
    font-family: var(--heading-font);
}

.footer p,
.footer a {
    color: rgba(255, 255, 255, 0.8);
}

.footer a:hover {
    color: var(--accent-color);
}

.footer .footer-link a {
    display: block;
    margin-bottom: .35rem;
}

.footer .footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: .75rem;
    color: var(--accent-color);
    transition: background var(--transition-speed) ease, color var(--transition-speed) ease;
}

.footer .footer-social a:hover {
    background: var(--accent-color);
    color: var(--secondary-color);
}

.footer hr {
    border-color: rgba(255, 255, 255, 0.1);
}

.footer .f-menu a {
    color: rgba(255, 255, 255, 0.7);
    margin-right: 1rem;
}

.footer .f-menu a:hover {
    color: var(--accent-color);
}

.footer .copyright p a {
    color: var(--accent-color);
}

.footer .copyright p a:hover {
    color: var(--secondary-color);
}

/* === Responsive media queries for all sections remain the same, just replace color/background values with CSS variables === */
