* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
}
/* Navbar styles extracted from your stylesheet (scope: header + nav + dropdown + mobile) */

/* MAIN HEADER */
.main-header {
    background: #FFFFFF;
    width: 100%;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #EEEEEE;
}

/* Container */
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 85px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    padding: 0 40px;
}

/* LOGO */
.header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    flex-shrink: 0;
    margin-right: auto;
}

.header-logo .logo-icon {
    width: 48px;
    height: 48px;
    background: #113768;
    border-radius: 16px;
    border: 2px solid rgba(17, 55, 104, 0.15);
    box-shadow: 0 4px 16px rgba(21, 57, 106, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease;
}

.header-logo .logo-icon:hover {
    transform: scale(1.05);
}

.header-logo .h-letter {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1;
}

.header-logo .logo-text {
    display: flex;
    flex-direction: column;
    color: #113768;
}

.header-logo .company-main {
    font-size: 1rem;
    font-weight: 700;
    color: #113768;
    letter-spacing: 0.5px;
}

.header-logo .company-sub {
    font-size: 0.7rem;
    color: #7C7C7C;
    letter-spacing: 0.5px;
}

/* NAVIGATION */
.header-nav-left {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-left: auto;
}

.header-nav-right {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-left: auto;
}

.header-nav-left .nav-link,
.header-nav-right .nav-link {
    color: #222222;
    font-weight: 300;
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.3s ease;
    letter-spacing: 0.5px;
    padding: 8px 0;
    position: relative;
}

.header-nav-left .nav-link:hover,
.header-nav-right .nav-link:hover {
    color: #3A68B8;
}

.header-nav-left .nav-link.active,
.header-nav-right .nav-link.active {
    color: #3A68B8;
}

.header-nav-left .nav-link.active::after,
.header-nav-right .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #3A68B8;
}

/* CTA BUTTON */
.header-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: transparent;
    border: 1px solid #3A68B8;
    border-radius: 999px;
    color: #3A68B8;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.header-cta-btn:hover {
    background: #3A68B8;
    color: #FFFFFF;
}

/* MOBILE MENU TOGGLE */
.header-menu {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    width: 28px;
    height: 28px;
    justify-content: center;
    position: absolute;
    right: 40px;
}

.header-menu span {
    display: block;
    height: 2px;
    width: 100%;
    background: #222222;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.header-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.header-menu.active span:nth-child(2) {
    opacity: 0;
}

.header-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* DROPDOWN */
.nav-dropdown {
    position: relative;
}

.nav-dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: #FFFFFF;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 12px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 9999;
    border: 1px solid #EEEEEE;
}

.nav-dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown .dropdown-menu li a {
    color: #222222;
    font-size: 0.9rem;
    font-weight: 300;
    display: block;
    padding: 10px 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.nav-dropdown .dropdown-menu li a:hover {
    background: #F7F7F7;
    color: #3A68B8;
}

/* RESPONSIVE - MOBILE */
@media (max-width: 1024px) {
    .header-menu {
        display: flex;
    }

    .header-nav-left,
    .header-nav-right {
        position: fixed;
        top: 117px;
        left: 0;
        right: 0;
        background: #FFFFFF;
        flex-direction: column;
        padding: 30px 40px;
        gap: 20px;
        margin: 0;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        max-height: calc(100vh - 117px);
        overflow-y: auto;
    }

    .header-nav-left.active {
        transform: translateX(0);
    }

    .header-nav-right {
        top: auto;
        bottom: 0;
        transform: translateX(100%);
    }

    .header-nav-right.active {
        transform: translateX(0);
    }

    .nav-dropdown .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 20px;
        margin-top: 10px;
    }

    .header-logo {
        position: static;
        transform: none;
        padding: 0;
        margin-right: auto;
    }
}
/* HERO SECTION - SOFT PASTEL K-STYLE */
.hero-section-kstyle {
    background-color: #F7F8FA;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 40px;
}

.hero-content-kstyle {
    text-align: center;
    max-width: 1000px;
}

.hero-title-kstyle {
    font-size: 5.5rem;
    font-weight: 200;
    letter-spacing: 24px;
    color: #2C3E50;
    margin-bottom: 40px;
    line-height: 1.2;
}

