:root {
    --primary: #1B4D3E; 
    --primary-hover: #143b2f;
    --dark: #222222; 
    --dark-grey: #444444;
    --silver: #E8EAED;
    --light: #F8F9FA;
    --white: #FFFFFF;
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark-grey);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

img, video {
    max-width: 100%;
    display: block;
    
    user-select: none;
    -webkit-user-select: none;
    -webkit-user-drag: none;
    -webkit-touch-callout: none; 
}

h1, h2, h3, .section-title, .card-title {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
}

.section-title {
    font-size: 3rem; 
    line-height: 1.1;
    text-align: center;
}

.accent-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.bg-light { background-color: var(--light); }

/* ALL DARK BACKGROUNDS ARE NOW GREEN */
.bg-dark { background-color: var(--primary) !important; color: var(--white); }
.bg-primary { background-color: var(--primary); }
.bg-placeholder { background-color: var(--silver); display: flex; align-items: center; justify-content: center; }

.text-primary { color: var(--primary) !important; }
.text-white { color: var(--white) !important; }
.text-silver { color: #A0A0A0 !important; }
.text-left { text-align: left !important; }
.text-center { text-align: center !important; }

.section-padding { padding: 100px 5%; }

.container {
    max-width: 1200px;
    margin: 0 auto;    
    padding: 0 20px;   
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    width: 100%;
}

.split-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center; 
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    transition: var(--transition);
    border: 2px solid transparent;
    display: inline-block;
    cursor: pointer;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    background-color: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(27, 77, 62, 0.15);
}

/* Fix primary buttons inside green backgrounds to become white automatically */
.bg-dark .btn-primary {
    background-color: var(--white) !important;
    color: var(--primary) !important;
}
.bg-dark .btn-primary:hover {
    background-color: transparent !important;
    color: var(--white) !important;
    border: 2px solid var(--white) !important;
}

.btn-outline-white {
    display: inline-block;
    padding: 15px 35px;
    border: 1px solid rgba(255,255,255,0.6);
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.btn-outline-white:hover {
    background: white;
    color: var(--primary) !important;
}

.btn-solid-dark {
    background: var(--primary) !important;
    color: white;
    padding: 16px;
    border: none;
    border-radius: 4px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-solid-dark:hover { background: var(--primary-hover) !important; }
.btn-full { width: 100%; }

.text-link {
    color: var(--primary);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
    margin-top: 10px;
}

.text-link:hover { color: var(--primary-hover) !important; }

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent; 
    box-shadow: none; 
    z-index: 1000;
    transition: background-color 0.4s ease, box-shadow 0.4s ease;
}

.navbar.always-dark {
    background: var(--primary) !important;
    box-shadow: 0 2px 15px rgba(0,0,0,0.5) !important;
}

.navbar.scrolled {
    background: var(--primary) !important; 
    box-shadow: 0 2px 15px rgba(0,0,0,0.5);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo-wrapper { display: flex; align-items: center; gap: 12px; }

.brand-logo { 
    height: 55px; 
    width: auto; 
    filter: brightness(0) invert(1); 
    transition: filter 0.4s ease; 
}

.navbar.scrolled .brand-logo {
    filter: brightness(0) invert(1) !important; 
    opacity: 1 !important;
}

.brand-text { display: flex; flex-direction: column; justify-content: center; }

.brand-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--white); 
    line-height: 1;
    letter-spacing: -0.5px;
}

.brand-subtitle {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7); 
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-links { display: flex; gap: 35px; }

.nav-links a {
    text-decoration: none;
    color: var(--white); 
    font-weight: 600;
    font-size: 0.95rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.4); 
    transition: var(--transition);
}

.nav-links a:hover { color: #ddd; }

.btn-header {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: var(--transition);
}

.btn-header:hover {
    background-color: var(--white);
    color: var(--primary) !important;
    box-shadow: 0 4px 15px rgba(255,255,255,0.2);
}

.menu-toggle {
    display: none; 
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    border-radius: 3px;
    transition: var(--transition);
}

.menu-toggle.is-active .bar:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.menu-toggle.is-active .bar:nth-child(2) { opacity: 0; }
.menu-toggle.is-active .bar:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

@media (max-width: 1024px) {
    .section-title { font-size: 2.5rem !important; }
}

@media (max-width: 900px) {
    .desktop-cta { display: none; }
    .menu-toggle { display: flex; }
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--primary) !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 30px 20px;
        gap: 25px;
        box-shadow: 0 10px 15px rgba(0,0,0,0.5);
        
        transform: translateY(-150%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.4s ease, opacity 0.4s ease;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .mobile-cta { display: block !important; width: 100%; max-width: 300px; margin-top: 10px; }

    .contact-split-container, .split-container { grid-template-columns: 1fr; gap: 40px; }
    .footer-grid-modern { grid-template-columns: 1fr; text-align: center; }
    .footer-brand-col img { margin: 0 auto 20px auto; }
    .footer-contact-col p, .social-icons { justify-content: center; }
    .hero-center-logo { max-width: 250px; }
}

@media (max-width: 768px) {
    .btn-primary { padding: 10px 20px; }
    .stat-item { 
        min-width: 50%; 
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.2) !important;
    }
    .stat-item:last-child { border-bottom: none !important; }
    .section-padding { padding: 60px 5%; }
    .testimonial-card { width: 280px; height: 380px; }
    .carousel-track { animation-duration: 25s; }
}

