html, body {
    height: 100%;
}
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
main {
    flex: 1 0 auto;
}
footer {
    width: 100vw;
    left: 0;
    right: 0;
    position: relative;
    box-sizing: border-box;
    flex-shrink: 0;
}


.env-green {
    color: #21c727;
    font-weight: 900;
}
/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #232323;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 2rem;
    z-index: 3000;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.10);
    font-size: 1rem;
    gap: 1.5rem;
}
.cookie-btn {
    background: #ff8527;
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
.cookie-btn:hover {
    background: #c36e2d;
}
body {
    background: #232323;
    color: #fff;
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}
header {
    position: sticky;
    top: 0;
    background: #232323;
    box-shadow: none;
    z-index: 50;
}
nav {
    display: flex;
    align-items: stretch; /* Use stretch for vertical alignment */
    justify-content: space-between;
    padding: 0;           /* Remove padding! */
    height: 4px;         /* Optional: match .nav-bar */
}
nav .flex {
    display: flex;
    align-items: center;
}
nav .logo {
    height: 55px;
    width: auto;
    margin-right: 12px;
}
nav .nav-links {
    display: none;
}
nav .nav-links a {
    margin: 0 1rem;
    font-weight: 500;
    text-decoration: none;
    color: #fff;
    transition: color 0.2s;
}
nav .nav-links a:hover {
    color: #ff8527;
}
nav .quote-btn {
    display: none;
}
nav .hamburger {
    display: flex;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
}
#mobile-menu {
    display: none;
    flex-direction: column;
    padding: 0 1rem 1rem 1rem;
}
#mobile-menu a {
    padding: 0.5rem 0;
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: color 0.2s;
}
#mobile-menu a:hover {
    color: #ff8527;
}
#mobile-menu .quote-btn {
    background: #ff8527;
    color: #fff;
    border-radius: 999px;
    text-align: center;
    margin-top: 0.5rem;
    padding: 0.5rem 0;
    font-weight: 600;
    transition: background 0.2s;
}
#mobile-menu .quote-btn:hover {
    background: #c36e2d;
}
@media (min-width: 768px) {
    nav .nav-links {
        display: flex;
    }
    nav .quote-btn {
        display: inline-block;
        background: #ff8527;
        color: #fff;
        padding: 0.5rem 1.5rem;
        border-radius: 999px;
        font-weight: 600;
        text-decoration: none;
        transition: background 0.2s;
    }
    nav .quote-btn:hover {
        background: #c36e2d;
    }
    nav .hamburger {
        display: none;
    }
    #mobile-menu {
        display: none !important;
    }
}
.menu-tabs {
    display: flex;
    gap: 2rem; /* space between menu items */
    align-items: center;
    background: transparent;
    margin: 0;
    height: 74px;
    padding: 0;
}
.menu-tab,
.menu-tab.quote-btn {
    background: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    font-size: 1.1rem;
    padding: 0;
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    transition: color 0.2s;
    border-bottom: 2px solid transparent; /* invisible line by default */
}
.menu-tab:hover,
.menu-tab:focus,
.menu-tab.active,
.menu-tab.quote-btn:hover,
.menu-tab.quote-btn:focus {
    color: #ff8527;
    border-bottom: 2px solid #ff8527; /* underline on hover/active */
}
.menu-tab.quote-btn {
    color: #ff8527; /* Or #fff if you want it red, otherwise match the rest */
    font-weight: 600;
    border-bottom: 2px solid transparent;
    /* Remove margin-right if you had it before */
}
.nav-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem; /* Restore horizontal padding */
    background: #232323;
    min-height: 64px;
    box-shadow: none;
    position: relative;
    z-index: 100;
}

/* Remove these overrides if present */
.nav-bar, nav {
    padding-right: 0 !important;
}

.menu-tabs {
    margin-right: 0;
    padding-right: 0;
}
.logo-area {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.logo {
    height: 40px;
    width: 40px;
}
.brand {
    font-weight: bold;
    font-size: 1.2rem;
    letter-spacing: 1px;
}
.menu-tabs {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}
.menu-tab,
.menu-tab.quote-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1.2rem;
    height: 44px;
    background: #232323;
    border: 0px solid #eee;
    border-radius: 16px;
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    font-size: 1rem;
    transition: background 0.2s, color 0.2s;
    box-shadow: none;
    position: relative;
}
.menu-tab:hover,
.menu-tab:focus {
    
    color: #ff8527;
}
.menu-tab.quote-btn {
    background: #ff8527;
    color: #000000;
    border: 1px solid #ff8527;
    font-weight: 600;
    transition: background 0.2s, color 0.2s;
    margin-right: 1.5rem; /* Add this line for spacing */
}
.menu-tab.quote-btn:hover,
.menu-tab.quote-btn:focus {
    background: #c36e2d;
    color: #fff;
}
/* Hamburger for mobile */
.hamburger {
    display: none;
    font-size: 2rem;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    margin-left: 1rem;
}