.hero-subtitle-kstyle {
    font-size: 1.1rem;
    color: #7B8794;
    line-height: 2;
    font-weight: 300;
    letter-spacing: 2px;
    max-width: 650px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section-kstyle {
        padding: 80px 20px;
        min-height: 50vh;
    }
    
    .hero-title-kstyle {
        font-size: 3rem;
        letter-spacing: 12px;
        margin-bottom: 30px;
    }
    
    .hero-subtitle-kstyle {
        font-size: 0.95rem;
        letter-spacing: 1px;
    }
}

@media (max-width: 480px) {
    .hero-title-kstyle {
        font-size: 2.2rem;
        letter-spacing: 8px;
    }
    
    .hero-subtitle-kstyle {
        font-size: 0.9rem;
    }
}

/* CATEGORY BAR - Capsule Style Korean Tabs */
.category-bar {
    background-color: #FFFFFF;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.category-container {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.category-btn {
    padding: 14px 32px;
    border-radius: 18px;
    border: none;
    background-color: #E9EBEE;
    color: #5A6978;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.category-btn:hover {
    background-color: #D8DCE1;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(58, 104, 184, 0.15);
}

.category-btn.active {
    background-color: #3A68B8;
    color: #FFFFFF;
    box-shadow: 0 4px 16px rgba(58, 104, 184, 0.25);
}

.category-btn.active:hover {
    background-color: #2E5499;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .category-bar {
        padding: 40px 15px;
    }
    
    .category-container {
        gap: 12px;
    }
    
    .category-btn {
        padding: 12px 24px;
        font-size: 11px;
        letter-spacing: 1px;
    }
}

@media (max-width: 480px) {
    .category-container {
        gap: 10px;
    }
    
    .category-btn {
        padding: 10px 20px;
        font-size: 10px;
    }
}

/* SECTION 1 - CONSTRUCTION PROJECTS (Korean Magazine Blocks) */
.construction-section {
    background-color: #FFFFFF;
    padding: 100px 20px;
}

.construction-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-title-kstyle {
    font-size: 2.5rem;
    font-weight: 200;
    letter-spacing: 8px;
    color: #2C3E50;
    margin-bottom: 60px;
    text-align: left;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(44, 62, 80, 0.04);
    text-transform: uppercase;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.project-card {
    background-color: #FFFFFF;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0px 4px 18px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    text-decoration: none;
    display: block;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0px 8px 28px rgba(0, 0, 0, 0.12);
    background-color: #F8F9FA;
}

.project-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-info {
    padding: 28px 24px;
}

.project-title {
    font-size: 1.1rem;
    font-weight: 400;
    color: #2C3E50;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.project-location {
    font-size: 0.9rem;
    font-weight: 300;
    color: #7B8794;
    letter-spacing: 0.5px;
    margin: 0;
}

/* View More Button */
.view-more-container {
    margin-top: 60px;
    text-align: center;
}

.view-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 40px;
    background-color: transparent;
    color: #3A68B8;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    border: 2px solid #3A68B8;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.view-more-btn:hover {
    background-color: #3A68B8;
    color: #FFFFFF;
    transform: translateX(4px);
}

.view-more-btn i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.view-more-btn:hover i {
    transform: translateX(4px);
}

/* Responsive Design for View More */
@media (max-width: 768px) {
    .view-more-container {
        margin-top: 40px;
    }
    
    .view-more-btn {
        padding: 12px 35px;
        font-size: 0.9rem;
        letter-spacing: 1px;
    }
}

/* SECTION 2 - EMS PROJECTS (Soft Linear Blocks) */
.ems-section {
    background-color: #F7F8FA;
    padding: 100px 20px;
}

.ems-container {
    max-width: 1400px;
    margin: 0 auto;
}

.ems-projects-list {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.ems-project-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    background-color: #FFFFFF;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
}

