/* =========================================
   VARIABLES & SETUP
========================================= */
:root {
    /* Color Palette */
    --primary: #0F4C81; /* Deep Blue - Trust, professionalism */
    --primary-hover: #0c3e6a;
    --accent: #D4AF37; /* Gold - Premium, high quality */
    --text-dark: #1A1A1A;
    --text-light: #555555;
    --white: #FFFFFF;
    --bg-light: #F8F9FA;
    --bg-dark: #222222;
    --border: #EAEAEA;
    
    /* Typography */
    --font-main: 'Inter', sans-serif;
    
    /* Structure */
    --max-width: 1200px;
    --radius: 8px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.bg-light { background-color: var(--bg-light); }
.bg-dark { background-color: var(--bg-dark); }
.text-white { color: var(--white); }
.text-accent { color: var(--primary); }

.mt-2 { margin-top: 20px; }
.mb-3 { margin-bottom: 30px; }
.text-center { text-align: center; }
.justify-center { justify-content: center; }
.w-100 { width: 100%; }

/* =========================================
   TYPOGRAPHY
========================================= */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
}

h1 { font-size: 3.5rem; letter-spacing: -1px; }
h2 { font-size: 2.5rem; letter-spacing: -0.5px; }
h3 { font-size: 1.25rem; }

p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.section-title {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.section-title p {
    font-size: 1.2rem;
}

/* =========================================
   BUTTONS
========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    border-radius: var(--radius);
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-sm { padding: 8px 18px; font-size: 0.95rem; }
.btn-lg { padding: 15px 30px; font-size: 1.1rem; border-radius: 50px; }

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(15, 76, 129, 0.2);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
}

/* =========================================
   SCROLLING TICKER
========================================= */
.scrolling-ticker {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 36px;
    background-color: var(--text-dark);
    color: var(--white);
    display: flex;
    align-items: center;
    overflow: hidden;
    z-index: 1001;
    border-bottom: 2px solid var(--accent);
}

.ticker-content {
    display: flex;
    white-space: nowrap;
    animation: scroll-left 35s linear infinite;
    width: max-content;
}

.ticker-item {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-right: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
}

.ticker-item i {
    color: var(--accent);
}

@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } 
}

