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

:root {
    --white: #FFFFFF;
    --black: #000000;
    --gray: #666666;
}

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Nunito Sans', sans-serif;
    color: var(--black);
    overflow-x: hidden;
    position: relative;
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100vw;
}

.container {
    max-width: 100%;
    margin: 0;
    padding: 0;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    z-index: 1000;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.logo {
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 0.5px;
    position: absolute;
    left: calc(100% / 12);
    text-decoration: none;
    color: var(--black);
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.6;
}

.logo-bold {
    font-weight: 800;
}

.nav {
    display: flex;
    gap: 45px;
}

.nav-link {
    text-decoration: none;
    color: var(--black);
    font-size: 16px;
    font-weight: 400;
    transition: opacity 0.3s ease;
    position: relative;
    padding-left: 0;
}

.nav-link::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 0;
    background: var(--black);
    transition: height 0.3s ease;
}

.nav-link:hover::before {
    height: 20px;
}

.nav-link:hover {
    opacity: 1;
}

.menu-toggle {
    display: flex;
    background: transparent;
    border: 1.3px solid var(--black);
    cursor: pointer;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    position: absolute;
    right: calc(100% / 12);
    padding: 0;
}

.menu-toggle span {
    display: none;
}

/* Mobile Menu - hidden by default */
.mobile-menu {
    display: none;
}

/* Hero Section */
.hero {
    position: relative;
    height: calc(100vh + 60px);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-content {
    position: absolute;
    z-index: 1;
    left: calc(100% / 12);
    top: calc(50% - 60px);
    transform: translateY(-50%);
}

.hero-title {
    font-size: 54.4px;
    font-weight: 300;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 160px;
    letter-spacing: -1px;
    text-align: left;
    padding-left: 0;
    margin-left: 0;
}

.hero-project {
    background: transparent;
    padding: 0;
    max-width: 400px;
    margin-left: 0;
}

.project-title {
    font-size: 22.4px;
    font-weight: 400;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
    color: var(--white);
}

.project-subtitle {
    font-size: 9.8px;
    font-weight: 400;
    color: var(--white);
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 60px;
    left: calc(100% / 12);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dot {
    width: 40px;
    height: 1.3px;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: background 0.3s ease;
    padding: 10px 0;
    box-sizing: content-box;
}

.slider-dot.active {
    background: var(--white);
}

.scroll-down {
    position: absolute;
    bottom: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    border: 2px solid var(--white);
    background: transparent;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--white);
}

.scroll-down:hover {
    background: var(--white);
    color: var(--black);
}

/* About Section */
.about {
    position: relative;
    min-height: 100vh;
    background: #f5f5f5;
    padding: 100px 0;
}

.about-background {
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1400px;
    height: 400px;
    opacity: 1;
    pointer-events: none;
    z-index: 0;
}

.about-bg-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.about-content {
    position: relative;
    z-index: 1;
    max-width: 100%;
    margin: 0;
}

.about-header {
    margin-left: calc(100% / 12);
    margin-bottom: 60px;
}

.about-label {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--black);
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-label::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--black);
    border-radius: 50%;
}

.about-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-left: calc(100% / 12);
    margin-right: calc(100% / 12);
    margin-bottom: 80px;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-title {
    font-size: 31.5px;
    font-weight: 400;
    line-height: 1.3;
    color: var(--black);
}

.about-link {
    text-decoration: underline;
    color: var(--black);
    font-size: 16px;
    font-weight: 400;
}

.about-image {
    width: 75%;
    margin-left: auto;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(100%);
}

.about-features {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 0;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 20px;
    padding-top: 40px;
    padding-bottom: 0;
    position: relative;
}

.about-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: calc(100% / 12);
    right: calc(100% / 12);
    height: 1.3px;
    background: rgba(0, 0, 0, 0.08);
}

.about-links-bottom {
    grid-column: 2 / 5;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feature:nth-child(2) {
    grid-column: 5 / 8;
}

.feature:nth-child(3) {
    grid-column: 9 / 12;
}

.feature-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--black);
}

.feature-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--gray);
}

.action-link {
    text-decoration: underline;
    color: var(--black);
    font-size: 19.2px;
    font-weight: 400;
    transition: opacity 0.3s ease;
}

.action-link:hover {
    opacity: 0.6;
}

