/* ===== GLOBAL ADVANCE LLC - Website Styles ===== */

:root {
    --background-black: #0d0b02;
    --white: #fff;
    --text--off-white: #e7e7e7;
    --theme--primary-color: #e2c376;
    --text--white-subdued: #c5c5c5;
    --light-grey: #9e9e9e;
    --text--pure-black: #000;
    --theme--primary-faded: #e2c37640;
    --grey-line: #525252;
    --faded-black: #242424;
    --card--card-black: #171612;
    --text--grey: #aaa;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
    scroll-behavior: smooth;
}

body {
    background-color: var(--background-black);
    color: var(--white);
    font-family: 'Afacad Flux', sans-serif;
    font-size: 16px;
    line-height: 1.5em;
    min-height: 100%;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: inline-block;
    vertical-align: middle;
}

a {
    color: var(--theme--primary-color);
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6, p {
    margin: 0;
}

/* ===== Navigation ===== */
.nav-bar {
    background-color: transparent;
    flex-flow: column;
    justify-content: center;
    align-items: stretch;
    width: 100%;
    height: auto;
    min-height: calc(1vw + 4rem);
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background-color 0.3s ease, transform 0.4s ease;
}

.container {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 94%;
    max-width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2rem;
    padding-right: 2rem;
    position: relative;
}

.container.navigation-container {
    flex-flow: column;
    flex: 1;
    justify-content: center;
    align-items: center;
    height: 100%;
    display: flex;
}

.container.intro-container {
    width: 68%;
    max-width: 60rem;
}

.container.container-hero {
    flex-flow: column;
    flex: 1;
    justify-content: space-between;
    align-items: center;
    display: flex;
}

.container.container-footer {
    flex-flow: wrap;
    justify-content: space-between;
}

.container.narrow {
    width: 70%;
    min-width: 50px;
}

.nav-wrapper {
    flex: 1;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
    display: flex;
}

.nav-logo {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    display: flex;
    gap: 0.75rem;
}

.nav-logo-icon {
    width: 25px;
    height: 25px;
    transition: transform 0.3s ease;
}

.nav-logo:hover .nav-logo-icon {
    transform: scale(1.1);
}

.logo-text {
    color: var(--theme--primary-color);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nav-links-container {
    flex-direction: row;
    flex: 1;
    justify-content: center;
    align-items: stretch;
    width: 100%;
    height: 100%;
    display: flex;
    position: relative;
}

.nav-sub-container {
    flex-wrap: wrap;
    flex: 1;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    display: flex;
}

.nav-links-wrapper {
    gap: 3vw;
    flex: 1;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding-left: 4.4rem;
    display: flex;
}

.nav-link {
    color: var(--text--white-subdued);
    text-align: center;
    letter-spacing: 0.05em;
    cursor: pointer;
    justify-content: center;
    align-self: baseline;
    align-items: center;
    height: 100%;
    font-size: calc(0.25vw + 1rem);
    font-weight: 400;
    line-height: 1.5em;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
}

.nav-link:hover {
    color: var(--theme--primary-color);
}

.nav-link.nav-link--contact {
    border: 1px solid var(--theme--primary-color);
    background: var(--theme--primary-color);
    color: var(--background-black);
    border-radius: 3rem;
    align-self: auto;
    height: auto;
    padding: 8px 20px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.3s;
}

.nav-link.nav-link--contact:hover {
    background-color: var(--white);
    transform: translateY(-2px);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    width: 44px;
    height: 44px;
    position: relative;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text--off-white);
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Hamburger to X animation */
.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background: var(--theme--primary-color);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background: var(--theme--primary-color);
}

/* Mobile Menu Overlay */
.nav-links-container.mobile-open {
    display: flex !important;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: linear-gradient(180deg, var(--background-black) 0%, rgba(13, 11, 2, 0.98) 100%);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    padding: 5rem 2rem 3rem;
    animation: mobileMenuFadeIn 0.3s ease forwards;
}

@keyframes mobileMenuFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.nav-links-container.mobile-open .nav-sub-container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    height: auto;
    width: 100%;
    max-width: 300px;
}