/* Mobile menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 0;
    background: #232323;
    border: 1px solid #ddd;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    z-index: 200;
    min-width: 200px;
}
.mobile-menu a {
    padding: 1rem;
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    border-bottom: 1px solid #eee;
    transition: background 0.2s, color 0.2s;
}
.mobile-menu a:last-child {
    border-bottom: none;
}
.mobile-menu a:hover {
    background: #333;
    color: #ff8527;
}
.mobile-menu .quote-btn {
    background: #ff8527;
    color: #000000;
    font-weight: 600;
    border-radius: 6px;
    margin: 1rem;
    padding: 0.5rem 1.2rem;
    border: none;
}
.mobile-menu .quote-btn:hover {
    background: #c36e2d;
}

/* Responsive: Show hamburger, hide menu-tabs on mobile */
@media (max-width: 900px) {
    .nav-bar {
        padding: 0 1rem;
    }
    .menu-tabs {
        gap: 0.2rem;
    }
    .menu-tab {
        padding: 0 0.7rem;
        font-size: 0.95rem;
    }
}
@media (max-width: 768px) {
    .menu-tabs {
        display: none;
    }
    .hamburger {
        display: block;
    }
    .mobile-menu {
        display: flex;
    }
}
section.hero {
    position: relative;
    height: 60vh;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000000;
    overflow: hidden;
}
section.hero img.bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    z-index: 1;
}
section.hero .content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}
section.hero h1 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #fff;
}

.highlight {
    color: #ff8527;
    font-weight: 900;
}

section.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #000000;
}
section.hero .cta-btn {
    background: #ff8527;
    color: #000000;
    padding: 0.75rem 2rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: background 0.2s;
    border: none;
    cursor: pointer;
}
section.hero .cta-btn:hover {
    background: #c36e2d;
}
section.hero .social-icons {
    justify-content: center;
    align-items: center;
    display: flex;
    margin-top: 1rem;
}
section.services {
    padding: 4rem 1rem;
}
section.services h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #fff;
}
.services-subtitle {
    text-align: center;
    color: #ddd;
    font-size: 1.15rem;
    margin-bottom: 2rem;
}
.services-grid-6 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}
@media (min-width: 600px) {
    .services-grid-6 {
        grid-template-columns: 1fr 1fr;
    }
}
@media (min-width: 900px) {
    .services-grid-6 {
        grid-template-columns: 1fr 1fr 1fr;
    }
}
.service-box {
    background: #232323;
    border-radius: 12px;
    border: 1px solid #ff8527;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    padding: 2rem 1.2rem;
    text-align: center;
    transition: transform 0.18s, box-shadow 0.18s, background 0.18s;
    cursor: pointer;
}
.service-box:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
    background: #2e2e2e;
}
.service-icon {
    font-size: 2.5rem;
    color: #ff8527; /* Or your accent color */
    margin-bottom: 1rem;
}
.service-box h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
    color: #fff;
}
.service-box p {
    color: #ddd;
    font-size: 1rem;
    margin-bottom: 0;
}
section.about {
    background: #232323;
    padding: 4rem 1rem;
}
.about-section {
    max-width: 1200px;
    margin: 3rem auto 2rem auto;
    padding: 0 1rem;
}
.about-flex {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    justify-content: space-between;
    max-width: 1200px;
    margin: 3rem auto 2rem auto;
    padding: 0 1rem;
}
.about-text {
    flex: 2 1 350px;
    font-size: 1.1rem;
    color: #fff;
}
.about-text h2 {
    margin-top: 0;
}
.about-text p {
    margin-bottom: 1.2rem;
}
.team-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    flex: 1 1 300px;
    align-items: flex-end;
}
.team-card {
    background: #232323;
    border-radius: 10px;
    padding: 1.2rem;
    color: #fff;
    width: 220px;
    text-align: left; /* <-- Change from center to left */
}
.team-card img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 0.7rem;
}
.team-card h4 {
    margin: 0.5rem 0 0.2rem 0;
    font-size: 1.1rem;
    text-align: left; /* Ensure all text is left-aligned */
}
.team-card p {
    margin: 0;
    font-size: 1rem;
    color: #ccc;
    text-align: left; /* Ensure all text is left-aligned */
}
@media (min-width: 768px) {
    .about-content {
        flex-direction: row;
        gap: 3rem;
    }
    .about-team {
        flex-direction: column;
        gap: 2rem;
        justify-content: flex-start;
    }
}
@media (max-width: 900px) {
    .about-flex {
        flex-direction: column;
        gap: 2rem;
        align-items: stretch;
    }
    .team-grid {
        flex-direction: row;
        gap: 1.2rem;
        justify-content: flex-start;
        align-items: flex-start;
    }
}
@media (max-width: 600px) {
    .team-grid {
        flex-direction: column;
        align-items: stretch;
    }
    .team-card {
        width: 100%;
    }
}
section.gallery {
    padding: 4rem 1rem;
}
section.gallery h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #fff;
}
.gallery-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr 1fr;
}
@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
.gallery-grid img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.navigera .gallery-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;   /* Center the cards horizontally */
    align-items: stretch;
    margin-top: 1.5rem;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}