/* Works Section */
.works {
    position: relative;
    min-height: 100vh;
    background: #000;
    padding: 0;
    color: var(--white);
}

.works-header {
    position: absolute;
    top: calc(1 * 60px + 80px);
    left: calc(100% / 12);
}

.works-label {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
}

.works-label::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--white);
    border-radius: 50%;
}

.works-slider {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    overflow-x: hidden;
}

.works-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    gap: 20px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.works-slide.active {
    opacity: 1;
}

.works-image {
    position: absolute;
    top: calc(1 * 60px + 80px);
    left: calc(100% / 12 * 4);
    width: calc(100% / 12 * 6.5);
    height: calc(6 * 60px);
    object-fit: cover;
}

.works-image:nth-of-type(2) {
    left: calc(100% / 12 * 4 + 100% / 12 * 6.5 + 20px);
}

.works-info {
    position: absolute;
    left: calc(100% / 12);
    top: calc(6 * 60px + 80px);
    z-index: 10;
}

.works-title {
    font-size: 33.6px;
    font-weight: 400;
    margin-bottom: 7px;
    color: var(--white);
}

.works-subtitle {
    font-size: 9.8px;
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--white);
    margin-bottom: 21px;
}

.works-link {
    position: absolute;
    left: calc(100% / 12 * 4);
    top: calc(8 * 60px + 80px);
    text-decoration: underline;
    color: var(--white);
    font-size: 12.6px;
    font-weight: 400;
    letter-spacing: 1px;
    transition: opacity 0.3s ease;
    z-index: 10;
    opacity: 0.7;
}

.works-link:hover {
    opacity: 0.5;
}

.works-controls {
    position: absolute;
    top: calc(8 * 60px - 20px + 80px + 15px);
    right: calc(100% / 12);
    display: flex;
    gap: 20px;
    z-index: 10;
}

.works-arrow {
    width: 24px;
    height: 24px;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--white);
    transition: all 0.3s ease;
    padding: 0;
}

.works-arrow:hover {
    opacity: 0.6;
}

/* Services Section */
.services {
    position: relative;
    min-height: 100vh;
    background: var(--white);
    padding: 0;
}

.services-header {
    position: absolute;
    top: calc(1.5 * 60px + 80px + 15px);
    left: calc(100% / 12);
    z-index: 5;
}

.services-label {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--black);
    display: flex;
    align-items: center;
    gap: 10px;
}

.services-label::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--black);
    border-radius: 50%;
}

.tabs-container {
    position: absolute;
    left: calc(100% / 12);
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 30px;
    z-index: 999;
}

.tab {
    font-size: 16px;
    font-weight: 400;
    color: var(--black);
    opacity: 0.3;
    cursor: pointer;
    transition: opacity 0.3s ease;
    white-space: nowrap;
    background: transparent;
    border: none;
    padding: 0;
    text-align: left;
}

.tab.active {
    opacity: 1;
}

.tab:hover {
    opacity: 0.6;
}

.tab-content-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 100vh;
}

.tab-content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: calc(100% / 12);
    width: calc(100% / 12 * 7);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.tab-content.active {
    opacity: 1;
    visibility: visible;
}

.tab-image {
    width: 100%;
}

.tab-image img {
    width: 100%;
    height: auto;
    display: block;
}

.tab-text {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tab-text p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--black);
}

.tab-link {
    text-decoration: underline;
    color: var(--black);
    font-size: 16px;
    font-weight: 400;
    transition: opacity 0.3s ease;
}

.tab-link:hover {
    opacity: 0.6;
}

/* Full Width Image Section */
.full-width-image {
    position: relative;
    width: 100%;
    height: auto;
    display: block;
}

.full-width-image img {
    width: 100%;
    height: auto;
    display: block;
}

.image-quote {
    position: absolute;
    bottom: 60px;
    left: calc(100% / 12);
    font-size: 22.4px;
    font-weight: 400;
    line-height: 1.4;
    color: var(--white);
    text-align: left;
    max-width: 800px;
}

/* Testimonials Section */
.testimonials {
    position: relative;
    min-height: 100vh;
    background: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
}

