/* 
   Smart Tech Contracting Website Styles
   Colors: 
   - Dark Blue: #020C3D
   - Orange: #EC7626
   - Light Gray: #E3E6EB
   Fonts:
   - Headings: Michroma
   - Body: Segoe UI (fallback to system-ui)
*/

/* ======== Base Styles ======== */
:root {
    --primary-color: #020C3D;
    --secondary-color: #EC7626;
    --light-color: #E3E6EB;
    --dark-color: #000000;
    --white-color: #FFFFFF;
    --gray-color: #6B7280;
    --heading-font: 'Michroma', sans-serif;
    --body-font: 'Segoe UI', system-ui, -apple-system, sans-serif;
    --transition: all 0.3s ease;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 10px 15px rgba(0, 0, 0, 0.2);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--body-font);
    line-height: 1.6;
    color: #333;
    background-color: var(--white-color);
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

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

    a:hover {
        color: var(--primary-color);
    }

ul, ol {
    list-style-position: inside;
    margin-bottom: 1rem;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem 1rem 1.5rem;
    overflow-x: hidden;
    box-sizing: border-box;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
}

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

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

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

    .btn-light:hover {
        background-color: var(--light-color);
    }

.btn-full {
    width: 100%;
}

.section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

    .section-header h2 {
        display: inline-block;
        position: relative;
        margin-bottom: 1rem;
    }

.section-divider {
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    margin: 0 auto;
}

.section-intro {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--secondary-color);
    margin-top: 1.5rem;
}

.sub-section-header {
    margin-bottom: 2rem;
}

    .sub-section-header h3 {
        font-size: 1.8rem;
        font-weight: 600;
        color: var(--primary-color);
        border-left: 5px solid var(--secondary-color);
        padding-left: 15px;
        margin-bottom: 1rem;
    }

.bg-light {
    background-color: var(--light-color);
}

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

    .bg-primary h2, .bg-primary h3, .bg-primary h4 {
        color: var(--white-color);
    }

