/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Helvetica Neue', 'Segoe UI', Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    overflow-x: hidden;
    background: #000000;
}

/* Navigation - Fixed positioning, minimal */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 2.5rem 4rem;
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    pointer-events: none;
}

.nav>* {
    pointer-events: auto;
}

.nav-logo h2 {
    font-size: 1.4rem;
    font-weight: 300;
    color: #ffffff;
    letter-spacing: 0.02em;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', 'Segoe UI', Arial, sans-serif;
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 300;
    font-size: 0.95rem;
    transition: opacity 0.3s ease;
    letter-spacing: 0.03em;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Helvetica Neue', 'Segoe UI', Arial, sans-serif;
}

.nav-links a:hover {
    opacity: 0.6;
}

/* Hero Section - Exact mockup layout */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

/* Background Layers - Exact mockup recreation */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -4;
}

/* Forest layer - Minimal, subtle ocean depths */
.landscape-forest {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 67%;
    background: linear-gradient(180deg, #000000 0%, #050810 20%, #0a1015 50%, #0f151a 67%);
    z-index: -3;
}

.landscape-forest::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background:
        radial-gradient(ellipse at 30% 100%, rgba(15, 30, 40, 0.2) 15%, transparent 60%),
        radial-gradient(ellipse at 70% 100%, rgba(20, 35, 45, 0.15) 20%, transparent 65%);
}

/* Water layer - Minimal ocean depths */
.landscape-water {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 33%;
    background: linear-gradient(180deg, #0a1015 0%, #080d12 30%, #050810 60%, #000000 100%);
    z-index: -3;
}

/* Gentle atmospheric mist - minimal, subtle */
.mist-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 50% 50%, rgba(20, 40, 55, 0.03) 0%, transparent 60%);
    z-index: -2;
}


/* Ocean Wave SVG Elements - Minimal, subtle */
.wavy-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.wavy-line {
    position: absolute;
    width: 70%;
    height: 20px;
    opacity: 0.15;
}

/* Ocean current flow - upper wave */
.wavy-line.upper {
    top: 40%;
    left: -5%;
    transform: rotate(-6deg);
    opacity: 0.1;
}

/* Ocean current flow - lower wave */
.wavy-line.lower {
    bottom: 30%;
    left: -3%;
    width: 65%;
    transform: rotate(4deg);
    opacity: 0.08;
}


/* Hero Content - Exact positioning */
.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    position: relative;
    z-index: 3;
}

.brand-section {
    text-align: center;
    margin-top: -5vh;
    /* Slight upward positioning */
}

/* Main brand - Sharp, minimal typography */
.main-brand {
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 0;
    line-height: 1;
    letter-spacing: -0.02em;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', 'Segoe UI', Arial, sans-serif;
}

/* Main brand for Services/Projects/Contact pages - Clean, modern, minimal */
.services-hero .main-brand,
.contact-hero .main-brand,
section.hero.services-hero .main-brand {
    letter-spacing: -0.02em;
    font-weight: 400;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', 'Segoe UI', Arial, sans-serif;
    font-size: clamp(3rem, 7vw, 6rem);
    line-height: 1.1;
}

