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

:root {
    --lime-green: #d2d644;
    --dark-bg: #2d3a3a;
    --card-bg: #1a1a1a;
    --text-white: #fdfefc;
    --text-gray: #a0a0a0;
    --accent-purple: #804e88;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--dark-bg);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.cursor-follower {
    position: fixed;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 255, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: transform 0.2s ease-out;
    z-index: 1;
}

.grid-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(200, 255, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(200, 255, 0, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
}

.floating-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.2;
    animation: float 20s infinite ease-in-out;
}

.shape:nth-child(1) {
    width: 300px;
    height: 300px;
    background: rgba(200, 255, 0, 0.3);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape:nth-child(2) {
    width: 400px;
    height: 400px;
    background: rgba(147, 51, 234, 0.3);
    top: 60%;
    right: 10%;
    animation-delay: 7s;
}

.shape:nth-child(3) {
    width: 250px;
    height: 250px;
    background: rgba(200, 255, 0, 0.2);
    bottom: 10%;
    left: 50%;
    animation-delay: 14s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(50px, -50px) scale(1.1); }
    66% { transform: translate(-30px, 30px) scale(0.9); }
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(200, 255, 0, 0.1);
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: -0.02em;
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
    position: relative;
    z-index: 2;
}

.nav-links a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--lime-green);
    transition: width 0.3s;
}

.nav-links a:hover {
    color: var(--lime-green);
}

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

.cta-nav {
    padding: 0.75rem 1.75rem;
    background: var(--lime-green);
    color: var(--dark-bg) !important;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s;
}

.cta-nav::after {
    display: none;
}

.cta-nav:hover {
    background: var(--text-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(200, 255, 0, 0.4);
}

/* Glass morphism card */
.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(200, 255, 0, 0.1), transparent);
    transition: left 0.5s;
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 5%;
    padding-top: 80px;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-white);
}

.hero-text h1 .highlight {
    color: var(--lime-green);
    display: block;
}

.hero-text p {
    font-size: 1.15rem;
    color: var(--text-gray);
    max-width: 500px;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-text .greeting {
    font-size: 1.1rem;
    color: var(--lime-green);
    margin-bottom: 1rem;
    font-weight: 600;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: var(--lime-green);
    color: var(--dark-bg);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(200, 255, 0, 0.3);
    position: relative;
    z-index: 2;
}

.cta-button:hover {
    background: var(--text-white);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(200, 255, 0, 0.5);
}

.hero-visual {
    position: relative;
    height: 600px;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
    transition: all 0.3s;
}

.floating-card:hover {
    border-color: var(--lime-green);
    transform: translateY(-10px);
}

.card-1 {
    top: 10%;
    left: 5%;
    width: 200px;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: 10%;
    width: 180px;
    animation-delay: 2s;
}

.card-3 {
    bottom: 15%;
    left: 20%;
    width: 220px;
    animation-delay: 4s;
}

.card-thumbnail {
    width: 100%;
    height: 100px;
    background: linear-gradient(135deg, var(--lime-green), var(--accent-purple));
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.card-thumbnail img {
    width: 100%;
    object-fit: cover;
    transform: scale(1.3);
}

.card-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.3rem;
}

.card-type {
    font-size: 0.75rem;
    color: var(--text-gray);
}

/* About Section */
.about {
    padding: 8rem 5%;
    background: transparent;
    position: relative;
    z-index: 2;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-content h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 2rem;
    color: var(--text-white);
}

.about-content p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

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

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--lime-green);
    line-height: 1;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-top: 0.5rem;
}

.about-image {
    position: relative;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(200, 255, 0, 0.2), rgba(147, 51, 234, 0.2));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

/* Services Section */
.services {
    padding: 8rem 5%;
    background: transparent;
    position: relative;
    z-index: 2;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.section-header p {
    font-size: 1.15rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 20px;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(200, 255, 0, 0.1), transparent);
    transition: left 0.5s;
}

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

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--lime-green);
    box-shadow: 0 20px 60px rgba(200, 255, 0, 0.2);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--lime-green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.service-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* Portfolio Section */
.portfolio {
    padding: 8rem 5%;
    background: transparent;
    position: relative;
    z-index: 2;
}

.portfolio a {
    text-decoration: none;
}

.portfolio-container {
    max-width: 1400px;
    margin: 0 auto;
}

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

.portfolio-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.portfolio-item:hover {
    transform: translateY(-10px);
    border-color: var(--lime-green);
    box-shadow: 0 20px 60px rgba(200, 255, 0, 0.2);
}

.portfolio-image {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, rgba(200, 255, 0, 0.3), rgba(147, 51, 234, 0.3));
    transition: transform 0.3s;
}

.portfolio-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.portfolio-item:hover .portfolio-image {
    transform: scale(1.05);
}

.portfolio-info {
    padding: 2rem;
}

.portfolio-category {
    font-size: 0.85rem;
    color: var(--lime-green);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.portfolio-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.portfolio-item p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 8rem 5%;
    background: transparent;
    color: var(--text-white);
    position: relative;
    z-index: 2;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 5rem 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 2rem;
}