.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    margin-top: 0; 
}

.hero-video-wrapper {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1;
    overflow: hidden;
    background-color: var(--primary) !important;
}

.hero-video { width: 100%; height: 100%; object-fit: cover; }

.hero-overlay-dark {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(27, 77, 62, 0.7) !important; 
}

.hero-content { max-width: 900px; z-index: 1; }

.hero-center-logo {
    max-width: 400px;
    margin: 0 auto 40px auto;
}

.hero-quote {
    color: var(--white);
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: -10px;
    margin-bottom: 35px;
    font-weight: 400;
    opacity: 0.9;
}

.trust-stats {
    background-color: var(--primary) !important; 
    width: 100%;
}

.stats-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}

.stat-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 60px 20px;
    border-right: 1px solid rgba(255,255,255,0.2); 
}

.stat-item:last-child { border-right: none; }

.stat-number {
    font-size: 3.5rem;
    color: var(--white) !important;
    margin-bottom: 5px;
    font-weight: 800;
    line-height: 1;
}

.stat-item p {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.8) !important; 
}

.service-card {
    background: var(--white);
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.04), 0 10px 15px rgba(0,0,0,0.02);
    transition: var(--transition);
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(27, 77, 62, 0.1);
}

.card-image { height: 240px; overflow: hidden; }

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .card-image img { transform: scale(1.03); }
.card-content { padding: 30px 25px; }

.rounded-media {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.5); 
    object-fit: cover;
}

.project-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: var(--silver);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.5s ease;
}

.project-card img { 
    height: 380px; 
    width: 100%; 
    object-fit: cover; 
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1); 
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.project-card:hover img { transform: scale(1.08); }

.project-footer {
    position: absolute;
    bottom: 0; left: 0; width: 100%;
    background: rgba(255, 255, 255, 0.98);
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 3px solid var(--primary);
    transition: padding-bottom 0.4s ease;
}

.project-card:hover .project-footer { padding-bottom: 22px; }
.project-footer .location { font-size: 0.9rem; font-weight: 600; color: var(--dark); }

.carousel-container {
    overflow: hidden;
    width: 100%;
    padding: 20px 0;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.carousel-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scroll-left 35s linear infinite;
}

.carousel-track:hover { animation-play-state: paused; }

.testimonial-card {
    width: 300px; 
    height: 420px; 
    background: var(--white);
    border: 1px solid #E8EAED;
    padding: 40px 30px; 
    border-radius: 12px;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.4s ease;
    cursor: default;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-12px) scale(1.03); 
    box-shadow: 0 25px 50px rgba(0,0,0,0.15); 
    border-color: var(--primary); 
    z-index: 10; 
}

.stars { color: #F5A623; font-size: 1.2rem; margin-bottom: 20px; letter-spacing: 2px; }

.quote-text { 
    font-size: 0.95rem; 
    font-style: italic; 
    margin-bottom: 25px; 
    color: #555; 
    line-height: 1.6; 
    flex-grow: 1; 
    overflow: hidden; 
    -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
}

.testimonial-card:hover .quote-text {
    overflow-y: auto; 
    -webkit-mask-image: none; 
    mask-image: none;
    padding-right: 5px; 
}

.quote-text::-webkit-scrollbar { width: 4px; }
.quote-text::-webkit-scrollbar-track { background: transparent; }
.quote-text::-webkit-scrollbar-thumb { background-color: var(--primary); border-radius: 4px; }

.client-name { font-weight: 700; color: var(--dark); font-size: 1rem; border-top: 1px solid #eee; padding-top: 15px;}
.review-meta { font-size: 0.8rem; color: #888; margin-top: 5px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }

@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 15px)); } 
}

.contact-split-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
    padding: 0 20px; 
}