/* ======== Header & Navigation ======== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: var(--transition);
}

    header.scrolled {
        background-color: var(--white-color);
    }

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    overflow: hidden;
}

.logo {
    display: flex;
    align-items: center;
}

    .logo img {
        height: 50px;
    }

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
}

    .nav-menu li {
        margin-left: 1.5rem;
    }

.nav-link {
    color: var(--primary-color);
    font-weight: 600;
    padding: 0.5rem 0;
    position: relative;
}

    .nav-link:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background-color: var(--secondary-color);
        transition: var(--transition);
    }

    .nav-link:hover:after,
    .nav-link.active:after {
        width: 100%;
    }

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
}

/* ======== Hero Section & Carousel ======== */
.hero-section {
    position: relative;
    height: 85vh;
    min-height: 600px;
    padding-top: 80px;
    background-color: var(--primary-color);
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

.carousel-container {
    position: relative;
    height: 100%;
    width: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .carousel-slide::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(2, 12, 61, 0.6);
        z-index: 1;
    }

    .carousel-slide.active {
        opacity: 1;
        z-index: 2;
    }

.hero-content {
    text-align: center;
    max-width: 800px;
    padding: 2rem;
    color: var(--white-color);
    position: relative;
    z-index: 2;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

    .hero-content h1 {
        font-size: 2.5rem;
        color: var(--white-color);
        margin-bottom: 1.5rem;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .hero-content p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

.carousel-controls {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.prev-slide, .next-slide {
    color: var(--white-color);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    margin: 0 1rem;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

    .prev-slide:hover, .next-slide:hover {
        background-color: rgba(0, 0, 0, 0.5);
    }

.slide-indicators {
    display: flex;
    gap: 10px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

    .indicator.active {
        background-color: var(--secondary-color);
    }

/* ======== About Section ======== */
.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 4rem;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

    .about-text h3 {
        color: var(--secondary-color);
        margin-top: 1.5rem;
        margin-bottom: 1rem;
    }

    .about-text ul {
        list-style-type: none;
    }

    .about-text li {
        position: relative;
        padding-left: 1.5rem;
        margin-bottom: 0.5rem;
    }

        .about-text li:before {
            content: '→';
            position: absolute;
            left: 0;
            color: var(--secondary-color);
        }

.about-stats {
    flex: 1;
    min-width: 300px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
}

.stat-box {
    background-color: var(--white-color);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

    .stat-box p {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .stat-box:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-hover);
    }

    .stat-box i {
        font-size: 2.5rem;
        color: var(--secondary-color);
        margin-bottom: 1rem;
    }

    .stat-box h4 {
        font-size: 1.8rem;
        color: var(--primary-color);
        margin-bottom: 0.5rem;
    }

/* Leadership Section */
.leadership-section {
    margin-top: 3rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    background-color: var(--white-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

    .team-member:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-hover);
    }

.member-photo {
    width: 100%;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}

    .member-photo img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
    }

    .member-photo svg {
        width: 150px;
        height: 150px;
        border-radius: 50%;
        margin: 0 auto;
        display: block;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        background-color: var(--light-color);
    }

.member-info {
    padding: 1.5rem;
    text-align: center;
}

    .member-info h3 {
        color: var(--primary-color);
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }

.member-title {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.member-email {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: var(--light-color);
    color: var(--primary-color);
    border-radius: 4px;
    transition: var(--transition);
    font-size: 0.9rem;
}

    .member-email:hover {
        background-color: var(--secondary-color);
        color: var(--white-color);
    }

/* ======== Services Section ======== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.service-card {
    background-color: var(--white-color);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
}

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-hover);
    }

.service-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.8rem;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover .service-icon {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

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

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.2rem;
    font-size: 1.3rem;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 0.8rem;
    display: inline-block;
}

.sub-services {
    margin-bottom: 1.8rem;
    flex-grow: 1;
}

.multi-column-list {
    list-style: none;
    padding: 0;
    column-count: 2;
    column-gap: 1.2rem;
    text-align: left;
    margin: 0 auto;
    max-width: 90%;
}

    .multi-column-list li {
        position: relative;
        padding-left: 1.2rem;
        margin-bottom: 0.5rem;
        break-inside: avoid;
    }

        .multi-column-list li:before {
            content: '•';
            position: absolute;
            left: 0;
            color: var(--secondary-color);
            font-weight: bold;
        }

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    margin-top: auto;
}

/* ======== Gallery Section ======== */
.gallery-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    gap: 1rem;
}

.filter-btn {
    padding: 0.5rem 1.5rem;
    border: 2px solid var(--primary-color);
    background-color: transparent;
    color: var(--primary-color);
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
}

    .filter-btn:hover, .filter-btn.active {
        background-color: var(--primary-color);
        color: var(--white-color);
    }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

    .gallery-item:hover {
        transform: scale(1.02);
        box-shadow: var(--shadow-hover);
    }

.gallery-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

    .gallery-image svg {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.gallery-item:hover .gallery-image svg {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(2, 12, 61, 0.9);
    color: var(--white-color);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h4 {
    color: var(--white-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.gallery-overlay p {
    font-size: 0.9rem;
    margin-bottom: 0;
    max-height: 150px;
    overflow-y: auto;
}

/* ======== Ecosystem Section ======== */
.ecosystem-section {
    margin-top: 5rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.ecosystem-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    gap: 1rem;
}

.ecosystem-filter-btn {
    padding: 0.5rem 1.5rem;
    border: 2px solid var(--secondary-color);
    background-color: transparent;
    color: var(--secondary-color);
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
}

    .ecosystem-filter-btn:hover, .ecosystem-filter-btn.active {
        background-color: var(--secondary-color);
        color: var(--white-color);
    }

.ecosystem-logo-container {
    position: relative;
    min-height: 300px;
}

.ecosystem-logo-grid {
    display: none;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    position: absolute;
    width: 100%;
}

    .ecosystem-logo-grid.active {
        display: grid;
        opacity: 1;
        position: relative;
    }

.logo-item {
    background-color: var(--white-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    min-height: 100px;
}

    .logo-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    .logo-item svg {
        width: 100%;
        height: auto;
    }

    .logo-item img.client-logo {
        width: 100%;
        max-height: 80px;
        object-fit: contain;
    }

/* ======== Careers Section ======== */
.careers-content {
    margin-top: 2rem;
}

    .careers-content iframe {
        width: 100%;
        min-height: 800px;
        border: none;
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        background-color: var(--white-color);
    }

@media screen and (max-width: 768px) {
    .careers-content iframe {
        min-height: 600px;
    }
}

/* ======== Call to Action Section ======== */
.cta-section {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 5rem 0;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

    .cta-content h2 {
        color: var(--white-color);
        margin-bottom: 1.5rem;
    }

    .cta-content p {
        margin-bottom: 2rem;
        font-size: 1.1rem;
    }

/* ======== Contact Section ======== */
.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

    .contact-content.centered {
        justify-content: center;
    }

.contact-info.text-center {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

    .contact-info.text-center h3 {
        text-align: center;
        margin-bottom: 1.5rem;
    }

.contact-info, .contact-form {
    flex: 1;
    min-width: 300px;
}

.contact-details {
    margin: 2rem 0;
}

.contact-item {
    display: flex;
    margin-bottom: 1.5rem;
    justify-content: center;
}

    .contact-item.vertical {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 2rem;
    }

        .contact-item.vertical .contact-text {
            margin-top: 0.5rem;
            text-align: center;
        }

    .contact-item i {
        font-size: 1.5rem;
        color: var(--secondary-color);
        margin-right: 1rem;
        min-width: 30px;
        text-align: center;
    }

    .contact-item.vertical i {
        font-size: 2rem;
        margin-right: 0;
        margin-bottom: 0.5rem;
    }

    .contact-item h4 {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--white-color);
    transition: var(--transition);
}

    .social-icon:hover {
        background-color: var(--secondary-color);
        transform: translateY(-3px);
    }

.form-group {
    margin-bottom: 1.5rem;
}

    .form-group label {
        display: block;
        margin-bottom: 0.5rem;
        font-weight: 600;
        color: var(--primary-color);
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 0.75rem;
        border: 1px solid #ddd;
        border-radius: 4px;
        font-family: var(--body-font);
        font-size: 1rem;
        transition: var(--transition);
    }

        .form-group input:focus,
        .form-group textarea:focus {
            border-color: var(--secondary-color);
            outline: none;
            box-shadow: 0 0 0 2px rgba(236, 118, 38, 0.2);
        }

/* ======== Footer ======== */
footer {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
}

    .footer-logo img {
        height: 60px;
        margin-bottom: 1rem;
    }

.footer-links {
    flex: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-column {
    flex: 1;
    min-width: 150px;
}

    .footer-column h4 {
        color: var(--white-color);
        margin-bottom: 1.5rem;
        position: relative;
        padding-bottom: 0.5rem;
    }

        .footer-column h4:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 40px;
            height: 3px;
            background-color: var(--secondary-color);
        }

    .footer-column ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-column li {
        margin-bottom: 0.8rem;
    }

    .footer-column a {
        color: var(--light-color);
        transition: var(--transition);
    }

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

/* ======== Back to Top Button ======== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 99;
}

    .back-to-top.active {
        opacity: 1;
        visibility: visible;
    }

    .back-to-top:hover {
        background-color: var(--primary-color);
        transform: translateY(-5px);
    }

/* ======== Animations ======== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 1s ease forwards;
}

/* ======== Responsive Design ======== */
@media screen and (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero-section {
        height: 70vh;
    }

    .about-content, .contact-content {
        flex-direction: column;
    }

    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-content {
        gap: 2rem;
    }
}

@media screen and (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        max-width: 100vw;
        background-color: var(--white-color);
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        transform: translateY(-150%);
        transition: transform 0.4s ease;
        z-index: 999;
        overflow-x: hidden;
    }

        .nav-menu.active {
            transform: translateY(0);
        }

        .nav-menu li {
            margin: 1rem 0;
            width: 100%;
            text-align: center;
        }

    .hero-content h1 {
        font-size: 2rem;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid, .logo-grid {
        grid-template-columns: 1fr 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media screen and (max-width: 576px) {
    .section {
        padding: 3rem 0;
    }

    .hero-content {
        padding: 1rem;
    }

        .hero-content h1 {
            font-size: 1.8rem;
        }

        .hero-content p {
            font-size: 1rem;
        }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .logo-grid {
        grid-template-columns: 1fr;
    }

    .ecosystem-category h3 {
        font-size: 1.3rem;
    }

    .gallery-filter {
        flex-direction: column;
        align-items: center;
    }

    .filter-btn {
        width: 100%;
        max-width: 200px;
    }

    .member-title {
        font-size: 0.8rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 1.5rem;
    }

    .multi-column-list {
        column-count: 1;
        max-width: 100%;
    }
}

/* Contact link styles */
.contact-link {
    color: var(--primary-color);
    transition: color 0.3s ease, text-decoration 0.3s ease;
    text-decoration: none;
}

    .contact-link:hover {
        color: var(--secondary-color);
        text-decoration: underline;
    }