/* Tagline - Sharp, minimal */
.tagline {
    font-size: clamp(1rem, 2.2vw, 1.4rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.02em;
    margin-top: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Helvetica Neue', 'Segoe UI', Arial, sans-serif;
}

/* Tagline for Services/Projects/Contact pages - Clean, minimal, modern */
.services-hero .tagline,
.contact-hero .tagline,
section.hero.services-hero .tagline {
    font-weight: 300;
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    letter-spacing: 0.02em;
    line-height: 1.5;
    opacity: 0.7;
    color: rgba(255, 255, 255, 0.7);
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Helvetica Neue', 'Segoe UI', Arial, sans-serif;
    margin-top: 1.5rem;
}

.waitlist-cta {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}

.waitlist-button {
    background: rgba(77, 155, 192, 0.12);
    backdrop-filter: blur(8px);
    color: #ffffff;
    padding: 0.8rem 1.8rem;
    border: 1px solid rgba(102, 179, 217, 0.5);
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.01em;
}

.waitlist-button:hover {
    background: rgba(77, 155, 192, 0.2);
    border-color: rgba(102, 179, 217, 0.7);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(77, 155, 192, 0.2);
}

/* Search Bar - Exact mockup styling */
.search-container {
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: relative;
    z-index: 3;
    margin-bottom: 1rem;
}

.search-bar {
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 4px;
    padding: 0.75rem 1rem;
    backdrop-filter: blur(8px);
    gap: 0.75rem;
    min-width: 260px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.search-text {
    color: #ffffff;
    font-size: 0.9rem;
    flex: 1;
    font-weight: 400;
    letter-spacing: 0.005em;
}

.search-separator {
    width: 1px;
    height: 18px;
    background: rgba(255, 255, 255, 0.25);
}

.search-icon {
    color: #ffffff;
    opacity: 0.8;
}

/* Second Section - Smooth breathing transition */
.secondary-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 0;
}

/* Smooth transition blending between sections */
.hero {
    margin-bottom: 0;
}

/* Blend the sections seamlessly */
.hero:after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.3) 0%,
            rgba(0, 0, 0, 0.7) 50%,
            rgba(0, 0, 0, 0.95) 100%);
    z-index: 10;
}

.secondary-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -4;
}

/* Digital overlay for second section - minimal, removed */
.digital-overlay {
    display: none;
}

.secondary-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 4rem;
    display: block;
    position: relative;
    z-index: 3;
}

.left-content {
    text-align: left;
    max-width: 800px;
}

.section-headline {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 300;
    margin-bottom: 2rem;
    line-height: 1.2;
    color: #ffffff;
    letter-spacing: -0.02em;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', 'Segoe UI', Arial, sans-serif;
}

.section-description {
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    max-width: 600px;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Helvetica Neue', 'Segoe UI', Arial, sans-serif;
}

.mission-content {
    max-width: 800px;
}

.mission-content .section-description {
    max-width: 100%;
    margin-bottom: 2rem;
}

.mission-content .section-description:last-child {
    margin-bottom: 0;
}

.right-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-button {
    padding: 0.9rem 1.8rem;
    border: 1px solid rgba(102, 179, 217, 0.6);
    background: transparent;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 400;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: none;
    font-family: inherit;
    letter-spacing: 0.005em;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    background: rgba(77, 155, 192, 0.1);
    border-color: rgba(102, 179, 217, 0.8);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(77, 155, 192, 0.15);
}

