/* ==========================================================================
   Base Styles and General Layout for Negócios Page
   ========================================================================== */

/* Importing Google Fonts for a consistent look */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Open+Sans:wght@400;600&display=swap');

/* Color Variables */
:root {
    --primary-color: #0056b3; /* A strong blue for primary elements */
    --secondary-color: #007bff; /* A lighter blue for secondary elements/highlights */
    --accent-color: #ffab1b;
    --light-gray: #f4f7fa; /* Light background for sections */
    --dark-gray: #343a40; /* Darker gray for text and headers */
    --omega-blue: #0A2253; /* Specific blue from divulgacao.css, kept for consistency */
    --white: #ffffff;
    --text-color: #444444; /* General text color */
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: var(--light-gray);
    color: var(--text-color);
    overflow-x: hidden;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    font-size: 14px;
}

body.fade-in {
    opacity: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px; /* Increased padding */
    position: relative;
    overflow: hidden;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    color: var(--omega-blue); /* Use omega-blue for headings */
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}

h1 {
    font-size: 3em;
    text-align: center;
    color: var(--white); /* For hero section */
}

h2 {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 40px;
}

h3 {
    font-size: 1.8em;
    text-align: left; /* Default for card titles */
}

p {
    font-size: 1em;
    margin-bottom: 15px;
    line-height: 1.7;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

/* Call-to-Action Buttons */
.cta-button {
    display: inline-block;
    padding: 12px 25px;
    font-size: 1.1em;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    border: none;
    cursor: pointer;
    background-color: var(--accent-color);
    color: var(--white);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    background-color: #218838; /* Darker green */
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.secondary-button {
    background-color: var(--primary-color);
    color: var(--white);
}

.secondary-button:hover {
    background-color: #004085; /* Darker primary */
}

/* ==========================================================================
   Header and Navigation
   ========================================================================== */

header {
    background: var(--dark-gray);
    color: var(--white);
    padding: 15px 0;
    border-bottom: var(--primary-color) 4px solid;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo img {
    height: 60px; /* Adjust logo size */
    width: auto;
    display: block;
}

.nav-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.nav-menu-list li {
    margin-left: 30px;
}

.nav-menu-list a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 600;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.nav-menu-list a:hover {
    color: var(--secondary-color);
}

/* Mobile menu button (Hamburger) */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.8em;
    color: var(--white);
    cursor: pointer;
    z-index: 1001;
    padding: 5px;
}

/* ==========================================================================
   Hero Section - Specific for Individual Business Pages (e.g., Omega Elevadores)
   ========================================================================== */

.hero-business-page {
    position: relative;
    height: 80vh; /* Slightly increased height for impact */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    overflow: hidden;
    background-color: var(--omega-blue); /* Strong base color for consistency */
    padding: 30px 20px; /* Generous padding for all screen sizes */
    box-shadow: inset 0 -8px 15px rgba(0, 0, 0, 0.2); /* Soft inner shadow */
}

/* Background Overlay for Image (if applicable) */
.hero-business-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* You can add a subtle background image here if desired, e.g.: */
    /* background: url('/img/backgrounds/hero-bg-pattern.png') repeat center center; */
    opacity: 0.1; /* Very subtle pattern or texture */
    z-index: 1;
}

.hero-business-page .container {
    position: relative;
    z-index: 2; /* Ensure content is above the overlay */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 20px; /* Ensure container padding for alignment */
}

.business-hero-logo {
    max-width: 280px; /* Larger logo size for prominence */
    height: auto;
    margin-bottom: 25px; /* Space below the logo */
    border-radius: 10px; /* Softly rounded corners for the logo */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3); /* Stronger shadow for logo pop */
    object-fit: contain; /* Ensures the entire logo is visible */
    background-color: rgba(255, 255, 255, 0.9); /* Slight white background for logo clarity */
    padding: 10px; /* Inner padding for logo */
}

.hero-business-page h1 {
    font-size: 3.2em; /* Prominent heading */
    margin-bottom: 15px; /* Space below title */
    line-height: 1.2;
    color: var(--white); /* White text for contrast against background */
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5); /* Stronger text shadow for readability */
    max-width: 90%; /* Constrain width for better line breaks */
}

.hero-business-page p {
    font-size: 1.6em; /* Larger, more readable subtitle */
    margin-bottom: 40px; /* More space before CTA */
    color: rgba(255, 255, 255, 0.9); /* Slightly transparent white */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    max-width: 80%; /* Constrain width for better line breaks */
}