.ems-project-block:hover {
    box-shadow: 0px 8px 32px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

/* Image Left Layout */
.ems-project-block.image-left {
    grid-template-areas: "image content";
}

.ems-project-block.image-left .ems-project-image {
    grid-area: image;
}

.ems-project-block.image-left .ems-project-content {
    grid-area: content;
    padding: 50px 60px 50px 20px;
}

/* Image Right Layout */
.ems-project-block.image-right {
    grid-template-areas: "content image";
}

.ems-project-block.image-right .ems-project-image {
    grid-area: image;
}

.ems-project-block.image-right .ems-project-content {
    grid-area: content;
    padding: 50px 20px 50px 60px;
}

.ems-project-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
    overflow: hidden;
}

.ems-project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ems-project-block:hover .ems-project-image img {
    transform: scale(1.05);
}

.ems-project-title {
    font-size: 1.8rem;
    font-weight: 300;
    color: #2C3E50;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.ems-project-subtitle {
    font-size: 0.95rem;
    font-weight: 400;
    color: #3A68B8;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.ems-project-description {
    font-size: 1rem;
    font-weight: 300;
    color: #5A6978;
    line-height: 1.8;
    margin-bottom: 28px;
    letter-spacing: 0.3px;
}

.ems-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background-color: transparent;
    color: #3A68B8;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 1px;
    border: 1px solid #3A68B8;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.ems-view-btn:hover {
    background-color: #3A68B8;
    color: #FFFFFF;
    transform: translateX(4px);
}

.ems-view-btn i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.ems-view-btn:hover i {
    transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .ems-project-block {
        gap: 30px;
    }
    
    .ems-project-block.image-left .ems-project-content,
    .ems-project-block.image-right .ems-project-content {
        padding: 40px 30px;
    }
    
    .ems-project-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .ems-section {
        padding: 60px 15px;
    }
    
    .ems-projects-list {
        gap: 40px;
    }
    
    .ems-project-block,
    .ems-project-block.image-left,
    .ems-project-block.image-right {
        grid-template-columns: 1fr;
        grid-template-areas: 
            "image"
            "content";
    }
    
    .ems-project-block.image-left .ems-project-content,
    .ems-project-block.image-right .ems-project-content {
        padding: 30px 25px;
    }
    
    .ems-project-image {
        min-height: 280px;
    }
    
    .ems-project-title {
        font-size: 1.3rem;
    }
    
    .ems-project-description {
        font-size: 0.95rem;
        margin-bottom: 24px;
    }
}

@media (max-width: 480px) {
    .ems-project-title {
        font-size: 1.15rem;
    }
    
    .ems-project-subtitle {
        font-size: 0.85rem;
    }
    
    .ems-project-description {
        font-size: 0.9rem;
    }
    
    .ems-view-btn {
        padding: 10px 24px;
        font-size: 0.9rem;
    }
}

/* SECTION 3 - EXHIBITION & EVENTS (Korean Gallery Strip) */
.exhibition-section {
    background-color: #FFFFFF;
    padding: 100px 20px;
}

.exhibition-container {
    max-width: 1600px;
    margin: 0 auto;
}

.gallery-row {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.gallery-row-main {
    justify-content: space-between;
}

.gallery-row-small {
    justify-content: flex-start;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    display: block;
}

.gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: 0px 12px 40px rgba(0, 0, 0, 0.12);
}

/* Gallery Item Sizes */
.gallery-item.large {
    flex: 0 0 calc(35% - 15px);
    height: 480px;
}

.gallery-item.medium {
    flex: 0 0 calc(22% - 15px);
    height: 480px;
}