.testimonials-slider {
    position: relative;
    width: 100%;
    max-width: 900px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-slide {
    position: absolute;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease;
    text-align: center;
}

.testimonial-slide.active {
    opacity: 1;
    visibility: visible;
}

.testimonial-quote {
    font-size: 32px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--black);
    margin: 0 0 60px 0;
    font-style: normal;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.testimonial-name {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--black);
}

.testimonial-position {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--gray);
}

.testimonials-dots {
    display: flex;
    gap: 10px;
    margin-top: 80px;
}

.testimonial-dot {
    width: 40px;
    height: 1.3px;
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: background 0.3s ease;
}

.testimonial-dot.active {
    background: var(--black);
}

/* Blog Section */
.blog {
    position: relative;
    min-height: 100vh;
    background: #BABABA;
    padding: 120px 0;
}

.blog-header {
    margin-left: calc(100% / 12);
    margin-bottom: 80px;
}

.blog-label {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-label::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--white);
    border-radius: 50%;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 0 calc(100% / 12);
}

.blog-post {
    background: var(--white);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-5px);
}

.blog-post-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.blog-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-post-content {
    padding: 30px 20px;
}

.blog-post-title {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
    color: var(--black);
    margin-bottom: 20px;
}

.blog-post-meta {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.blog-post-category {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--black);
}

.blog-post-date {
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 1.5px;
    color: var(--gray);
}

/* CTA Section */
.cta {
    position: relative;
    min-height: 60vh;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
}

.cta-button {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: var(--white);
    background: var(--black);
    border: none;
    padding: 30px 47px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: none;
    position: relative;
    overflow: visible;
}

.cta-text {
    display: inline-block;
    transition: opacity 0.3s ease;
}

.house-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
    width: 100%;
    height: 100%;
}

.window {
    width: 17px;
    height: 17px;
    background: var(--white);
    border: 2px solid #666;
    position: absolute;
    bottom: 15px;
}

.window-bottom-left {
    left: 50%;
    transform: translateX(calc(-100% - 30px));
}

.window-bottom-right {
    left: 50%;
    transform: translateX(30px);
}

.window-top-1 {
    bottom: 60px;
    left: 50%;
    transform: translateX(calc(-100% - 60px));
}

.window-top-2 {
    bottom: 60px;
    left: 50%;
    transform: translateX(calc(-100% - 20px));
}

.window-top-3 {
    bottom: 60px;
    left: 50%;
    transform: translateX(20px);
}

.window-top-4 {
    bottom: 60px;
    left: 50%;
    transform: translateX(60px);
}

.window::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1.3px;
    background: #666;
    transform: translateY(-50%);
}

.window::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1.3px;
    background: #666;
    transform: translateX(-50%);
}

.door {
    width: 20px;
    height: 35px;
    background: var(--white);
    border: 2px solid var(--black);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.door::before {
    content: '';
    position: absolute;
    right: 4px;
    top: 50%;
    width: 3px;
    height: 3px;
    background: var(--black);
    border-radius: 50%;
    transform: translateY(-50%);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(0);
    width: 0;
    height: 0;
    border-left: 0 solid transparent;
    border-right: 0 solid transparent;
    border-bottom: 0 solid var(--black);
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #333;
}

.cta-button:hover .cta-text {
    opacity: 0;
}

.cta-button:hover .house-elements {
    opacity: 1;
}

.cta-button:hover::before {
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    border-bottom: 60px solid #333;
    transform: translateX(-50%) translateY(-60px);
}

/* Footer */
.footer {
    background: var(--white);
    border-top: 1px solid #ddd;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    padding: 80px calc(100% / 12);
}

.footer-logo {
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

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

.footer-title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--black);
    margin-bottom: 20px;
}

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