.contact-form-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.modern-form .input-group { margin-bottom: 20px; text-align: left; }
.modern-form label { display: block; font-size: 0.85rem; font-weight: 700; margin-bottom: 8px; color: var(--dark); }

.modern-form input, .modern-form select, .modern-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
}

.modern-form input:focus, .modern-form select:focus, .modern-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(27, 77, 62, 0.1);
}

.site-footer { padding: 80px 5% 30px; }
.border-top-dark { border-top: 1px solid rgba(255,255,255,0.1) !important; }

.footer-grid-modern {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    max-width: 1200px; 
    margin: 0 auto 60px auto;
    padding: 0 20px; 
}

.footer-logo { color: var(--white); margin-bottom: 20px; font-size: 1.5rem; }
.footer-col h4 { color: var(--white); margin-bottom: 20px; font-size: 1.1rem; text-transform: uppercase; letter-spacing: 1px;}
.footer-col p { font-size: 0.95rem; margin-bottom: 12px; }

.footer-links-col a { display: block; color: rgba(255,255,255,0.8) !important; text-decoration: none; margin-bottom: 12px; font-size: 0.95rem; transition: color 0.3s; }
.footer-links-col a:hover { color: var(--white) !important; }

.footer-contact-col p { color: rgba(255,255,255,0.8) !important; margin-bottom: 10px; font-size: 0.95rem; }

.footer-bottom-modern {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1) !important;
    padding-top: 30px;
    color: rgba(255,255,255,0.7) !important;
    font-size: 0.85rem;
}

.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: opacity, transform;
}

.fade-in.appear { opacity: 1; transform: translateY(0); }

/* Ensure all SVGs in contact/footer areas are white on the new green backgrounds */
.footer-contact-col svg,
.contact-phone-display svg,
.footer-fb-link svg {
    stroke: var(--white) !important;
}

@media (max-width: 1024px) {
    .section-title { font-size: 2.5rem !important; }
    .contact-split-container { gap: 40px; }
}

.about-hero {
    padding: 220px 5% 120px; 
    background: var(--primary) !important;
    border-bottom: none !important;
}

.about-hero-title {
    font-size: 4.5rem; 
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.about-hero-text {
    max-width: 750px;
    margin: 0 auto;
    font-size: 1.15rem;
    line-height: 1.8;
}

.company-split-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr; 
    gap: 80px;
    align-items: center;
}

.company-text-left p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

.company-floating-card {
    padding: 60px 50px;
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    transform: translateY(-40px); 
}

.mv-modern-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mv-card-clean {
    background: var(--white);
    padding: 60px 50px;
    border-radius: 12px;
    border-top: 4px solid var(--primary);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease;
}

.mv-card-clean:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.mv-number {
    font-family: 'Oswald', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 20px;
    opacity: 0.2; 
}

@media (max-width: 1024px) {
    .about-hero-title { font-size: 3.5rem; }
    .company-split-grid { gap: 40px; }
}

@media (max-width: 900px) {
    .about-hero { padding: 160px 5% 80px; }
    .about-hero-title { font-size: 2.8rem; }
    
    .company-split-grid, .mv-modern-grid { 
        grid-template-columns: 1fr; 
    }
    
    .company-floating-card { transform: translateY(0); padding: 40px 30px; }
    .mv-card-clean { padding: 40px 30px; }
}

.services-hero {
    padding: 200px 5% 100px;
    border-bottom: 1px solid #E8EAED;
}

.services-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.services-hero-title {
    font-size: 4.5rem;
    line-height: 1.05;
    margin-bottom: 20px;
    color: var(--dark);
    text-align: left;
}

.services-hero-subtitle {
    font-size: 1.4rem;
    font-weight: 400;
}

.editorial-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.editorial-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    align-items: center;
}

.editorial-img-box {
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1;
}

.editorial-img-box img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.editorial-img-box:hover img {
    transform: scale(1.05); 
}

.editorial-text-box {
    padding: 60px 50px;
    border-radius: 4px;
    position: relative;
    z-index: 2; 
}

.service-number {
    font-family: 'Oswald', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 15px;
}

.overlap-right .editorial-img-box { grid-column: 1 / 9; grid-row: 1; }
.overlap-right .editorial-text-box { grid-column: 7 / 13; grid-row: 1; }

.overlap-left .editorial-img-box { grid-column: 5 / 13; grid-row: 1; }
.overlap-left .editorial-text-box { 
    grid-column: 1 / 8; 
    grid-row: 1; 
    background-color: var(--white) !important; 
    z-index: 10; 
    box-shadow: 0 20px 50px rgba(0,0,0,0.15); 
}