.hero-business-page .cta-button {
    padding: 18px 40px; /* Larger CTA button */
    font-size: 1.3em; /* Larger font for CTA */
    border-radius: 30px; /* More rounded, pill-shaped button */
    background-color: var(--accent-color); /* Green from your palette */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3); /* Pronounced shadow */
    transition: all 0.4s ease; /* Smoother transition */
}

.hero-business-page .cta-button:hover {
    background-color: #218838; /* Darker green on hover */
    transform: translateY(-5px) scale(1.03); /* Lift and slightly enlarge */
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.4);
}

/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
    .hero-business-page {
        height: 80vh;
    }
    .hero-business-page h1 {
        font-size: 2.8em;
    }
    .hero-business-page p {
        font-size: 1.4em;
    }
    .business-hero-logo {
        max-width: 250px;
    }
}

@media (max-width: 768px) {
    .hero-business-page {
        height: 80vh;
        padding: 20px 15px;
    }
    .hero-business-page h1 {
        font-size: 2.2em;
    }
    .hero-business-page p {
        font-size: 1.2em;
        margin-bottom: 30px;
    }
    .business-hero-logo {
        max-width: 200px;
        margin-bottom: 20px;
    }
    .hero-business-page .cta-button {
        padding: 15px 30px;
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    .hero-business-page {
        height: 80vh;
        padding: 15px 10px;
    }
    .hero-business-page h1 {
        font-size: 1.8em;
    }
    .hero-business-page p {
        font-size: 1em;
        margin-bottom: 25px;
    }
    .business-hero-logo {
        max-width: 160px;
        margin-bottom: 15px;
    }
    .hero-business-page .cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
}

/* ==========================================================================
   Section: Sobre 
   ========================================================================== */

.content-section {
    padding: 60px 0;
    background-color: var(--light-gray); /* Consistent light background */
    color: var(--text-color);
}

.common-section .container {
    padding: 0 25px; /* Consistent container padding */
}

.business-detail-container {
    display: flex;
    flex-direction: column;
    gap: 50px; /* Space between major content blocks */
}

/* --- Business Introduction --- */
.business-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.business-intro h2 {
    font-size: 2.8em;
    color: var(--omega-blue);
    margin-bottom: 25px;
}

.business-intro p {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-color);
}

/* --- Mission/Differentiators Section --- */
.mission-section {
    padding: 30px 0;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.mission-section h2 {
    font-size: 2.2em;
    color: var(--omega-blue);
    margin-bottom: 40px;
    padding-top: 20px;
}

.mission-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 0 30px 30px; /* Padding for the grid inside the section */
}

.mission-card-item {
    background-color: var(--light-gray);
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 250px; /* Ensure consistent height */
    justify-content: center;
}

.mission-card-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.mission-card-item .icon-large {
    font-size: 3.5em; /* Large icons for visual prominence */
    color: var(--primary-color);
    margin-bottom: 20px;
}

.mission-card-item h3 {
    text-align: center;
    font-size: 1.6em;
    color: var(--omega-blue);
    margin-bottom: 15px;
}

.mission-card-item p {
    font-size: 0.95em;
    line-height: 1.7;
    color: var(--text-color);
}

/* --- Services Overview --- */
.services-overview {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    padding: 40px;
}

.services-overview h2 {
    font-size: 2.2em;
    color: var(--omega-blue);
    margin-bottom: 30px;
    text-align: center;
}

.services-overview ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 800px; /* Constrain list width */
}

.services-overview ul li {
    font-size: 1.1em;
    margin-bottom: 15px;
    padding: 10px 0;
    border-bottom: 1px dashed #eee; /* Subtle separator */
    display: flex;
    align-items: flex-start; /* Align icon and text at the top */
    color: var(--text-color);
}

.services-overview ul li:last-child {
    border-bottom: none;
}

.services-overview ul li i {
    color: var(--accent-color); /* Green icon for services */
    margin-right: 15px;
    font-size: 1.4em; /* Slightly larger icons */
    min-width: 30px; /* Ensure icon doesn't shift text */
    text-align: center;
}

