@font-face {
    font-family: 'ZT Nature';
    src: url('assets/fonts/ZTNature-Light.woff2') format('woff2'),
         url('assets/fonts/ZTNature-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'ZT Nature';
    src: url('assets/fonts/ZTNature-Regular.woff2') format('woff2'),
         url('assets/fonts/ZTNature-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'ZT Nature';
    src: url('assets/fonts/ZTNature-Medium.woff2') format('woff2'),
         url('assets/fonts/ZTNature-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'ZT Nature';
    src: url('assets/fonts/ZTNature-SemiBold.woff2') format('woff2'),
         url('assets/fonts/ZTNature-SemiBold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'ZT Nature';
    src: url('assets/fonts/ZTNature-Bold.woff2') format('woff2'),
         url('assets/fonts/ZTNature-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

:root {
    --neutral: #ddd8c9;
    --red: #bd2212;
    --blue: #05224c;
    
    --font-heading: 'bogart', serif;
    --font-body: 'ZT Nature', sans-serif;
}

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

body {
    background-color: var(--neutral);
    color: var(--blue);
    font-family: var(--font-body);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

/* ==========================================================================
   PRELOADER
   ========================================================================== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--red);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.preloader-mask {
    overflow: hidden;
    position: relative;
}

.preloader-logo {
    height: 100px;
    width: auto;
    display: block;
}

/* ==========================================================================
   SECTION 1: Hero
   ========================================================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 800px;
    background-color: var(--neutral);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 0 80px 20px 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: auto;
}

.mobile-header {
    display: none;
}

.hero-compass {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 91px;
    z-index: 100;
}

.hero-text-desktop {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-top-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    width: 100%;
    margin-bottom: 0px; /* 0px of space */
    position: relative;
    z-index: 2;
}

.hero-top-row span {
    font-weight: 600;
    font-size: 24px;
    color: var(--neutral);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-top-row .est {
    justify-self: start;
}

.hero-top-row .year {
    justify-self: end;
}

.hero-top-row h1.from {
    justify-self: center;
    font-family: var(--font-heading);
    font-size: calc((100vw - 224px) * 0.14); /* reduced slightly to prevent squeezing */
    line-height: 1;
    color: var(--neutral);
    margin: 0;
    white-space: nowrap;
}

.hero-bottom-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px; /* 32px spacing */
    width: 100%;
}

.hero-bottom-row h1 {
    font-family: var(--font-heading);
    font-size: calc((100vw - 224px) * 0.14); /* reduced slightly to prevent squeezing */
    line-height: 1;
    color: var(--neutral);
    margin: 0;
    white-space: nowrap;
}

.hero-to {
    position: relative;
    width: calc((100vw - 224px) * 0.091); /* scale dynamically, shrunken by 30% */
    flex-shrink: 0; /* Prevents text from squishing the logo to 0 width */
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-15%); /* Visually centers logo with uppercase letters by offsetting descender space */
}

.hero-to img {
    width: 100%;
    height: auto;
}

.to-text {
    position: absolute;
    font-family: var(--font-heading);
    color: #887a72;
    font-size: clamp(18px, 2vw, 28px);
    font-weight: 600;
}

/* Mobile Hero Styling */
.hero-text-mobile {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 0px;
}

.hero-text-mobile h1 {
    font-family: var(--font-heading);
    font-size: 112px;
    line-height: 112px;
    color: var(--neutral);
    margin: 0;
    text-transform: uppercase;
}

.hero-mobile-mid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    width: 100%;
}

.hero-mobile-mid span {
    font-weight: 600;
    font-size: 16px;
    line-height: 18px;
    color: var(--neutral);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-mobile-mid .hero-to {
    position: relative;
    width: 110px; /* appropriately sized for mobile */
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-15%); /* Keep visual centering */
}

@media (max-width: 768px) {
    .hero-text-desktop {
        display: none;
    }
    .hero-text-mobile {
        display: flex;
    }
}

/* ==========================================================================
   SECTION 2: Value Proposition
   ========================================================================== */
.value-prop {
    padding: 140px 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.dockside-ring {
    position: relative;
    width: 211px;
    height: 211px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.dockside-ring img {
    width: 100%;
    height: 100%;
    /* Animation handled by GSAP */
}

.value-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    width: 100%;
    max-width: 1400px;
}

.value-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.value-text h2 {
    font-family: var(--font-heading);
    font-size: clamp(40px, 6vw, 82px);
    color: var(--red);
    line-height: 1;
    white-space: nowrap;
}

.pill-image {
    background-color: var(--red);
    height: clamp(50px, 6vw, 84px);
    width: clamp(120px, 14vw, 194px);
    border-radius: 90px;
    overflow: hidden;
    position: relative;
}

.pill-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pill-image.small {
    width: clamp(100px, 12vw, 160px);
}

.text-center {
    text-align: center;
}

/* ==========================================================================
   SECTION 3: Brand Stamp
   ========================================================================== */
.brand-stamp {
    position: relative;
    width: 100%;
    height: 2000px;
    overflow: hidden;
    background-color: var(--neutral);
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-bg {
    position: absolute;
    width: 100%;
    height: 100%;
}

.bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stamp-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    width: 950px;
    max-width: 90%;
}

.stamp-overlay {
    width: 100%;
    height: auto;
}

/* ==========================================================================
   SECTION 4: Problem
   ========================================================================== */
.problem {
    background-color: var(--blue);
    position: relative;
    padding: 200px 80px;
    height: 1500px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.problem-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 150%;
    z-index: 1;
    pointer-events: none;
}

.problem-bg img, .problem-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.problem-content {
    position: relative;
    z-index: 2;
    width: 100%;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.problem-header {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    width: 100%;
}

.problem-title {
    font-family: var(--font-heading);
    font-size: 120px;
    color: var(--neutral);
    line-height: 1;
    margin: 0;
    max-width: 660px;
}

.problem-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%; /* span full width */
}

.list-item {
    display: flex;
    align-items: center;
    gap: 80px;
}

.list-item .num {
    font-size: 70px;
    line-height: 78px;
    color: var(--neutral);
    width: 100px;
    text-align: left;
}

.list-item p {
    font-size: 70px;
    line-height: 78px;
    color: var(--neutral);
    margin: 0;
}

.problem-box {
    border: 1px solid var(--neutral);
    border-radius: 50px;
    padding: 60px;
    width: 464px;
    max-width: 100%;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.problem-box p {
    font-size: 36px;
    color: var(--neutral);
    line-height: 1.2;
    text-align: center;
}

/* ==========================================================================
   SECTION 5: Solution
   ========================================================================== */
.solution {
    padding: 200px 80px;
    background-color: var(--neutral);
}

.solution-container {
    display: flex;
    flex-direction: column;
    gap: 120px;
    width: 100%;
}

.solution-title {
    font-family: var(--font-heading);
    font-size: clamp(60px, 8vw, 120px);
    color: var(--blue);
    line-height: 1.05;
    max-width: 1200px;
}

.solution-grid {
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    align-items: stretch;
    width: 100%;
}

.solution-grid .col {
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 650px;
    max-width: 100%;
}

.solution-grid .col:last-child {
    justify-self: end;
}

.solution-grid h3 {
    font-family: var(--font-heading);
    font-size: 64px;
    color: var(--blue);
    line-height: 1;
}

.solution-grid p {
    font-size: 36px;
    color: var(--blue);
    line-height: 1.2;
}

.solution-grid .divider {
    width: 1px;
    background-color: var(--blue);
    margin: 0 auto;
}

.solution-grid .divider img {
    display: none;
}

.solution-card {
    background-color: var(--red);
    border-radius: 40px;
    padding: 20px;
    display: flex;
    gap: 20px;
    align-items: flex-end;
    color: var(--neutral);
    overflow: hidden;
}

.card-icon {
    width: 300px;
    height: 300px;
    flex-shrink: 0;
}

.card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.card-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.card-text {
    max-width: 550px;
}

.card-text h4 {
    font-size: 40px;
    line-height: 44px;
    font-weight: 600;
    margin-bottom: 16px;
}

.card-text p {
    font-size: 36px;
    line-height: 40px;
}

.marquee-container {
    background-color: var(--neutral);
    border-radius: 23px;
    padding: 0 20px;
    height: 90px;
    display: flex;
    align-items: center;
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
}

.marquee-track {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    animation: marquee 20s linear infinite;
}

.marquee-text {
    font-family: var(--font-heading);
    font-weight: bold;
    font-size: 36px;
    line-height: 40px;
    color: var(--red);
}

.marquee-dot {
    width: 100px;
    height: 40px;
    background-color: var(--red);
    border-radius: 90px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.marquee-dot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

/* ==========================================================================
   SECTION 6: Location
   ========================================================================== */
.location {
    position: relative;
    height: 1500px;
    background-color: var(--blue);
    overflow: hidden;
}

.location-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.location-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.location-content {
    position: absolute;
    bottom: 80px;
    left: 80px;
    z-index: 2;
    width: 1000px;
    max-width: calc(100vw - 160px);
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.location-content h2 {
    font-family: var(--font-heading);
    font-size: 120px;
    color: var(--neutral);
    line-height: 120px;
    max-width: 1000px;
}

.location-details {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    color: var(--neutral);
    font-family: var(--font-body);
    font-size: 24px;
    line-height: 26px;
}

.location-details .right {
    text-align: right;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 86px;
    padding: 0 60px;
    border-radius: 19px;
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: bold;
    font-size: 24px;
    line-height: 24px;
    text-align: center;
    transition: transform 0.3s ease;
    width: 100%;
}

.btn:hover {
    transform: translateY(-5px);
}

.btn-red {
    background-color: var(--red);
    color: var(--neutral);
}

/* ==========================================================================
   SECTION 7: Services
   ========================================================================== */
.services {
    padding: 80px 80px;
    background-color: var(--neutral);
}

.services-container {
    display: flex;
    flex-direction: column;
    gap: 80px;
    width: 100%;
}

.services-header {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.services-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(60px, 8vw, 120px);
    color: var(--blue);
    line-height: 1;
}

.services-badges {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.badge {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 36px;
    font-weight: 500;
    color: var(--blue);
}

.badge img {
    width: 40px;
    height: 40px;
}

.services-pin-wrapper {
    position: relative;
    height: 500vh;
    width: 100%;
}

.services-mobile-list {
    display: none;
}

.services-main {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
}

.services-image-stack {
    width: calc(66.666vw - 20px);
    margin-left: -60px;
    height: calc(100vh - 40px);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    flex: none;
}

.service-image-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.service-image-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reveal-marquee-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background-color: var(--red);
    z-index: 10;
    display: flex;
    align-items: center;
    overflow: hidden;
    white-space: nowrap;
}

.reveal-marquee-bar .marquee-track {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    animation: marquee 20s linear infinite;
}

.reveal-marquee-bar .marquee-text {
    font-family: var(--font-heading);
    font-weight: bold;
    font-size: 24px;
    line-height: 24px;
    color: var(--neutral);
}

.services-text-stack {
    flex: 1;
    position: relative;
    height: calc(100vh - 40px);
}

.service-text-slide {
    position: absolute;
    top: 0;
    left: 80px;
    width: calc(100% - 80px);
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 40px;
    opacity: 0;
    visibility: hidden;
}

.service-text-slide:first-child {
    opacity: 1;
    visibility: visible;
}

.service-text-slide .num {
    font-size: 36px;
    font-weight: 700;
    color: var(--red);
}

.service-text-slide h3 {
    font-family: var(--font-heading);
    font-size: 64px;
    color: var(--blue);
    line-height: 1;
}

.service-text-slide p {
    font-size: 36px;
    color: var(--blue);
    line-height: 1.2;
    margin-top: auto;
}

/* ==========================================================================
   SECTION 8: Footer
   ========================================================================== */
.footer {
    background-color: var(--red);
    padding: 80px 80px 40px;
    position: relative;
    overflow: hidden;
}

.footer-container {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 800px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.footer-large-logo {
    margin-top: 300px;
    margin-bottom: 80px;
    margin-left: -60px;
    width: calc(100% + 120px);
    display: flex;
}

.footer-large-logo img {
    width: 100%;
    height: auto;
}

.logo-mobile {
    display: none;
}
.logo-desktop {
    display: block;
}

.footer-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 2;
}

.footer-tagline {
    font-family: var(--font-heading);
    font-size: 64px;
    color: var(--neutral);
    line-height: 64px;
    max-width: 530px;
}

.footer-sub {
    font-family: var(--font-body);
    font-size: 24px;
    color: var(--neutral);
    line-height: 26px;
}

.subscribe-form {
    display: flex;
    gap: 4px;
    margin-top: 28px;
    max-width: 530px;
    width: 100%;
}

.subscribe-form input {
    background-color: #dd3d28;
    border: none;
    padding: 24px;
    border-radius: 19px;
    font-family: var(--font-body);
    font-size: 24px;
    color: var(--neutral);
    outline: none;
    flex: 2;
    height: 72px;
}

.subscribe-form input::placeholder {
    color: var(--neutral);
    opacity: 0.8;
}

.subscribe-form button {
    background-color: var(--neutral);
    color: var(--blue);
    border: none;
    padding: 0 24px;
    border-radius: 19px;
    font-family: var(--font-heading);
    font-weight: bold;
    font-size: 24px;
    cursor: pointer;
    transition: transform 0.3s ease;
    flex: 1;
    height: 72px;
}

.subscribe-form button:hover {
    transform: translateY(-2px);
}

.footer-socials {
    display: flex;
    gap: 80px;
    z-index: 2;
}

.social-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-col h4 {
    font-size: 20px;
    color: var(--neutral);
    margin-bottom: 8px;
    font-weight: 400;
}

.social-col a {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: bold;
    color: var(--neutral);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.social-col a:hover {
    opacity: 0.8;
}

.footer-bottom {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    color: var(--neutral);
    font-size: 24px;
    z-index: 2;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .problem-box { position: relative; margin-top: 60px; }
    .solution-grid { flex-direction: column; }
    .solution-card { flex-direction: column; }
    .services-main { flex-direction: column; }
    .service-image { height: 500px; }
    .footer-top { flex-direction: column; gap: 80px; }
    .footer-bottom { padding-top: 200px; }
}

@media (max-width: 768px) {
    /* General Fixes */
    .hero-top-row .est, .hero-top-row .year { display: none; }
    .services, .footer { padding: 80px 20px; }
    .location-content { left: 40px; right: 40px; bottom: 80px; }
    .services-badges { flex-direction: column; align-items: flex-start; gap: 20px; }
    .subscribe-form { flex-direction: column; width: 100%; }
    .subscribe-form input { width: 100%; }
    .footer-socials { flex-direction: column; gap: 40px; }

    /* Hero Full Height */
    .hero {
        min-height: 100dvh;
    }

    /* Mobile Header & Navigation */
    .hero-compass { display: none; }
    
    .mobile-header {
        display: flex;
        position: fixed;
        top: 8px;
        left: 8px;
        right: 8px;
        z-index: 100;
        gap: 0;
        align-items: center;
    }
    
    .mobile-badge {
        display: none;
    }
    
    .mobile-nav {
        position: relative;
        flex: 1;
        display: flex;
        background-color: #BD2212;
        border-radius: 16px;
        padding: 4px;
        height: 64px;
        box-sizing: border-box;
        margin-top: 0;
    }

    .nav-indicator {
        position: absolute;
        top: 4px;
        bottom: 4px;
        left: 0;
        background-color: #DDD8C9;
        border-radius: 12px;
        z-index: 1;
        opacity: 0;
        transform: translateX(0) scaleX(0);
        transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.3s ease;
        transform-origin: center;
    }
    
    .nav-item {
        position: relative;
        z-index: 2;
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        color: #DDD8C9;
        font-family: var(--font-heading);
        font-size: 14px;
        line-height: 16px;
        font-weight: bold;
        transition: color 0.3s;
        text-transform: uppercase;
        height: 100%;
        box-sizing: border-box;
        padding-top: 2px;
    }
    
    .nav-item.active {
        color: #BD2212;
    }

    /* Value Prop Fixes */
    .value-prop {
        padding: 100px 20px;
    }
    .value-row {
        row-gap: 2px;
        column-gap: 12px;
    }
    .value-text h2 {
        font-size: 48px;
        line-height: 50px;
        white-space: normal;
        text-align: center;
    }
    .pill-image {
        height: 42px;
        width: 90px;
    }
    .pill-image.small {
        height: 42px;
        width: 70px;
    }

    /* Brand Stamp Fixes */
    .brand-stamp {
        height: 900px;
    }

    /* Problem Section Fixes */
    .problem {
        padding: 60px 20px 80px 20px;
        height: auto;
    }
    .problem-header {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 0;
        margin-bottom: 40px;
    }
    .problem-title {
        font-size: 58px;
        line-height: 58px;
        max-width: 100%;
        margin: 0;
    }
    .problem-box {
        margin-top: 20px;
        padding: 20px;
        width: 100%;
        box-sizing: border-box;
    }
    .problem-box p {
        font-size: 16px;
        line-height: 18px;
    }
    .problem-list {
        gap: 20px;
        margin-top: 300px;
    }
    .list-item {
        gap: 20px;
        align-items: flex-start;
    }
    .list-item .num {
        font-size: 30px;
        line-height: 30px;
        width: auto;
        text-align: left;
    }
    .list-item p {
        font-size: 30px;
        line-height: 30px;
    }

    /* Solution Section Fixes */
    .solution {
        padding: 60px 20px 80px 20px;
    }
    .solution-container {
        gap: 0;
    }
    .solution-title {
        font-size: 58px;
        line-height: 58px;
        max-width: 100%;
        margin-bottom: 60px;
    }
    .solution-grid {
        display: flex;
        flex-direction: column;
        gap: 60px;
    }
    .solution-grid .divider {
        display: none;
    }
    .solution-grid .col {
        width: 100%;
        gap: 12px;
    }
    .solution-grid h3 {
        font-size: 32px;
        line-height: 32px;
        margin: 0;
    }
    .solution-grid p {
        font-size: 16px;
        line-height: 18px;
        margin: 0;
    }
    .solution-card {
        margin-top: 60px;
        width: 100%;
        box-sizing: border-box;
        padding: 32px 20px 20px 20px;
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }
    .solution-card .card-icon {
        display: none;
    }
    .card-content {
        width: 100%;
        gap: 20px;
    }
    .card-text {
        width: 100%;
    }
    .card-text h4 {
        font-size: 20px;
        line-height: 24px;
    }
    .card-text p {
        font-size: 16px;
        line-height: 18px;
    }
    .marquee-container {
        height: 56px;
    }
    .marquee-text {
        font-size: 20px;
        line-height: 20px;
    }

    /* Location Section Fixes */
    .location {
        height: 900px;
    }
    .location-content { 
        left: 20px; 
        right: 20px; 
        bottom: 20px;
        width: auto;
        max-width: none;
        gap: 0;
    }
    .location-content h2 {
        font-size: 58px;
        line-height: 58px;
        width: 100%;
        margin-bottom: 20px;
    }
    .location-details {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 40px;
    }
    .location-details p, .location-details .right {
        font-size: 16px;
        line-height: 18px;
        text-align: left;
        margin: 0;
    }
    .btn {
        height: 56px;
        font-family: var(--font-heading);
        font-size: 16px;
        line-height: 18px;
        font-weight: bold;
        width: 100%;
    }

    /* Services Section Fixes */
    .services-container {
        gap: 60px;
    }
    .services-header h2 {
        font-size: 58px;
        line-height: 58px;
    }
    .services-badges {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .badge {
        font-family: var(--font-heading);
        font-size: 20px;
        line-height: 24px;
        font-weight: 600;
    }
    .badge img {
        width: 24px;
        height: 24px;
    }
    /* Mobile Services List Styles */
    .services-pin-wrapper {
        display: none !important;
    }
    .services-mobile-list {
        display: flex;
        flex-direction: column;
        gap: 60px;
        width: 100%;
        margin-top: 40px;
    }
    .sm-block {
        display: flex;
        flex-direction: column;
        width: 100%;
    }
    .sm-block .reveal-marquee-bar.static {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 10;
        margin-bottom: -1px;
    }
    .sm-image {
        width: 100%;
        height: 582px;
        border-radius: 0;
        overflow: hidden;
    }
    .sm-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .sm-text {
        display: flex;
        flex-direction: column;
    }
    .sm-text .num {
        font-family: 'ZT Nature';
        font-weight: bold;
        font-size: 24px;
        line-height: 24px;
        color: #BD2212;
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .sm-text h3 {
        font-family: var(--font-heading);
        font-size: 36px;
        line-height: 36px;
        color: var(--blue);
        margin: 0 0 20px 0;
    }
    .sm-text p {
        font-family: var(--font-body);
        font-size: 16px;
        line-height: 18px;
        color: var(--blue);
        margin: 0;
    }

    /* Footer Fixes */
    .footer {
        padding: 80px 20px 40px 20px;
    }
    .footer-top {
        gap: 60px;
    }
    .footer-content {
        gap: 0;
    }
    .footer-content h2 {
        font-size: 58px;
        line-height: 58px;
        width: 100%;
        margin-bottom: 20px;
        margin-top: 0;
        overflow-wrap: break-word;
        word-wrap: break-word;
    }
    .footer-sub {
        font-size: 16px;
        line-height: 18px;
        margin-bottom: 20px;
    }
    .subscribe-form {
        display: flex;
        flex-direction: row;
        gap: 8px;
        width: 100%;
        margin-top: 0;
    }
    .subscribe-form input {
        flex: 2;
        width: auto;
        height: 56px;
        font-size: 16px;
        line-height: 18px;
        border-radius: 19px;
    }
    .subscribe-form button {
        flex: 1;
        width: auto;
        height: 56px;
        font-size: 16px;
        line-height: 18px;
        border-radius: 19px;
        padding: 0;
    }
    .footer-socials {
        flex-direction: column;
        gap: 40px;
        margin-top: 0;
    }
    .social-col {
        gap: 12px;
    }
    .social-col h4 {
        font-size: 16px;
        line-height: 18px;
        margin-bottom: 8px;
    }
    .social-col a, .social-col p {
        font-size: 24px;
        line-height: 24px;
        font-weight: bold;
    }
    .footer-large-logo {
        margin-top: 80px;
        margin-bottom: 20px;
        margin-left: 0;
        width: 100%;
    }
    .footer-bottom {
        padding-top: 0;
    }
    .footer-bottom p {
        font-size: 12px;
        line-height: 12px;
    }
    .logo-desktop { display: none; }
    .logo-mobile { display: block; }
}
