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

:root {
    --orbit-navy: #071739;
    --orbit-muted-blue: #4B6382;
    --orbit-light-blue: #A4B5C4;
    --orbit-vlight-grey: #CDD5DB;
    --orbit-brown: #A68868;
    --orbit-tan: #E3C39D;
    --orbit-white: #ffffff;
    --orbit-glass: rgba(255, 255, 255, 0.05);
    --orbit-glass-border: rgba(255, 255, 255, 0.1);
}

body {
    font-family: 'Nunito Sans', sans-serif;
    color: var(--orbit-navy);
    line-height: 1.6;
    background-color: var(--orbit-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Barlow Condensed', sans-serif;
    text-transform: uppercase;
}

a {
    text-decoration: none;
    transition: 0.3s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.col-half {
    flex: 1;
    min-width: 300px;
}

.text-center { text-align: center; }
.text-white { color: var(--orbit-white); }
.flex-center { display: flex; align-items: center; justify-content: center; }

/* Navbar Styling for Standalone Orbit */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.4s;
    background: rgba(7, 23, 57, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.logo img {
    height: 45px;
    display: block;
}

.nav-list {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-list li a {
    color: var(--orbit-white);
    font-family: 'Barlow Condensed', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    position: relative;
    font-size: 1.1rem;
}

.nav-list li a:hover {
    color: var(--orbit-tan);
}

.nav-list li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--orbit-tan);
    transition: 0.3s;
}

.nav-list li a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.menu-toggle .bar {
    width: 30px;
    height: 3px;
    background: var(--orbit-white);
    transition: 0.3s;
}

@media (max-width: 768px) {
    .menu-toggle { display: flex; }
    .nav-list {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--orbit-navy);
        flex-direction: column;
        padding: 40px 0;
        gap: 20px;
        transform: translateY(-150%);
        transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    }
    .nav-list.active {
        transform: translateY(0);
    }
}

/* Base Styles Override for Orbit Page */
#orbit-hero {
    background-image: linear-gradient(rgba(7, 23, 57, 0.75), rgba(7, 23, 57, 0.75)), url('imagens/orbit-fundo.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
    min-height: 95vh !important;
}

#orbit-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(75, 99, 130, 0.2) 0%, transparent 70%),
                radial-gradient(circle at 80% 70%, rgba(166, 136, 104, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.hero-main-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 6.5rem;
    letter-spacing: -2px;
    line-height: 0.85;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.title-accent {
    font-weight: 700;
    letter-spacing: 6px;
    font-size: 0.18em;
    display: block;
    color: var(--orbit-tan);
    margin-bottom: 0.5em;
    opacity: 0.9;
}


.hero-main-title span {
    color: var(--orbit-tan) !important;
}

.text-orbit-tan {
    color: var(--orbit-tan);
}

.bg-orbit-navy {
    background-color: var(--orbit-navy);
}

.orbit-section {
    padding: 100px 0;
}

/* Custom Cards */
.orbit-step-card {
    background: var(--orbit-white);
    border: 1px solid var(--orbit-vlight-grey);
    border-radius: 12px;
    padding: 40px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.orbit-step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(7, 23, 57, 0.1);
    border-color: var(--orbit-muted-blue);
}

.orbit-step-card .step-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 4rem;
    color: var(--orbit-vlight-grey);
    line-height: 1;
    margin-bottom: 20px;
    font-weight: 700;
    transition: 0.3s;
}

.orbit-step-card:hover .step-num {
    color: var(--orbit-brown);
    opacity: 0.2;
    transform: scale(1.1);
}

.orbit-step-card h4 {
    color: var(--orbit-navy);
    font-size: 1.5rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.orbit-step-card p {
    color: var(--orbit-muted-blue);
    font-size: 1rem;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* System Cards */
.system-card {
    background: var(--orbit-white);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid var(--orbit-vlight-grey);
}

.system-card.dark-card {
    background: var(--orbit-navy);
    color: var(--orbit-white);
    border: none;
}

.system-card h4 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.system-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.system-list li i {
    color: var(--orbit-brown);
    font-size: 1.25rem;
    margin-top: 5px;
}

.dark-card .system-list li i {
    color: var(--orbit-tan);
}

.badge-system {
    background: var(--orbit-tan);
    color: var(--orbit-navy);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* Problem/Solution Box */
.orbit-problem-box {
    background: var(--orbit-vlight-grey);
    padding: 40px;
    border-radius: 16px;
    border-left: 6px solid var(--orbit-navy);
}

.orbit-problem-box h3 {
    color: var(--orbit-navy);
    margin-bottom: 20px;
}

.symptoms-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--orbit-navy);
}

.symptoms-list li i {
    color: #e74c3c;
}

/* Gains Box */
.orbit-gains-box {
    background: linear-gradient(to right, var(--orbit-navy), var(--orbit-muted-blue));
    color: var(--orbit-white);
    padding: 60px;
    border-radius: 24px;
    text-align: center;
}

.gains-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.gain-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.gain-item i {
    font-size: 2rem;
    color: var(--orbit-tan);
}

.btn-orbit {
    background: var(--orbit-tan);
    color: var(--orbit-navy);
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.btn-orbit:hover {
    background: var(--orbit-brown);
    color: var(--orbit-white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(166, 136, 104, 0.3);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Target Audience styling */
.target-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.target-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 40px 30px;
    height: 100%;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.target-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(227, 195, 157, 0.3); /* orbit-tan with opacity */
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.target-card .icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(227, 195, 157, 0.2), rgba(227, 195, 157, 0.05));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    border: 1px solid rgba(227, 195, 157, 0.2);
}

.target-card i {
    font-size: 1.5rem;
    color: var(--orbit-tan);
}

.target-card h5 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--orbit-white);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.target-card p {
    color: var(--orbit-light-blue);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Enhancing Tags */
.project-tags {
    display: flex; 
    gap: 24px; 
    justify-content: center; 
    flex-wrap: wrap;
    margin-top: 30px;
}

.project-tags .tag {
    background: rgba(255,255,255,0.03);
    padding: 12px 24px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--orbit-vlight-grey);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    cursor: default;
}

.project-tags .tag:hover {
    background: rgba(227, 195, 157, 0.1);
    border-color: var(--orbit-tan);
    color: var(--orbit-tan);
    transform: translateY(-2px);
}

/* Rituais de Gestão Styling */
.ritual-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
}

.ritual-list::before {
    content: '';
    position: absolute;
    left: 30px; /* center of the 60px icon */
    top: 40px;
    bottom: 40px;
    width: 2px;
    background: rgba(7, 23, 57, 0.1);
    z-index: 1;
}

.ritual-item {
    display: flex;
    gap: 25px;
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(7, 23, 57, 0.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
    align-items: center; /* keep centered vertically for cleaner look */
    position: relative;
    z-index: 2;
}

.ritual-item:hover {
    transform: translateX(10px);
    border-color: rgba(227, 195, 157, 0.5); /* orbit-tan */
    box-shadow: 0 10px 30px rgba(7, 23, 57, 0.08);
}

.ritual-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, var(--orbit-navy), #12284F);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orbit-tan);
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(7, 23, 57, 0.2);
}

.ritual-content h4 {
    font-size: 1.3rem;
    color: var(--orbit-navy);
    margin-bottom: 5px;
    margin-top: 0;
    text-transform: uppercase;
    font-weight: 700;
}

.ritual-content p {
    color: var(--orbit-muted-blue);
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

.ritual-img-box {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(7, 23, 57, 0.15);
    height: 100%;
    min-height: 500px;
}

.ritual-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.ritual-img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(7, 23, 57, 0.95), rgba(7, 23, 57, 0.6), transparent);
    padding: 80px 40px 40px;
    text-align: left;
    color: var(--orbit-white);
}

/* Vertical Timeline for Orbit */
.timeline-wrapper {
    position: relative;
    padding-left: 50px;
    margin-bottom: 20px;
}

.timeline-wrapper::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 5px;
    bottom: -30px;
    width: 2px;
    background: rgba(255,255,255,0.1);
}