.gallery-item.small {
    flex: 0 0 calc(18% - 24px);
    height: 280px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    padding: 30px 25px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    color: white;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.gallery-overlay p {
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

/* SECTION 4 - MARKETING WORKS (Poster Grid + Digital Previews) */
.marketing-section {
    background-color: #F7F8FA;
    padding: 100px 20px;
}

.marketing-container {
    max-width: 1400px;
    margin: 0 auto;
}

.marketing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.marketing-item {
    text-decoration: none;
    display: block;
    transition: transform 0.4s ease;
}

.marketing-item:hover {
    transform: translateY(-8px);
}

.marketing-image {
    position: relative;
    width: 100%;
    aspect-ratio: 5 / 7;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid rgba(44, 62, 80, 0.08);
    background-color: #FFFFFF;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.4s ease;
}

.marketing-item:hover .marketing-image {
    box-shadow: 0px 12px 40px rgba(0, 0, 0, 0.12);
}

.marketing-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.marketing-item:hover .marketing-image img {
    transform: scale(1.05);
}

.marketing-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(242, 244, 247, 0.15), rgba(237, 243, 250, 0.15));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.marketing-item:hover .marketing-overlay {
    opacity: 1;
}

.marketing-caption {
    margin-top: 20px;
    font-size: 0.95rem;
    font-weight: 300;
    color: #5A6978;
    letter-spacing: 1px;
    text-align: center;
    line-height: 1.6;
}

/* PAGINATION / LOAD MORE (Korean-style minimal) */
.loadmore-section {
    background-color: #FFFFFF;
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loadmore-container {
    text-align: center;
}

.loadmore-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 50px;
    background-color: #E9EBEE;
    color: #5A6978;
    border: none;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: none;
}

.loadmore-btn:hover {
    background-color: #D8DCE1;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.loadmore-btn:active {
    transform: translateY(-1px);
}

.loadmore-btn i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.loadmore-btn:hover i {
    transform: translateY(3px);
}

/* Fade animation on load */
.loadmore-btn {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* FINAL CTA - Ultra Minimal Korean Section */
.final-cta-section {
    background-color: #EDF3FA;
    padding: 120px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.final-cta-container {
    text-align: center;
    max-width: 800px;
}

.final-cta-text {
    font-size: 1.5rem;
    font-weight: 300;
    color: #2C3E50;
    letter-spacing: 1px;
    line-height: 1.8;
    margin-bottom: 50px;
}

.final-cta-btn {
    display: inline-block;
    padding: 16px 60px;
    background-color: #3A68B8;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 2px;
    border-radius: 8px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 16px rgba(58, 104, 184, 0.2);
}

.final-cta-btn:hover {
    background-color: #2E5499;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(58, 104, 184, 0.3);
}

.final-cta-btn:active {
    transform: translateY(-1px);
}

/* RESPONSIVE DESIGN - CONSTRUCTION SECTION */
@media (max-width: 1024px) {
    .construction-section {
        padding: 80px 30px;
    }
    
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .section-title-kstyle {
        font-size: 2rem;
        letter-spacing: 6px;
        margin-bottom: 50px;
    }
}

@media (max-width: 768px) {
    .construction-section {
        padding: 60px 0;
    }
    
    .construction-container {
        padding: 0 20px;
        overflow: hidden;
    }
    
    .projects-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 20px;
        padding: 0 20px 20px 20px;
        margin: 0 -20px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .projects-grid::-webkit-scrollbar {
        display: none;
    }
    
    .project-card {
        flex: 0 0 85%;
        scroll-snap-align: center;
        scroll-snap-stop: always;
    }
    
    .section-title-kstyle {
        font-size: 1.8rem;
        letter-spacing: 4px;
        margin-bottom: 40px;
    }
    
    .project-image {
        height: 240px;
    }
    
    .project-info {
        padding: 24px 20px;
    }
    
    .project-title {
        font-size: 1rem;
        white-space: normal;
    }
}

@media (max-width: 480px) {
    .construction-section {
        padding: 50px 0;
    }
    
    .section-title-kstyle {
        font-size: 1.5rem;
        letter-spacing: 3px;
    }
    
    .project-card {
        flex: 0 0 90%;
    }
    
    .project-image {
        height: 200px;
    }
    
    .exhibition-section {
        padding: 50px 0;
    }
    
    .gallery-item.large,
    .gallery-item.medium,
    .gallery-item.small {
        flex: 0 0 90%;
        height: 220px;
    }
    
    .gallery-overlay {
        padding: 20px 15px;
    }
    
    .marketing-section {
        padding: 50px 0;
    }
    
    .marketing-item {
        flex: 0 0 85%;
    }
    
    .marketing-image {
        border-radius: 10px;
    }
}
    
    .project-info {
        padding: 20px 16px;
    }
}

/* RESPONSIVE DESIGN - EXHIBITION SECTION */
@media (max-width: 1024px) {
    .exhibition-section {
        padding: 80px 30px;
    }
    
    .gallery-row {
        gap: 20px;
    }
    
    .gallery-item.large {
        flex: 0 0 calc(40% - 10px);
        height: 400px;
    }
    
    .gallery-item.medium {
        flex: 0 0 calc(30% - 10px);
        height: 400px;
    }
    
    .gallery-item.small {
        flex: 0 0 calc(20% - 16px);
        height: 240px;
    }
}

@media (max-width: 768px) {
    .exhibition-section {
        padding: 60px 0;
    }
    
    .exhibition-container {
        padding: 0 20px;
        overflow: hidden;
    }
    
    .gallery-row {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 20px;
        margin-bottom: 20px;
        padding: 0 20px 20px 20px;
        margin-left: -20px;
        margin-right: -20px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .gallery-row::-webkit-scrollbar {
        display: none;
    }
    
    .gallery-item.large,
    .gallery-item.medium,
    .gallery-item.small {
        flex: 0 0 85%;
        height: 280px;
        scroll-snap-align: center;
        scroll-snap-stop: always;
    }
    
    .gallery-overlay {
        transform: translateY(0);
        background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    }
    
    .gallery-overlay h4 {
        font-size: 1rem;
    }
    
    .gallery-overlay p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .exhibition-section {
        padding: 50px 0;
    }
    
    .gallery-item.large,
    .gallery-item.medium,
    .gallery-item.small {
        flex: 0 0 90%;
        height: 220px;
    }
    
    .gallery-overlay {
        padding: 20px 15px;
    }
}

/* RESPONSIVE DESIGN - MARKETING SECTION */
@media (max-width: 1024px) {
    .marketing-section {
        padding: 80px 30px;
    }
    
    .marketing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .marketing-section {
        padding: 60px 0;
    }
    
    .marketing-container {
        padding: 0 20px;
        overflow: hidden;
    }
    
    .marketing-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 20px;
        padding: 0 20px 20px 20px;
        margin: 0 -20px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .marketing-grid::-webkit-scrollbar {
        display: none;
    }
    
    .marketing-item {
        flex: 0 0 75%;
        scroll-snap-align: center;
        scroll-snap-stop: always;
    }
    
    .marketing-image {
        aspect-ratio: 4 / 5;
    }
    
    .marketing-caption {
        font-size: 0.9rem;
        margin-top: 16px;
    }
}

@media (max-width: 480px) {
    .marketing-section {
        padding: 50px 0;
    }
    
    .marketing-item {
        flex: 0 0 85%;
    }
    
    .marketing-image {
        border-radius: 10px;
    }
    
    .gallery-item.large,
    .gallery-item.medium,
    .gallery-item.small {
        flex: 0 0 90%;
        height: 220px;
    }
    
    .gallery-overlay {
        padding: 20px 15px;
    }
}

/* RESPONSIVE DESIGN - LOADMORE SECTION */
@media (max-width: 768px) {
    .loadmore-section {
        padding: 60px 20px;
    }
    
    .loadmore-btn {
        padding: 16px 40px;
        font-size: 0.9rem;
        letter-spacing: 1px;
    }
}

@media (max-width: 480px) {
    .loadmore-section {
        padding: 50px 15px;
    }
    
    .loadmore-btn {
        padding: 14px 35px;
        font-size: 0.85rem;
    }
}

/* RESPONSIVE DESIGN - FINAL CTA SECTION */
@media (max-width: 768px) {
    .final-cta-section {
        padding: 80px 20px;
    }
    
    .final-cta-text {
        font-size: 1.2rem;
        margin-bottom: 40px;
        line-height: 1.6;
    }
    
    .final-cta-btn {
        padding: 14px 50px;
        font-size: 0.95rem;
        letter-spacing: 1.5px;
    }
}

@media (max-width: 480px) {
    .final-cta-section {
        padding: 60px 15px;
    }
    
    .final-cta-text {
        font-size: 1.1rem;
        margin-bottom: 35px;
    }
    
    .final-cta-btn {
        padding: 12px 40px;
        font-size: 0.9rem;
        letter-spacing: 1px;
    }
}

/* GLOBAL RESPONSIVE IMAGE FIX */
img {
    max-width: 100%;
    height: auto;
}

/* ENSURE ALL SECTIONS DON'T OVERFLOW */
.construction-section,
.ems-section,
.exhibition-section,
.marketing-section,
.loadmore-section,
.final-cta-section {
    overflow-x: hidden;
}

/* FIX CONTAINER WIDTH ON MOBILE */
@media (max-width: 768px) {
    .construction-container,
    .ems-container,
    .exhibition-container,
    .marketing-container,
    .final-cta-container {
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 480px) {
    .construction-container,
    .ems-container,
    .exhibition-container,
    .marketing-container,
    .final-cta-container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* ========================================
   ADDITIONAL RESPONSIVE BREAKPOINTS
   ======================================== */

/* Extra Small Devices (320px - 375px) */
@media (max-width: 375px) {
    .hero-title-kstyle {
        font-size: 1.8rem;
        letter-spacing: 6px;
    }
    
    .hero-subtitle-kstyle {
        font-size: 0.85rem;
        letter-spacing: 0.5px;
    }
    
    .category-btn {
        padding: 8px 16px;
        font-size: 9px;
        letter-spacing: 0.5px;
    }
    
    .section-title-kstyle {
        font-size: 1.3rem;
        letter-spacing: 2px;
    }
    
    .project-title {
        font-size: 0.95rem;
    }
    
    .project-location {
        font-size: 0.8rem;
    }
    
    .ems-project-title {
        font-size: 1rem;
    }
    
    .marketing-caption {
        font-size: 0.85rem;
    }
    
    .final-cta-text {
        font-size: 1rem;
    }
    
    .final-cta-btn {
        padding: 10px 30px;
        font-size: 0.85rem;
    }
}

/* Large Tablets (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-section-kstyle {
        padding: 100px 40px;
    }
    
    .hero-title-kstyle {
        font-size: 4.5rem;
        letter-spacing: 18px;
    }
    
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }
    
    .project-image {
        height: 260px;
    }
    
    .ems-project-block {
        gap: 40px;
    }
    
    .ems-project-title {
        font-size: 1.6rem;
    }
    
    .gallery-item.large {
        flex: 0 0 calc(45% - 15px);
        height: 380px;
    }
    
    .gallery-item.medium {
        flex: 0 0 calc(27.5% - 15px);
        height: 380px;
    }
    
    .marketing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 45px;
    }
}

/* Extra Large Screens (1600px+) */
@media (min-width: 1600px) {
    .hero-section-kstyle {
        padding: 140px 60px;
    }
    
    .hero-title-kstyle {
        font-size: 6.5rem;
        letter-spacing: 28px;
    }
    
    .hero-subtitle-kstyle {
        font-size: 1.25rem;
        max-width: 800px;
    }
    
    .construction-container,
    .ems-container,
    .exhibition-container,
    .marketing-container {
        max-width: 1600px;
    }
    
    .projects-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 45px;
    }
    
    .project-image {
        height: 320px;
    }
    
    .section-title-kstyle {
        font-size: 3rem;
        letter-spacing: 10px;
    }
    
    .ems-project-image {
        min-height: 450px;
    }
    
    .ems-project-title {
        font-size: 2rem;
    }
    
    .marketing-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 55px;
    }
    
    .final-cta-text {
        font-size: 1.7rem;
    }
}

/* Landscape Orientation for Tablets */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    .hero-section-kstyle {
        min-height: 50vh;
        padding: 80px 40px;
    }
    
    .hero-title-kstyle {
        font-size: 4rem;
        letter-spacing: 16px;
    }
    
    .construction-section,
    .ems-section,
    .exhibition-section,
    .marketing-section {
        padding: 80px 30px;
    }
}

/* Very Small Height Devices */
@media (max-height: 600px) {
    .hero-section-kstyle {
        min-height: auto;
        padding: 60px 20px;
    }
    
    .hero-title-kstyle {
        font-size: 2.5rem;
        letter-spacing: 10px;
        margin-bottom: 20px;
    }
    
    .category-bar {
        padding: 40px 20px;
    }
}