/* =========================================
   HEADER & NAV
========================================= */
.header {
    position: fixed;
    top: 36px;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.header.scrolled {
    padding: 10px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 70px;
    width: auto;
    display: block;
}

.desktop-nav ul {
    display: flex;
    gap: 30px;
}

.desktop-nav a {
    font-weight: 500;
    font-size: 1.05rem;
    position: relative;
}

.desktop-nav a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.desktop-nav a:hover:after {
    width: 100%;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone-link {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* =========================================
   HERO SECTION
========================================= */
.hero {
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    /* The backgroundImage will be injected. Fallback solid dark */
    background-color: #333;
    background-size: cover;
    background-position: center;
    margin-top: 0;
    padding-top: 116px; /* Offset header & ticker */
}

/* We use the generated hero image here */
.hero {
    background-image: url('../assets/hero.png');
}

/* =========================================
   PAGE HEADER (For Sub-Pages)
========================================= */
.page-header {
    background: linear-gradient(rgba(15, 76, 129, 0.95), rgba(15, 76, 129, 0.95)), url('../assets/hero.png') center/cover;
    padding: 160px 20px 60px;
    text-align: center;
    color: var(--white);
    margin-bottom: 40px;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 1.1rem;
    color: var(--white);
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 800px;
}

.hero-brand-name {
    display: block;
    color: var(--accent);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 1.1rem;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.hero h1 {
    color: var(--white);
    margin-bottom: 20px;
}

.hero-subline {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
    margin-bottom: 40px;
    max-width: 650px;
}

.hero-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero .btn-outline {
    border-color: var(--white);
    color: var(--white);
}

.hero .btn-outline:hover {
    background-color: var(--white);
    color: var(--text-dark);
}

/* =========================================
   TRUST BAR
========================================= */
.trust-bar {
    background-color: var(--primary);
    color: var(--white);
    padding: 20px 0;
    margin-top: -10px; /* pull up slightly */
    position: relative;
    z-index: 5;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

/* =========================================
   PROCESS SECTION
========================================= */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.process-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    position: relative;
    transition: transform 0.3s ease;
    border-top: 4px solid var(--accent);
}

.process-card:hover {
    transform: translateY(-10px);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(15, 76, 129, 0.3);
}

.process-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin: 20px 0 15px;
}

.process-card h3 {
    margin-bottom: 15px;
    font-size: 1.25rem;
    color: var(--text-dark);
}

.process-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0;
}

@media (min-width: 992px) {
    .process-grid {
        position: relative;
    }
    .process-grid::after {
        content: '';
        position: absolute;
        top: 60px;
        left: 10%;
        right: 10%;
        height: 2px;
        background: linear-gradient(90deg, transparent, rgba(15, 76, 129, 0.2), transparent);
        z-index: 0;
    }
    .process-card {
        z-index: 1;
    }
}

.trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.95rem;
}

.trust-item i {
    color: var(--accent);
    font-size: 1.2rem;
}

/* =========================================
   SERVICES SECTION
========================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px 25px;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    border-color: var(--primary);
}

.icon-wrap {
    width: 60px;
    height: 60px;
    background-color: rgba(15, 76, 129, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.icon-wrap i {
    font-size: 24px;
    color: var(--primary);
}

.service-card h3 {
    margin-bottom: 15px;
}

/* =========================================
   ABOUT SECTION
========================================= */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.check-list {
    margin-top: 25px;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 500;
}

.check-list i {
    color: var(--primary);
    background: rgba(15, 76, 129, 0.1);
    padding: 5px;
    border-radius: 50%;
    font-size: 0.8rem;
}

.about-image-wrap {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-img {
    width: 100%;
    height: 100%;
    background-image: url('../assets/kitchen.png');
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.about-img:hover {
    transform: scale(1.05);
}

/* =========================================
   HEADER SOCIALS & EXTRA STYLING
========================================= */
.header-socials {
    display: flex;
    gap: 15px;
}

.header-socials a {
    color: var(--primary);
    font-size: 1.2rem;
    transition: transform 0.2s ease;
}

.header-socials a:hover {
    transform: scale(1.1);
    color: var(--accent);
}

.footer-socials {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.footer-socials a {
    color: var(--primary);
    font-size: 1.8rem;
    transition: transform 0.2s ease;
}

.footer-socials a:hover {
    transform: scale(1.1);
}

/* =========================================
   GALLERY SECTION
========================================= */
.container-fluid {
    width: 100%;
    padding: 0 5%;
}

.gallery-carousel-wrapper {
    position: relative;
    width: 100%;
}

.gallery-grid {
    display: grid;
    grid-template-rows: 250px 250px;
    grid-auto-columns: 300px;
    grid-auto-flow: column;
    gap: 15px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: 20px;
    scrollbar-width: thin;
}

.gallery-grid::-webkit-scrollbar {
    height: 8px;
}
.gallery-grid::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    color: var(--primary);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.carousel-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: -20px;
}

.carousel-btn.next {
    right: -20px;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-auto-columns: 85vw;
    }
    .carousel-btn {
        display: none; /* Mobile naturally swipes */
    }
}

.gallery-item {
    scroll-snap-align: start;
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background-color: #eee;
    background-size: cover;
    background-position: center;
}

/* Assets mapping to generated images or placeholders */
.item-1 { background-image: url('../assets/g_hardwood.png'); }
.item-2 { background-image: url('../assets/kitchen.png'); }
.item-3 { background-image: url('../assets/bathroom.png'); }
.item-4 { background-image: url('../assets/item4.png'); }
.item-5 { background-image: url('../assets/item5.png'); }
.item-6 { background-image: url('../assets/g_deck.png'); }
.item-7 { background-image: url('../assets/g_paint_living.png'); }
.item-8 { background-image: url('../assets/g_baseboard2.png'); }
.item-9 { background-image: url('../assets/g_vinyl.png'); }
.item-10 { background-image: url('../assets/g_laminate.png'); }
.item-11 { background-image: url('../assets/g_shower_clean.png'); }
.item-12 { background-image: url('../assets/g_cabinets.png'); }
.item-13 { background-image: url('../assets/g_potlights.png'); }
.item-14 { background-image: url('../assets/g_bedroom.png'); }
.item-15 { background-image: url('../assets/g_basement.png'); }
.item-16 { background-image: url('../assets/g_subfloor.png'); }
.item-17 { background-image: url('../assets/g_demo.png'); }
.item-18 { background-image: url('../assets/g_engwood.png'); }
.item-19 { background-image: url('../assets/item6.png'); }
.item-20 { background-image: url('../assets/g_ceiling_paint.png'); }
.item-21 { background-image: url('../assets/g_backsplash2.png'); }
.item-22 { background-image: url('../assets/g_vanity_clean.png'); }
.item-23 { background-image: url('../assets/g_carpet_stairs.png'); }
.item-24 { background-image: url('../assets/g_hvac.png'); }
.item-25 { background-image: url('../assets/g_sink.png'); }

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px 12px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: var(--white);
}

.gallery-overlay span {
    font-weight: 600;
    font-size: 1rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.9);
}