/* --- Gallery Section --- */
.gallery-section {
    padding: 40px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.gallery-section h2 {
    font-size: 2.2em;
    color: var(--omega-blue);
    margin-bottom: 30px;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.project-image {
    width: 100%;
    height: 220px; /* Fixed height for consistency */
    object-fit: cover; /* Cover the area, cropping if necessary */
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.project-image:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.lightbox {
    display: none; /* Deixe apenas esta linha para que comece escondido */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    /* REMOVA A LINHA ABAIXO, O JS ADICIONARÁ ISSO DINAMICAMENTE QUANDO NECESSÁRIO */
    /* display: flex; */
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%; /* Limita o tamanho da imagem */
    max-height: 90vh; /* Limita a altura da imagem */
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.close-button {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.close-button:hover,
.close-button:focus {
    color: #bbb;
    text-decoration: none;
}

/* --- Contact Section (adapting for Omega naming) --- */
.contact-section-omega {
    padding: 40px;
    background-color: var(--white); /* Primary color background */
    color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    text-align: center;
}

.contact-section-omega h2 {
    font-size: 2.5em;
    color: var(--omega-blue);
    margin-bottom: 20px;
}

.contact-section-omega p {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.contact-content-omega {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.contact-info-omega {
    background-color: rgba(255, 255, 255, 0.1); /* Subtle background for info block */
    border-radius: 8px;
    padding: 30px;
    text-align: left;
    width: 100%;
    max-width: 500px;
}

.contact-info-omega h3 {
    font-size: 1.6em;
    color: var(--secondary-color); /* Lighter blue for subheadings */
    margin-bottom: 20px;
    text-align: center;
}

.contact-info-omega p {
    font-size: 1em;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    color: var(--primary-color);
}

.contact-info-omega p i {
    margin-right: 12px;
    color: var(--accent-color); /* Green icon */
    font-size: 1.2em;
    min-width: 25px; /* Prevent text from overlapping icon */
}

.contact-section-omega .social-icons-list {
    display: flex;
    justify-content: center; /* Center social icons */
    gap: 20px;
    margin-top: 20px;
    list-style: none;
    padding: 0;
}

.contact-section-omega .social-icons-list li a {
    color: var(--primary-color);
    font-size: 2em;
    transition: color 0.3s ease, transform 0.3s ease;
}

.contact-section-omega .social-icons-list li a:hover {
    color: var(--accent-color);
    transform: scale(1.1);
}

.map-container {
    width: 100%;
    margin-top: 30px;
    border-radius: 8px;
    overflow: hidden; /* Ensures map corner radius */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.map-container iframe {
    width: 100%;
    height: 450px; /* Standard map height */
    border: 0;
}

/* ==========================================================================
   Media Queries for Responsiveness of about-felipe section
   ========================================================================== */

@media (max-width: 1024px) {
    .content-section {
        padding: 50px 0;
    }

    .business-intro h2 {
        font-size: 2.4em;
    }

    .mission-section h2,
    .services-overview h2,
    .gallery-section h2 {
        font-size: 2em;
    }

    .mission-cards-grid {
        gap: 25px;
    }

    .mission-card-item h3 {
        font-size: 1.4em;
    }

    .project-image {
        height: 200px;
    }

    .contact-section-omega h2 {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .content-section {
        padding: 40px 0;
    }

    .business-detail-container {
        gap: 40px;
    }

    .business-intro h2 {
        font-size: 2em;
        margin-bottom: 20px;
    }

    .business-intro p {
        font-size: 1em;
    }

    .mission-section {
        padding: 25px 0;
    }

    .mission-section h2,
    .services-overview h2,
    .gallery-section h2 {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .mission-cards-grid {
        grid-template-columns: 1fr; /* Stack cards vertically */
        padding: 0 20px 20px;
        gap: 20px;
    }

    .mission-card-item {
        padding: 25px;
        min-height: unset;
    }

    .mission-card-item .icon-large {
        font-size: 3em;
        margin-bottom: 15px;
    }

    .mission-card-item h3 {
        font-size: 1.3em;
    }

    .services-overview {
        padding: 30px;
    }

    .services-overview ul li {
        font-size: 1em;
    }

    .gallery-section {
        padding: 30px;
    }

    .project-grid {
        grid-template-columns: 1fr; /* Stack projects vertically */
        gap: 15px;
    }

    .project-image {
        height: 180px;
    }

    .contact-section-omega {
        padding: 30px;
    }

    .contact-section-omega h2 {
        font-size: 2em;
    }

    .contact-section-omega p {
        font-size: 1em;
        margin-bottom: 25px;
    }

    .contact-info-omega {
        padding: 25px;
    }

    .contact-info-omega h3 {
        font-size: 1.4em;
    }

    .contact-info-omega p {
        font-size: 0.95em;
    }

    .contact-section-omega .social-icons-list li a {
        font-size: 1.8em;
    }

    .map-container iframe {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .content-section {
        padding: 30px 0;
    }

    .business-detail-container {
        gap: 30px;
    }

    .business-intro h2 {
        font-size: 1.8em;
    }

    .business-intro p {
        font-size: 0.9em;
    }

    .mission-section h2,
    .services-overview h2,
    .gallery-section h2 {
        font-size: 1.6em;
        margin-bottom: 25px;
    }

    .mission-cards-grid {
        padding: 0 15px 15px;
    }

    .mission-card-item {
        padding: 20px;
    }

    .mission-card-item .icon-large {
        font-size: 2.5em;
    }

    .mission-card-item h3 {
        font-size: 1.2em;
    }

    .services-overview {
        padding: 25px;
    }

    .services-overview ul li {
        font-size: 0.9em;
        margin-bottom: 10px;
    }

    .gallery-section {
        padding: 25px;
    }

    .project-image {
        height: 150px;
    }

    .contact-section-omega {
        padding: 25px;
    }

    .contact-section-omega h2 {
        font-size: 1.8em;
    }

    .contact-section-omega p {
        font-size: 0.9em;
        margin-bottom: 20px;
    }

    .contact-info-omega {
        padding: 20px;
    }

    .contact-info-omega h3 {
        font-size: 1.2em;
    }

    .contact-info-omega p {
        font-size: 0.85em;
    }

    .contact-section-omega .social-icons-list li a {
        font-size: 1.5em;
    }

    .map-container iframe {
        height: 280px;
    }
}

/* ==========================================================================
   Section: Voltar para Negócios (back-to-businesses) - CTA Section
   ========================================================================== */

#back-to-businesses {
    background-color: var(--secondary-color); /* Use secondary-color for a distinct CTA */
    color: var(--white);
    padding: 70px 0; /* More vertical padding for impact */
    text-align: center;
    margin-top: 60px; /* Space from the previous section */
    box-shadow: inset 0 5px 15px rgba(0, 0, 0, 0.25), 0 -5px 15px rgba(0, 0, 0, 0.1); /* Stronger shadows */
}

#back-to-businesses .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 25px; /* Consistent padding */
}

#back-to-businesses h2 {
    font-size: 2.8em; /* Large, impactful heading */
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); /* Subtle text shadow for depth */
    line-height: 1.2;
}

#back-to-businesses p {
    font-size: 1.4em; /* Clear and inviting paragraph */
    max-width: 700px;
    margin-bottom: 40px; /* More space before the button */
    color: rgba(255, 255, 255, 0.9); /* Slightly transparent white */
}

#back-to-businesses .cta-button {
    padding: 18px 40px; /* Larger button */
    font-size: 1.3em; /* Larger text in button */
    border-radius: 30px; /* More rounded, pill-shaped button */
    background-color: var(--accent-color); /* Green for primary action */
    color: var(--white);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3); /* Prominent shadow */
    transition: all 0.3s ease; /* Smooth transitions for hover effects */
    text-decoration: none; /* Ensure no underline */
    border: none; /* No border */
    cursor: pointer; /* Indicate clickable */
}

#back-to-businesses .cta-button:hover {
    background-color: #218838; /* Darker green on hover */
    transform: translateY(-3px) scale(1.02); /* Lift and slight enlarge effect */
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.4); /* Enhanced shadow on hover */
}

/* ==========================================================================
   Media Queries for Responsiveness of back-to-businesses section
   ========================================================================== */

@media (max-width: 1024px) {
    #back-to-businesses {
        padding: 60px 0;
    }
    #back-to-businesses h2 {
        font-size: 2.4em;
    }
    #back-to-businesses p {
        font-size: 1.2em;
    }
    #back-to-businesses .cta-button {
        padding: 15px 35px;
        font-size: 1.2em;
    }
}