.nav-links-container.mobile-open .nav-links-wrapper {
    flex-direction: column;
    padding: 0;
    gap: 0;
    height: auto;
    width: 100%;
}

.nav-links-container.mobile-open .nav-link {
    font-size: 1.3rem;
    font-weight: 500;
    padding: 1rem 1.5rem;
    color: var(--text--off-white);
    opacity: 0;
    animation: mobileMenuItemSlide 0.4s ease forwards;
    border-bottom: 1px solid rgba(226, 195, 118, 0.15);
    width: 100%;
    text-align: center;
}

.nav-links-container.mobile-open .nav-link:last-child {
    border-bottom: none;
}

.nav-links-container.mobile-open .nav-link:nth-child(1) { animation-delay: 0.1s; }
.nav-links-container.mobile-open .nav-link:nth-child(2) { animation-delay: 0.15s; }
.nav-links-container.mobile-open .nav-link:nth-child(3) { animation-delay: 0.2s; }
.nav-links-container.mobile-open .nav-link:nth-child(4) { animation-delay: 0.25s; }

.nav-links-container.mobile-open .nav-link:hover,
.nav-links-container.mobile-open .nav-link:active {
    color: var(--theme--primary-color);
    background: rgba(226, 195, 118, 0.05);
}

.nav-links-container.mobile-open .nav-link.nav-link--contact {
    margin-top: 1.5rem;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    border: none;
    border-radius: 50px;
    animation-delay: 0.3s;
    width: auto;
    color: #000;
    background: var(--theme--primary-color);
}

.nav-links-container.mobile-open .nav-link.nav-link--contact:hover,
.nav-links-container.mobile-open .nav-link.nav-link--contact:active {
    background: var(--white);
    color: #000;
}

@keyframes mobileMenuItemSlide {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Body scroll lock when menu is open */
body.menu-open {
    overflow: hidden;
}

/* ===== Hero Section ===== */
.section {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-top: 10rem;
    padding-bottom: 10rem;
    position: relative;
}

.section.section-hero {
    justify-content: space-between;
    align-items: center;
    min-height: 100svh;
    padding-top: 8rem;
    padding-bottom: 2rem;
    display: flex;
    overflow: hidden;
}

.section.intro {
    min-height: auto;
    padding-top: 8rem;
    padding-bottom: 8rem;
    display: flex;
}

.section.quotes {
    overflow: hidden;
}

.section.section-logos {
    padding-top: 3rem;
    padding-bottom: 3rem;
    overflow: hidden;
}

.section.section-footer {
    padding-top: 2rem;
    padding-bottom: 2rem;
    border-top: 1px solid var(--grey-line);
}

.hero-background-wrapper {
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    display: flex;
    position: absolute;
    inset: 0%;
    overflow: hidden;
}

.hero-background {
    object-fit: cover;
    object-position: 50% 40%;
    width: 100%;
    height: 100%;
    filter: brightness(0.7) saturate(0.9);
}

.hero-background-fade-overlay {
    background: linear-gradient(180deg, 
        rgba(13, 11, 2, 0.2) 0%, 
        rgba(13, 11, 2, 0.1) 30%, 
        rgba(13, 11, 2, 0.2) 60%, 
        rgba(13, 11, 2, 0.7) 85%,
        var(--background-black) 100%);
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
}

/* Mobile Banner - Hidden on desktop */
.hero-mobile-banner {
    display: none;
}

.hero-text-wrapper {
    gap: 1.5rem;
    flex-direction: column;
    flex: 1;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    display: flex;
    position: relative;
    text-align: center;
}

.hero-top-wrapper {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    display: flex;
    gap: 2rem;
}

.hero-heading-wrapper {
    width: 100%;
    text-align: center;
}

.hero-heading {
    color: var(--theme--primary-color);
    letter-spacing: 0.02em;
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 600;
    line-height: 1.1;
}

.hero-heading.hero-heading-secondary {
    color: var(--white);
}

.hero-description-wrapper {
    width: 100%;
    max-width: 700px;
}

.hero-description {
    color: var(--text--off-white);
    text-align: center;
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 400;
    line-height: 1.5em;
    margin: 0;
}

.hero-contact-info-wrapper {
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
}

.hero-cta-button {
    background: var(--theme--primary-color);
    color: var(--background-black);
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: transform 0.3s, box-shadow 0.3s;
}

.hero-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--theme--primary-faded);
}