/* =========================================
   WHY CHOOSE US
========================================= */

.why-layout p {
    color: rgba(255, 255, 255, 0.8);
}

.why-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 30px;
}

.why-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    font-weight: 500;
}

.why-list i {
    color: var(--accent);
}

/* =========================================
   CTA SECTION
========================================= */
.cta-section {
    background: rgba(15, 76, 129, 0.05);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

/* =========================================
   CONTACT & FOOTER
========================================= */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.info-group {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.info-group i {
    font-size: 24px;
    margin-top: 5px;
}

.info-group p, .info-group a, .info-group div {
    color: var(--text-dark);
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.contact-form h3 {
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.flex-row {
    display: flex;
    gap: 20px;
}

.flex-row input {
    flex: 1;
}

input, textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.footer-bottom {
    background-color: var(--text-dark);
    color: rgba(255,255,255,0.6);
    text-align: center;
    padding: 20px 0;
    margin-top: 60px;
}
.footer-bottom p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* =========================================
   CUSTOMER REVIEWS
========================================= */
.reviews-carousel-wrapper {
    position: relative;
    width: 100%;
}
.reviews-grid {
    display: grid;
    grid-auto-columns: min(85vw, 350px);
    grid-auto-flow: column;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: 20px;
    scrollbar-width: thin;
}
.reviews-grid::-webkit-scrollbar {
    height: 8px;
}
.reviews-grid::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}
.review-card {
    scroll-snap-align: start;
    background: var(--white);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-top: 4px solid #EA4335; /* Google Red/Orange touch */
}
.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
}
.review-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #EA4335;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    margin-right: 15px;
}
.review-info h4 {
    margin: 0;
    font-size: 1.05rem;
}
.review-info .stars {
    color: #FBBC05;
    font-size: 0.85rem;
    margin-top: 3px;
}
.google-logo {
    position: absolute;
    right: 0;
    top: 5px;
    width: 25px;
}
.review-text {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    font-style: italic;
    margin: 0;
}
.btn-outline i.fa-google {
    color: #4285F4;
    margin-right: 6px;
}

/* =========================================
   FAQ SECTION
========================================= */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    background: #fff;
    padding: 20px 25px;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.03);
    border-left: 4px solid var(--accent);
}
.faq-item h4 {
    margin-bottom: 10px;
    color: var(--primary);
    font-size: 1.1rem;
}
.faq-item p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* =========================================
   SCROLL ANIMATIONS (Intersection Observer)
========================================= */
/* =========================================
   SCROLL ANIMATIONS (Intersection Observer)
========================================= */
/* Disabled globally to ensure maximum cross-browser mobile stability */
.fade-in {
    opacity: 1;
    transform: none;
}


/* =========================================
   RESPONSIVE DESIGN (MOBILE FIRST OVERRIDES)
========================================= */
@media (max-width: 992px) {
    .about-container, .contact-container {
        grid-template-columns: 1fr;
    }
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .flex-row {
        flex-direction: column;
        gap: 20px;
    }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    
    .section { padding: 60px 0; }
    
    .header-contact a.btn {
        display: none;
    }
}

/* =========================================
   STICKY MOBILE CTA
========================================= */
.mobile-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: none; /* Hidden on desktop */
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.btn-sticky {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 0;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--white);
    text-transform: uppercase;
    text-decoration: none;
}

.call-btn {
    background-color: var(--primary);
}

.book-btn {
    background-color: var(--accent);
    color: var(--text-dark);
}

@media (max-width: 768px) {
    .mobile-sticky-cta {
        display: flex;
    }
    .footer {
        padding-bottom: 70px;
    }
}
/* =========================================
   COMPREHENSIVE FOOTER
========================================= */
.site-footer {
    padding: 60px 0 0;
    border-top: 4px solid var(--accent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    max-height: 50px;
    margin-bottom: 15px;
    /* filter: brightness(0) invert(1); */
    object-fit: contain;
}

.footer-brand-name {
    color: var(--accent);
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.brand-col p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.footer-socials-new {
    display: flex;
    gap: 15px;
}

.footer-socials-new a {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.footer-socials-new a:hover {
    background: var(--accent);
    color: var(--text-dark);
    transform: translateY(-3px);
}

.footer-col h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent);
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-contact-list i {
    margin-top: 5px;
}

.footer-bottom-bar {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom-bar p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.container-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}