.as-hero-title {
    font-size: clamp(36px, 6vw, 42px);
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-dark);
    letter-spacing: -0.02em;
    margin-bottom: 5px;
    animation: heroFadeUp 0.8s ease forwards;
}

.as-project-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    min-height: 600px;
    background: #fff;
}

.as-nav-sidebar {
    background: #fdfdfd;
    border-right: 1px solid #eee;
    padding: 60px 40px;
    position: sticky;
    top: 0;
    height: fit-content;
}

.as-sidebar-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--secondary-color);
    margin-bottom: 30px;
}

.as-nav-item {
    list-style: none;
    padding: 0;
    margin: 0;
}

.as-nav-link {
    display: block;
    padding: 15px 0;
    font-size: 18px;
    font-weight: 700;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border-bottom: 1px solid transparent;
}

.as-nav-link:hover {
    color: #000;
    padding-left: 10px;
}

.as-nav-link.active {
    color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
    padding-left: 10px;
}

.as-display-area {
    padding: 0 80px 60px;
}

.as-tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.as-tab-content.active {
    display: block;
}

.as-section-title {
    font-size: 32px;
    font-weight: 800;
    margin: 0 0 40px 0;
    color: #000;
    position: relative;
}

.as-section-title::after {
    content: "";
    display: block;
    width: 40px;
    height: 3px;
    background: var(--secondary-color);
    margin-top: 10px;
}

.as-slideshow-container {
    position: relative;
    max-width: 100%;
    margin: auto;
    overflow: hidden;
    border: 1px solid #eee;
    background: #fff;
    border-radius: 12px;
}

.as-slide {
    display: none;
    padding: 50px;
}

.as-slide.active {
    display: block;
}

.as-slide-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: center;
}

.as-slide-logo {
    background: #fff;
    padding: 40px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 250px;
}

.as-slide-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.as-slide-content h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
}

.as-slide-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.as-slide-btn {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.05);
    color: #000;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    z-index: 10;
}

.as-slide-btn:hover {
    background: var(--secondary-color);
    color: #fff;
}

.prev {
    left: 15px;
}

.next {
    right: 15px;
}

.as-dots-container {
    text-align: center;
    padding: 20px 0;
    background: #fdfdfd;
    border-top: 1px solid #eee;
}

.dot {
    cursor: pointer;
    height: 10px;
    width: 10px;
    margin: 0 4px;
    background-color: #ddd;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.dot.active,
.dot:hover {
    background-color: var(--secondary-color);
    width: 25px;
    border-radius: 5px;
}

.as-button-sm {
    display: inline-block;
    padding: 10px 24px;
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color) !important;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: all 0.3s ease;
}

.as-button-sm:hover {
    background: var(--primary-color);
    color: #fff !important;
}

.as-card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.as-project-card {
    background: #fff;
    border: 1px solid #eee;
    padding: 40px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.as-project-card:hover {
    border-color: #000;
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.as-project-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 16px;
}

.as-project-card h4::after {
    content: "";
    display: block;
    width: 40px;
    height: 3px;
    background: var(--secondary-color);
    margin-top: 10px;
}

.as-project-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 0;
}

@media (max-width: 1024px) {
    .as-project-layout {
        grid-template-columns: 1fr;
    }

    .as-nav-sidebar {
        padding: 40px;
        border-right: none;
        border-bottom: 1px solid #eee;
        position: static;
    }

    .as-sidebar-label {
        display: none;
    }

    .as-nav-item {
        display: flex;
        gap: 20px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .as-display-area {
        padding: 40px;
    }

    .as-slide-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .as-display-area {
        padding: 20px;
    }

    .as-slide {
        padding: 30px 15px;
    }

    .as-card-grid {
        grid-template-columns: 1fr;
    }
}