.hero-contact-link {
    color: var(--theme--primary-color);
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.hero-contact-link:hover {
    color: var(--white);
}

.hero-tagline {
    color: var(--text--white-subdued);
    font-size: 0.9rem;
    margin-top: 1rem;
    opacity: 0.8;
}

/* ===== Tech Stack Marquee ===== */
.tech-stack-label {
    color: var(--text--white-subdued);
    text-align: center;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
}

.scrolling-logo-outer-wrapper {
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    display: flex;
    position: relative;
    overflow: hidden;
}

.scrolling-logo-container {
    gap: 1rem;
    flex-direction: row;
    flex: none;
    justify-content: space-between;
    align-items: center;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    display: flex;
    position: relative;
    animation: marquee 30s linear infinite;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.tech-badge {
    background: var(--card--card-black);
    border: 1px solid var(--grey-line);
    color: var(--theme--primary-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
}

/* ===== Intro Section ===== */
.label {
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    margin-bottom: 1.5rem;
    display: flex;
    position: relative;
}

.label-heading {
    background-color: var(--theme--primary-color);
    color: var(--background-black);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 4px 12px;
    font-size: calc(0.5vw + 0.75rem);
    font-weight: 600;
    line-height: 1.4em;
}

.intro-text-white {
    color: #f5f5f5;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    line-height: 1.3em;
    margin-bottom: 1.5rem;
}

.intro-paragraph {
    color: var(--text--white-subdued);
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.italic-text {
    color: var(--theme--primary-color);
    text-shadow: 0 3px 20px var(--theme--primary-color);
    font-style: italic;
    font-weight: 500;
}

.mission-box {
    background: var(--card--card-black);
    border-left: 4px solid var(--theme--primary-color);
    padding: 2rem;
    margin-top: 2rem;
}

.mission-label {
    color: var(--theme--primary-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.mission-text {
    color: var(--text--off-white);
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.5;
}

/* ===== Grid Layout ===== */
.grid-ratio-1x2 {
    gap: 6%;
    grid-template-rows: auto;
    grid-template-columns: 1fr 2fr;
    place-items: start;
    width: 100%;
    display: grid;
}

.title-wrapper-sticky {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    max-width: 36rem;
    display: flex;
    position: sticky;
    top: 8.5rem;
}

.heading-h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: clamp(2rem, 4vw, 3rem);
    font-style: italic;
    font-weight: 500;
    line-height: 1.1em;
}

.paragraph-16 {
    color: var(--text--white-subdued);
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.6em;
}

.margin-bottom-24 {
    margin-bottom: 1.5rem;
}

/* ===== Services Grid ===== */
.services-grid-5 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    width: 100%;
}

.card.services {
    background-color: var(--card--card-black);
    border: 1px solid transparent;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    padding: 2rem;
    display: flex;
    transition: border-color 0.3s, transform 0.3s;
}

.card.services:hover {
    border-color: var(--theme--primary-color);
    transform: translateY(-5px);
}

.card.services.highlight {
    grid-column: span 2;
    background: linear-gradient(135deg, var(--card--card-black), rgba(226, 195, 118, 0.1));
    border: 1px solid var(--theme--primary-color);
}

.card.services.highlight-alt {
    background: linear-gradient(135deg, var(--card--card-black), rgba(100, 200, 150, 0.08));
    border: 1px solid #6ec89a;
}

.card.services.highlight-alt .skill-title {
    color: #7dd9a8;
}

.card.services.highlight-alt .service-number {
    color: #7dd9a8;
}

.service-number {
    color: var(--theme--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.skill-title {
    color: var(--theme--primary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.3em;
}

/* ===== Process Section ===== */
.process-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--grey-line);
}

.process-step:last-child {
    border-bottom: none;
}

.process-number {
    color: var(--theme--primary-color);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    opacity: 0.5;
    min-width: 80px;
}

.process-content {
    flex: 1;
}

.process-title {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

/* ===== Features Grid ===== */
.features-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--card--card-black);
    border-radius: 8px;
    transition: transform 0.3s;
}

.feature-item:hover {
    transform: translateX(10px);
}

.feature-icon {
    font-size: 2rem;
    min-width: 50px;
    text-align: center;
}

.feature-content {
    flex: 1;
}

.feature-title {
    color: var(--theme--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* ===== Testimonials Section ===== */
.section-header-center {
    text-align: center;
    margin-bottom: 3rem;
}

.text-center {
    text-align: center;
}

.quote-slider {
    background-color: transparent;
    justify-content: center;
    align-items: stretch;
    width: 100%;
    height: 100%;
    display: flex;
    position: relative;
}

.quote-mask {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.quote-slide {
    vertical-align: middle;
    width: 100%;
    height: 100%;
    display: none;
}

.quote-slide.active {
    display: block;
}

.quote-card {
    background-color: var(--card--card-black);
    border-radius: 8px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 4rem;
    display: flex;
}

.quote-text-wrapper {
    flex-flow: column;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    display: flex;
}

.quote-icon {
    color: var(--theme--primary-color);
    font-size: 5rem;
    font-family: Georgia, serif;
    line-height: 0.5;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.quote-heading {
    color: #fff;
    margin-bottom: 2rem;
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    font-style: italic;
    font-weight: 400;
    line-height: 1.5em;
}

.quote {
    align-items: center;
    display: flex;
}

.quote-profile-image-wrapper {
    border-radius: 60px;
    flex: none;
    width: 60px;
    height: 60px;
    margin-right: 16px;
    overflow: hidden;
}

.quote-profile-image {
    aspect-ratio: 1;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.quote-name-title-wrapper {
    display: flex;
    flex-direction: column;
}

.quote-name {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
}

.quote-title {
    color: var(--theme--primary-color);
    font-size: 0.9rem;
    font-weight: 400;
}

.quote-arrow {
    border: 1px solid var(--theme--primary-color);
    color: var(--theme--primary-color);
    background: transparent;
    width: 48px;
    height: 48px;
    font-size: 1.4em;
    position: absolute;
    bottom: -70px;
    right: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s, color 0.3s;
    border-radius: 50%;
}

.quote-arrow:hover {
    background-color: var(--theme--primary-color);
    color: var(--background-black);
}

.quote-arrow.gallery-arrow-left {
    right: 60px;
}

.arrow-icon {
    font-size: 24px;
    line-height: 1;
}

.slide-nav {
    align-items: center;
    height: 48px;
    position: absolute;
    bottom: -70px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.slide-dot {
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.slide-dot:hover {
    transform: scale(1.2);
}

.slide-dot.active {
    background-color: var(--theme--primary-color);
}

/* ===== CTA Section ===== */
.cta-section {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.cta-box {
    background: linear-gradient(135deg, var(--card--card-black), rgba(226, 195, 118, 0.15));
    border: 1px solid var(--theme--primary-color);
    border-radius: 16px;
    padding: 4rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-heading {
    color: var(--theme--primary-color);
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 600;
    margin-bottom: 1rem;
}

.cta-text {
    color: var(--text--white-subdued);
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.cta-button {
    background: var(--theme--primary-color);
    color: var(--background-black);
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-block;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--theme--primary-faded);
}

/* ===== Contact Section ===== */
.contact-text-wrapper {
    flex-flow: wrap;
    justify-content: center;
    align-items: center;
    display: inline-flex;
    width: 100%;
    margin-bottom: 1.5rem;
}

.contact-heading {
    color: var(--theme--primary-color);
    text-align: center;
    letter-spacing: 0.02em;
    font-size: clamp(3rem, 10vw, 8rem);
    font-style: italic;
    line-height: 1em;
}

.contact-subtitle {
    color: var(--text--white-subdued);
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.contact-info-grid {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.contact-info-item {
    text-align: center;
}

.contact-info-label {
    color: var(--text--white-subdued);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.contact-info-value {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 500;
}

.contact-email-link {
    color: var(--theme--primary-color);
    transition: color 0.3s;
}

.contact-email-link:hover {
    color: var(--white);
}

.contact-cta-wrapper {
    text-align: center;
}

.contact-button {
    background: var(--theme--primary-color);
    color: var(--background-black);
    padding: 16px 48px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-block;
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--theme--primary-faded);
}

/* ===== Footer ===== */
.footer-bottom-links {
    flex-flow: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-logo-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo-icon {
    width: 23px;
    height: 23px;
}

.footer-logo-text {
    color: var(--theme--primary-color);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.footer-tagline {
    color: var(--text--white-subdued);
    font-size: 0.85rem;
    font-style: italic;
}

.footer-copyright-wrapper {
    gap: 1.5rem;
    flex-flow: wrap;
    justify-content: flex-end;
    align-items: center;
    display: flex;
}

.footer-text {
    color: var(--text--white-subdued);
    font-size: 0.9rem;
    line-height: 1.5rem;
}

/* ===== Responsive Design ===== */
@media screen and (max-width: 991px) {
    .nav-links-container {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .container.intro-container {
        width: 100%;
        padding-left: 2rem;
        padding-right: 2rem;
    }
    
    .container.narrow {
        width: 90%;
    }
    
    .grid-ratio-1x2 {
        gap: 2rem;
        grid-template-columns: 1fr;
    }
    
    .title-wrapper-sticky {
        position: relative;
        top: 0;
    }
    
    .services-grid-5 {
        grid-template-columns: 1fr;
    }
    
    .card.services.highlight {
        grid-column: span 1;
    }
    
    .section {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
    
    .section.section-hero {
        padding-top: 6rem;
    }
    
    .process-step {
        flex-direction: column;
        gap: 1rem;
    }
    
    .process-number {
        font-size: 2rem;
        min-width: auto;
    }
}

@media screen and (max-width: 767px) {
    .container {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
    
    .container.narrow {
        width: 100%;
    }
    
    /* Mobile Hero Layout - Image on top, content below */
    .section.section-hero {
        min-height: auto;
        padding-top: 0;
        padding-bottom: 3rem;
        flex-direction: column;
    }
    
    .hero-background-wrapper {
        display: none;
    }
    
    .hero-mobile-banner {
        display: block;
        width: 100%;
        margin-top: 60px;
        position: relative;
    }
    
    .hero-mobile-image {
        width: 100%;
        height: auto;
        min-height: 200px;
        max-height: 280px;
        object-fit: cover;
        object-position: 50% 30%;
        display: block;
    }
    
    .container.container-hero {
        flex: none;
        padding-top: 2rem;
    }
    
    .hero-text-wrapper {
        position: static;
        z-index: auto;
    }
    
    .hero-heading {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }
    
    .hero-description {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .hero-tagline {
        font-size: 0.85rem;
    }
    
    .contact-info-grid {
        flex-direction: column;
        gap: 2rem;
    }
    
    .quote-card {
        padding: 2rem;
    }
    
    .cta-box {
        padding: 2rem;
    }
    
    .slide-nav {
        display: none;
    }
    
    .intro-text-white {
        font-size: 1.8rem;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-copyright-wrapper {
        justify-content: center;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-icon {
        min-width: 100%;
    }
}

@media screen and (max-width: 479px) {
    .hero-contact-info-wrapper {
        flex-direction: column;
    }
    
    .hero-mobile-image {
        min-height: 180px;
        max-height: 220px;
    }
    
    .hero-heading {
        font-size: clamp(1.6rem, 7vw, 2rem);
    }
    
    .contact-heading {
        font-size: 2.5rem;
    }
    
    .quote-arrow {
        width: 40px;
        height: 40px;
    }
    
    .quote-arrow.gallery-arrow-left {
        right: 50px;
    }
}

/* ===== Scroll Animations ===== */
[data-animate] {
    opacity: 0;
    transform: translateY(2rem);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}