.timeline-wrapper:last-child::before {
    bottom: 0px;
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-dot {
    position: absolute;
    left: -37px;
    top: 5px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--orbit-light-blue);
    border: 3px solid var(--orbit-navy);
    box-shadow: 0 0 0 2px rgba(255,255,255,0.2);
    z-index: 2;
}

.timeline-dot.dot-tan {
    background: var(--orbit-tan);
}

.timeline-content-box {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.timeline-content-box.box-tan:hover {
    border-color: rgba(227, 195, 157, 0.4);
    transform: translateX(5px);
}

.timeline-content-box:not(.box-tan):hover {
    border-color: rgba(164, 181, 196, 0.4);
    transform: translateX(5px);
}

.timeline-phase {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--orbit-light-blue);
    font-weight: 700;
    margin-bottom: 10px;
}

.timeline-content-box h4 {
    font-size: 1.4rem;
    color: var(--orbit-white);
    margin-bottom: 15px;
}

.timeline-content-box p {
    color: var(--orbit-vlight-grey);
    font-size: 1rem;
    margin: 0;
}

/* Modifiers for Step Cards */
.dark-card-blue:hover {
    border-color: rgba(164, 181, 196, 0.4) !important;
    transform: translateY(-5px);
}

.animate-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.animate-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
/* Custom Hero Buttons & Stats */
.btn-orbit-outline {
    display: inline-block;
    padding: 10px 20px;
    background: transparent;
    color: var(--orbit-white);
    border: 2px solid var(--orbit-light-blue);
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}
.btn-orbit-outline:hover {
    background: var(--orbit-light-blue);
    color: var(--orbit-navy);
}