/* Mobile Responsive - Maintaining mockup feel */
@media (max-width: 768px) {
    .nav {
        padding: 1.5rem 1.5rem;
    }

    .nav-links {
        gap: 2rem;
    }

    .nav-links a {
        font-size: 0.9rem;
    }

    .brand-section {
        margin-top: -3vh;
    }

    .secondary-content {
        padding: 4rem 2rem;
        text-align: left;
    }

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

    .search-bar {
        min-width: 240px;
        padding: 0.7rem 0.9rem;
    }

    .wavy-line.upper {
        left: -8%;
        width: 65%;
        top: 40%;
    }

    .wavy-line.lower {
        left: -5%;
        width: 55%;
        bottom: 30%;
    }

    .mission-content {
        max-width: 100%;
    }

    .mission-content .section-description {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .main-brand {
        font-size: 3rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .waitlist-button {
        font-size: 0.85rem;
        padding: 0.6rem 1.2rem;
    }

    .section-headline {
        font-size: 1.6rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .nav {
        padding: 1.2rem 1rem;
    }
}

/* Navigation active states */
.nav-links a.active {
    opacity: 0.9;
    color: rgba(255, 255, 255, 1);
}

.nav-logo a {
    color: inherit;
    text-decoration: none;
}

/* Services Page Styles */
.services-section,
.contact-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 4rem 0;
}

/* Clean background imagery for all pages - minimal */
.services-hero .landscape-water,
.contact-hero .landscape-water {
    background: linear-gradient(180deg, #0a1015 0%, #080d12 30%, #050810 60%, #000000 100%);
}

.services-hero .landscape-forest,
.contact-hero .landscape-forest {
    background: linear-gradient(180deg, #000000 0%, #050810 20%, #0a1015 50%, #0f151a 67%);
}

.services-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 4rem;
    position: relative;
    z-index: 3;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 4rem;
    margin-top: 4rem;
}

.service-card {
    background: transparent;
    border: none;
    padding: 0;
    transition: none;
}

.service-card:hover {
    background: transparent;
    border: none;
    transform: none;
    box-shadow: none;
}

.service-label {
    font-size: 1.1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.75rem;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Helvetica Neue', 'Segoe UI', Arial, sans-serif;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.service-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    font-weight: 300;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Helvetica Neue', 'Segoe UI', Arial, sans-serif;
}

/* Contact Page Styles - Minimal, Clean, Professional */
.contact-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 4rem;
    position: relative;
    z-index: 3;
}

.contact-hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: start;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-title-section {
    text-align: left;
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-minimal-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

.contact-column-left,
.contact-column-right {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-label {
    font-size: 0.85rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.02em;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Helvetica Neue', 'Segoe UI', Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.contact-value {
    font-size: 1.25rem;
    font-weight: 400;
    color: #ffffff;
    letter-spacing: -0.01em;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', 'Segoe UI', Arial, sans-serif;
    line-height: 1.4;
}

.contact-link {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

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

/* Contact Form Section */
.contact-form-section {
    position: relative;
    padding: 6rem 4rem;
    background: #000000;
    z-index: 2;
}

.contact-form-container {
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-form-button {
    padding: 0.9rem 2rem;
    border: 1px solid rgba(102, 179, 217, 0.6);
    background: transparent;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 400;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Helvetica Neue', 'Segoe UI', Arial, sans-serif;
    letter-spacing: 0.01em;
}

.contact-form-button:hover {
    background: rgba(77, 155, 192, 0.1);
    border-color: rgba(102, 179, 217, 0.8);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(77, 155, 192, 0.15);
}

/* Mobile Responsive for Services and Contact */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
}

    .contact-content {
        padding: 4rem 2rem;
}

    .contact-hero-layout {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .contact-title-section {
        text-align: left;
    }
    
    .contact-minimal-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-column-left,
    .contact-column-right {
        gap: 2.5rem;
    }

    .contact-value {
        font-size: 1.1rem;
    }

    .contact-form-section {
        padding: 4rem 2rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Subtle entrance animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.brand-section>* {
    animation: fadeInUp 1.2s ease-out forwards;
}

.brand-section>*:nth-child(1) {
    animation-delay: 0.3s;
    opacity: 0;
}

.brand-section>*:nth-child(2) {
    animation-delay: 0.6s;
    opacity: 0;
}

/* Floating ocean wave animation */
@keyframes floatWavy {

    0%,
    100% {
        transform: rotate(-6deg) translateY(0px);
        opacity: 0.3;
    }

    50% {
        transform: rotate(-6deg) translateY(-3px);
        opacity: 0.4;
    }
}

@keyframes floatWavyLower {

    0%,
    100% {
        transform: rotate(4deg) translateY(0px);
        opacity: 0.25;
    }

    50% {
        transform: rotate(4deg) translateY(-2px);
        opacity: 0.35;
    }
}

.wavy-line.upper {
    animation: floatWavy 8s ease-in-out infinite;
}

.wavy-line.lower {
    animation: floatWavyLower 10s ease-in-out infinite;
    animation-delay: 2s;
}

/* Projects Showcase Section */
.projects-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 4rem 0;
}

.projects-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -4;
}

.projects-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 4rem;
    position: relative;
    z-index: 3;
}

.projects-header {
    text-align: center;
    margin-bottom: 4rem;
}

.projects-header .section-headline {
    text-align: center;
    margin-bottom: 1.5rem;
}

.projects-header .section-description {
    text-align: center;
    margin: 0 auto;
    max-width: 680px;
    line-height: 1.7;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 4rem;
    margin-top: 0;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

/* Featured Project Layout */
.featured-project {
    grid-column: 1 / -1;
    /* Spans full width */
    background: transparent;
    border: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    padding: 0;
    transition: none;
    overflow: visible;
}

.featured-project:hover {
    background: transparent;
    border: none;
    transform: none;
    box-shadow: none;
}

.project-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

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

.project-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, rgba(77, 155, 192, 0.08) 0%, rgba(60, 130, 170, 0.04) 100%);
    border: 2px dashed rgba(102, 179, 217, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.placeholder-content {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
}

.placeholder-icon {
    color: rgba(102, 179, 217, 0.6);
    margin-bottom: 1rem;
}

.placeholder-content p {
    margin: 0.5rem 0;
    font-weight: 500;
    font-size: 1.1rem;
}

.placeholder-content small {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.featured-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.project-badge {
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    padding: 0;
    border-radius: 0;
    font-size: 0.75rem;
    font-weight: 300;
    width: fit-content;
    margin-bottom: 1rem;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Helvetica Neue', 'Segoe UI', Arial, sans-serif;
}

.technical-details {
    margin: 2rem 0;
}

.detail-item {
    background: transparent;
    padding: 0.5rem 0;
    border-radius: 0;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    border-left: none;
    font-weight: 300;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Helvetica Neue', 'Segoe UI', Arial, sans-serif;
    line-height: 1.6;
}

.detail-item strong {
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
}

.project-link {
    margin-top: 1.5rem;
}

.project-link a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(102, 179, 217, 0.9);
    text-decoration: none;
    font-weight: 400;
    padding: 0.8rem 1.5rem;
    border: 1px solid rgba(102, 179, 217, 0.3);
    border-radius: 8px;
    background: rgba(77, 155, 192, 0.1);
    transition: all 0.3s ease;
}

.project-link a:hover {
    background: rgba(77, 155, 192, 0.2);
    color: #66b3d9;
    transform: translateY(-2px);
}

.project-card {
    background: transparent;
    border: none;
    padding: 0;
    transition: none;
    text-align: left;
}

.project-card:hover {
    background: transparent;
    border: none;
    transform: none;
    box-shadow: none;
}

.project-icon {
    display: none;
}

.project-title {
    font-size: 1.5rem;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.4;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', 'Segoe UI', Arial, sans-serif;
    letter-spacing: -0.01em;
}

.project-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-weight: 300;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Helvetica Neue', 'Segoe UI', Arial, sans-serif;
}

.project-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.metric {
    background: rgba(77, 155, 192, 0.15);
    color: rgba(102, 179, 217, 0.9);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 400;
    border: 1px solid rgba(102, 179, 217, 0.3);
}

.metric.feature {
    background: rgba(77, 155, 192, 0.2);
    padding: 0.5rem 1rem;
    font-weight: 500;
    border: 1px solid rgba(102, 179, 217, 0.4);
}

/* Responsive design for projects */
@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .featured-project {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }

    .project-image img {
        height: 250px;
    }

    .project-card {
        padding: 2rem 1.5rem;
    }

    .projects-content {
        padding: 3rem 1.5rem;
    }

    .projects-header .section-description {
        max-width: 100%;
        margin: 0 auto;
        padding: 0 1rem;
    }
}

/* Footer Styles */
.footer {
    position: relative;
    background: #000000;
    overflow: visible;
    margin-top: 4rem;
    min-height: auto;
}

.footer-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    overflow: hidden;
}

.footer-background .landscape-forest {
    height: 40%;
    background: linear-gradient(180deg, #000000 0%, #050810 30%, #0a1015 67%);
}

.footer-background .landscape-water {
    height: 60%;
    background: linear-gradient(180deg, #0a1015 0%, #050810 50%, #000000 100%);
}

.footer-background .mist-overlay {
    background: radial-gradient(ellipse at 50% 50%, rgba(20, 40, 55, 0.02) 0%, transparent 60%);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 4rem 2rem;
    position: relative;
    z-index: 2;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    font-size: 1.4rem;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', 'Segoe UI', Arial, sans-serif;
}

.footer-tagline {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    font-weight: 300;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Helvetica Neue', 'Segoe UI', Arial, sans-serif;
}

.footer-description {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    font-weight: 300;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Helvetica Neue', 'Segoe UI', Arial, sans-serif;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

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

.footer-heading {
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Helvetica Neue', 'Segoe UI', Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 0.8rem;
}

.footer-list a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.85rem;
    transition: opacity 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Helvetica Neue', 'Segoe UI', Arial, sans-serif;
    font-weight: 300;
}

.footer-list a:hover {
    opacity: 0.8;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.85rem;
    transition: opacity 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Helvetica Neue', 'Segoe UI', Arial, sans-serif;
    font-weight: 300;
}

.social-link:hover {
    opacity: 0.8;
}

.social-link svg {
    width: 16px;
    height: 16px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    padding-bottom: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Helvetica Neue', 'Segoe UI', Arial, sans-serif;
    font-weight: 300;
}

.footer-cta-button {
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    padding: 0;
    border: none;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 300;
    transition: opacity 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Helvetica Neue', 'Segoe UI', Arial, sans-serif;
}

.footer-cta-button:hover {
    opacity: 0.8;
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-content {
        padding: 3rem 1.5rem 1.5rem;
    }
}

/* Case Studies Page Styles */
.case-study {
    background: transparent;
    border: none;
    padding: 0;
    margin-bottom: 5rem;
    transition: none;
}

.case-study:hover {
    background: transparent;
    border: none;
    box-shadow: none;
}

.case-study-header {
    margin-bottom: 3rem;
    padding-bottom: 0;
    border-bottom: none;
}

.case-study-category {
    display: inline-block;
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    padding: 0;
    border-radius: 0;
    font-size: 0.75rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Helvetica Neue', 'Segoe UI', Arial, sans-serif;
}

.case-study-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 300;
    color: #ffffff;
    line-height: 1.3;
    letter-spacing: -0.02em;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', 'Segoe UI', Arial, sans-serif;
    margin: 0;
}

.case-study-section {
    margin-bottom: 3rem;
}

.case-study-section:last-child {
    margin-bottom: 0;
}

.case-study-subtitle {
    font-size: 1.4rem;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', 'Segoe UI', Arial, sans-serif;
    letter-spacing: -0.01em;
}

.case-study-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-weight: 300;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Helvetica Neue', 'Segoe UI', Arial, sans-serif;
    margin-bottom: 2rem;
}

.case-study-text.case-study-impact {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    padding: 1.5rem;
    background: rgba(77, 155, 192, 0.08);
    border-left: 3px solid rgba(102, 179, 217, 0.5);
    border-radius: 8px;
    margin-top: 1rem;
}

.case-study-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.case-study-list li {
    padding: 0.8rem 0 0.8rem 2rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    line-height: 1.7;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    position: relative;
}

.case-study-list li::before {
    content: '•';
    position: absolute;
    left: 0.5rem;
    color: #66b3d9;
    font-size: 1.5rem;
    line-height: 1;
}

.case-study-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.case-study-metric {
    background: transparent;
    padding: 0;
    border-radius: 0;
    border: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: none;
}

.case-study-metric:hover {
    background: transparent;
    border: none;
    transform: none;
}

.metric-value {
    font-size: 1.8rem;
    font-weight: 400;
    color: #66b3d9;
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
    line-height: 1.2;
}

.metric-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    line-height: 1.4;
}

.case-study-part {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.case-study-part:first-of-type {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.case-study-part-header {
    margin-bottom: 2rem;
}

.case-study-part-title {
    font-size: 1.5rem;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 0;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.01em;
    opacity: 0.95;
}

/* Responsive design for case studies */
@media (max-width: 768px) {
    .case-study {
        padding: 2rem 1.5rem;
        margin-bottom: 3rem;
    }

    .case-study-title {
        font-size: 1.6rem;
    }

    .case-study-subtitle {
        font-size: 1.2rem;
    }

    .case-study-text {
        font-size: 1rem;
    }

    .case-study-metrics {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .case-study-metric {
        padding: 1.2rem;
    }

    .metric-value {
        font-size: 1.5rem;
    }

    .case-study-part {
        margin-top: 2rem;
        padding-top: 2rem;
    }
}

/* Loading state */
body {
    opacity: 0;
    transition: opacity 0.8s ease;
}

body.loaded {
    opacity: 1;
}