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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    color: #ffffff;
    background-color: #3f4a2e;
    /* Base army green color */
    overflow-x: hidden;
}

section {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 5vw;
}

.hero {
    background-color: #2f3822;
    /* Fallback flat color */
    color: #ffffff;
    padding: 30px 4vw 100px 4vw;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
    /* Prevent canvas from bleeding out */
}

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

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
}

.brand-small {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sdale-logo {
    width: 32px;
    height: 32px;
}


.hero-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
    margin-top: 40px;
}

.hero-main-flex {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-title {
    font-size: 13vw;
    font-weight: 400;
    letter-spacing: -2px;
    line-height: 1;
    color: #f7f5ef;
    margin-left: -1vw;
}

.subtitle-left {
    margin-top: 50px;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.8;
}

.subtitle-right {
    position: absolute;
    right: 0;
    top: 100%;
    /* Below title */
    margin-top: 40px;
    text-align: right;
    font-size: 12px;
    letter-spacing: 1px;
    line-height: 1.6;
    opacity: 0.8;
}

.pill-graphic {
    width: 25vw;
    height: 30vw;
    max-width: 300px;
    max-height: 350px;
    background: radial-gradient(circle at 30% 30%, #555 0%, #111 60%, #000 100%);
    border-radius: 45px;
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow:
        inset -15px -15px 30px rgba(0, 0, 0, 0.9),
        inset 10px 10px 30px rgba(255, 255, 255, 0.4),
        0 40px 60px rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-bottom-text {
    align-self: flex-start;
    margin-bottom: 2vh;
    margin-top: auto;
    z-index: 10;
}

.hero-bottom-text h2 {
    font-size: 3.5vw;
    line-height: 1.1;
    font-weight: 400;
    margin-bottom: 15px;
    color: #f7f5ef;
}

.hero-bottom-text p {
    font-size: 11px;
    letter-spacing: 1px;
    line-height: 1.8;
    opacity: 0.8;
    text-transform: uppercase;
}


/* Section 5: Services (Card-Style Grid) */
.services-cards {
    width: 100%;
    padding: 15vh 5vw;
    background-color: #313d21;
    /* Dark Olive */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.services-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
    max-width: 1400px;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    background: rgba(255, 255, 255, 0.08);
    border-color: #ff6633;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.service-card:hover .card-image img {
    transform: scale(1.1);
}

.card-content {
    padding: 40px 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-title {
    font-size: 28px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #f7f5ef;
    transition: color 0.3s ease;
}

.service-card:hover .card-title {
    color: #ff6633;
}

.card-desc {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(247, 245, 239, 0.7);
}

@media (max-width: 1024px) {
    .services-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid-new {
        grid-template-columns: 1fr;
    }

    .services-cards {
        padding: 10vh 5vw;
    }
}

/* Section 2: Vision */
.vision {
    background-color: #f7f5ef;
    /* Off-white */
    color: #1a1f12;
    position: relative;
    overflow: hidden;
    padding: 15vh 5vw;
    align-items: center;
    justify-content: center;
}

.bg-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90vw;
    height: 90vw;
    max-width: 800px;
    max-height: 800px;
    opacity: 0.05;
    /* Faded » since it uses a black stroke */
    z-index: 0;
    pointer-events: none;
}

/* Hero Logo SVG */
.hero-logo-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 0;
    pointer-events: none;
    /* Allows clicking through if necessary */
}

.hero-logo-svg {
    width: 250px;
    /* Slightly larger since it's the centerpiece */
    height: 275px;
    opacity: 0;
}

.hero-logo-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 275px;
    object-fit: contain;
    opacity: 0;
}

.hero-main-flex {
    z-index: 1;
    /* Keep text above logo */
}

/* Section 5: Solutions (Full Screen) */
.solutions-full {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15vh 5vw;
    color: #ffffff;
    overflow: hidden;
}

.solutions-full-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.solutions-full-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.solutions-overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    /* Deep dark overlay for contrast */
    z-index: 1;
}

.solutions-full-content {
    max-width: 1400px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 1;
}

.solutions-header-block {
    max-width: 900px;
    margin-bottom: 60px;
}