.orbit-hero-stats {
    background-color: #172436; /* A slightly lighter shade of --orbit-navy or dark enough to separate */
    padding: 60px 0;
    border-top: 1px solid rgba(255,255,255,0.05); /* clean separation */
}

.hero-stats-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.hero-stat-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.hero-stat-item i {
    font-size: 2.2rem;
    color: var(--orbit-light-blue);
    margin-bottom: 20px;
}

.stat-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 10px;
    color: var(--orbit-white);
}

.stat-text {
    font-size: 1rem;
    color: var(--orbit-vlight-grey);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
}

@media (max-width: 768px) {
    .hero-main-title {
        font-size: 3.5rem !important;
    }
    .orbit-section {
        padding: 60px 0;
    }
    .ritual-img-box {
        min-height: 400px;
        margin-top: 30px;
    }
    .hero-stats-grid {
        flex-direction: column;
        gap: 40px;
    }
}

/* Senior Design Refinement Utilities */
.subtitle {
    display: block;
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    color: var(--orbit-tan);
}

.section-header-lg {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--orbit-navy);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.glass-card-dark {
    background: rgba(7, 23, 57, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    padding: 3.5rem;
    border-radius: 32px;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
}

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

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

.problem-card {
    padding: 2.5rem 1.8rem;
    background: var(--orbit-white);
    border: 1px solid rgba(7, 23, 57, 0.05);
    border-radius: 24px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    box-shadow: 0 4px 20px rgba(7, 23, 57, 0.02);
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #ef4444; /* Problem red */
    opacity: 0.3;
    transition: opacity 0.3s;
}

.problem-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 40px 80px -15px rgba(7, 23, 57, 0.12);
    border-color: rgba(239, 68, 68, 0.1);
    background: white;
}

.problem-card:hover::before {
    opacity: 1;
}

.problem-card i {
    font-size: 2.2rem;
    color: #ef4444;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(239, 68, 68, 0.05);
    border-radius: 16px;
    transition: all 0.3s;
}

.problem-card:hover i {
    transform: scale(1.1) rotate(-5deg);
    background: rgba(239, 68, 68, 0.1);
}

.problem-card h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: var(--orbit-navy);
    letter-spacing: 0.5px;
}

.problem-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--orbit-muted-blue);
    font-weight: 300;
    margin: 0;
}

.intro-split {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    margin-bottom: 100px;
}

@media (max-width: 991px) {
    .intro-split {
        flex-direction: column;
    }
}

/* Collage Styles */
.ritual-collage {
    display: flex;
    flex-direction: column;
    gap: 15px;
    height: 100%;
    min-height: 550px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}
.ritual-collage img {
    width: 100%;
    flex: 1;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.5s ease;
}
.ritual-collage img:hover {
    transform: scale(1.05);
}

.ritual-collage .ritual-img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(7,23,57,0.95), rgba(7,23,57,0.8) 50%, transparent);
    padding: 30px;
    color: white;
    box-sizing: border-box;
    z-index: 2;
}

/* Enhanced Timeline Animation */
.timeline-item.animate-fade-in {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.timeline-item.animate-fade-in:nth-child(even) {
    transform: translateX(50px);
}
.timeline-item.animate-fade-in:nth-child(odd) {
    transform: translateX(-50px);
}
.timeline-item.animate-fade-in.visible {
    opacity: 1;
    transform: translateX(0);
}
.timeline-item.animate-fade-in:nth-child(1) { transition-delay: 0.1s; }
.timeline-item.animate-fade-in:nth-child(2) { transition-delay: 0.2s; }
.timeline-item.animate-fade-in:nth-child(3) { transition-delay: 0.3s; }
.timeline-item.animate-fade-in:nth-child(4) { transition-delay: 0.4s; }
.timeline-item.animate-fade-in:nth-child(5) { transition-delay: 0.5s; }
.timeline-item.animate-fade-in:nth-child(6) { transition-delay: 0.6s; }

/* Improved CTA Section Hover */
.orbit-cta-card {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.orbit-cta-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(7, 23, 57, 0.2);
}


/* --- PORTFOLIO STYLES IMPORTED FROM REFERENCE --- */

/* --- Editorial / Magazine Layout --- */

#portfolio .container {
    max-width: 1400px; /* Wider for magazine feel */
}