.parallax-service-section {
    position: relative;
    height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.parallax-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    z-index: 0;
    object-fit: cover;
}

.parallax-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.parallax-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(27, 77, 62, 0.6) !important;
    z-index: 1;
}

.parallax-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
}

.parallax-text-box {
    padding: 60px;
    max-width: 800px;
    border-radius: 4px;
    background: var(--primary) !important; 
    color: var(--white) !important;
    backdrop-filter: blur(10px); 
}

.editorial-zoom { overflow: hidden; }
.editorial-zoom img { transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1); }
.editorial-zoom:hover img { transform: scale(1.05); }

.cta-banner { padding: 100px 5%; }
.cta-banner .btn-solid-dark:hover { 
    background: var(--primary-hover) !important; 
    color: var(--white) !important; 
}

@media (max-width: 1024px) {
    .services-hero-title { font-size: 3.5rem; }
    .overlap-right .editorial-text-box { grid-column: 6 / 13; }
    .overlap-left .editorial-text-box { grid-column: 1 / 8; }
}

@media (max-width: 900px) {
    .services-hero { padding: 150px 5% 80px; }
    .services-hero-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .services-hero-title { text-align: center; }
    .editorial-img { height: 400px; }
    
    .editorial-grid { display: flex; flex-direction: column; gap: 0; }
    .overlap-left { flex-direction: column-reverse; } 
    
    .editorial-img-box img { height: 350px; border-radius: 4px 4px 0 0; }
    .editorial-text-box { 
        padding: 40px 30px; 
        border-radius: 0 0 4px 4px; 
        margin-top: -20px; 
    }
    
    .parallax-service-section { height: auto; padding: 100px 5%; }
    .parallax-bg { background-attachment: scroll; } 
    .parallax-text-box { padding: 40px 30px; }
}

.btn-white-cta {
    display: inline-block;
    background: var(--white);
    color: var(--dark);
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    text-decoration: none;
    transition: var(--transition);
    line-height: 1.4;
    white-space: nowrap; 
}

.btn-white-cta:hover {
    background: #f0f0f0;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .btn-white-cta {
        padding: 15px 20px;
        font-size: 0.95rem;
        white-space: normal; 
        width: 100%;
        max-width: 320px;
    }
}