.solutions-massive-text {
    font-size: 6vw;
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 30px;
    color: #f7f5ef;
}

.solutions-desc-text {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.solutions-grid-block {
    width: 100%;
    margin-top: 40px;
}

.grid-title {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ff6633;
    margin-bottom: 30px;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px 20px;
    text-align: left;
    margin-bottom: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
}

.area-item {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: -0.5px;
    position: relative;
    padding-left: 20px;
}

.area-item::before {
    content: "●";
    position: absolute;
    left: 0;
    top: 4px;
    font-size: 10px;
    color: #8c9c6f;
}

.solutions-cta {
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
}

@media (max-width: 900px) {
    .solutions-massive-text {
        font-size: 10vw;
    }

    .hero-logo-svg {
        width: 180px;
        height: 198px;
    }
}

.vision-content {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.vision-title {
    font-size: 5vw;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 50px;
    color: #2f3822;
    /* Army green text */
}

.vision-divider {
    width: 0px;
    /* Will be animated to 100px */
    height: 2px;
    background-color: #ff6633;
    margin-bottom: 50px;
}

.vision-text {
    font-size: 18px;
    line-height: 1.8;
    max-width: 600px;
    opacity: 0.8;
}

/* Section 3: About Us */
.about {
    background: radial-gradient(circle at top left, #3f4a2e 0%, #1a1f12 100%);
    color: #ffffff;
    padding: 15vh 5vw;
}

.about-container {
    display: flex;
    flex-direction: row;
    width: 100%;
    max-width: 1400px;
    gap: 8vw;
    justify-content: space-between;
    align-items: center;
}

.about-text-wrap {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.section-label {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ff6633;
    margin-bottom: 30px;
    font-weight: 700;
}

.about-headline {
    font-size: 4.5vw;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 40px;
    color: #f7f5ef;
}

.about-body p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    opacity: 0.8;
}

.about-image-wrap {
    flex: 1;
    position: relative;
    height: 70vh;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.image-reveal {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #1a1f12;
    z-index: 2;
    transform-origin: top;
}

.about-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.2);
    /* For parallax */
}

@media (max-width: 900px) {
    .about-container {
        flex-direction: column;
    }

    .vision-title {
        font-size: 8vw;
    }

    .about-headline {
        font-size: 8vw;
    }

    .about-image-wrap {
        width: 100%;
        height: 50vh;
        margin-top: 50px;
    }
}

/* Section 6: Experience */
.experience {
    background-color: #ffffff;
    color: #1a1f12;
    padding: 15vh 5vw;
    position: relative;
    overflow: hidden;
}

.experience-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.experience-headline {
    font-size: 3vw;
    font-weight: 500;
    margin-bottom: 60px;
    color: #2f3822;
    /* army green */
}

.clients-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
    justify-content: flex-start;
}

.client-name {
    font-size: 32px;
    font-weight: 700;
    color: rgba(26, 31, 18, 0.2);
    text-transform: uppercase;
    letter-spacing: -1px;
    transition: color 0.3s ease, transform 0.3s ease;
    cursor: default;
}

.client-name:hover {
    color: #ff6633;
    transform: scale(1.05);
}

/* Section 7: Contact / Footer (Fullscreen Layout) */
.contact-fullscreen {
    position: relative;
    min-height: 100vh;
    width: 100%;
    color: #ffffff;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background-color: #2f3822;
    /* Fallback flat color */
    overflow: hidden;
}

.contact-layout {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: row;
    width: 100%;
    padding: 15vh 5vw 10vh 5vw;
    flex: 1;
}

.contact-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-right: 5vw;
}

.contact-huge-title {
    font-size: 8vw;
    font-weight: 400;
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 60px;
    margin-left: -0.5vw;
}

.contact-links-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.contact-link-item p {
    font-size: 11px;
    letter-spacing: 1px;
    line-height: 1.8;
    text-transform: uppercase;
    color: #e0e0e0;
}

.contact-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 15vh;
    /* Align with bottom */
}

.minimal-form {
    width: 100%;
    max-width: 500px;
    margin-left: auto;
    margin-right: -150px;
    /* Offset to the right based on ref image */
}