.project-showcase {
    margin-bottom: 150px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5%;
}

.project-showcase:nth-child(even) {
    flex-direction: row-reverse;
}

.project-showcase-img {
    flex: 1 1 50%;
    position: relative;
}

.project-showcase-img img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 20px 20px 0 rgba(0,0,0,0.05);
}

/* --- Impact Quote Section --- */
#impact-quote {
    background-color: #f4f4f4; /* Very light grey */
    padding: 151px 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50vh;
}

#impact-quote blockquote {
    font-size: 3.5rem;
    font-family: var(--font-heading);
    color: var(--darker-bg);
    line-height: 1.2;
    max-width: 1000px;
    margin: 0 auto;
    font-style: italic;
    position: relative;
    padding: 0 20px;
}

#impact-quote blockquote::before {
    content: '“';
    font-size: 8rem;
    color: var(--primary-color);
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.2;
    font-family: serif;
}

#impact-quote cite {
    display: block;
    margin-top: 30px;
    font-size: 1rem;
    font-family: var(--font-body);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #666;
    font-style: normal;
}

    
.project-showcase-info {
    flex: 1 1 40%;
    padding: 20px;
}

.project-number {
    font-size: 5rem;
    font-family: var(--font-heading);
    color: rgba(0,0,0,0.05);
    line-height: 1;
    margin-bottom: -20px;
    position: relative;
    z-index: -1;
}

.project-showcase-info h3 {
    font-size: 3rem;
    color: var(--darker-bg);
    margin-bottom: 10px;
    line-height: 1.1;
}

@media (max-width: 900px) {
    .project-showcase {
        flex-direction: column !important;
        margin-bottom: 80px;
    }
    .project-showcase-img, .project-showcase-info {
        flex: 1 1 100%;
        width: 100%;
    }
    .project-showcase-img {
        margin-bottom: 30px;
    }
    .project-number {
        font-size: 3rem;
    }
    .project-showcase-info h3 {
        font-size: 2.2rem;
    }
}

/* Annotations & Arrows */
.project-annotations {
    border-left: 1px solid #ddd;
    padding-left: 30px;
    position: relative;
}

.annotation-item {
    margin-bottom: 20px;
    position: relative;
}

.annotation-item h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.annotation-item h4::before {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: var(--primary-color);
}

.annotation-item p {
    font-size: 0.95rem;
    color: #777;
}


/* Project Mosaic Grid */
.project-showcase.has-mosaic {
    margin-bottom: 50px;
}

.project-mosaic {
    margin-bottom: 150px;
    margin-top: -100px;
}

.project-mosaic-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 250px 250px;
    gap: 15px;
}

.project-mosaic-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    height: 100%;
    width: 100%;
    cursor: pointer;
}

.project-mosaic-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-mosaic-item:hover img {
    transform: scale(1.05);
}

.mosaic-large {
    grid-column: span 2;
    grid-row: span 2;
}

.mosaic-wide {
    grid-column: span 2;
}

.mosaic-tall {
    grid-row: span 2;
}

@media (max-width: 900px) {
    .project-mosaic-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    
    .mosaic-large {
        grid-column: span 2;
        height: 300px;
    }
    
    .mosaic-wide {
        grid-column: span 2;
        height: 200px;
    }
    
    .project-mosaic-item {
        min-height: 200px;
    }
}



/* Project Type Cards Grid */
.project-types-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    margin-top: 50px;
}

.project-type-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    height: 280px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.project-type-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-type-card:hover img {
    transform: scale(1.1);
}

.project-type-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px 20px;
    background: linear-gradient(to top, rgba(7, 23, 57, 0.95), rgba(7, 23, 57, 0.4), transparent);
    color: var(--orbit-white);
    text-align: left;
}

.project-type-overlay h5 {
    margin: 0;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    color: var(--orbit-tan);
    line-height: 1.2;
}

.project-type-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    border-color: var(--orbit-tan);
}

@media (max-width: 768px) {
    .project-types-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 15px;
    }
    .project-type-card {
        height: 240px;
    }
}
