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

html {
    background-color: #1b1f24;
    scroll-behavior: smooth;
}

::selection {
    background-color: var(--accent-secondary);
    color: #1a1a1a;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #1b1f24;
}

:root {
    --accent-primary: #8ca744;
    --accent-secondary: #b7ca64;
    --accent-highlight: #dde8a0;
    --accent-gradient-start: #6a7e29;
    --accent-gradient-end: #b7ca64;
    --accent-glow-rgb: 183, 202, 100;
    --rivet-pattern-light: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23333333' fill-opacity='0.08'%3E%3Cpath d='M0 38.59l2.83-2.83 1.41 1.41L1.41 40H0v-1.41zM0 1.4l2.83 2.83 1.41-1.41L1.41 0H0v1.41zM38.59 40l-2.83-2.83 1.41-1.41L40 38.59V40h-1.41zM40 1.41l-2.83 2.83-1.41-1.41L38.59 0H40v1.41zM20 18.6l2.83-2.83 1.41 1.41L21.41 20l2.83 2.83-1.41 1.41L20 21.41l-2.83 2.83-1.41-1.41L18.59 20l-2.83-2.83 1.41-1.41L20 18.59z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    --rivet-pattern-dark: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23cdd4dd' fill-opacity='0.09'%3E%3Cpath d='M0 38.59l2.83-2.83 1.41 1.41L1.41 40H0v-1.41zM0 1.4l2.83 2.83 1.41-1.41L1.41 0H0v1.41zM38.59 40l-2.83-2.83 1.41-1.41L40 38.59V40h-1.41zM40 1.41l-2.83 2.83-1.41-1.41L38.59 0H40v1.41zM20 18.6l2.83-2.83 1.41 1.41L21.41 20l2.83 2.83-1.41 1.41L20 21.41l-2.83 2.83-1.41-1.41L18.59 20l-2.83-2.83 1.41-1.41L20 18.59z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    --slate: #1b1f24;
}

/* ── Topbar ── */
.topbar {
    background-color: var(--accent-secondary);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    height: 36px;
    display: flex;
    align-items: center;
    transition: height 0.3s ease, opacity 0.3s ease;
    overflow: hidden;
}

.topbar.hidden {
    height: 0;
    opacity: 0;
}

@media (max-width: 768px) {
    .topbar {
        display: none;
    }

    .header {
        top: 0;
        padding: 0;
    }
}

.topbar-container {
    width: 100%;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.topbar-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 12.5px;
    font-weight: 600;
    font-family: 'Roboto', sans-serif;
    letter-spacing: 0.3px;
    transition: opacity 0.2s ease;
}

.topbar-link:hover {
    opacity: 0.7;
}

.topbar-link svg {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.topbar-social {
    display: flex;
    align-items: center;
    color: #1a1a1a;
    transition: opacity 0.2s ease;
}

.topbar-social:hover {
    opacity: 0.7;
}

.topbar-social svg {
    width: 15px;
    height: 15px;
}

/* Accessibility Styles */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--accent-secondary);
    color: #1a1a1a;
    padding: 8px 16px;
    text-decoration: none;
    z-index: 100;
    font-weight: 700;
    border-radius: 0 0 4px 0;
}

.skip-link:focus {
    top: 0;
}

/* Focus Indicators for Keyboard Navigation */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus,
[tabindex]:focus {
    outline: 3px solid var(--accent-secondary);
    outline-offset: 2px;
}

/* Enhanced Focus Styles */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
    outline: 3px solid var(--accent-secondary);
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(183, 202, 100, 0.2);
}

/* Remove default outline for mouse users */
a:focus:not(:focus-visible),
button:focus:not(:focus-visible),
input:focus:not(:focus-visible),
textarea:focus:not(:focus-visible),
select:focus:not(:focus-visible),
[tabindex]:focus:not(:focus-visible) {
    outline: none;
}