.footer-links a {
    font-size: 14px;
    font-weight: 400;
    color: var(--black);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

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

.footer-bottom {
    padding: 30px calc(100% / 12);
    border-top: 1px solid #ddd;
}

.footer-bottom p {
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 1.5px;
    color: var(--gray);
    margin: 0;
}

/* Responsive Design */
@media (min-width: 1441px) and (max-width: 1920px) {
    .about {
        padding: 100px 0 40px 0 !important;
        min-height: 100vh !important;
        height: auto !important;
    }

    .about-header {
        margin-top: 0 !important;
    }

    .works {
        height: calc(100vh - 210px) !important;
        max-height: calc(100vh - 210px) !important;
        min-height: calc(100vh - 210px) !important;
    }
}

@media (min-width: 1600px) {
    .about {
        padding: 100px 0 40px 0 !important;
        min-height: 100vh !important;
        height: auto !important;
    }

    .about-header {
        margin-top: 0 !important;
    }

    .works {
        height: calc(100vh - 210px) !important;
        max-height: calc(100vh - 210px) !important;
        min-height: calc(100vh - 210px) !important;
    }
}

@media (min-width: 1441px) {
    body {
        max-width: 1440px;
        margin: 0 auto;
    }

    .header {
        max-width: 1440px;
        left: 0;
        right: 0;
        margin: 0 auto;
    }

    .grid-overlay {
        max-width: 1440px;
        margin: 0 auto;
    }
}

/* Desktop version - hero adjustments */
@media (min-width: 769px) {
    .hero-content {
        top: calc(50% + 40px);
    }

    .slider-dots {
        bottom: 110px;
    }
}

@media (min-width: 1441px) and (max-width: 1680px) {
    .blog {
        min-height: 700px;
        height: 700px;
        padding: 40px 0;
        box-sizing: border-box;
    }
}

@media (max-width: 1440px) and (min-width: 769px) {
    .about {
        padding: 60px 0;
        min-height: auto;
    }

    .about-main {
        margin-bottom: 40px;
    }

    .works {
        min-height: auto;
        padding: 60px 0 20px 0;
    }

    .works-header {
        top: 180px !important;
    }

    .works-image {
        top: 80px !important;
    }

    .works-image:nth-of-type(2) {
        top: 80px !important;
    }

    .works-info {
        top: calc(6 * 60px + 80px - 60px);
    }

    .works-link {
        top: calc(8 * 60px + 80px - 60px);
    }

    .works-controls {
        top: calc(8 * 60px - 20px + 80px - 60px + 15px);
    }

    .blog {
        min-height: 600px;
        height: 600px;
        padding: 40px 0;
        box-sizing: border-box;
    }

    .full-width-image {
        min-height: 70vh;
    }

    .cta {
        padding: 0;
        min-height: 700px;
        height: 700px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    body {
        overflow-x: hidden;
        position: relative;
        max-width: 100vw;
    }

    body.menu-open {
        overflow: hidden;
    }

    /* Prevent horizontal scroll */
    .hero, .about, .works, .services, .testimonials, .blog, .cta, .footer,
    .full-width-image, section, main {
        overflow-x: hidden;
        max-width: 100vw;
    }

    /* Header */
    .header {
        padding: 37.5px 0;
    }

    .logo {
        font-size: 25.2px;
        left: 20px;
    }

    .nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
        right: 20px;
        width: 30px;
        height: 30px;
        z-index: 10001;
    }

    /* Mobile Menu */
    .mobile-menu {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--white);
        z-index: 10000;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .mobile-menu.active {
        opacity: 1;
        visibility: visible;
    }

    .mobile-nav {
        display: flex;
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .mobile-nav-link {
        font-size: 32px;
        font-weight: 400;
        color: var(--black);
        text-decoration: none;
        transition: opacity 0.3s ease;
    }

    .mobile-nav-link:hover,
    .mobile-nav-link:active {
        opacity: 0.6;
    }

    /* Hero Section */
    .hero {
        height: 100vh;
    }

    .hero-content {
        left: 20px;
        right: 20px;
        top: 50%;
    }

    .hero-title {
        font-size: 32px;
        margin-bottom: 200px;
        line-height: 1.2;
    }

    .hero-project {
        padding: 0;
        max-width: 100%;
    }

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

    .project-subtitle {
        font-size: 12px;
        margin-bottom: 15px;
    }

    .slider-dots {
        gap: 8px;
    }

    .slider-dot {
        width: 30px;
    }

    .scroll-down {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }

    /* About Section */
    .about {
        padding: 60px 0;
    }

    .about-header {
        margin-left: 20px;
        margin-bottom: 40px;
    }

    .about-main {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-left: 20px;
        margin-right: 20px;
        margin-bottom: 60px;
    }

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

    .about-image {
        width: 100%;
        margin-left: 0;
    }

    .about-features {
        display: flex;
        flex-direction: column;
        gap: 40px;
        padding: 40px 20px 0 20px;
    }

    .about-links-bottom {
        order: -1;
    }

    .feature-title {
        font-size: 20px;
    }

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

    /* Works Section */
    .works {
        min-height: auto;
        height: calc(100vh - 240px);
        padding: 60px 0 0 0;
        overflow: hidden;
    }

    .works-header {
        top: 60px;
        left: 20px;
    }

    .works-slider {
        will-change: auto;
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
    }

    .works-slide {
        will-change: auto;
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
    }

    .works-image {
        will-change: auto;
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
    }

    .works-slider {
        min-height: auto;
        height: calc(100vh - 300px);
    }

    .works-image {
        top: 120px;
        left: 20px;
        width: calc(100% - 40px);
        height: 300px;
    }

    .works-image:nth-of-type(2) {
        display: none;
    }

    .works-info {
        left: 20px;
        top: 440px;
    }

    .works-title {
        font-size: 24px;
    }

    .works-subtitle {
        font-size: 9px;
    }

    .works-link {
        left: 20px;
        top: 520px;
        font-size: 11px;
    }

    .works-controls {
        top: 520px;
        right: 20px;
    }

    /* Services Section */
    .services {
        flex-direction: column;
        padding: 60px 0 0 0;
        min-height: auto;
    }

    .services-header {
        position: relative;
        top: 0;
        left: 20px;
        margin-bottom: 40px;
    }

    .tabs-container {
        position: relative;
        left: 20px;
        top: 0;
        transform: none;
        gap: 20px;
        margin-bottom: 40px;
    }

    .tab {
        font-size: 14px;
    }

    .tab-content-container {
        position: relative;
        min-height: auto;
    }

    .tab-content {
        position: relative;
        top: 0;
        transform: none;
        right: 0;
        width: calc(100% - 40px);
        margin: 0 20px 60px 20px;
        gap: 30px;
        display: none;
    }

    .tab-content.active {
        display: flex;
    }

    /* Full Width Image */
    .full-width-image {
        position: relative;
        height: 400px;
        overflow: hidden;
    }

    .full-width-image img {
        width: 150%;
        height: 400px;
        object-fit: cover;
        transform: translateX(-16.67%);
        display: block;
    }

    .image-quote {
        position: absolute;
        font-size: 16px;
        max-width: calc(100% - 40px);
        color: var(--white);
        top: 20px;
        left: 20px;
        z-index: 10;
    }

    /* Testimonials */
    .testimonials {
        padding: 60px 20px;
        min-height: auto;
    }

    .testimonials-slider {
        min-height: 300px;
    }

    .testimonial-quote {
        font-size: 20px;
        margin-bottom: 30px;
    }

    .testimonial-name,
    .testimonial-position {
        font-size: 10px;
    }

    .testimonials-dots {
        margin-top: 40px;
    }

    /* Blog Section */
    .blog {
        padding: 60px 0;
    }

    .blog-header {
        margin-left: 20px;
        margin-bottom: 40px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
        gap: 20px;
    }

    .blog-post-content {
        padding: 20px 15px;
    }

    .blog-post-title {
        font-size: 16px;
        margin-bottom: 15px;
    }

    /* CTA Section */
    .cta {
        padding: 60px 20px;
        min-height: 50vh;
    }

    .cta-button {
        padding: 20px 30px;
        font-size: 18px;
    }

    .cta-button.mobile-active {
        background: #333;
    }

    .cta-button.mobile-active .cta-text {
        opacity: 0;
    }

    .cta-button.mobile-active .house-elements {
        opacity: 1;
    }

    .cta-button.mobile-active::before {
        border-left: 39px solid transparent !important;
        border-right: 39px solid transparent !important;
        border-bottom: 39px solid #333 !important;
        transform: translateX(-50%) translateY(-39px) !important;
    }

    .cta-button .window {
        width: 11px;
        height: 11px;
        border: 2px solid #666;
        bottom: 10px;
    }

    .cta-button .window-bottom-left {
        left: 50%;
        transform: translateX(calc(-100% - 19.5px));
    }

    .cta-button .window-bottom-right {
        left: 50%;
        transform: translateX(19.5px);
    }

    .cta-button .window-top-1 {
        bottom: 39px;
        left: 50%;
        transform: translateX(calc(-100% - 39px));
    }

    .cta-button .window-top-2 {
        bottom: 39px;
        left: 50%;
        transform: translateX(calc(-100% - 13px));
    }

    .cta-button .window-top-3 {
        bottom: 39px;
        left: 50%;
        transform: translateX(13px);
    }

    .cta-button .window-top-4 {
        bottom: 39px;
        left: 50%;
        transform: translateX(39px);
    }

    .cta-button .door {
        width: 13px;
        height: 23px;
        bottom: 0;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 60px 20px;
    }

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

    .footer-bottom {
        padding: 20px 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
        margin-bottom: 100px;
    }

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

    .project-subtitle {
        font-size: 12px;
    }

    .image-quote {
        font-size: 16px;
        bottom: 30px;
    }
}

/* About Page Styles */

/* Breadcrumbs */
.breadcrumbs {
    background: var(--white);
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: 80px;
}

.breadcrumbs .container {
    padding: 0 calc(100% / 12);
}

.breadcrumbs a {
    color: var(--black);
    text-decoration: none;
    font-size: 14px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.breadcrumbs a:hover {
    opacity: 1;
}

.breadcrumb-separator {
    margin: 0 10px;
    opacity: 0.4;
}

.breadcrumb-current {
    font-size: 14px;
    color: var(--black);
}

/* Page Hero */
.page-hero {
    background: var(--white);
    padding: 120px 0 80px 0;
    text-align: center;
}

.page-hero .container {
    padding: 0 calc(100% / 12);
}

.page-title {
    font-size: 64px;
    font-weight: 300;
    color: var(--black);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.page-subtitle {
    font-size: 18px;
    font-weight: 400;
    color: var(--black);
    opacity: 0.6;
}

/* About Content */
.about-page-content {
    background: var(--white);
    padding: 80px 0;
}

.about-page-content .container {
    padding: 0 calc(100% / 12);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text-block {
    max-width: 600px;
}

.section-heading {
    font-size: 42px;
    font-weight: 300;
    color: var(--black);
    margin-bottom: 40px;
    letter-spacing: -0.5px;
}

.section-heading.centered {
    text-align: center;
}

.about-text-block p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--black);
    margin-bottom: 20px;
    opacity: 0.8;
}

.about-image-block img {
    width: 100%;
    height: auto;
    display: block;
}

/* Values Section */
.values-section {
    background: #f8f8f8;
    padding: 100px 0;
}

.values-section .container {
    padding: 0 calc(100% / 12);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    margin-top: 60px;
}

.value-card {
    background: var(--white);
    padding: 40px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.value-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 15px;
}

.value-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--black);
    opacity: 0.7;
}

/* Team Section */
.team-section {
    background: var(--white);
    padding: 100px 0;
}

.team-section .container {
    padding: 0 calc(100% / 12);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-top: 60px;
}

.team-member {
    text-align: center;
}

.team-photo {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    margin-bottom: 30px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-name {
    font-size: 22px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 10px;
}

.team-position {
    font-size: 14px;
    font-weight: 400;
    color: var(--black);
    opacity: 0.5;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-description {
    font-size: 15px;
    line-height: 1.6;
    color: var(--black);
    opacity: 0.7;
}

/* Responsive styles for About page */
@media (max-width: 1440px) and (min-width: 769px) {
    .page-hero {
        padding: 100px 0 60px 0;
    }

    .page-title {
        font-size: 56px;
    }

    .about-page-content {
        padding: 60px 0;
    }

    .values-section,
    .team-section {
        padding: 80px 0;
    }
}

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

    .breadcrumbs .container,
    .page-hero .container,
    .about-page-content .container,
    .values-section .container,
    .team-section .container {
        padding: 0 20px;
    }

    .page-hero {
        padding: 80px 0 40px 0;
    }

    .page-title {
        font-size: 42px;
    }

    .page-subtitle {
        font-size: 16px;
    }

    .about-page-content {
        padding: 60px 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section-heading {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .values-section,
    .team-section {
        padding: 60px 0;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
    }

    .value-card {
        padding: 30px;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-top: 40px;
    }
}

/* Contact Popup */
.contact-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.contact-popup.active {
    opacity: 1;
    visibility: visible;
}

.popup-close {
    position: absolute;
    top: 40px;
    right: calc(100% / 12);
    font-size: 48px;
    color: var(--black);
    cursor: pointer;
    line-height: 1;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.popup-close:hover {
    opacity: 1;
}

.popup-content {
    max-width: 600px;
    width: 100%;
    padding: 0 calc(100% / 12);
}

.popup-title {
    font-size: 48px;
    font-weight: 300;
    color: var(--black);
    margin-bottom: 60px;
    letter-spacing: -1px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    width: 100%;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 20px 0;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    background: transparent;
    font-size: 16px;
    font-family: 'Nunito Sans', sans-serif;
    color: var(--black);
    transition: border-color 0.3s ease;
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--black);
    opacity: 0.4;
}

.form-group input:focus,
.form-group textarea:focus {
    border-bottom-color: var(--black);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    padding: 20px;
    background: var(--black);
    color: var(--white);
    border: none;
    font-size: 16px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s ease;
    margin-top: 20px;
}

.submit-btn:hover {
    opacity: 0.8;
}

/* Services Page */
.services-page-content {
    background: var(--white);
    padding: 80px 0;
}

.services-page-content .container {
    padding: 0 calc(100% / 12);
}

.service-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 120px;
    align-items: center;
}

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

.service-item.reverse {
    direction: rtl;
}

.service-item.reverse > * {
    direction: ltr;
}

.service-image {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
}

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

.service-info {
    max-width: 600px;
}

.service-title {
    font-size: 36px;
    font-weight: 300;
    color: var(--black);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.service-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--black);
    opacity: 0.8;
    margin-bottom: 30px;
}

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

.service-features li {
    font-size: 15px;
    color: var(--black);
    opacity: 0.7;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.service-features li:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.service-link {
    display: inline-block;
    font-size: 14px;
    color: var(--black);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid var(--black);
    padding-bottom: 2px;
    transition: opacity 0.3s ease;
}

.service-link:hover {
    opacity: 0.6;
}

/* Process Section */
.process-section {
    background: #f8f8f8;
    padding: 100px 0;
}

.process-section .container {
    padding: 0 calc(100% / 12);
}

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

.process-step {
    text-align: center;
}

.step-number {
    font-size: 48px;
    font-weight: 300;
    color: var(--black);
    opacity: 0.3;
    margin-bottom: 20px;
}

.step-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 15px;
}

.step-text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--black);
    opacity: 0.7;
}