.team-hero {
    padding: 200px 5% 100px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.team-hero-title {
    font-size: 4rem;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.team-hero-subtitle {
    font-size: 1.25rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.team-intro {
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.team-intro p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    font-style: italic;
    border-left: 4px solid var(--primary);
    padding-left: 20px;
    text-align: left;
}

.team-tier {
    margin-bottom: 50px;
}

.tier-1 {
    display: flex;
    justify-content: center;
}

.tier-2, .tier-4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.tier-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto 50px auto;
}

.team-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    
    border-top: 5px solid var(--primary); 
    border-left: 1px solid #E8EAED;
    border-right: 1px solid #E8EAED;
    border-bottom: 1px solid #E8EAED;
    
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease;
    cursor: default;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(27, 77, 62, 0.15); 
}

.team-info {
    padding: 50px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 180px; 
}

.team-name {
    font-family: 'Oswald', sans-serif;
    font-size: 1.6rem;
    color: var(--dark);
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.team-title {
    display: block;
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.leader-card {
    width: 100%;
    max-width: 500px;
    border-top-width: 8px; 
}

.leader-card .team-info {
    padding: 70px 40px;
    min-height: 220px;
}

.leader-card .team-name {
    font-size: 2.2rem;
}

.leader-card .team-title {
    font-size: 1.1rem;
}

@media (max-width: 900px) {
    .tier-3 { grid-template-columns: repeat(2, 1fr); }
    .team-hero-title { font-size: 3.2rem; }
}

@media (max-width: 768px) {
    .tier-2, .tier-3, .tier-4 {
        grid-template-columns: 1fr;
        max-width: 400px; 
    }
    
    .team-hero { padding: 150px 5% 80px; }
    .team-intro p { font-size: 1.1rem; border-left: none; padding-left: 0; text-align: center; }
    .team-img-wrapper { height: 350px; }
}

/* ============================================== */
/* --- MOBILE, FOOTER, & AESTHETIC FIXES          */
/* ============================================== */

@media screen and (max-width: 768px) {
    .services-hero {
        padding: 120px 20px 50px !important; 
        text-align: center !important;
    }
    
    .services-hero-grid {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .services-hero-text {
        width: 100% !important;
        text-align: center !important;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .services-hero-title {
        font-size: clamp(1.8rem, 9vw, 2.8rem) !important;
        line-height: 1.1 !important;
        letter-spacing: normal !important;
        text-align: center !important;
        width: 100% !important;
        margin-bottom: 20px !important;
        word-break: break-word !important; 
        overflow-wrap: break-word !important;
    }

    .services-hero-subtitle, .accent-subtitle {
        text-align: center !important;
        width: 100% !important;
        padding: 0 10px !important;
    }

    .footer-contact-col p, .footer-contact-col p span, .social-icons {
        justify-content: center !important;
        text-align: center !important;
        align-items: center !important;
    }

    .contact-text-area h2 {
        font-size: clamp(2rem, 8vw, 3rem) !important;
        word-wrap: break-word !important;
        line-height: 1.2 !important;
    }

    .contact-split-container {
        padding: 0 !important;
        gap: 30px !important;
    }

    .contact-form-card {
        padding: 25px 20px !important;
    }
    
    .contact-text-area p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }

    .g-recaptcha {
        transform: scale(0.9);
        transform-origin: center center;
    }
}

@media screen and (max-width: 900px) {
    .footer-grid-modern {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        padding: 0 !important;
    }
    
    .footer-brand-col,
    .footer-links-col,
    .footer-contact-col {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        width: 100% !important;
        margin-bottom: 35px !important;
    }
    
    .footer-links-col h5,
    .footer-links-col a {
        text-align: center !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
    }

    .footer-fb-link {
        justify-content: center !important;
    }
}

@media screen and (max-width: 380px) {
    .g-recaptcha {
        transform: scale(0.75);
    }
    .contact-form-card {
        padding: 20px 15px !important;
    }
}

.footer-fb-link:hover {
    color: var(--white) !important;
}


.bg-dark .text-primary {
    color: var(--white) !important;
}

.bg-dark .accent-subtitle,
.bg-dark .text-silver,
.bg-dark p[style*="#888"] {
    color: rgba(255, 255, 255, 0.95) !important;
}

.site-footer p,
.site-footer span,
.site-footer a,
.footer-fb-link {
    color: rgba(255, 255, 255, 0.9) !important;
}

.site-footer h4,
.site-footer h5 {
    color: var(--white) !important;
}

.site-footer a:hover {
    color: var(--white) !important;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.site-footer svg {
    stroke: var(--white) !important;
}

@media screen and (max-width: 900px) {
    .hero-center-logo {
        max-width: 80% !important;
        width: 280px !important;
        margin: 0 auto 30px auto !important;
    }

    .stat-number {
        font-size: 2.5rem !important;
    }
    .stat-item {
        padding: 40px 15px !important;
    }

    .editorial-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 0 !important;
    }
    .overlap-left {
        flex-direction: column-reverse !important;
    }
    .editorial-img-box {
        width: 100% !important;
        margin: 0 !important;
        grid-column: unset !important; 
    }
    .editorial-img-box img {
        height: 350px !important;
        border-radius: 8px 8px 0 0 !important;
        width: 100% !important;
        object-fit: cover !important;
    }
    .editorial-text-box {
        width: 100% !important;
        margin-top: -30px !important;
        border-radius: 0 0 8px 8px !important;
        padding: 40px 25px !important;
        grid-column: unset !important;
    }

    .contact-split-container, 
    .split-container, 
    .company-split-grid, 
    .mv-modern-grid,
    .services-hero-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 40px !important;
        width: 100% !important;
    }
    .contact-form-card {
        width: 100% !important;
    }
    
    .tier-2, .tier-3, .tier-4 {
        display: flex !important;
        flex-direction: column !important;
        gap: 30px !important;
    }
}

@media screen and (max-width: 768px) {
    .stats-container {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        width: 100% !important;
        gap: 0 !important;
    }

    .stat-item {
        min-width: 0 !important; 
        padding: 40px 10px !important;
        border-right: none !important;
        border-bottom: none !important; 
    }

    .stat-item:nth-child(1),
    .stat-item:nth-child(2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
    }

    .stat-number {
        font-size: 2.4rem !important;
        margin-bottom: 5px !important;
    }

    .stat-item p {
        font-size: 0.75rem !important;
        line-height: 1.4 !important;
        padding: 0 5px !important;
    }
}

.title-wrapper {
    margin-bottom: 20px !important;
}

.section-subtitle {
    margin-top: 15px !important;
}

.nav-links a,
.btn-header {
    white-space: nowrap !important;
}

@media screen and (max-width: 1200px) {
    .nav-links {
        gap: 15px !important; 
    }
    .nav-container {
        padding: 15px 2% !important; 
    }
    .btn-header {
        padding: 10px 18px !important; 
        font-size: 0.8rem !important;
    }
}