.navigera h2 {
    text-align: center;        /* Center the heading */
}
.gallery-card {
    flex: 1 1 260px; /* Grow, shrink, min width */
    max-width: 340px;
    min-width: 220px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: #232323;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    overflow: hidden;
    margin-bottom: 2rem;
}
.gallery-link {
    position: relative;
    display: block;
    width: 100%;
}
.gallery-link img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}
.gallery-title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0,0,0,0.55);
    color: #fff;
    font-size: 1.3rem;
    font-weight: 600;
    padding: 0.7rem 1rem;
    text-align: left;
}
.gallery-desc {
    padding: 1rem 1rem 0.5rem 1rem;
    color: #ddd;
    font-size: 1rem;
}
.gallery-btn {
    margin: 0 1rem 1rem 1rem;
    padding: 0.5rem 1.2rem;
    background: #ff8527;
    color: #fff;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: background 0.2s;
    display: inline-block;
}
.gallery-btn:hover {
    background: #c36e2d;
}
section.contact {
    background: #232323;
    padding: 4rem 1rem;
}
section.contact h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
}
.contact-form {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    border-radius: 12px;
    padding: 2rem;
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.contact-form label {
    font-weight: 600;
    margin-bottom: 0.3rem;
    display: block;
    color: #222;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 0.7rem;
    font-size: 1rem;
    margin-top: 0.2rem;
    transition: border 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #ff8527;
    outline: none;
}
.contact-form button {
    background: #ff8527;
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 1rem;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.2s;
}
.contact-form button:hover {
    background: #c36e2d;
}
footer {
    background: #010101;
    color: #eee;
    padding: 2rem 1rem 1rem 1rem;
    margin-top: 3rem;
}
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.footer-left {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    justify-content: flex-start;
    flex-direction: row;
    text-align: left;
    width: auto;
}

.footer-left .logo {
    height: 55px;
    width: auto;
}

.footer-social {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-top: 0;
    justify-content: flex-start;
}

.footer-center {
    text-align: center;
    flex: 1 1 300px;
    color: #eee;
    font-size: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    margin-top: 0;
    justify-content: flex-end;
}

.footer-links a {
    color: #eee;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #ff8527;
}

@media (max-width: 900px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2rem;
        max-width: 100vw;
        overflow-x: hidden;
        box-sizing: border-box;
    }
    .footer-left, .footer-center, .footer-links {
        justify-content: center;
        align-items: center;
        width: 100%;
        margin: 0;
        box-sizing: border-box;
        max-width: 100vw;
        overflow-x: hidden;
    }
    .footer-links {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1.5rem;
        max-width: 100vw;
        overflow-x: hidden;
        box-sizing: border-box;
        flex-wrap: wrap;
    }
    .footer-links a {
        font-size: 1.1rem;
        padding: 0.5rem 0;
        word-break: break-word;
        max-width: 100vw;
        box-sizing: border-box;
    }
    .footer-left .logo {
        margin-bottom: 1rem;
    }
    footer {
        max-width: 100vw;
        overflow-x: hidden;
        box-sizing: border-box;
    }
}
.modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}
.modal-window {
    background: #232323;
    border-radius: 12px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 4px 24px rgba(0,0,0,0.15);
}
.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: #ff8527;
    cursor: pointer;
}
@media (max-width: 600px) {
    .modal-window {
        padding: 1rem;
    }
}
.checkbox-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.5rem;
}
.checkbox-list label {
    font-weight: 400;
    cursor: pointer;
}
.dropdown-checkbox {
    position: relative;
    width: 100%;
    max-width: 400px;
}
.dropdown-btn {
    width: 100%;
    padding: 0.7rem;
    border: 1px solid #ddd;
    background: #fff;
    cursor: pointer;
    text-align: left;
    border-radius: 8px;
    font-size: 1rem;
}
.dropdown-list {
    position: absolute;
    top: 100%;
    left: 0;
    bottom: auto;
    width: 100%;
    background: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    z-index: 10;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    margin-top: 2px;
}
.dropdown-list label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 0;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    font-weight: 400;
    font-size: 1rem;
}
.dropdown-list label:last-child {
    border-bottom: none;
}
.dropdown-list input[type="checkbox"] {
  margin: 0;
  width: 1rem;
  height: 1rem;
}