/* Responsive for Services Page */
@media (max-width: 1440px) and (min-width: 769px) {
    .services-page-content {
        padding: 60px 0;
    }

    .service-item {
        gap: 60px;
        margin-bottom: 80px;
    }

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

    .popup-title {
        font-size: 36px;
        margin-top: 40px;
    }
}

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

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

    .service-item,
    .service-item.reverse {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 60px;
        direction: ltr;
    }

    .service-title {
        font-size: 28px;
    }

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

    .process-section .container {
        padding: 0 20px;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-top: 40px;
    }

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

@media (max-width: 1440px) and (min-width: 769px) {
    .popup-title {
        font-size: 36px;
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .popup-close {
        top: 20px;
        right: 20px;
        font-size: 36px;
    }

    .popup-content {
        padding: 0 20px;
    }

    .popup-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .form-group input,
    .form-group textarea {
        padding: 15px 0;
        font-size: 15px;
    }

    .submit-btn {
        padding: 18px;
    }
}

/* ============================================
   Portfolio Page Styles
   ============================================ */

.portfolio-section {
    padding: 80px 0 120px;
    background: #fff;
}

.portfolio-section .container {
    padding: 0 calc(100% / 12);
}

.portfolio-tabs {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.portfolio-tab {
    background: transparent;
    border: none;
    color: var(--black);
    padding: 0;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    cursor: pointer;
    transition: opacity 0.3s ease;
    opacity: 0.3;
}

.portfolio-tab:hover {
    opacity: 0.6;
}

.portfolio-tab.active {
    opacity: 1;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 40px;
}

.portfolio-card {
    background: #fff;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}

.portfolio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.portfolio-card-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: #f5f5f5;
}

.portfolio-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.portfolio-card-content {
    padding: 30px;
}

.portfolio-card-title {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #2C2C2C;
    margin-bottom: 15px;
}

.portfolio-card-description {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.portfolio-card-meta {
    display: flex;
    gap: 20px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 13px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.portfolio-empty {
    text-align: center;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 18px;
    color: #999;
    padding: 80px 20px;
    grid-column: 1 / -1;
}

/* Admin Styles for Portfolio */
.admin-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Nunito Sans', sans-serif;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #D4AF37;
}

.admin-header h1 {
    font-size: 32px;
    color: #2C2C2C;
}

.admin-nav {
    display: flex;
    gap: 20px;
}

.admin-nav-link {
    color: #D4AF37;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.admin-nav-link:hover {
    color: #B8941E;
}

.admin-section {
    background: #fff;
    padding: 40px;
    margin-bottom: 40px;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
}

.admin-section h2 {
    font-size: 24px;
    color: #2C2C2C;
    margin-bottom: 30px;
}

.admin-form {
    max-width: 800px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.admin-form .form-group {
    margin-bottom: 25px;
}

.admin-form label {
    display: block;
    font-weight: 600;
    color: #2C2C2C;
    margin-bottom: 8px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.admin-form input[type="text"],
.admin-form input[type="number"],
.admin-form select,
.admin-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 15px;
    transition: border-color 0.3s ease;
}

.admin-form input:focus,
.admin-form select:focus,
.admin-form textarea:focus {
    outline: none;
    border-color: #D4AF37;
}

.admin-form input[type="file"] {
    padding: 10px 0;
}

.preview {
    margin-top: 15px;
}

.preview img {
    max-width: 300px;
    height: auto;
    border-radius: 4px;
    border: 1px solid #ddd;
}

.btn-primary {
    background: #D4AF37;
    color: #fff;
    border: none;
    padding: 15px 40px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.3s ease;
    border-radius: 4px;
}

.btn-primary:hover {
    background: #B8941E;
}

.projects-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.project-item {
    display: grid;
    grid-template-columns: 200px 1fr auto;
    gap: 20px;
    padding: 20px;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    align-items: center;
    transition: box-shadow 0.3s ease;
}

.project-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.project-item-image {
    width: 200px;
    height: 150px;
    overflow: hidden;
    border-radius: 4px;
}

.project-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-item-content h3 {
    font-size: 20px;
    color: #2C2C2C;
    margin-bottom: 8px;
}

.project-category {
    color: #D4AF37;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    margin-bottom: 10px;
}

.project-item-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.project-meta {
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: #999;
}

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

.btn-edit,
.btn-delete {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-edit {
    background: #4CAF50;
    color: #fff;
}

.btn-edit:hover {
    background: #45a049;
}

.btn-delete {
    background: #f44336;
    color: #fff;
}

.btn-delete:hover {
    background: #da190b;
}

.empty-state {
    text-align: center;
    color: #999;
    font-size: 16px;
    padding: 40px;
}

.admin-login {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.login-box {
    background: #fff;
    padding: 60px;
    border-radius: 8px;
    max-width: 400px;
    width: 90%;
}

.login-box h2 {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 24px;
    color: #2C2C2C;
    margin-bottom: 30px;
    text-align: center;
}

.login-box input {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 15px;
    margin-bottom: 20px;
}

.login-box button {
    width: 100%;
    background: #D4AF37;
    color: #fff;
    border: none;
    padding: 15px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.login-box button:hover {
    background: #B8941E;
}

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 20px;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-notice.show {
    transform: translateY(0);
}

.cookie-notice-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cookie-notice-text {
    font-size: 14px;
    color: var(--black);
    line-height: 1.5;
}

.cookie-notice-button {
    background: var(--black);
    color: var(--white);
    border: none;
    padding: 10px 30px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s ease;
    white-space: nowrap;
}

.cookie-notice-button:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .cookie-notice {
        padding: 15px 20px;
    }

    .cookie-notice-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .cookie-notice-text {
        font-size: 13px;
    }

    .cookie-notice-button {
        width: 100%;
        padding: 12px 20px;
    }
}

/* Responsive Portfolio */
@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .portfolio-tabs {
        flex-direction: column;
        align-items: stretch;
    }

    .portfolio-tab {
        text-align: center;
    }

    .project-item {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .project-item-image {
        width: 100%;
        height: 200px;
    }

    .project-item-actions {
        flex-direction: row;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .admin-header {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .admin-nav {
        flex-direction: column;
    }
}