.contact p {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.contact-label {
    font-size: 0.9rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.contact-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--lime-green);
}

/* Footer */
footer {
    padding: 3rem 5%;
    background: transparent;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-gray);
    text-align: center;
    position: relative;
    z-index: 2;
}

/* NEW: Portfolio Item Specific Styles */

.back-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-white);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.back-button:hover {
    color: var(--lime-green);
    border-color: var(--lime-green);
    transform: translateX(-5px);
}

/* Hero Section */
.project-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 0 5%;
    padding-top: 150px;
    position: relative;
    z-index: 2;
}

.hero-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.project-category {
    font-size: 0.95rem;
    color: var(--lime-green);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
}

.project-hero h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--text-white);
}

.project-meta {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.meta-item {
    text-align: center;
}

.meta-label {
    font-size: 0.85rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.meta-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-white);
}

.project-intro {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.25rem;
    color: var(--text-gray);
    line-height: 1.8;
}

/* Featured Image */
.featured-image {
    padding: 4rem 5%;
    position: relative;
    z-index: 2;
}

.featured-container {
    max-width: 1400px;
    margin: 0 auto;
}

.image-wrapper {
    width: 100%;
    height: 700px;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(200, 255, 0, 0.2), rgba(147, 51, 234, 0.2));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.image-wrapper img {
    width: 100%;
    height: 700px;
    object-fit: cover;
}

.image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(200, 255, 0, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Content Section */
.project-content {
    padding: 6rem 5%;
    position: relative;
    z-index: 2;
}

.content-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 6rem;
}

/* Sidebar */
.sidebar {
    position: sticky;
    top: 150px;
    height: fit-content;
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
}

.info-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-white);
}

.info-item {
    margin-bottom: 1.5rem;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-label {
    font-size: 0.85rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.info-value {
    font-size: 1rem;
    color: var(--text-white);
    font-weight: 500;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.tag {
    padding: 0.5rem 1rem;
    background: rgba(200, 255, 0, 0.1);
    color: var(--lime-green);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(200, 255, 0, 0.2);
}

/* Main Content */
.main-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-white);
}

.main-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.main-content p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.main-content ul {
    list-style: none;
    margin: 2rem 0;
}

.main-content li {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.9;
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.main-content li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--lime-green);
    font-weight: 700;
}

.content-section {
    margin-bottom: 4rem;
}

/* Image Grid */
.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.grid-item {
    width: 100%;
    height: 350px;
    border-radius: 15px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(200, 255, 0, 0.15), rgba(147, 51, 234, 0.15));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.grid-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.grid-item:hover {
    transform: translateY(-10px);
    border-color: var(--lime-green);
    box-shadow: 0 20px 60px rgba(200, 255, 0, 0.2);
}

.full-width-image {
    width: 100%;
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(200, 255, 0, 0.15), rgba(147, 51, 234, 0.15));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin: 3rem 0;
}

.full-width-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

/* Quote Block */
.quote-block {
    background: rgba(200, 255, 0, 0.05);
    border-left: 4px solid var(--lime-green);
    padding: 2rem 2.5rem;
    margin: 3rem 0;
    border-radius: 10px;
}

.quote-block p {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text-white);
    margin: 0;
}

/* Navigation Footer */
.project-nav {
    padding: 6rem 5%;
    position: relative;
    z-index: 2;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.nav-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.nav-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(200, 255, 0, 0.1), transparent);
    transition: left 0.5s;
}

.nav-item:hover::before {
    left: 100%;
}

.nav-item:hover {
    transform: translateY(-10px);
    border-color: var(--lime-green);
    box-shadow: 0 20px 60px rgba(200, 255, 0, 0.2);
}

.nav-label {
    font-size: 0.85rem;
    color: var(--lime-green);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
}

.nav-item h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.nav-item p {
    color: var(--text-gray);
}

/* CTA Section */
.cta-section {
    padding: 6rem 5%;
    position: relative;
    z-index: 2;
}

.cta-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 5rem 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-container h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-white);
}

.cta-container p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: var(--lime-green);
    color: var(--dark-bg);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(200, 255, 0, 0.3);
}

.cta-button:hover {
    background: var(--text-white);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(200, 255, 0, 0.5);
}


/* Responsive */
@media (max-width: 968px) {

    .hero {
        margin-top: 50px;
    }
    .content-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .sidebar {
        position: static;
    }

    .nav-container {
        grid-template-columns: 1fr;
    }

    .project-hero {
        padding-top: 120px;
    }

    .project-meta {
        gap: 2rem;
    }

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

    .image-wrapper {
        height: 400px;
    }

    .image-wrapper img {
        height: 400px;
        object-fit: cover;
        transform: scale(1.2);
    }

    .full-width-image {
        height: 300px;
    }

    .full-width-image img {
        height: 300px;
        object-fit: cover;
        transform: scale(1.2);
    }

    .nav-links {
        display: none;
    }

    .hero-content,
    .about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-visual {
        height: 400px;
    }

    .hero {
        padding-top: 120px;
    }

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

    .contact-info {
        flex-direction: column;
        gap: 2rem;
    }

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