@media (max-width: 768px) {
    #back-to-businesses {
        padding: 50px 0;
        margin-top: 40px;
    }
    #back-to-businesses h2 {
        font-size: 2em;
        margin-bottom: 15px;
    }
    #back-to-businesses p {
        font-size: 1em;
        margin-bottom: 30px;
    }
    #back-to-businesses .cta-button {
        padding: 12px 30px;
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    #back-to-businesses {
        padding: 40px 0;
        margin-top: 30px;
    }
    #back-to-businesses h2 {
        font-size: 1.8em;
    }
    #back-to-businesses p {
        font-size: 0.9em;
        margin-bottom: 25px;
    }
    #back-to-businesses .cta-button {
        padding: 10px 25px;
        font-size: 1em;
    }
}

/* ==========================================================================
   Footer (Reused from previous CSS, adapted)
   ========================================================================== */

footer {
    background: var(--dark-gray);
    color: #fff;
    padding: 40px 0 20px;
    margin-top: 50px;
}

footer .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    padding: 0 25px; /* Consistent padding */
}

footer .footer-logo{
    width: 200px; /* Adjusted size */
    height: auto;
}

footer .footer-col {
    flex: 1;
    min-width: 220px; /* Smaller min-width for footer columns */
}

footer .footer-col.center-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