/* High Contrast Mode Support */
@media (prefers-contrast: more) {
    a:focus,
    button:focus,
    input:focus,
    textarea:focus,
    select:focus,
    [tabindex]:focus {
        outline: 4px solid var(--accent-secondary);
        outline-offset: 3px;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Color Contrast Enhancements */
body {
    color: #333333;
}

/* Links maintain consistent color */
a {
    color: inherit;
}

a:visited {
    color: inherit;
}

a:hover {
    color: inherit;
}

/* Form Label Accessibility */
label {
    display: block;
    font-weight: 500;
    margin-bottom: 6px;
}

/* Required Field Indicator */
.required::after {
    content: " *";
    color: #d32f2f;
    font-weight: 700;
}

/* Error Message Styling */
.error-message {
    color: #d32f2f;
    font-size: 14px;
    margin-top: 4px;
    display: block;
}

/* Success Message Styling */
.success-message {
    color: #2e7d32;
    font-size: 14px;
    margin-top: 4px;
    display: block;
}

/* Visually Hidden but Accessible to Screen Readers */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Ensure images have proper spacing */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Fade in animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
        filter: blur(4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
        filter: blur(6px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
        filter: blur(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
        filter: blur(6px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
        filter: blur(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        filter: blur(3px);
    }
    to {
        opacity: 1;
        filter: blur(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.92);
        filter: blur(4px);
    }
    to {
        opacity: 1;
        transform: scale(1);
        filter: blur(0);
    }
}

@keyframes scrollFadeInUp {
    from {
        opacity: 0;
        transform: translateY(28px);
        filter: blur(4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.fade-in-on-scroll {
    opacity: 0;
    transform: translateY(28px);
    filter: blur(4px);
}

.fade-in-on-scroll.fade-in-visible {
    animation: scrollFadeInUp 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    background-color: #1b1f24;
    margin-top: 85px !important;
}

.hero-video {
    position: absolute;
    top: 0;
    right: 0;
    width: 42%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 52%;
    right: -6%;
    height: 100%;
    background: linear-gradient(to right, rgba(27, 31, 36, 0.98) 0%, rgba(27, 31, 36, 0.9) 48%, rgba(27, 31, 36, 0.55) 72%, rgba(27, 31, 36, 0.18) 100%);
    z-index: 2;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(27, 31, 36, 0.97) 0%, rgba(27, 31, 36, 0.92) 45%, rgba(27, 31, 36, 0.65) 60%, rgba(27, 31, 36, 0.33) 70%, rgba(27, 31, 36, 0.12) 80%);
    z-index: 1;
}

.hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.15'%3E%3Cpath d='M0 38.59l2.83-2.83 1.41 1.41L1.41 40H0v-1.41zM0 1.4l2.83 2.83 1.41-1.41L1.41 0H0v1.41zM38.59 40l-2.83-2.83 1.41-1.41L40 38.59V40h-1.41zM40 1.41l-2.83 2.83-1.41-1.41L38.59 0H40v1.41zM20 18.6l2.83-2.83 1.41 1.41L21.41 20l2.83 2.83-1.41 1.41L20 21.41l-2.83 2.83-1.41-1.41L18.59 20l-2.83-2.83 1.41-1.41L20 18.59z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    background-size: 40px 40px;
    background-repeat: repeat;
    background-position: 0 0;
    mask-image: linear-gradient(to right, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 0;
}

.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 1600px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 40px 0 80px;
    z-index: 2;
}

.hero-title {
    font-size: 48px;
    font-weight: 900;
    color: #ffffff;
    margin: 0 0 20px 0;
    max-width: 950px;
    line-height: 1.2;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    animation: fadeInUp 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
    letter-spacing: 0.5px;
}

.hero-subtitle {
    font-size: 18px;
    color: #CCCCCC;
    margin: 0 0 40px 0;
    max-width: 850px;
    line-height: 1.6;
    animation: fadeInUp 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s both;
}

.hero-ctas {
    display: flex;
    gap: 20px;
    align-items: center;
    animation: fadeInUp 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) 0.6s both;
    padding-bottom: 20px;
}

.hero-primary-cta {
    background-color: var(--accent-secondary);
    color: #1a1a1a;
    padding: 14px 32px;
    border: 2px solid var(--accent-secondary);
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: inline-block;
}

.hero-primary-cta:hover {
    background-color: var(--accent-highlight);
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(var(--accent-glow-rgb), 0.4);
}

.hero-secondary-cta {
    background-color: transparent;
    color: var(--accent-secondary) !important;
    padding: 12px 28px;
    border: 2px solid var(--accent-secondary);
    border-radius: 5px;
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
}

.hero-secondary-cta:hover {
    background-color: var(--accent-secondary);
    color: #1a1a1a !important;
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(var(--accent-glow-rgb), 0.4);
}

/* About Section */
.about {
    background-color: #1b1f24;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23333333' fill-opacity='0.2'%3E%3Cpath d='M0 38.59l2.83-2.83 1.41 1.41L1.41 40H0v-1.41zM0 1.4l2.83 2.83 1.41-1.41L1.41 0H0v1.41zM38.59 40l-2.83-2.83 1.41-1.41L40 38.59V40h-1.41zM40 1.41l-2.83 2.83-1.41-1.41L38.59 0H40v1.41zM20 18.6l2.83-2.83 1.41 1.41L21.41 20l2.83 2.83-1.41 1.41L20 21.41l-2.83 2.83-1.41-1.41L18.59 20l-2.83-2.83 1.41-1.41L20 18.59z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    padding: 30px 0;
}

.about-container {
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
    max-width: 1600px;
    display: flex;
    flex-direction: column;
}

.about-title {
    font-size: 32px;
    font-weight: 900;
    color: #f9f9f9;
    margin: 0 0 30px 0;
    line-height: 1.2;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: fadeInUp 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
}

.about-content {
    display: flex;
    flex-direction: row;
    gap: 50px;
    align-items: stretch;
    margin-bottom: 30px;
}

.about-text {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: var(--slate);
    padding: 30px;
    background-image: 
        linear-gradient(to right, var(--accent-secondary) 0%, var(--accent-secondary) 4px, #232933 4px),
        linear-gradient(to bottom, var(--accent-secondary) 0%, var(--accent-secondary) 4px, #232933 4px),
        linear-gradient(to right, var(--accent-secondary) 0%, transparent 1px, transparent 100%),
        linear-gradient(to bottom, var(--accent-secondary) 0%, transparent 1px, transparent 100%),
        linear-gradient(135deg, rgba(27, 31, 36, 0.72) 0%, rgba(27, 31, 36, 0.42) 45%, rgba(27, 31, 36, 0.1) 80%, rgba(27, 31, 36, 0) 100%),
        var(--rivet-pattern-dark);
    background-size: 100% 100%, 100% 100%, 100% 2px, 2px 100%, 100% 100%, auto;
    background-position: top left, top left, bottom right, bottom right, center, left top;
    background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, repeat;
}

.about-content p {
    font-size: 15px;
    color: #CCCCCC;
    line-height: 1.7;
    margin: 0;
    animation: fadeInUp 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.about-text p:nth-child(1) {
    animation-delay: 0.3s;
}

.about-text p:nth-child(2) {
    animation-delay: 0.45s;
}

.about-text p:nth-child(3) {
    animation-delay: 0.6s;
}

.about-text p:nth-child(4) {
    animation-delay: 0.75s;
}

/* Polaroid image styling */

.polaroid {
    width: 340px;
    margin: 0 auto;
    background-color: var(--slate);
    background-image: var(--rivet-pattern-dark);
    padding: 0 0 16px 0;
    box-shadow: 0 18px 40px rgba(10,10,10,0.12);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    flex: 0 0 auto;
    animation: fadeInUp 0.8s ease-out 0.35s both;
    border-radius: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    align-self: stretch;
}

.polaroid img {
    display: block;
    width: 100%;
    height: 100%;
    flex: 1 1 auto;
    object-fit: cover;
    border-radius: 0;
    box-sizing: border-box;
}

.polaroid .polaroid-caption {
    text-align: center;
    font-size: 16px;
    color: var(--accent-secondary);
    font-family: 'Oswald', sans-serif;
    font-weight: 900;
    padding: 12px 8px 0 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.polaroid:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 60px rgba(10,10,10,0.18);
}

.team-highlight {
    margin-top: 25px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.team-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px 20px 22px;
    border-radius: 16px;
}

.team-avatar {
    width: 72px;
    height: 72px;
    border-radius: 999px;
    background: linear-gradient(150deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.02));
    border: 2px solid rgba(255, 255, 255, 0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Oswald', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #e0e5ef;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.team-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.team-name {
    margin: 0;
    font-weight: 600;
    color: #f3f6fb;
}

.team-role {
    margin: 0;
    font-size: 13px;
    color: #c5cbd8;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}



/* Testimonials Section */
.testimonials {
    background-color: #ffffff;
    background-image: url("data:image/svg+xml,%3Csvg width='42' height='44' viewBox='0 0 42 44' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='Page-1' fill='none' fill-rule='evenodd'%3E%3Cg id='brick-wall' fill='%23e1e1e1' fill-opacity='0.4'%3E%3Cpath d='M0 0h42v44H0V0zm1 1h40v20H1V1zM0 23h20v20H0V23zm22 0h20v20H22V23z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    padding: 30px 0;
    color: #1a1a1a;
}

.testimonials-container {
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    max-width: 1600px;
    width: 100%;
}

.testimonials .section-label {
    color: var(--accent-secondary);
}

.testimonials .section-intro {
    color: #1a1a1a;
}

.testimonials .section-subtitle {
    color: #555555;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

@media (max-width: 1399px) {
    .testimonials-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.testimonial-card {
    background-color: #f5f5f5;
    padding: 30px;
    background-image: 
        var(--rivet-pattern-light),
        linear-gradient(to right, var(--accent-secondary) 0%, var(--accent-secondary) 4px, #e8e8e8 4px),
        linear-gradient(to bottom, var(--accent-secondary) 0%, var(--accent-secondary) 4px, #e8e8e8 4px),
        linear-gradient(to right, var(--accent-secondary) 0%, transparent 1px, transparent 100%),
        linear-gradient(to bottom, var(--accent-secondary) 0%, transparent 1px, transparent 100%);
    background-size: auto, 100% 100%, 100% 100%, 100% 2px, 2px 100%;
    background-position: left top, top left, top left, bottom right, bottom right;
    background-repeat: repeat, no-repeat, no-repeat, no-repeat, no-repeat;
    position: relative;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform: skewX(-2deg);
}

.testimonial-card:nth-child(1) {
    animation-delay: 0.1s;
}

.testimonial-card:nth-child(2) {
    animation-delay: 0.2s;
}

.testimonial-card:nth-child(3) {
    animation-delay: 0.3s;
}

.testimonial-card:nth-child(4) {
    animation-delay: 0.4s;
}

.testimonial-card:hover {
    transform: translateY(-8px) skewX(0deg);
    box-shadow: 0 15px 40px rgba(183, 202, 100, 0.25), inset 0 0 20px rgba(183, 202, 100, 0.08);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.testimonial-stars {
    font-size: 16px;
    color: var(--accent-secondary);
    margin: 0 0 15px 0;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 15px;
    color: #555555;
    margin: 0 0 18px 0;
    line-height: 1.7;
    font-style: italic;
}

.testimonial-author {
    font-size: 14px;
    color: #1a1a1a;
    font-weight: 700;
    margin: 0 0 4px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.testimonial-source {
    color: #999999;
    font-weight: 400;
    margin-left: 4px;
}

.testimonial-company {
    font-size: 12px;
    color: #999999;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* How We Work Section */
.how-we-work {
    background-color: #1b1f24;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23333333' fill-opacity='0.2'%3E%3Cpath d='M0 38.59l2.83-2.83 1.41 1.41L1.41 40H0v-1.41zM0 1.4l2.83 2.83 1.41-1.41L1.41 0H0v1.41zM38.59 40l-2.83-2.83 1.41-1.41L40 38.59V40h-1.41zM40 1.41l-2.83 2.83-1.41-1.41L38.59 0H40v1.41zM20 18.6l2.83-2.83 1.41 1.41L21.41 20l2.83 2.83-1.41 1.41L20 21.41l-2.83 2.83-1.41-1.41L18.59 20l-2.83-2.83 1.41-1.41L20 18.59z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    padding: 30px 0;
    color: #ffffff;
}

.how-we-work-container {
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    max-width: 1600px;
    width: 100%;
}

.how-we-work .section-label {
    color: var(--accent-secondary);
}

.how-we-work .section-intro {
    color: #f9f9f9;
}

.how-we-work-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}

.work-step {
    background-color: var(--slate);
    padding: 40px 30px;
    background-image: 
        linear-gradient(to right, var(--accent-secondary) 0%, var(--accent-secondary) 4px, #232933 4px),
        linear-gradient(to bottom, var(--accent-secondary) 0%, var(--accent-secondary) 4px, #232933 4px),
        linear-gradient(to right, var(--accent-secondary) 0%, transparent 1px, transparent 100%),
        linear-gradient(to bottom, var(--accent-secondary) 0%, transparent 1px, transparent 100%),
        linear-gradient(150deg, rgba(27, 31, 36, 0.9) 0%, rgba(27, 31, 36, 0.45) 60%, rgba(27, 31, 36, 0.1) 100%),
        var(--rivet-pattern-dark);
    background-size: 100% 100%, 100% 100%, 100% 2px, 2px 100%, 100% 100%, auto;
    background-position: top left, top left, bottom right, bottom right, center, left top;
    background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, repeat;
    position: relative;
    transition: all 0.3s ease;
    transform: skewX(-2deg);
}

.work-step:nth-child(1) {
    animation-delay: 0.1s;
}

.work-step:nth-child(2) {
    animation-delay: 0.2s;
}

.work-step:nth-child(3) {
    animation-delay: 0.3s;
}

.work-step:hover {
    transform: translateY(-8px) skewX(0deg);
    box-shadow: 0 15px 40px rgba(183, 202, 100, 0.25), inset 0 0 20px rgba(183, 202, 100, 0.08);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.work-step:hover .work-step-number {
    animation: pulse 0.6s ease-in-out;
}

.work-step:hover .step-number {
    color: var(--accent-highlight);
}

.step-number {
    font-size: 32px;
    font-weight: 900;
    color: var(--accent-secondary);
    margin-bottom: 20px;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 1px;
}

.work-step p {
    font-size: 16px;
    color: #ffffff;
    line-height: 1.7;
    margin: 0;
}

/* Our Story Section */
.our-story {
    background-color: #ffffff;
    background-image: url("data:image/svg+xml,%3Csvg width='42' height='44' viewBox='0 0 42 44' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='Page-1' fill='none' fill-rule='evenodd'%3E%3Cg id='brick-wall' fill='%23e1e1e1' fill-opacity='0.4'%3E%3Cpath d='M0 0h42v44H0V0zm1 1h40v20H1V1zM0 23h20v20H0V23zm22 0h20v20H22V23z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    padding: 60px 0;
}

.our-story-container {
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
    max-width: 1600px;
}

.our-story-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
}

.our-story-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.our-story-title {
    font-family: 'Oswald', sans-serif;
    font-size: 36px;
    font-weight: 900;
    color: #1a1a1a;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--accent-secondary);
    display: inline-block;
}

.our-story-text p {
    font-size: 15px;
    color: #555555;
    line-height: 1.7;
    margin: 0;
}

.our-story-image {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #e8e8e8;
    height: 400px;
    border: 4px solid var(--accent-secondary);
    position: relative;
}

.our-story-image img {
    width: 100%;
    height: 150%;
    object-fit: cover;
    display: block;
}

/* Testimonial Section */
.testimonial-section {
    background-color: #ffffff;
    background-image: url("data:image/svg+xml,%3Csvg width='42' height='44' viewBox='0 0 42 44' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='Page-1' fill='none' fill-rule='evenodd'%3E%3Cg id='brick-wall' fill='%23e1e1e1' fill-opacity='0.4'%3E%3Cpath d='M0 0h42v44H0V0zm1 1h40v20H1V1zM0 23h20v20H0V23zm22 0h20v20H22V23z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    padding: 60px 0;
}

.testimonial-section-container {
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
    max-width: 1600px;
}

.testimonial-section-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
}

.testimonial-section-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.testimonial-section-text h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 36px;
    font-weight: 900;
    color: #1a1a1a;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--accent-secondary);
    display: inline-block;
}

.testimonial-section-text p {
    font-size: 15px;
    color: #555555;
    line-height: 1.7;
    margin: 0;
}

.testimonial-section-image {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.testimonial-section-image img {
    width: 100%;
    height: 150%;
    object-fit: cover;
    display: block;
}

.project-photo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 10px;
    width: 100%;
}

.project-photo-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    border: 3px solid var(--accent-secondary);
    transition: transform 0.35s ease, filter 0.35s ease;
}

.project-photo-grid img:hover {
    transform: scale(1.03);
    filter: brightness(1.1);
    z-index: 1;
    position: relative;
}

/* Meet Ricky Section */
.meet-ricky-section {
    background-color: var(--slate);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23333333' fill-opacity='0.2'%3E%3Cpath d='M0 38.59l2.83-2.83 1.41 1.41L1.41 40H0v-1.41zM0 1.4l2.83 2.83 1.41-1.41L1.41 0H0v1.41zM38.59 40l-2.83-2.83 1.41-1.41L40 38.59V40h-1.41zM40 1.41l-2.83 2.83-1.41-1.41L38.59 0H40v1.41zM20 18.6l2.83-2.83 1.41 1.41L21.41 20l2.83 2.83-1.41 1.41L20 21.41l-2.83 2.83-1.41-1.41L18.59 20l-2.83-2.83 1.41-1.41L20 18.59z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    padding: 60px 0;
    color: #ffffff;
}

.meet-ricky-container {
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
    max-width: 1600px;
}

.meet-ricky-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
}

.meet-ricky-image {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 460px;
    position: relative;
}

.staff-row {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    width: 100%;
    flex-wrap: wrap;
}

.staff-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    background: var(--accent-secondary);
    padding: 16px 16px 24px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    flex: 0 1 220px;
}

.staff-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(183, 202, 100, 0.25), inset 0 0 20px rgba(183, 202, 100, 0.08);
}

.staff-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    object-fit: cover;
    border-radius: 6px;
    border: 2px solid rgba(255,255,255,0.3);
}

.staff-name {
    margin: 0;
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    color: #1b1f24;
    letter-spacing: 0.5px;
    font-weight: 700;
}

.staff-role {
    margin: 0;
    font-size: 12px;
    color: #2c3319;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    font-weight: 600;
}

.meet-ricky-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: right;
}

.meet-ricky-text h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 36px;
    font-weight: 900;
    color: #f9f9f9;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--accent-secondary);
    display: inline-block;
    align-self: flex-end;
}

.meet-ricky-text p {
    font-size: 15px;
    color: #CCCCCC;
    line-height: 1.7;
    margin: 0;
}

/* Feature Section */
.feature-section {
    background-color: var(--slate);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23333333' fill-opacity='0.2'%3E%3Cpath d='M0 38.59l2.83-2.83 1.41 1.41L1.41 40H0v-1.41zM0 1.4l2.83 2.83 1.41-1.41L1.41 0H0v1.41zM38.59 40l-2.83-2.83 1.41-1.41L40 38.59V40h-1.41zM40 1.41l-2.83 2.83-1.41-1.41L38.59 0H40v1.41zM20 18.6l2.83-2.83 1.41 1.41L21.41 20l2.83 2.83-1.41 1.41L20 21.41l-2.83 2.83-1.41-1.41L18.59 20l-2.83-2.83 1.41-1.41L20 18.59z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    padding: 60px 0;
    color: #ffffff;
}

.feature-container {
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
    max-width: 1600px;
}

.feature-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.feature-image {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #2a2a2a;
    height: 400px;
    border: 4px solid var(--accent-secondary);
    position: relative;
}

.feature-image img {
    width: 100%;
    height: 150%;
    object-fit: cover;
    display: block;
}

.feature-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: right;
}

.feature-text h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 36px;
    font-weight: 900;
    color: #f9f9f9;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--accent-secondary);
    display: inline-block;
    align-self: flex-end;
}

.feature-text p {
    font-size: 15px;
    color: #CCCCCC;
    line-height: 1.7;
    margin: 0;
}

/* Projects Page Styles */
.projects-section {
    background-color: var(--slate);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23333333' fill-opacity='0.2'%3E%3Cpath d='M0 38.59l2.83-2.83 1.41 1.41L1.41 40H0v-1.41zM0 1.4l2.83 2.83 1.41-1.41L1.41 0H0v1.41zM38.59 40l-2.83-2.83 1.41-1.41L40 38.59V40h-1.41zM40 1.41l-2.83 2.83-1.41-1.41L38.59 0H40v1.41zM20 18.6l2.83-2.83 1.41 1.41L21.41 20l2.83 2.83-1.41 1.41L20 21.41l-2.83 2.83-1.41-1.41L18.59 20l-2.83-2.83 1.41-1.41L20 18.59z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    padding: 80px 0;
    color: #ffffff;
}

.projects-section:nth-child(even) {
    background-color: #ffffff;
    background-image: url("data:image/svg+xml,%3Csvg width='42' height='44' viewBox='0 0 42 44' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='Page-1' fill='none' fill-rule='evenodd'%3E%3Cg id='brick-wall' fill='%23e1e1e1' fill-opacity='0.4'%3E%3Cpath d='M0 0h42v44H0V0zm1 1h40v20H1V1zM0 23h20v20H0V23zm22 0h20v20H22V23z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.projects-container {
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
    max-width: 1600px;
}

.projects-section-title {
    font-family: 'Oswald', sans-serif;
    font-size: 42px;
    font-weight: 900;
    color: #ffffff;
    margin: 0 0 50px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: 20px;
    border-bottom: 4px solid var(--accent-secondary);
    display: inline-block;
}

/* White background sections (even) - black title */
.projects-section:nth-child(even) .projects-section-title {
    color: #1a1a1a;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.project-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: transform 0.3s ease;
}

.project-card:nth-child(1) {
    animation-delay: 0.1s;
}

.project-card:nth-child(2) {
    animation-delay: 0.2s;
}

.project-card:nth-child(3) {
    animation-delay: 0.3s;
}

.project-card:hover {
    transform: translateY(-8px);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.project-image {
    position: relative;
    width: 100%;
    padding-bottom: 75%;
    overflow: hidden;
    background-color: #e8e8e8;
    border: 3px solid var(--accent-secondary);
    box-shadow: inset 0 0 0 1px rgba(183, 202, 100, 0.3);
}

.project-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.4s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.08);
    filter: brightness(1.15) contrast(1.1);
}

.project-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.project-title {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    font-weight: 700;
    transition: color 0.3s ease;
}

.project-location {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #888888;
    margin: 0;
}

.project-card:hover .project-title {
    color: var(--accent-secondary);
}

.project-description {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
    margin: 0;
}

/* Slate background sections (odd) - white text */
.projects-section:nth-child(even) .project-title {
    color: #1d1d1d;
}

.projects-section:nth-child(odd) .project-title {
    color: #ffffff;
}

.projects-section:nth-child(odd) .project-description {
    color: #CCCCCC;
}

.projects-cta {
    background-color: var(--slate);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23333333' fill-opacity='0.2'%3E%3Cpath d='M0 38.59l2.83-2.83 1.41 1.41L1.41 40H0v-1.41zM0 1.4l2.83 2.83 1.41-1.41L1.41 0H0v1.41zM38.59 40l-2.83-2.83 1.41-1.41L40 38.59V40h-1.41zM40 1.41l-2.83 2.83-1.41-1.41L38.59 0H40v1.41zM20 18.6l2.83-2.83 1.41 1.41L21.41 20l2.83 2.83-1.41 1.41L20 21.41l-2.83 2.83-1.41-1.41L18.59 20l-2.83-2.83 1.41-1.41L20 18.59z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    padding: 80px 0;
    color: #ffffff;
}

.projects-cta-container {
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
    max-width: 1000px;
    text-align: center;
}

.projects-cta h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 42px;
    font-weight: 900;
    color: #f9f9f9;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.projects-cta p {
    font-size: 16px;
    color: #CCCCCC;
    line-height: 1.7;
    margin: 0 0 30px 0;
}

.projects-cta-button {
    background-color: var(--accent-secondary);
    color: #1a1a1a;
    padding: 14px 32px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.projects-cta-button:hover {
    background-color: var(--accent-highlight);
    color: var(--slate);
}

/* Concrete Construction Page Styles */
.service-section {
    background-color: #ffffff;
    background-image: url("data:image/svg+xml,%3Csvg width='42' height='44' viewBox='0 0 42 44' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='Page-1' fill='none' fill-rule='evenodd'%3E%3Cg id='brick-wall' fill='%23e1e1e1' fill-opacity='0.4'%3E%3Cpath d='M0 0h42v44H0V0zm1 1h40v20H1V1zM0 23h20v20H0V23zm22 0h20v20H22V23z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    padding: 80px 0;
}

.service-container {
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
    max-width: 1600px;
}

.service-section-title {
    font-family: 'Oswald', sans-serif;
    font-size: 42px;
    font-weight: 900;
    color: #1a1a1a;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: 20px;
    border-bottom: 4px solid var(--accent-secondary);
    display: inline-block;
}

.service-intro {
    font-size: 16px;
    color: #666666;
    line-height: 1.7;
    margin: 30px 0 50px 0;
    max-width: 800px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.service-card {
    background-color: #f5f5f5;
    padding: 30px;
    border-left: 4px solid var(--accent-secondary);
    background-image: 
        var(--rivet-pattern-light),
        linear-gradient(to right, var(--accent-secondary) 0%, var(--accent-secondary) 4px, #e8e8e8 4px),
        linear-gradient(to bottom, var(--accent-secondary) 0%, var(--accent-secondary) 4px, #e8e8e8 4px),
        linear-gradient(to right, var(--accent-secondary) 0%, transparent 1px, transparent 100%),
        linear-gradient(to bottom, var(--accent-secondary) 0%, transparent 1px, transparent 100%);
    background-size: auto, 100% 100%, 100% 100%, 100% 2px, 2px 100%;
    background-position: left top, top left, top left, bottom right, bottom right;
    background-repeat: repeat, no-repeat, no-repeat, no-repeat, no-repeat;
    overflow: hidden;
    transition: all 0.3s ease;
    transform: skewX(-2deg);
}

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

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    max-width: 100%;
}

.service-card-image--site-prep img {
    object-position: center 30%;
}

.service-card-title {
    font-family: 'Oswald', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    padding: 30px 40px 15px 40px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-card-text {
    font-size: 15px;
    color: #666666;
    line-height: 1.7;
    margin: 0;
    padding: 0 40px 40px 40px;
}

.process-section {
    background-color: var(--slate);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23333333' fill-opacity='0.2'%3E%3Cpath d='M0 38.59l2.83-2.83 1.41 1.41L1.41 40H0v-1.41zM0 1.4l2.83 2.83 1.41-1.41L1.41 0H0v1.41zM38.59 40l-2.83-2.83 1.41-1.41L40 38.59V40h-1.41zM40 1.41l-2.83 2.83-1.41-1.41L38.59 0H40v1.41zM20 18.6l2.83-2.83 1.41 1.41L21.41 20l2.83 2.83-1.41 1.41L20 21.41l-2.83 2.83-1.41-1.41L18.59 20l-2.83-2.83 1.41-1.41L20 18.59z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    padding: 80px 0;
    color: #ffffff;
}

.process-container {
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
    max-width: 1600px;
}

.process-section-title {
    font-family: 'Oswald', sans-serif;
    font-size: 42px;
    font-weight: 900;
    color: #ffffff;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: 20px;
    border-bottom: 4px solid var(--accent-secondary);
    display: block;
}

.process-intro {
    font-size: 16px;
    color: #cccccc;
    line-height: 1.7;
    margin: 30px 0 50px 0;
    max-width: 800px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.process-step {
    background-color: var(--slate);
    padding: 40px 30px;
    background-image:
        linear-gradient(to right, var(--accent-secondary) 0%, var(--accent-secondary) 4px, #232933 4px),
        linear-gradient(to bottom, var(--accent-secondary) 0%, var(--accent-secondary) 4px, #232933 4px),
        linear-gradient(to right, var(--accent-secondary) 0%, transparent 1px, transparent 100%),
        linear-gradient(to bottom, var(--accent-secondary) 0%, transparent 1px, transparent 100%),
        linear-gradient(150deg, rgba(27, 31, 36, 0.9) 0%, rgba(27, 31, 36, 0.45) 60%, rgba(27, 31, 36, 0.1) 100%),
        var(--rivet-pattern-dark);
    background-size: 100% 100%, 100% 100%, 100% 2px, 2px 100%, 100% 100%, auto;
    background-position: top left, top left, bottom right, bottom right, center, left top;
    background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, repeat;
    position: relative;
    transition: all 0.3s ease;
    transform: skewX(-2deg);
    color: #f3f6fb;
    border: 1px solid rgba(255,255,255,0.06);
}

.process-step:nth-child(1) {
    animation-delay: 0.2s;
}

.process-step:nth-child(2) {
    animation-delay: 0.3s;
}

.process-step:nth-child(3) {
    animation-delay: 0.4s;
}

.process-step:nth-child(4) {
    animation-delay: 0.5s;
}

.process-step:nth-child(5) {
    animation-delay: 0.6s;
}

.process-step:nth-child(6) {
    animation-delay: 0.7s;
}

.process-step:hover {
    transform: translateY(-5px) skewX(-2deg);
    box-shadow: 0 10px 25px rgba(var(--accent-glow-rgb), 0.15);
}

.step-number {
    font-family: 'Oswald', sans-serif;
    font-size: 48px;
    font-weight: 900;
    color: var(--accent-secondary);
    margin: 0 0 20px 0;
}

.step-title {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #f5f5f5;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.step-text {
    font-size: 14px;
    color: #cfd5de;
    line-height: 1.6;
    margin: 0;
}

.why-section {
    background-color: #ffffff;
    background-image: url("data:image/svg+xml,%3Csvg width='42' height='44' viewBox='0 0 42 44' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='Page-1' fill='none' fill-rule='evenodd'%3E%3Cg id='brick-wall' fill='%23e1e1e1' fill-opacity='0.4'%3E%3Cpath d='M0 0h42v44H0V0zm1 1h40v20H1V1zM0 23h20v20H0V23zm22 0h20v20H22V23z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    padding: 80px 0;
}

.why-container {
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
    max-width: 1600px;
}

.why-section-title {
    font-family: 'Oswald', sans-serif;
    font-size: 42px;
    font-weight: 900;
    color: #1a1a1a;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: 20px;
    border-bottom: 4px solid var(--accent-secondary);
    display: block;
}

.why-intro {
    font-size: 16px;
    color: #666666;
    line-height: 1.7;
    margin: 30px 0 50px 0;
    max-width: 800px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-card {
    background-color: #f5f5f5;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23333333' fill-opacity='0.1'%3E%3Cpath d='M0 38.59l2.83-2.83 1.41 1.41L1.41 40H0v-1.41zM0 1.4l2.83 2.83 1.41-1.41L1.41 0H0v1.41zM38.59 40l-2.83-2.83 1.41-1.41L40 38.59V40h-1.41zM40 1.41l-2.83 2.83-1.41-1.41L38.59 0H40v1.41zM20 18.6l2.83-2.83 1.41 1.41L21.41 20l2.83 2.83-1.41 1.41L20 21.41l-2.83 2.83-1.41-1.41L18.59 20l-2.83-2.83 1.41-1.41L20 18.59z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    background-size: 40px 40px;
    background-repeat: repeat;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-top: 4px solid var(--accent-secondary);
    display: flex;
    flex-direction: column;
}

.why-card-title {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 12px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.why-card-text {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
    margin: 0;
}

.faq-section {
    background-color: var(--slate);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23333333' fill-opacity='0.2'%3E%3Cpath d='M0 38.59l2.83-2.83 1.41 1.41L1.41 40H0v-1.41zM0 1.4l2.83 2.83 1.41-1.41L1.41 0H0v1.41zM38.59 40l-2.83-2.83 1.41-1.41L40 38.59V40h-1.41zM40 1.41l-2.83 2.83-1.41-1.41L38.59 0H40v1.41zM20 18.6l2.83-2.83 1.41 1.41L21.41 20l2.83 2.83-1.41 1.41L20 21.41l-2.83 2.83-1.41-1.41L18.59 20l-2.83-2.83 1.41-1.41L20 18.59z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    padding: 80px 0;
    color: #ffffff;
}

.faq-container {
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
    max-width: 1600px;
}

.faq-section-title {
    font-family: 'Oswald', sans-serif;
    font-size: 42px;
    font-weight: 900;
    color: #ffffff;
    margin: 0 0 40px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: 20px;
    border-bottom: 4px solid var(--accent-secondary);
    display: block;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background-color: rgba(35, 41, 51, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background-color: rgba(35, 41, 51, 0.8);
    border-color: rgba(183, 202, 100, 0.3);
}

.faq-toggle {
    width: 100%;
    padding: 30px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    transition: all 0.3s ease;
}

.faq-toggle:hover {
    background-color: rgba(183, 202, 100, 0.05);
}

.faq-question {
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #f3f6fb;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: left;
    flex: 1;
}

.faq-icon {
    font-size: 28px;
    color: var(--accent-secondary);
    font-weight: 700;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    display: block;
}

.faq-item.active .faq-content {
    max-height: 1000px;
}

.faq-answer {
    font-size: 14px;
    color: #d0d0d0;
    line-height: 1.6;
    margin: 0;
    padding: 0 30px 30px 30px;
}

.quote-section {
    background-color: #ffffff;
    background-image: url("data:image/svg+xml,%3Csvg width='42' height='44' viewBox='0 0 42 44' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='Page-1' fill='none' fill-rule='evenodd'%3E%3Cg id='brick-wall' fill='%23e1e1e1' fill-opacity='0.4'%3E%3Cpath d='M0 0h42v44H0V0zm1 1h40v20H1V1zM0 23h20v20H0V23zm22 0h20v20H22V23z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    padding: 80px 0;
}

.quote-container {
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
    max-width: 1600px;
}

.quote-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: flex-start;
}

.quote-form-wrapper {
    background-color: #f5f5f5;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23333333' fill-opacity='0.05'%3E%3Cpath d='M0 38.59l2.83-2.83 1.41 1.41L1.41 40H0v-1.41zM0 1.4l2.83 2.83 1.41-1.41L1.41 0H0v1.41zM38.59 40l-2.83-2.83 1.41-1.41L40 38.59V40h-1.41zM40 1.41l-2.83 2.83-1.41-1.41L38.59 0H40v1.41zM20 18.6l2.83-2.83 1.41 1.41L21.41 20l2.83 2.83-1.41 1.41L20 21.41l-2.83 2.83-1.41-1.41L18.59 20l-2.83-2.83 1.41-1.41L20 18.59z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    padding: 40px;
    border: 1px solid #e0e0e0;
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-helper {
    font-size: 13px;
    color: #888888;
    margin: 0;
    font-style: italic;
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    padding: 12px 15px;
    border: 1px solid #d0d0d0;
    background-color: #fafafa;
    color: #333333;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-secondary);
    background-color: #ffffff;
}

.form-group textarea {
    resize: vertical;
    font-family: 'Roboto', sans-serif;
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: #555555;
}

.radio-label input[type="radio"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--accent-secondary);
}

.quote-submit-btn {
    background-color: var(--accent-secondary);
    color: #1a1a1a;
    border: none;
    padding: 14px 30px;
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 10px;
    -webkit-tap-highlight-color: transparent;
}

.quote-submit-btn:hover {
    background-color: #c4a85a;
}

.quote-submit-btn:focus-visible,
.quote-submit-btn:active {
    background-color: #c4a85a;
    color: #1a1a1a;
    outline: 2px solid #1a1a1a;
    outline-offset: 3px;
}

.form-response {
    font-size: 13px;
    margin: 10px 0 0;
    min-height: 18px;
}

.form-response[data-state="info"] {
    color: #5c5c5c;
}

.form-response[data-state="success"] {
    color: #1d502b;
}

.form-response[data-state="error"] {
    color: #b03030;
}

.privacy-notice {
    font-size: 12px;
    color: #999999;
    margin: 20px 0 0 0;
    line-height: 1.6;
}

.quote-contact-wrapper {
    background-color: #f5f5f5;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23333333' fill-opacity='0.05'%3E%3Cpath d='M0 38.59l2.83-2.83 1.41 1.41L1.41 40H0v-1.41zM0 1.4l2.83 2.83 1.41-1.41L1.41 0H0v1.41zM38.59 40l-2.83-2.83 1.41-1.41L40 38.59V40h-1.41zM40 1.41l-2.83 2.83-1.41-1.41L38.59 0H40v1.41zM20 18.6l2.83-2.83 1.41 1.41L21.41 20l2.83 2.83-1.41 1.41L20 21.41l-2.83 2.83-1.41-1.41L18.59 20l-2.83-2.83 1.41-1.41L20 18.59z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    padding: 40px;
    border: 1px solid #e0e0e0;
    height: fit-content;
}

.quote-contact-block h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    font-weight: 900;
    color: #1a1a1a;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--accent-secondary);
}

.quote-contact-block p {
    font-size: 14px;
    color: #555555;
    margin: 0 0 20px 0;
    line-height: 1.6;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-list li {
    font-size: 14px;
    color: #555555;
    line-height: 1.6;
}

.contact-list strong {
    color: #1a1a1a;
}

.contact-list a {
    color: var(--accent-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

a:hover {
    color: var(--accent-highlight);
}

.contact-list a:hover {
    color: #c4a85a;
    text-decoration: underline;
}

.contact-meta {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.contact-meta p {
    font-size: 13px;
    color: #666666;
    margin: 6px 0;
    line-height: 1.5;
}

.contact-meta strong {
    color: var(--accent-secondary);
    font-weight: 600;
}

.quote-sectors-block {
    margin: 30px 0 0 0;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.quote-sectors-block h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sectors-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.sector-tag {
    display: inline-block;
    background-color: #ffffff;
    color: #1a1a1a;
    border: 1px solid var(--accent-secondary);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
}

.sector-tag:hover {
    background-color: var(--accent-secondary);
    color: #ffffff;
}

.quote-map-container {
    margin: 20px 0 0 0;
    border-radius: 8px;
    overflow: hidden;
    height: 250px;
    border: 1px solid #e0e0e0;
    position: relative;
}

.quote-map {
    width: 100%;
    height: 100%;
    display: block;
}

.quote-map {
    filter: grayscale(60%) saturate(1.2);
}

.map-overlay {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 35px;
    background: linear-gradient(to bottom, rgba(245, 245, 245, 0), rgba(245, 245, 245, 0.98));
    pointer-events: none;
    z-index: 5;
}

.map-attribution {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    color: #666666;
    font-weight: 500;
    letter-spacing: 0.3px;
    pointer-events: none;
    z-index: 10;
}

.quote-address-block {
    margin: 30px 0 0 0;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.quote-address-block h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.quote-address-block p {
    font-size: 14px;
    color: #555555;
    margin: 0;
    line-height: 1.6;
}

.quote-service-areas {
    margin: 30px 0 0 0;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.quote-service-areas h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-areas-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.service-area-tag {
    display: inline-block;
    background-color: #ffffff;
    color: #1a1a1a;
    border: 1px solid var(--accent-secondary);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
}

.service-area-tag:hover {
    background-color: var(--accent-secondary);
    color: #ffffff;
}

.leaflet-marker-icon {
    filter: hue-rotate(35deg) saturate(1.5) brightness(1.15) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.map-attribution-credit {
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-family: 'Roboto', sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: #1a1a1a;
    background-color: rgba(255, 255, 255, 0.92);
    padding: 6px 10px;
    border-radius: 4px;
    pointer-events: auto;
    z-index: 9999 !important;
    line-height: 1.5;
    letter-spacing: 0.2px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.map-attribution-credit a {
    color: #bbbbbb !important;
    text-decoration: none !important;
    transition: color 0.2s ease !important;
    opacity: 0.75;
}

.map-attribution-credit a:hover {
    color: #888888 !important;
    opacity: 1;
}

.map-attribution-credit a:visited {
    color: #bbbbbb !important;
}

@keyframes markerFadeIn {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(183, 202, 100, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(183, 202, 100, 0.6);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes concreteSlide {
    from {
        opacity: 0;
        transform: translateX(-40px);
        filter: blur(8px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
        filter: blur(0);
    }
}

@keyframes blockDrop {
    0% {
        opacity: 0;
        transform: translateY(-60px) scale(0.9);
        filter: blur(6px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

@keyframes textureReveal {
    from {
        opacity: 0;
        background-position: -100% 0;
    }
    to {
        opacity: 1;
        background-position: 0 0;
    }
}

@keyframes industrialPulse {
    0%, 100% {
        box-shadow: inset 0 0 0 0 rgba(183, 202, 100, 0.2), 0 0 20px rgba(183, 202, 100, 0.1);
    }
    50% {
        box-shadow: inset 0 0 10px 2px rgba(183, 202, 100, 0.15), 0 0 30px rgba(183, 202, 100, 0.2);
    }
}

/* Global premium card animations - applies to all card-like elements */
.testimonial-card,
.work-step,
.process-step,
.why-card,
.capability-card,
.service-card,
.service-card-detail,
.project-card,
.polaroid-card,
.team-card,
.faq-item {
    position: relative;
    overflow: hidden;
}

.testimonial-card::before,
.work-step::before,
.process-step::before,
.why-card::before,
.capability-card::before,
.service-card::before,
.service-card-detail::before,
.project-card::before,
.polaroid-card::before,
.team-card::before,
.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(183, 202, 100, 0.1), transparent);
    transition: left 0.6s ease;
    pointer-events: none;
    z-index: 1;
}

.testimonial-card:hover::before,
.work-step:hover::before,
.process-step:hover::before,
.why-card:hover::before,
.capability-card:hover::before,
.service-card:hover::before,
.service-card-detail:hover::before,
.project-card:hover::before,
.polaroid-card:hover::before,
.team-card:hover::before,
.faq-item:hover::before {
    left: 100%;
}

/* Global hover enhancements for all cards */
.why-card:hover,
.capability-card:hover,
.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(183, 202, 100, 0.2), inset 0 0 20px rgba(183, 202, 100, 0.08);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Dark sections with light cards (matching How We Work style) */
.about {
    background-color: #1b1f24;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23333333' fill-opacity='0.2'%3E%3Cpath d='M0 38.59l2.83-2.83 1.41 1.41L1.41 40H0v-1.41zM0 1.4l2.83 2.83 1.41-1.41L1.41 0H0v1.41zM38.59 40l-2.83-2.83 1.41-1.41L40 38.59V40h-1.41zM40 1.41l-2.83 2.83-1.41-1.41L38.59 0H40v1.41zM20 18.6l2.83-2.83 1.41 1.41L21.41 20l2.83 2.83-1.41 1.41L20 21.41l-2.83 2.83-1.41-1.41L18.59 20l-2.83-2.83 1.41-1.41L20 18.59z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    padding: 60px 0;
    color: #f9f9f9;
}

.about-container {
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
    max-width: 1600px;
    display: flex;
    flex-direction: column;
}

.about .section-label {
    color: var(--accent-secondary);
}

.about .section-intro {
    color: #f9f9f9;
}

.about .about-title {
    color: #f9f9f9;
}

.about .section-subtitle {
    color: #bbbbbb;
}

.about .service-card {
    background-color: #1f1f1f;
    background-image: 
        linear-gradient(to right, var(--accent-secondary) 0%, var(--accent-secondary) 4px, #f9f9f9 4px),
        linear-gradient(to bottom, var(--accent-secondary) 0%, var(--accent-secondary) 4px, #f9f9f9 4px),
        linear-gradient(to right, var(--accent-secondary) 0%, transparent 1px, transparent 100%),
        linear-gradient(to bottom, var(--accent-secondary) 0%, transparent 1px, transparent 100%);
    background-size: 100% 100%, 100% 100%, 100% 2px, 2px 100%;
    background-position: top left, top left, bottom right, bottom right;
    background-repeat: no-repeat;
}

.about .service-card h3 {
    color: #f9f9f9;
}

.about .service-card p {
    color: #cccccc;
}

/* Services Section */
.services {
    background-color: #ffffff;
    background-image: url("data:image/svg+xml,%3Csvg width='42' height='44' viewBox='0 0 42 44' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='Page-1' fill='none' fill-rule='evenodd'%3E%3Cg id='brick-wall' fill='%23e1e1e1' fill-opacity='0.4'%3E%3Cpath d='M0 0h42v44H0V0zm1 1h40v20H1V1zM0 23h20v20H0V23zm22 0h20v20H22V23z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    padding: 30px 0;
}

.services-container {
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    max-width: 1600px;
    width: 100%;
}

.section-label {
    color: var(--accent-secondary);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

.section-intro {
    font-size: 32px;
    color: #1a1a1a;
    font-weight: 900;
    margin-bottom: 30px;
    line-height: 1.2;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.section-subtitle {
    font-size: 16px;
    color: #555555;
    font-weight: 400;
    margin-bottom: 30px;
    line-height: 1.6;
    font-family: 'Roboto', sans-serif;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.service-card {
    background-color: #f5f5f5;
    padding: 30px;
    border-left: 4px solid var(--accent-secondary);
    background-image: 
        var(--rivet-pattern-light),
        linear-gradient(to right, var(--accent-secondary) 0%, var(--accent-secondary) 4px, #e8e8e8 4px),
        linear-gradient(to bottom, var(--accent-secondary) 0%, var(--accent-secondary) 4px, #e8e8e8 4px),
        linear-gradient(to right, var(--accent-secondary) 0%, transparent 1px, transparent 100%),
        linear-gradient(to bottom, var(--accent-secondary) 0%, transparent 1px, transparent 100%);
    background-size: auto, 100% 100%, 100% 100%, 100% 2px, 2px 100%;
    background-position: left top, top left, top left, bottom right, bottom right;
    background-repeat: repeat, no-repeat, no-repeat, no-repeat, no-repeat;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform: skewX(-2deg);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(183, 202, 100, 0.1), transparent);
    transition: left 0.6s ease;
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-8px) skewX(0deg);
    box-shadow: 0 15px 40px rgba(183, 202, 100, 0.2), inset 0 0 20px rgba(183, 202, 100, 0.08);
    border-left-width: 6px;
}

.service-card:hover::before {
    left: 100%;
}

.service-card h3 {
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: var(--accent-secondary);
}

.service-card:nth-child(1) {
    animation-delay: 0.3s;
}

.service-card:nth-child(2) {
    animation-delay: 0.4s;
}

.service-card:nth-child(3) {
    animation-delay: 0.5s;
}

.service-card:nth-child(4) {
    animation-delay: 0.6s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(var(--accent-glow-rgb), 0.15);
}

.service-card h3 {
    font-size: 16px;
    color: #1a1a1a;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    margin: 0 0 15px 0;
    font-weight: 900;
    letter-spacing: 0.5px;
}

.service-card p {
    font-size: 14px;
    color: #666666;
    margin: 0;
    line-height: 1.6;
}

.services-link {
    color: var(--accent-secondary);
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: color 0.3s ease;
    align-self: flex-end;
    animation: fadeInUp 0.8s ease-out 0.7s both;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-link {
    color: var(--accent-secondary);
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: color 0.3s ease;
    align-self: flex-end;
    animation: fadeInUp 0.8s ease-out 0.7s both;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.testimonials-link {
    color: var(--accent-secondary);
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: color 0.3s ease;
    align-self: flex-end;
    animation: fadeInUp 0.8s ease-out 0.7s both;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.services-link:hover {
    color: #1a1a1a;
}

.header {
    background-color: #1b1f24;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 36px;
    left: 0;
    right: 0;
    z-index: 1000;
    overflow: visible;
    width: 100%;
    transition: padding 0.3s ease, box-shadow 0.3s ease;
}

.header.scrolled {
    padding: 6px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.logo-icon {
    transition: width 0.3s ease, height 0.3s ease;
}

.header-text h1 {
    transition: font-size 0.3s ease;
}

.header-text p {
    transition: opacity 0.3s ease, max-height 0.3s ease;
    overflow: hidden;
    max-height: 30px;
    opacity: 1;
}

.header.scrolled .logo-icon {
    width: 40px !important;
    height: 40px !important;
}

.header.scrolled .header-text h1 {
    font-size: 16px !important;
}

.header.scrolled .header-text p {
    max-height: 0;
    opacity: 0;
}

.header-container {
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.header-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.header-content {
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    color: inherit;
}

.logo-icon {
    width: 60px;
    height: 60px;
    display: block;
    background: linear-gradient(140deg, var(--accent-gradient-start) 0%, var(--accent-gradient-end) 70%);
    -webkit-mask: url('assets/logo%20just%20icon.png') center/contain no-repeat;
    mask: url('assets/logo%20just%20icon.png') center/contain no-repeat;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.header-text h1 {
    font-size: 20px;
    font-weight: 900;
    margin: 0;
    letter-spacing: 2px;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

.header-text h1 .gold {
    color: var(--accent-secondary);
}

.header-text h1 .grey {
    color: #CCCCCC;
}

.header-text p {
    margin: 3px 0 0 0;
    color: #CCCCCC;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .header {
        top: 0 !important;
        padding: 0 !important;
    }
}

.header-nav {
    display: flex;
    align-items: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
}

.menu-toggle {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
    position: relative;
    width: 40px;
    height: 40px;
    margin: 0;
    justify-content: center;
    align-items: center;
}

.hamburger span {
    position: absolute;
    width: 24px;
    height: 3px;
    background-color: var(--accent-secondary);
    display: block;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hamburger span:before,
.hamburger span:after {
    position: absolute;
    content: '';
    width: 24px;
    height: 3px;
    background-color: var(--accent-secondary);
    display: block;
    left: 0;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hamburger span:before {
    top: -8px;
}

.hamburger span:after {
    top: 8px;
}

.nav-list {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 0;
}

.mobile-contact-item {
    display: none;
}

.nav-list li:nth-child(7) {
    display: none;
}

/* Dropdown styles */
.nav-dropdown {
    position: relative;
    z-index: 10;
}

.nav-dropdown > a {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-dropdown > a::after {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: 2px solid var(--accent-secondary);
    border-bottom: 2px solid var(--accent-secondary);
    transform: rotate(45deg);
    margin-left: 8px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    vertical-align: middle;
}

.nav-dropdown:hover > a::after {
    transform: rotate(225deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #232933;
    list-style: none;
    padding: 12px 0;
    margin: 8px 0 0 0;
    min-width: 220px;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 2000;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    list-style: none;
    padding-left: 0;
}

.dropdown-menu li {
    margin: 0;
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: #CCCCCC;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: color 0.3s ease, background-color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dropdown-menu a:hover {
    color: var(--accent-secondary);
    background-color: #2d353f;
}

.header-nav a {
    color: #CCCCCC;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.header-nav a:hover {
    color: var(--accent-secondary);
}

.cta-button {
    background-color: var(--accent-secondary);
    color: var(--slate);
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: inline-block;
    position: relative;
}

.cta-button:hover {
    background-color: var(--accent-highlight);
    color: var(--slate);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(183, 202, 100, 0.3);
}

.cta-button:focus-visible,
.cta-button:active {
    color: var(--slate);
    background-color: var(--accent-highlight);
}

.about .cta-button,
.how-we-work .cta-button {
    background-color: var(--accent-secondary);
    color: #f9f9f9;
}

.about .cta-button:hover,
.how-we-work .cta-button:hover {
    background-color: var(--accent-highlight);
    color: #f9f9f9;
}

.about-link,
.services-link {
    background-color: transparent;
    color: var(--accent-secondary);
}

.about-link:hover,
.services-link:hover {
    background-color: transparent;
    color: var(--accent-highlight);
}

.services-link {
    color: var(--accent-secondary);
}

.services-link:hover {
    color: var(--accent-highlight);
}

.about-link {
    color: #f9f9f9;
}

.about-link:hover {
    color: #ffffff;
}

.how-we-work-link {
    background-color: transparent;
    color: #f9f9f9;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: color 0.3s ease;
    align-self: flex-end;
    animation: fadeInUp 0.8s ease-out 0.7s both;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 20px;
}

.how-we-work-link:hover {
    color: #ffffff;
}

/* Final CTA Section */
.final-cta {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
    background-color: #ffffff;
}

.final-cta-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transform: scaleX(-1);
}

.final-cta-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to left, rgba(255, 255, 255, 0.99) 0%, rgba(255, 255, 255, 0.99) 50%, rgba(255, 255, 255, 0.6) 75%, transparent 100%);
    z-index: 2;
    pointer-events: none;
}

.final-cta-overlay {
    display: none;
}

.final-cta-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 1600px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    padding: 0 40px 0 0;
    z-index: 3;
}

.final-cta-title {
    font-family: 'Oswald', sans-serif;
    font-size: 48px;
    font-weight: 900;
    color: var(--slate);
    margin: 0 0 16px 0;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 2px;
    max-width: 800px;
    text-align: right;
    animation: fadeInUp 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s both;
}

.final-cta-subtitle {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: var(--slate);
    margin: 0 0 28px 0;
    line-height: 1.6;
    max-width: 700px;
    text-align: right;
    animation: fadeInUp 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) 0.45s both;
}

.final-cta-button {
    background-color: transparent;
    color: #1a1a1a !important;
    padding: 14px 44px;
    border: 2px solid #1a1a1a;
    border-radius: 5px;
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
    animation: fadeInUp 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) 0.6s both;
}

.final-cta-button:hover {
    background-color: #1a1a1a;
    color: #ffffff !important;
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(var(--accent-glow-rgb), 0.4);
}

.desktop-cta {
    display: block;
}

/* Desktop Styles (Default) */
/* Navigation is already styled above */

/* Mobile Menu Styles */
@media (max-width: 1399px) {
    .dropdown-menu {
        display: none;
        position: static;
        opacity: 0;
        visibility: hidden;
        transform: none;
        width: 100%;
        padding: 0;
        list-style: none;
    }

    .nav-dropdown > a::after {
        content: "";
        display: inline-block;
        width: 6px;
        height: 6px;
        border-right: 2px solid var(--accent-secondary);
        border-bottom: 2px solid var(--accent-secondary);
        transform: rotate(45deg);
        margin-left: 8px;
        transition: transform 0.3s ease;
        flex-shrink: 0;
        vertical-align: middle;
    }

    .nav-dropdown.active > a::after {
        transform: rotate(225deg);
    }

    .nav-dropdown.active .dropdown-menu {
        display: block;
        max-height: 500px;
        opacity: 1;
        visibility: visible;
    }

    .dropdown-menu li {
        margin: 0 0 12px 0;
        opacity: 0;
        transform: translateX(-10px);
        transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .nav-dropdown.active .dropdown-menu li {
        opacity: 1;
        transform: translateX(0);
    }

    .dropdown-menu li:nth-child(1) {
        transition-delay: 0.05s;
    }

    .dropdown-menu li:nth-child(2) {
        transition-delay: 0.1s;
    }

    .dropdown-menu li:nth-child(3) {
        transition-delay: 0.15s;
    }

    .dropdown-menu li:nth-child(4) {
        transition-delay: 0.2s;
    }

    .dropdown-menu li:nth-child(5) {
        transition-delay: 0.25s;
    }

    .dropdown-menu li:nth-child(6) {
        transition-delay: 0.3s;
    }

    .dropdown-menu li:last-child {
        margin-bottom: 0;
    }

    .dropdown-menu a {
        padding: 12px 18px;
        font-size: 15px;
        color: #f0f0f0;
        width: 100%;
        display: block;
        letter-spacing: 0.4px;
        position: relative;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: inset 2px 2px 0 rgba(255, 255, 255, 0.02);
    }

    .dropdown-menu a::after {
        content: '';
        position: absolute;
        left: 12px;
        top: 50%;
        transform: translateY(-50%);
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background-color: var(--accent-secondary);
        box-shadow: 0 0 8px rgba(183, 202, 100, 0.6);
    }

    .dropdown-menu a {
        padding-left: 32px;
    }

    .dropdown-menu a:hover {
        background-color: rgba(183, 202, 100, 0.15);
        color: #ffffff;
        border-color: rgba(183, 202, 100, 0.4);
    }

    .header-nav {
        position: relative;
        transform: none;
        left: auto;
    }

    .nav-list {
        display: none;
    }

    .mobile-contact-item {
        display: block;
    }

    .desktop-cta {
        display: none;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .menu-toggle {
        display: none;
    }

    .menu-toggle ~ .nav-list {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: #1b1f24;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 0;
        padding: 100px 30px 40px;
        overflow-y: auto;
        transition: right 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        z-index: 1000;
        display: flex;
    }

    .menu-toggle:checked ~ .nav-list {
        right: 0;
    }

    .menu-toggle:checked ~ .hamburger span {
        background-color: transparent;
    }

    .menu-toggle:checked ~ .hamburger span:before {
        top: 0;
        transform: rotate(45deg);
        background-color: var(--accent-secondary);
    }

    .menu-toggle:checked ~ .hamburger span:after {
        top: 0;
        transform: rotate(-45deg);
        background-color: var(--accent-secondary);
    }

    .nav-list li {
        text-align: center;
        padding: 14px 0;
        border-bottom: none;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        width: 100%;
    }

    .nav-list li a {
        font-size: 18px;
        font-weight: 600;
        color: #CCCCCC;
        text-decoration: none;
        display: block;
        padding: 8px 0;
        transition: color 0.3s ease;
    }

    .nav-list li a:hover {
        color: var(--accent-secondary);
    }

    .menu-toggle:checked ~ .nav-list li {
        opacity: 1;
        transform: translateY(0);
    }

    .menu-toggle:checked ~ .nav-list li:nth-child(1) {
        transition-delay: 0.1s;
    }

    .menu-toggle:checked ~ .nav-list li:nth-child(2) {
        transition-delay: 0.2s;
    }

    .menu-toggle:checked ~ .nav-list li:nth-child(3) {
        transition-delay: 0.3s;
    }

    .menu-toggle:checked ~ .nav-list li:nth-child(4) {
        transition-delay: 0.4s;
    }

    .menu-toggle:checked ~ .nav-list li:nth-child(5) {
        transition-delay: 0.5s;
    }

    .menu-toggle:checked ~ .nav-list li:nth-child(6) {
        transition-delay: 0.6s;
    }

    .menu-toggle:checked ~ .nav-list li:nth-child(7) {
        transition-delay: 0.7s;
        padding-top: 40px;
        border-top: 1px solid #333333;
    }


    .nav-list .cta-button {
        font-size: 16px;
        padding: 12px 28px;
        background-color: var(--accent-secondary);
        color: var(--slate);
        margin-top: 30px;
        border-radius: 5px;
        font-weight: 700;
        letter-spacing: 0.5px;
    }

    .nav-list .cta-button:hover {
        background-color: var(--accent-highlight);
        color: var(--slate);
    }

    .nav-list li.mobile-contact-item {
        padding-top: 20px;
        border-top: 1px solid rgba(183, 202, 100, 0.2);
        margin-top: 20px;
    }
}

/* Mobile Hero Styles */
@media (max-width: 1399px) {
    .hero {
        height: auto;
        min-height: 500px;
    }

    .hero-video {
        width: 100%;
        right: 0;
    }

    .hero-video-overlay {
        display: none;
    }

    .hero-overlay {
        background: linear-gradient(to right, rgba(27, 31, 36, 0.97) 0%, rgba(27, 31, 36, 0.93) 50%, rgba(27, 31, 36, 0.6) 65%, rgba(27, 31, 36, 0.32) 80%);
    }

    .hero-overlay::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 40%;
        height: 100%;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.15'%3E%3Cpath d='M0 38.59l2.83-2.83 1.41 1.41L1.41 40H0v-1.41zM0 1.4l2.83 2.83 1.41-1.41L1.41 0H0v1.41zM38.59 40l-2.83-2.83 1.41-1.41L40 38.59V40h-1.41zM40 1.41l-2.83 2.83-1.41-1.41L38.59 0H40v1.41zM20 18.6l2.83-2.83 1.41 1.41L21.41 20l2.83 2.83-1.41 1.41L20 21.41l-2.83 2.83-1.41-1.41L18.59 20l-2.83-2.83 1.41-1.41L20 18.59z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        background-size: 40px 40px;
        background-repeat: repeat;
        background-position: 0 0;
        mask-image: linear-gradient(to right, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
        z-index: 0;
    }

    .hero-content {
        position: relative;
        width: 100%;
        height: auto;
        padding: 90px 20px 40px;
        justify-content: flex-start;
        align-items: flex-start;
        text-align: left;
    }

    .hero-title {
        font-size: 36px;
        max-width: 100%;
        margin-bottom: 20px;
        line-height: 1.2;
        color: #ffffff;
    }

    .hero-subtitle {
        font-size: 16px;
        max-width: 100%;
        margin-bottom: 20px;
        line-height: 1.7;
        color: #CCCCCC;
    }

    .hero-ctas {
        flex-direction: row;
        gap: 15px;
        width: 100%;
        justify-content: flex-start;
    }

    .hero-primary-cta,
    .hero-secondary-cta {
        width: auto;
        text-align: center;
        padding: 12px 24px;
        font-size: 14px;
    }

    .hero-secondary-cta {
        border: 2px solid var(--accent-secondary);
        color: var(--accent-secondary);
        padding: 10px 20px;
    }

}

@media (max-width: 480px) {
    .service-card-detail {
        background-color: #ececec;
        background-image: none;
    }

    .testimonial-card,
    .service-card,
    .why-card,
    .quote-form-wrapper,
    .quote-contact-wrapper,
    .why-choose-item,
    .policy-contact-info {
        background-color: #ececec;
    }

    .header-content {
        gap: 15px;
    }

    .logo-icon {
        width: 55px;
        height: 55px;
    }

    .header-text h1 {
        font-size: 18px;
    }

    .header-text p {
        font-size: 14px;
        font-weight: 700;
    }

    .hero {
        height: auto;
        min-height: 360px;
        margin-top: 0 !important;
        padding-top: 50px;
    }

    .hero-video {
        width: 100%;
        right: 0;
    }

    .hero-video-overlay {
        display: none;
    }

    .hero-overlay {
        width: 100%;
        background: linear-gradient(to right, rgba(27, 31, 36, 0.95) 0%, rgba(27, 31, 36, 0.88) 55%, rgba(27, 31, 36, 0.5) 75%);
    }

    .hero-overlay::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 40%;
        height: 100%;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.15'%3E%3Cpath d='M0 38.59l2.83-2.83 1.41 1.41L1.41 40H0v-1.41zM0 1.4l2.83 2.83 1.41-1.41L1.41 0H0v1.41zM38.59 40l-2.83-2.83 1.41-1.41L40 38.59V40h-1.41zM40 1.41l-2.83 2.83-1.41-1.41L38.59 0H40v1.41zM20 18.6l2.83-2.83 1.41 1.41L21.41 20l2.83 2.83-1.41 1.41L20 21.41l-2.83 2.83-1.41-1.41L18.59 20l-2.83-2.83 1.41-1.41L20 18.59z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        background-size: 40px 40px;
        background-repeat: repeat;
        background-position: 0 0;
        mask-image: linear-gradient(to right, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
        z-index: 0;
    }

    .hero-content {
        position: relative;
        padding: 90px 15px 30px;
        justify-content: flex-start;
        align-items: flex-start;
        text-align: left;
        height: auto;
    }

    .hero-title {
        font-size: 28px;
        margin-bottom: 12px;
        line-height: 1.2;
        color: #ffffff;
        padding-top: 20px;
    }

    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 24px;
        line-height: 1.7;
        color: #CCCCCC;
    }

    .hero-ctas {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: flex-start;
        width: 100%;
        margin-top: 0;
        padding-bottom: 10px;
    }

    .hero-primary-cta,
    .hero-secondary-cta {
        width: auto;
        min-width: 140px;
        padding: 10px 16px;
        font-size: 14px;
        margin: 5px 0;
    }

    .hero-secondary-cta {
        border: 2px solid var(--accent-secondary);
        color: var(--accent-secondary);
    }
}

/* Mobile About Styles */
@media (max-width: 1399px) {
    .about {
        padding: 30px 0;
    }

    .about-container {
        padding: 0 20px;
    }

    .about-title {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .about-content {
        flex-direction: column;
        gap: 0;
        align-items: stretch;
    }

    .polaroid {
        width: 100%;
        padding: 0 !important;
        order: 1;
        z-index: 2;
        background: transparent !important;
        box-shadow: none !important;
        border-left: 4px solid var(--accent-secondary);
        margin-bottom: 0;
        max-width: 600px;
    }

    .polaroid img {
        width: 100%;
        height: auto;
    }

    .polaroid .polaroid-caption {
        display: none;
    }

    .about-text {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
        gap: 18px;
        order: 2;
        padding-top: 25px;
        position: relative;
    }

    .about-text::before {
        content: 'Ricky Horseman, President';
        display: block;
        font-family: 'Oswald', sans-serif;
        font-size: 14px;
        font-weight: 900;
        color: var(--accent-secondary);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 16px;
    }

    .about-text p {
        font-size: 14px;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .about {
        padding: 30px 0;
    }

    .about-container {
        padding: 0 15px;
    }

    .about-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .about-content {
        flex-direction: column;
        gap: 0;
        align-items: stretch;
    }

    .polaroid {
        width: 100%;
        margin: 0 0 -4px 0;
        padding: 0;
        order: 1;
        z-index: 2;
        background: none;
        box-shadow: none;
        background-image: none;
        border-left: 4px solid var(--accent-secondary);
    }

    .polaroid img {
        width: 100%;
        height: auto;
    }

    .about-text {
        width: 100%;
        gap: 15px;
        order: 2;
        padding-top: 25px;
        position: relative;
    }

    .about-text::before {
        content: 'Ricky Horseman, President';
        display: block;
        font-family: 'Oswald', sans-serif;
        font-size: 14px;
        font-weight: 900;
        color: var(--accent-secondary);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 16px;
    }

    .about-text p {
        font-size: 13px;
        line-height: 1.6;
    }

    .polaroid .polaroid-caption {
        display: none;
    }
}

/* Mobile Testimonials Styles */
@media (max-width: 1399px) {
    .testimonials-container {
        padding: 0 20px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 30px;
    }

    .testimonial-card {
        padding: 25px;
    }

    .testimonial-stars {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .testimonial-text {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .testimonial-author {
        font-size: 13px;
    }

    .testimonial-company {
        font-size: 11px;
    }

    .how-we-work-content {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .work-step {
        padding: 30px 25px;
    }

    .step-number {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .work-step p {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .testimonials {
        padding: 30px 0;
    }

    .testimonials-container {
        padding: 0 15px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-bottom: 25px;
    }

    .testimonial-card {
        padding: 22px;
    }

    .testimonial-stars {
        font-size: 13px;
        margin-bottom: 11px;
    }

    .testimonial-text {
        font-size: 13px;
        margin-bottom: 13px;
        line-height: 1.6;
    }

    .testimonial-author {
        font-size: 12px;
        margin-bottom: 3px;
    }

    .testimonial-company {
        font-size: 10px;
    }
}

/* Mobile Services Styles */
@media (max-width: 1399px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

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

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

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

    .quote-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .our-story-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .our-story-title {
        font-size: 28px;
    }

    .our-story-text p {
        font-size: 14px;
    }

    .feature-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .feature-text {
        text-align: left;
    }

    .feature-text h2 {
        font-size: 28px;
        align-self: flex-start;
    }

    .testimonial-section-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .testimonial-section-text h2 {
        font-size: 28px;
    }

    .testimonial-section-text p {
        font-size: 14px;
    }

    .meet-ricky-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .meet-ricky-image {
        min-height: auto;
        padding: 20px 0 0;
    }

    .meet-ricky-polaroids {
        max-width: none;
        margin-top: 0;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 25px;
        position: static;
    }

    .polaroid-card {
        position: relative;
        width: min(280px, 80%);
        transform: none;
    }

    .polaroid-card:hover {
        transform: translateY(-8px);
    }

    .tilt-left,
    .tilt-center,
    .tilt-right {
        top: 0;
        left: 0;
        right: 0;
    }

    .meet-ricky-text {
        text-align: left;
    }

    .meet-ricky-text h2 {
        font-size: 28px;
        align-self: flex-start;
    }

    .meet-ricky-text p {
        font-size: 14px;
    }

    .services {
        min-height: calc(100vh - 350px);
        padding: 60px 0;
    }

    .services-container {
        padding: 0 20px;
    }

    .section-intro {
        font-size: 24px;
        margin-bottom: 40px;
    }

    .section-subtitle {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }

    .service-card {
        padding: 28px;
    }

    .service-card h3 {
        font-size: 18px;
    }

    .service-card p {
        font-size: 15px;
    }

    .how-we-work-container {
        padding: 0 20px;
    }

    .how-we-work-content {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .work-step p {
        font-size: 15px;
    }
}

/* Main Hero Video Flip */
.hero-video {
    transform: scaleX(-1) !important;
}

/* Seasonal Hero Video - No Flip */
.seasonal-hero-video {
    transform: none !important;
}

/* Services Page Hero Video - Flipped */
.services-hero-video {
    transform: scaleX(-1) !important;
}

.sport-hero-video {
    transform: none !important;
}

/* Site Property Services CTA Video Flip */
#site-services-cta .final-cta-video {
    transform: scaleX(-1) !important;
}

/* FAQ Page Styles */
.faq-hero {
    background-color: var(--slate);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23333333' fill-opacity='0.2'%3E%3Cpath d='M0 38.59l2.83-2.83 1.41 1.41L1.41 40H0v-1.41zM0 1.4l2.83 2.83 1.41-1.41L1.41 0H0v1.41zM38.59 40l-2.83-2.83 1.41-1.41L40 38.59V40h-1.41zM40 1.41l-2.83 2.83-1.41-1.41L38.59 0H40v1.41zM20 18.6l2.83-2.83 1.41 1.41L21.41 20l2.83 2.83-1.41 1.41L20 21.41l-2.83 2.83-1.41-1.41L18.59 20l-2.83-2.83 1.41-1.41L20 18.59z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    padding: 100px 0;
    text-align: center;
    position: relative;
}

.faq-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.15'%3E%3Cpath d='M0 38.59l2.83-2.83 1.41 1.41L1.41 40H0v-1.41zM0 1.4l2.83 2.83 1.41-1.41L1.41 0H0v1.41zM38.59 40l-2.83-2.83 1.41-1.41L40 38.59V40h-1.41zM40 1.41l-2.83 2.83-1.41-1.41L38.59 0H40v1.41zM20 18.6l2.83-2.83 1.41 1.41L21.41 20l2.83 2.83-1.41 1.41L20 21.41l-2.83 2.83-1.41-1.41L18.59 20l-2.83-2.83 1.41-1.41L20 18.59z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    background-size: 40px 40px;
    background-repeat: repeat;
    background-position: 0 0;
    mask-image: linear-gradient(to right, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 0;
}

.faq-hero-content {
    position: relative;
    z-index: 1;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
    max-width: 1600px;
}

.faq-hero-title {
    font-family: 'Oswald', sans-serif;
    font-size: 56px;
    font-weight: 900;
    color: #ffffff;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.faq-hero-subtitle {
    font-size: 18px;
    color: #CCCCCC;
    line-height: 1.7;
    margin: 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-main-section {
    background-color: var(--slate);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23333333' fill-opacity='0.2'%3E%3Cpath d='M0 38.59l2.83-2.83 1.41 1.41L1.41 40H0v-1.41zM0 1.4l2.83 2.83 1.41-1.41L1.41 0H0v1.41zM38.59 40l-2.83-2.83 1.41-1.41L40 38.59V40h-1.41zM40 1.41l-2.83 2.83-1.41-1.41L38.59 0H40v1.41zM20 18.6l2.83-2.83 1.41 1.41L21.41 20l2.83 2.83-1.41 1.41L20 21.41l-2.83 2.83-1.41-1.41L18.59 20l-2.83-2.83 1.41-1.41L20 18.59z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    padding: 80px 0;
    color: #ffffff;
}

.faq-main-container {
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
    max-width: 1600px;
}

.faq-category {
    margin-bottom: 60px;
}

.faq-category-title {
    font-family: 'Oswald', sans-serif;
    font-size: 36px;
    font-weight: 900;
    color: #ffffff;
    margin: 0 0 40px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: 20px;
    border-bottom: 4px solid var(--accent-secondary);
    display: block;
    animation: fadeInUp 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.faq-contact-section {
    background-color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.faq-contact-container {
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
    max-width: 1000px;
}

.faq-contact-title {
    font-family: 'Oswald', sans-serif;
    font-size: 42px;
    font-weight: 900;
    color: #1a1a1a;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.faq-contact-text {
    font-size: 16px;
    color: #666666;
    line-height: 1.7;
    margin: 0 0 30px 0;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.faq-item:nth-child(1) {
    animation-delay: 0.2s;
}

.faq-item:nth-child(2) {
    animation-delay: 0.3s;
}

.faq-item:nth-child(3) {
    animation-delay: 0.4s;
}

.faq-item:nth-child(4) {
    animation-delay: 0.5s;
}

.faq-item:nth-child(5) {
    animation-delay: 0.6s;
}

.faq-item:nth-child(6) {
    animation-delay: 0.7s;
}

.faq-item:nth-child(7) {
    animation-delay: 0.8s;
}

.faq-item:hover {
    box-shadow: 0 6px 16px rgba(var(--accent-glow-rgb), 0.15);
    transform: translateY(-2px);
}

.faq-toggle {
    width: 100%;
    padding: 24px;
    background-color: #ffffff;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    text-align: left;
}

.faq-toggle:hover {
    background-color: #f9f9f9;
}

.faq-toggle.active {
    background-color: #f0f0f0;
}

.faq-question {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

.faq-icon {
    font-size: 24px;
    color: var(--accent-secondary);
    font-weight: bold;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    flex-shrink: 0;
    margin-left: 20px;
}

.faq-toggle.active .faq-icon {
    transform: rotate(45deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), padding 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    padding: 0 24px 0 0;
    background-color: #fafafa;
}

.faq-item.active .faq-content {
    max-height: 1000px;
    padding: 0 24px 24px 0;
}

.faq-answer {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    color: #444444;
    line-height: 1.8;
    margin: 0;
    font-weight: 400;
    letter-spacing: 0.3px;
    padding-left: 24px;
}

.faq-contact-button {
    background-color: var(--accent-secondary);
    color: #1a1a1a;
    padding: 14px 32px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.faq-contact-button:hover {
    background-color: var(--accent-highlight);
    color: var(--slate);
}

/* Privacy Policy Page Styles */
.policy-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 80px 0;
    text-align: center;
}

.policy-hero-content {
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
    max-width: 1600px;
}

.policy-title {
    font-family: 'Oswald', sans-serif;
    font-size: 56px;
    font-weight: 900;
    color: #ffffff;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.policy-last-updated {
    font-size: 16px;
    color: var(--accent-secondary);
    margin: 0;
    font-weight: 500;
}

.policy-content {
    background-color: #ffffff;
    background-image: url("data:image/svg+xml,%3Csvg width='42' height='44' viewBox='0 0 42 44' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='Page-1' fill='none' fill-rule='evenodd'%3E%3Cg id='brick-wall' fill='%23e1e1e1' fill-opacity='0.4'%3E%3Cpath d='M0 0h42v44H0V0zm1 1h40v20H1V1zM0 23h20v20H0V23zm22 0h20v20H22V23z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    padding: 80px 0;
}

.policy-container {
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
    max-width: 900px;
}

.policy-section {
    margin-bottom: 50px;
    line-height: 1.8;
}

.policy-section p {
    font-size: 15px;
    color: #333333;
    margin: 0 0 15px 0;
}

.policy-section-title {
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    font-weight: 900;
    color: #1a1a1a;
    margin: 0 0 25px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--accent-secondary);
    display: inline-block;
}

.policy-subsection-title {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 25px 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.policy-list {
    margin: 15px 0 20px 0;
    padding-left: 25px;
    list-style-type: disc;
}

.policy-list li {
    font-size: 15px;
    color: #333333;
    margin-bottom: 8px;
    line-height: 1.6;
}

.policy-contact-info {
    background-color: #f5f5f5;
    padding: 20px;
    border-left: 4px solid var(--accent-secondary);
    margin: 20px 0;
}

.policy-contact-info p {
    margin: 0;
    font-size: 14px;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .policy-title {
        font-size: 36px;
    }

    .policy-section-title {
        font-size: 22px;
    }

    .policy-subsection-title {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .policy-hero {
        padding: 60px 0;
    }

    .policy-hero-content {
        padding: 0 15px;
    }

    .policy-title {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .policy-last-updated {
        font-size: 14px;
    }

    .policy-content {
        padding: 40px 0;
    }

    .policy-container {
        padding: 0 15px;
    }

    .policy-section {
        margin-bottom: 30px;
    }

    .policy-section p {
        font-size: 14px;
    }

    .policy-section-title {
        font-size: 20px;
    }

    .policy-subsection-title {
        font-size: 15px;
        margin: 20px 0 12px 0;
    }

    .policy-list {
        padding-left: 20px;
    }

    .policy-list li {
        font-size: 14px;
    }
}

/* Services Detail Page Styles */
.services-detail {
    background-color: #ffffff;
    background-image: url("data:image/svg+xml,%3Csvg width='42' height='44' viewBox='0 0 42 44' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='Page-1' fill='none' fill-rule='evenodd'%3E%3Cg id='brick-wall' fill='%23e1e1e1' fill-opacity='0.4'%3E%3Cpath d='M0 0h42v44H0V0zm1 1h40v20H1V1zM0 23h20v20H0V23zm22 0h20v20H22V23z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    padding: 80px 0;
}

.services-detail-container {
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
    max-width: 1600px;
}

.services-detail-title {
    font-family: 'Oswald', sans-serif;
    font-size: 48px;
    font-weight: 900;
    color: #1a1a1a;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.services-detail-intro {
    font-size: 18px;
    color: #555555;
    line-height: 1.7;
    margin: 0 0 60px 0;
    max-width: 800px;
}

.services-grid-detail {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 0 0 80px 0;
}

.service-card-detail:nth-child(odd):last-child {
    grid-column: 1;
}

@media (max-width: 1200px) {
    .services-grid-detail {
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .services-detail {
        background-image: none !important;
        background-color: #ffffff !important;
    }

    .services-grid-detail {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 100%;
    }

    .service-card-detail {
        max-width: 100%;
        padding: 30px;
        overflow: hidden;
        background-color: #ececec;
        background-image: none;
    }

    .service-card-detail:nth-child(odd):last-child {
        grid-column: 1;
        max-width: 100%;
    }

    .service-card-hero {
        width: 100%;
        margin: 0;
        height: 200px;
        overflow: hidden;
    }

    .service-card-hero img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover;
        display: block;
        max-width: none !important;
    }
}

.service-card-detail {
    background-color: #f5f5f5;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23333333' fill-opacity='0.1'%3E%3Cpath d='M0 38.59l2.83-2.83 1.41 1.41L1.41 40H0v-1.41zM0 1.4l2.83 2.83 1.41-1.41L1.41 0H0v1.41zM38.59 40l-2.83-2.83 1.41-1.41L40 38.59V40h-1.41zM40 1.41l-2.83 2.83-1.41-1.41L38.59 0H40v1.41zM20 18.6l2.83-2.83 1.41 1.41L21.41 20l2.83 2.83-1.41 1.41L20 21.41l-2.83 2.83-1.41-1.41L18.59 20l-2.83-2.83 1.41-1.41L20 18.59z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.service-card-detail::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(183, 202, 100, 0.1), transparent);
    transition: left 0.6s ease;
    pointer-events: none;
    z-index: 1;
}

.service-card-detail:hover {
    box-shadow: 0 15px 40px rgba(183, 202, 100, 0.2), inset 0 0 20px rgba(183, 202, 100, 0.08);
    transform: translateY(-8px);
}

.service-card-detail:hover::before {
    left: 100%;
}

.service-card-detail:nth-child(1) {
    animation-delay: 0.2s;
}

.service-card-detail:nth-child(2) {
    animation-delay: 0.35s;
}

.service-card-detail:nth-child(3) {
    animation-delay: 0.5s;
}

.service-card-detail:nth-child(4) {
    animation-delay: 0.65s;
}

.service-card-hero {
    width: calc(100% + 80px);
    margin: -40px -40px 25px;
    height: 220px;
    overflow: hidden;
}

.service-card-hero img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    display: block;
    max-width: none !important;
}

.service-card-header {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--accent-secondary);
}

.service-card-detail h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 22px;
    font-weight: 900;
    color: #1a1a1a;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-card-description {
    font-size: 15px;
    color: #333333;
    line-height: 1.7;
    margin: 0 0 20px 0;
    flex-grow: 1;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.service-features li {
    font-size: 14px;
    color: #555555;
    padding: 8px 0 8px 25px;
    position: relative;
    line-height: 1.6;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-secondary);
    font-weight: bold;
}

.service-card-link {
    color: var(--accent-secondary);
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    align-self: flex-end;
    margin-top: auto;
}

.service-card-link:visited {
    color: var(--accent-secondary);
}

.service-card-link:hover {
    color: #1a1a1a;
}

/* Service Process Section */
.service-process {
    background-color: var(--slate);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23333333' fill-opacity='0.2'%3E%3Cpath d='M0 38.59l2.83-2.83 1.41 1.41L1.41 40H0v-1.41zM0 1.4l2.83 2.83 1.41-1.41L1.41 0H0v1.41zM38.59 40l-2.83-2.83 1.41-1.41L40 38.59V40h-1.41zM40 1.41l-2.83 2.83-1.41-1.41L38.59 0H40v1.41zM20 18.6l2.83-2.83 1.41 1.41L21.41 20l2.83 2.83-1.41 1.41L20 21.41l-2.83 2.83-1.41-1.41L18.59 20l-2.83-2.83 1.41-1.41L20 18.59z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    padding: 80px 0;
    color: #ffffff;
}

.service-process-container {
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
    max-width: 1600px;
}

.service-process-title {
    font-family: 'Oswald', sans-serif;
    font-size: 48px;
    font-weight: 900;
    color: #ffffff;
    margin: 0 0 60px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.service-process .process-step {
    background-color: var(--slate);
    padding: 40px 30px;
    background-image:
        linear-gradient(to right, var(--accent-secondary) 0%, var(--accent-secondary) 4px, #232933 4px),
        linear-gradient(to bottom, var(--accent-secondary) 0%, var(--accent-secondary) 4px, #232933 4px),
        linear-gradient(to right, var(--accent-secondary) 0%, transparent 1px, transparent 100%),
        linear-gradient(to bottom, var(--accent-secondary) 0%, transparent 1px, transparent 100%),
        linear-gradient(150deg, rgba(27, 31, 36, 0.9) 0%, rgba(27, 31, 36, 0.45) 60%, rgba(27, 31, 36, 0.1) 100%),
        var(--rivet-pattern-dark);
    background-size: 100% 100%, 100% 100%, 100% 2px, 2px 100%, 100% 100%, auto;
    background-position: top left, top left, bottom right, bottom right, center, left top;
    background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, repeat;
    position: relative;
    transition: all 0.3s ease;
    transform: skewX(-2deg);
    color: #f3f6fb;
    border: 1px solid rgba(255,255,255,0.06);
}

.service-process .process-step .step-number {
    font-family: 'Oswald', sans-serif;
    font-size: 56px;
    font-weight: 900;
    color: var(--accent-secondary);
    margin-bottom: 10px;
    line-height: 1;
}

.service-process .process-step h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    font-weight: 900;
    color: #f4f7fc;
    margin: 0 0 12px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-process .process-step p {
    font-size: 15px;
    color: #c7cfda;
    line-height: 1.7;
    margin: 0;
}

/* Why Choose Us Section */
.why-choose-us {
    background-color: #ffffff;
    background-image: url("data:image/svg+xml,%3Csvg width='42' height='44' viewBox='0 0 42 44' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='Page-1' fill='none' fill-rule='evenodd'%3E%3Cg id='brick-wall' fill='%23e1e1e1' fill-opacity='0.4'%3E%3Cpath d='M0 0h42v44H0V0zm1 1h40v20H1V1zM0 23h20v20H0V23zm22 0h20v20H22V23z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    padding: 80px 0;
}

.why-choose-container {
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
    max-width: 1600px;
}

.why-choose-title {
    font-family: 'Oswald', sans-serif;
    font-size: 48px;
    font-weight: 900;
    color: #1a1a1a;
    margin: 0 0 60px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.why-choose-item {
    background-color: #f5f5f5;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23333333' fill-opacity='0.1'%3E%3Cpath d='M0 38.59l2.83-2.83 1.41 1.41L1.41 40H0v-1.41zM0 1.4l2.83 2.83 1.41-1.41L1.41 0H0v1.41zM38.59 40l-2.83-2.83 1.41-1.41L40 38.59V40h-1.41zM40 1.41l-2.83 2.83-1.41-1.41L38.59 0H40v1.41zM20 18.6l2.83-2.83 1.41 1.41L21.41 20l2.83 2.83-1.41 1.41L20 21.41l-2.83 2.83-1.41-1.41L18.59 20l-2.83-2.83 1.41-1.41L20 18.59z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.why-choose-item h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    font-weight: 900;
    color: #1a1a1a;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--accent-secondary);
}

.why-choose-item p {
    font-size: 14px;
    color: #555555;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .services-detail-title {
        font-size: 36px;
    }

    .services-detail-intro {
        font-size: 16px;
    }

    .service-process-title {
        font-size: 36px;
    }

    .why-choose-title {
        font-size: 36px;
    }

    .services-grid-detail {
        gap: 25px;
    }

    .service-card-detail {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .services-detail {
        padding: 40px 0;
        background-image: none !important;
        background-color: #ffffff !important;
    }

    .services-detail-container {
        padding: 0 15px;
    }

    .services-detail-title {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .services-detail-intro {
        font-size: 14px;
        margin-bottom: 40px;
    }

    .services-grid-detail {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }

    .service-card-detail {
        padding: 20px;
    }

    .service-card-detail h3 {
        font-size: 18px;
    }

    .service-card-description {
        font-size: 14px;
    }

    .service-process {
        padding: 40px 0;
    }

    .service-process-container {
        padding: 0 15px;
    }

    .service-process-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .service-process .process-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-process .process-step .step-number {
        font-size: 42px;
    }

    .service-process .process-step h3 {
        font-size: 16px;
    }

    .service-process .process-step p {
        font-size: 14px;
    }

    .why-choose-us {
        padding: 40px 0;
    }

    .why-choose-container {
        padding: 0 15px;
    }

    .why-choose-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .why-choose-item {
        padding: 20px;
    }

    .why-choose-item h3 {
        font-size: 16px;
    }

    .why-choose-item p {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .faq-hero-title {
        font-size: 36px;
    }

    .faq-hero-subtitle {
        font-size: 16px;
    }

    .faq-category-title {
        font-size: 24px;
    }

    .faq-contact-title {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .faq-hero {
        padding: 60px 0;
    }

    .faq-hero-title {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .faq-hero-subtitle {
        font-size: 14px;
    }

    .faq-main-section {
        padding: 40px 0;
    }

    .faq-main-container {
        padding: 0 15px;
    }

    .faq-category {
        margin-bottom: 40px;
    }

    .faq-category-title {
        font-size: 20px;
    }

    .faq-contact-section {
        padding: 40px 0;
    }

    .faq-contact-container {
        padding: 0 15px;
    }

    .faq-contact-title {
        font-size: 24px;
    }

    .faq-contact-text {
        font-size: 14px;
    }

    .projects-section {
        padding: 40px 0;
    }

    .projects-container {
        padding: 0 15px;
    }

    .projects-section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .project-title {
        font-size: 16px;
    }

    .project-description {
        font-size: 13px;
    }

    .service-section {
        padding: 40px 0;
    }

    .service-container {
        padding: 0 15px;
    }

    .service-section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .service-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .service-card {
        padding: 25px;
    }

    .service-card-title {
        font-size: 18px;
    }

    .service-card-text {
        font-size: 14px;
    }

    .process-section {
        padding: 40px 0;
    }

    .process-container {
        padding: 0 15px;
    }

    .process-section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .process-step {
        padding: 25px;
    }

    .step-number {
        font-size: 36px;
    }

    .step-title {
        font-size: 16px;
    }

    .step-text {
        font-size: 13px;
    }

    .why-section {
        padding: 40px 0;
    }

    .why-container {
        padding: 0 15px;
    }

    .why-section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .why-card {
        padding: 20px;
    }

    .why-card-title {
        font-size: 16px;
    }

    .why-card-text {
        font-size: 13px;
    }

    .faq-section {
        padding: 40px 0;
    }

    .faq-container {
        padding: 0 15px;
    }

    .faq-section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .faq-item {
        padding: 20px;
    }

    .faq-question {
        font-size: 14px;
    }

    .faq-answer {
        font-size: 13px;
    }

    .projects-cta {
        padding: 40px 0;
    }

    .projects-cta-container {
        padding: 0 15px;
    }

    .projects-cta h2 {
        font-size: 28px;
    }

    .projects-cta p {
        font-size: 14px;
    }

    .quote-section {
        padding: 40px 0;
    }

    .quote-container {
        padding: 0 15px;
    }

    .quote-form-wrapper {
        padding: 25px;
    }

    .quote-contact-wrapper {
        padding: 25px;
    }

    .form-group label {
        font-size: 14px;
    }

    .form-helper {
        font-size: 12px;
    }

    .quote-contact-block h2 {
        font-size: 18px;
    }

    .our-story {
        padding: 40px 0;
    }

    .our-story-container {
        padding: 0 15px;
    }

    .our-story-content {
        gap: 20px;
    }

    .our-story-title {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .our-story-text {
        gap: 15px;
    }

    .our-story-text p {
        font-size: 13px;
        line-height: 1.6;
    }

    .our-story-image {
        min-height: 300px;
    }

    .services {
        min-height: calc(100vh - 300px);
        padding: 50px 0;
    }

    .services-container {
        padding: 0 15px;
    }

    .section-label {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .section-intro {
        font-size: 20px;
        margin-bottom: 35px;
    }

    .section-subtitle {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-bottom: 35px;
    }

    .service-card {
        padding: 24px;
    }

    .service-card h3 {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .service-card p {
        font-size: 14px;
    }

    .services-link {
        font-size: 16px;
    }

    .about-link {
        font-size: 16px;
    }

    .testimonials-link {
        font-size: 16px;
    }

    .how-we-work-container {
        padding: 0 15px;
    }

    .how-we-work-content {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .work-step {
        padding: 25px 20px;
    }

    .step-number {
        font-size: 24px;
    }

    .work-step p {
        font-size: 14px;
    }

    .final-cta {
        height: 380px;
    }

    .final-cta-content {
        padding: 0 40px 0 0;
    }

    .final-cta-title {
        font-size: 40px;
        margin-bottom: 12px;
        letter-spacing: 1.5px;
        max-width: 100%;
    }

    .final-cta-subtitle {
        font-size: 16px;
        margin-bottom: 20px;
    }
}

/* ===== Footer ===== */
.footer {
    background-color: #1b1f24;
    color: #ffffff;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 0;
}

.footer-container {
    padding: 80px 40px 40px;
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: 40px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-logo .logo-icon {
    width: 60px;
    height: 60px;
}

.footer-brand-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.footer-title {
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    font-weight: 900;
    margin: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-title .gold {
    color: var(--accent-secondary);
}

.footer-subtitle {
    font-size: 14px;
    color: #CCCCCC;
    margin: 0;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-subtitle .gold {
    color: var(--accent-secondary);
}

.footer-description {
    font-size: 14px;
    line-height: 1.6;
    color: #CCCCCC;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 16px;
    align-items: center;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(183, 202, 100, 0.1);
    color: var(--accent-secondary);
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social a:hover {
    background-color: var(--accent-secondary);
    color: #1b1f24;
    transform: translateY(-2px);
}

.footer-social svg {
    width: 20px;
    height: 20px;
}

.footer-section-title {
    font-family: 'Oswald', sans-serif;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid var(--accent-secondary);
    padding-bottom: 8px;
    margin-bottom: 10px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: #CCCCCC;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-secondary);
}

.footer-contact {
    font-size: 14px;
    color: #CCCCCC;
    line-height: 1.6;
}

.footer-contact a {
    color: #8b9467;
    text-decoration: none;
}

.footer-afcom {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    padding-bottom: 16px;
}

.footer-afcom img {
    max-height: 60px;
    max-width: 100%;
    width: auto;
    opacity: 0.85;
    filter: brightness(0) invert(1);
    transition: opacity 0.2s ease;
}

.footer-afcom img.loudoun {
    max-height: 40px;
}

.footer-afcom img.bbb {
    max-height: 70px;
}

.footer-afcom img:hover {
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 40px;
    text-align: center;
    color: #666666;
    font-size: 13px;
}

.footer-bottom span {
    color: #8b9467;
}

@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 0 0;
    }

    .footer-container {
        grid-template-columns: 1fr;
        padding: 0 20px 40px;
    }

    .footer-brand {
        flex-direction: column;
    }

    .footer-logo .logo-icon {
        width: 45px;
        height: 45px;
    }

    .footer-section-title {
        font-size: 14px;
    }

    .footer-social {
        flex-wrap: wrap;
        gap: 12px;
    }

    .footer-afcom {
        flex-wrap: wrap;
        gap: 20px;
        padding-bottom: 20px;
    }

    .footer-afcom img {
        max-height: 40px;
    }

    .footer-afcom img.bbb {
        max-height: 50px;
    }
}

/* ── Active nav link ── */
.header-nav a.nav-active {
    color: var(--accent-secondary) !important;
}

.cta-button.nav-active,
.nav-list .cta-button.nav-active {
    color: #1a1a1a !important;
}

/* ── Back to top button ── */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 44px;
    height: 44px;
    background-color: var(--accent-secondary);
    color: #1a1a1a;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.3s ease, transform 0.3s ease, background-color 0.2s ease;
    pointer-events: none;
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.back-to-top:hover {
    background-color: var(--accent-highlight);
}

.back-to-top svg {
    width: 20px;
    height: 20px;
    stroke: #1a1a1a;
    stroke-width: 2.5;
    fill: none;
}