/* Center the info text in the quote section */
#quote h3 {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 600px; /* Optional: limits line length for readability */
}
.gallery-section {
    margin: 3rem auto 2rem auto;
    max-width: 1200px;
    padding: 0 1rem;
}
.gallery-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #fff;
}
.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}
.image-gallery img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.2s;
}
.image-gallery img:hover {
    transform: scale(1.04);
}
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    overflow: auto;
    background: rgba(0,0,0,0.85);
    justify-content: center;
    align-items: center;
}
.lightbox-modal.active {
    display: flex;
}
.lightbox-content {
    max-width: 90vw;
    max-height: 80vh;
    margin: auto;
    border-radius: 10px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}
.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 2.5rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 2100;
    transition: color 0.2s;
}
.lightbox-close:hover {
    color: #ff8527;
}
.carousel-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 0;
}

.carousel-arrow {
    background: none;
    border: none;
    color: #ff8527;
    font-size: 2.5rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.carousel-arrow:hover {
    color: #c36e2d;
    background: none;
}

.carousel-track-wrapper {
    overflow: hidden;
    width: 1400px; /* 5 images * 260px + margins */
    max-width: 98vw;
}

.carousel-track {
    display: flex;
    transition: transform 0.4s cubic-bezier(.4,0,.2,1);
}

.carousel-track img {
    width: 260px;
    height: 180px;
    object-fit: cover;
    margin: 0 10px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    cursor: pointer;
    background: #eee;
    flex-shrink: 0;
}

@media (max-width: 1100px) {
    .carousel-track-wrapper {
        width: 800px;
    }
    .carousel-track img {
        width: 160px;
    }
}
@media (max-width: 900px) {
    .carousel-track-wrapper {
        width: 600px;
    }
    .carousel-track img {
        width: 110px;
    }
}
@media (max-width: 700px) {
    .carousel-track-wrapper {
        width: 98vw;
    }
    .carousel-track img {
        width: 80vw;
        max-width: 320px;
        margin: 0 4px;
    }
}
.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #fff;
    font-size: 3rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 2101;
    padding: 0 18px;
    transition: color 0.2s;
    user-select: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
#gallery-prev, #lightbox-prev { left: 20px; }
#gallery-next, #lightbox-next { right: 20px; }
.lightbox-arrow:hover { color: #ff8527; }
.about-header-img {
    display: block;
    width: 100%;
    max-width: 1200px;
    height: auto;
    margin: 2rem auto 0 auto;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
}
.social-icons, .footer-social, .logo-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icons a, .footer-social a, .logo-social a {
    color: #fff;
    font-size: 1.7rem;
    transition: color 0.2s;
}

.social-icons a:hover, .footer-social a:hover, .logo-social a:hover {
    color: #ff8527;
}
.footer-social {
    justify-content: flex-start;
    align-items: center;
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

/* Highlight mail and phone links on hover */
footer a[href^="mailto:"], 
footer a[href^="tel:"] {
    color: #fff; /* Default color */
    text-decoration: underline;
    transition: color 0.2s;
}

footer a[href^="mailto:"]:hover, 
footer a[href^="tel:"]:hover {
    color: #ff8527; /* Change to white on hover, or pick any color you like */
    background: none;
    text-decoration: underline;
}