footer .footer-col h3 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-size: 1.3em;
    text-align: left;
}

footer .footer-col.center-content h3 {
    text-align: center;
}

footer .footer-col p,
footer .footer-col ul li {
    font-size: 0.9em;
    margin-bottom: 10px;
    line-height: 1.5;
    text-align: left;
}

footer .footer-col.center-content p {
    text-align: center;
}

footer .footer-col ul {
    list-style: none;
    padding: 0;
}

footer .footer-col ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer .footer-col ul li a:hover {
    color: var(--secondary-color);
}

footer .social-icons-list {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    justify-content: flex-start;
}

footer .footer-col.center-content .social-icons-list {
    justify-content: center;
}

footer .social-icons-list li a {
    color: #fff;
    font-size: 1.3em;
    transition: color 0.3s ease;
}

footer .social-icons-list li a:hover {
    color: var(--secondary-color);
}

.footer-bottom-text {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #555;
    font-size: 0.8em;
    color: #ccc;
}

/* ==========================================================================
   Media Queries for Responsiveness
   ========================================================================== */

@media (max-width: 1024px) {
    h1 {
        font-size: 2.5em;
    }

    h2 {
        font-size: 2em;
    }

    .hero-section {
        height: 45vh;
    }

    .hero-section h1 {
        font-size: 3em;
    }

    .hero-section p {
        font-size: 1.2em;
    }

    .business-cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }

    .business-card-content h3 {
        font-size: 1.4em;
    }

    .join-cta-section h2 {
        font-size: 2.2em;
    }

    .join-cta-section p {
        font-size: 1.1em;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    header .nav-menu-list {
        display: none; /* Hide by default on smaller screens */
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 90px; /* Adjust based on header height */
        left: 0;
        background: var(--omega-blue);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
        padding-bottom: 20px;
    }

    header .nav-menu-list.active {
        display: flex; /* Show when active */
    }

    header .nav-menu-list li {
        margin: 10px 0;
        text-align: center;
    }

    .mobile-menu-btn {
        display: block; /* Show hamburger button */
    }

    .hero-section {
        height: 40vh;
    }

    .hero-section h1 {
        font-size: 2.2em;
    }

    .hero-section p {
        font-size: 1em;
    }

    .filter-controls {
        flex-direction: column;
    }

    .filter-controls input[type="text"],
    .filter-controls select,
    .filter-controls button {
        width: 80%; /* Make inputs and button wider */
        margin-bottom: 15px; /* Add space between them */
    }

    .business-cards-grid {
        grid-template-columns: 1fr; /* Stack cards vertically */
        gap: 20px;
    }

    .business-card-image {
        height: 180px;
    }

    .business-card-content {
        padding: 20px;
    }

    .business-card-content h3 {
        font-size: 1.3em;
    }

    .join-cta-section h2 {
        font-size: 2em;
    }

    .join-cta-section p {
        font-size: 1em;
    }

    footer .container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    footer .footer-col {
        min-width: unset;
        width: 100%;
    }

    footer .footer-col h3,
    footer .footer-col p,
    footer .footer-col ul {
        text-align: center;
    }

    footer .social-icons-list {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2em;
    }

    h2 {
        font-size: 1.8em;
    }

    .hero-section {
        height: 35vh;
    }

    .hero-section h1 {
        font-size: 1.8em;
    }

    .hero-section p {
        font-size: 0.9em;
    }

    .filter-controls input[type="text"],
    .filter-controls select,
    .filter-controls button {
        width: 95%;
    }

    .business-card-content h3 {
        font-size: 1.2em;
    }

    .business-card-content p {
        font-size: 0.9em;
    }

    .join-cta-section h2 {
        font-size: 1.8em;
    }

    .join-cta-section p {
        font-size: 0.9em;
    }

    footer .footer-logo {
        width: 150px;
    }

    footer .footer-col h3 {
        font-size: 1.2em;
    }

    footer .social-icons-list li a {
        font-size: 1.2em;
    }
}