.form-row {
    display: flex;
    gap: 30px;
    width: 100%;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-bottom: 35px;
}

.form-group.full-width {
    width: 100%;
}

.form-group label {
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.form-group input,
.form-group textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    font-size: 16px;
    padding-bottom: 8px;
    transition: border-bottom-color 0.3s ease;
    font-family: inherit;
    resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: #ffffff;
}

.submit-btn {
    background-color: #ffffff;
    color: #000000;
    border: none;
    padding: 10px 24px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 4px;
    cursor: pointer;
    text-transform: uppercase;
    transition: transform 0.2s ease, opacity 0.2s ease;
    margin-top: 10px;
}

.submit-btn:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.footer-strip {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2vh 5vw;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-left: 20px;
    transition: color 0.3s ease;
}

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

@media (max-width: 900px) {
    .contact-layout {
        flex-direction: column;
    }

    .contact-huge-title {
        font-size: 12vw;
    }

    .minimal-form {
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
        margin-top: 50px;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .subtitle-right {
        display: none;
    }

    .hero-main-flex {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    .hero-logo-container {
        position: static;
        transform: none;
        order: -1;
        width: 150px;
        height: 165px;
        margin-bottom: 20px;
    }

    .hero-logo-img {
        position: static;
        transform: none;
        width: 100%;
        height: 100%;
        opacity: 1 !important;
    }

    .hero-logo-svg {
        display: none;
    }

    .request-btn {
        display: none;
    }
}

/* Lenis Recommended Styles */
html.lenis {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

/* Bottom Navigation Bar */
.nav-wrapper {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 800px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 15px;
    z-index: 1000;
    transition: opacity 0.3s ease;
}

.bottom-nav-bar {
    width: 100%;
    height: 60px;
    background-color: #000000;
    display: flex;
    flex-direction: column;
    padding: 0;
    border-radius: 50px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    z-index: 1000;
    transition: opacity 0.3s ease;
    overflow: hidden;
    will-change: width, height, border-radius;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 60px;
    padding: 0 30px;
    flex-shrink: 0;
}

.nav-left {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    flex: 1;
    cursor: pointer;
    transition: color 0.2s ease;
}

.nav-left:hover {
    color: #ff6633;
}

.nav-center {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    text-align: center;
    flex: 2;
    transition: opacity 0.2s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.nav-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.nav-center .ndale-logo {
    width: 50px;
    height: 50px;
}

.nav-right {
    display: flex;
    justify-content: flex-end;
    flex: 1;
    transition: opacity 0.2s ease;
}

.call-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #4B5320;
    /* army green */
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    cursor: pointer;
    flex-shrink: 0;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.call-btn:hover {
    opacity: 0.9;
    transform: scale(1.05);
}

.menu-items-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    place-content: center;
    gap: 30px 10px;
    width: 100%;
    height: calc(100% - 60px);
    opacity: 0;
    visibility: hidden;
    padding: 20px;
}

.menu-item {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateY(20px);
    transition: color 0.3s ease;
}

.menu-item:hover {
    color: #ff6633;
}

/* Contact Items Container (inside nav bar, like menu) */
.contact-items-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: calc(100% - 60px);
    opacity: 0;
    visibility: hidden;
    padding: 20px 30px;
    gap: 0;
}

.contact-panel-item {
    width: 100%;
    opacity: 0;
    transform: translateY(15px);
}

.contact-panel-item a {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 10px;
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-panel-item a:hover {
    color: #ff6633;
}

.contact-panel-item a svg {
    flex-shrink: 0;
    color: #ffffff;
}

.contact-panel-socials {
    display: flex;
    justify-content: center;
    gap: 16px;
    padding: 24px 10px 10px 10px;
    opacity: 0;
    transform: translateY(15px);
}

.social-icon-btn {
    width: 48px;
    height: 48px;
    background-color: #ffffff;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #1a4d2e;
    text-decoration: none;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.social-icon-btn:hover {
    transform: scale(1.1);
    background-color: #e0e0e0;
}

.call-btn.active {
    background-color: #1a4d2e;
    transform: scale(1.05);
}