/* ==========================================
   1. GLOBAL STYLES & RESET
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #000;
    color: #fff;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

/* ==========================================
   2. GLOBAL UTILITY CLASSES
   ========================================== */
.section-flexbox {
    display: flex;
    width: 100%;
    padding: 80px 7%;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    min-height: 100vh;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 80px; 
    letter-spacing: 2px;
    line-height: 1;
    margin-bottom: 25px;
}

.section-desc {
    font-family: 'Inter', sans-serif;
    font-size: 15px; 
    line-height: 1.6;
    font-weight: 300;
    color: #e0e0e0;
    margin-bottom: 35px;
}

.btn-talk {
    display: inline-flex;
    align-items: center;
    background-color: #fff;
    color: #000;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.btn-talk:hover {
    transform: scale(1.05);
}

.btn-arrow {
    background-color: #000;
    color: #fff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
    font-size: 14px;
    font-weight: 700;
}

/* ==========================================
   3. HEADER STYLING
   ========================================== */
.main-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2% 7%;
    background: transparent;
}

.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    transition: opacity 0.3s ease;
}

.nav-link:hover {
    opacity: 0.7;
}

.menu-toggle, 
.hamburger-label {
    display: none;
}

/* ==========================================
   4. HERO BANNER SPECIFIC KONTEN
   ========================================== */
.hero-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5)), 
                url('assets/hero-banner.jpg') no-repeat center center/cover;
    z-index: 1;
    align-items: center;
    justify-content: flex-end;
}

.hero-content {
    max-width: 710px;
    display: flex;
    flex-direction: column;
    text-align: right;
    height: 500px;
    justify-content: space-between;
    align-items: flex-end;
}

.hero-title {
    font-size: 150px; 
}

/* ==========================================
   5. ABOUT SECTION SPECIFIC KONTEN
   ========================================== */
.about-section {
    background-color: #ffffff;
    color: #000000;
    z-index: 2;
    padding-top: 0px;
    padding-bottom: 80px;
    gap: 20px;
}

.about-section .section-title {
    color: #000000;
}
.about-section .section-desc {
    color: #333333;
}
.about-section .btn-talk {
    background-color: #000000;
    color: #ffffff;
}
.about-section .btn-arrow {
    background-color: #ffffff;
    color: #000000;
}

.about-left {
    flex: 1;
    padding-top: 80px;
}

.about-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 0px;
}

.lanyard-img {
    max-width: 100%;
    position: relative;
    margin-top: -10.5%;
    height: auto;
    transform-origin: top center;
    animation: swing 3s ease-in-out infinite alternate;
}

@keyframes swing {
    0% { transform: rotate(-2deg); }
    100% { transform: rotate(2deg); }
}

/* ==========================================
   6. EXPERIENCE SECTION SPECIFIC KONTEN
   ========================================== */
.experience-section {
    background-color: #fff;
    color: #000000;
    z-index: 3;
    align-items: center;
    border-top: 1px solid #DFDEDE;
    gap: 60px;
}

.experience-section .section-title {
    color: #000000;
}

.exp-left {
    flex: 1.2;
    display: flex;
    flex-direction: column;
}

.exp-item {
    display: flex;
    align-items: center;
    padding: 30px 0;
    border-bottom: 1px solid #DFDEDE;
}

.exp-item:first-child {
    padding-top: 0;
}

.exp-logo-wrapper {
    width: 60px;
    height: 60px;
    margin-right: 25px;
    flex-shrink: 0;
}

.exp-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.exp-info {
    flex: 1;
}

.exp-info h3 {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 5px;
}

.exp-info p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #555555;
}

.exp-date {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    text-align: right;
    white-space: nowrap;
}

.exp-right {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.tech-stack-container {
    margin-top: auto;
    padding-top: 30px;
}

.tech-stack-title {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 20px;
    text-align: right;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 12px;
    justify-items: end;
}

.tech-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
    width: 55px;
    height: 55px;
}

.tech-card img {
    width: 70%;
    height: 70%;
    object-fit: contain;
}

/* ==========================================
   6.5 PROJECT SECTION SPECIFIC KONTEN
   ========================================== */
.project-section {
    background-color: #ffffff;
    color: #000000;
    width: 100%;
    padding: 80px 7%; 
    display: flex;
    flex-direction: column;
    border-top: 1px solid #DFDEDE;
    position: relative;
    z-index: 4; 
}

.project-header {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 40px;
}

.project-header .section-title {
    flex: 1.2;
    margin-bottom: 0;
}

.project-header .section-desc {
    flex: 1;
    color: #333333;
    margin-bottom: 0;
    padding-top: 10px;
}

.project-slider-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0 50px; 
}

.project-slider {
    display: flex;
    width: 100%;
    justify-content: flex-start; 
    gap: 50px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 40px 10px;
}

.project-slider::-webkit-scrollbar {
    display: none; 
}

.project-card {
    flex: 0 0 380px; 
    display: flex;
    flex-direction: column;
    position: relative;
}

.laptop-container {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center; 
    min-height: 520px;
}

.bg-black-shadow {
    position: absolute;
    left: 10%; 
    top: 0;
    width: 72%; 
    height: 100%;
    background-color: #000000;
    border-radius: 45px;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px 30px;
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.project-card-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 26px;
    color: #ffffff;
    letter-spacing: 1px;
    text-align: left;
}

.btn-see-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    color: #000000;
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 12px;
    cursor: pointer;
    width: fit-content;
}

.btn-see-more .btn-arrow {
    background-color: #000000;
    color: #ffffff;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 12px;
    font-size: 12px;
}

.laptop-img {
    width: 100%;
    max-width: 300px;
    height: auto;
    position: relative;
    transform: translateX(-30px);
    z-index: 2;
    pointer-events: none;
    transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.project-card:hover .bg-black-shadow {
    opacity: 1;
    transform: scale(1);
}

.project-card:hover .laptop-img {
    transform: translateX(8px) scale(1.03); 
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: #ffffff;
    color: #000000;
    border: 1px solid #DFDEDE;
    border-radius: 50%;
    font-size: 32px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.2s ease;
}

.slider-arrow:hover {
    background-color: #000000;
    color: #ffffff;
    border-color: #000000;
}

.prev-arrow {
    left: 0;
}
.next-arrow {
    right: 0;
}

.slider-dots {
    display: flex;
    width: 100%;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.dot {
    width: 8px;
    height: 8px;
    background-color: #cccccc;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: #000000;
}

.project-detail-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    background-color: #ffffff;
    z-index: 1000;
    display: none;
    overflow-y: auto; 
}

.project-detail-overlay.active {
    display: block;
}

.detail-container {
    width: 100%;
    min-height: 100vh;
    position: relative;
}

.detail-content-wrapper {
    display: flex;
    width: 100%;
    min-height: 100vh;
    align-items: stretch;
    gap: 0px;
}

.detail-left {
    flex: 0 0 25%; 
    width: 25%;
    background-color: #000000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 60px 2%;
    min-height: 100vh;
}

.detail-laptop-view {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.detail-mockup-img {
    width: 530px; 
    max-width: none;
    height: auto;
    position: relative;
    z-index: 3;
    transform: translateX(40%); 
}

.btn-visit-site {
    position: absolute;
    bottom: 60px;
    left: 40px; 
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    color: #000000;
    text-decoration: none;
    padding: 14px 35px;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 15px;
    z-index: 4;
    transition: all 0.2s ease;
}

.btn-visit-site:hover {
    background-color: #333333;
    color: #ffffff;
}

.btn-visit-site .btn-arrow {
    background-color: #000000;
    color: #ffffff;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
    font-size: 12px;
}

.btn-close-detail {
    position: absolute;
    top: 40px;
    left: 40px; 
    background: #ffffff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 100;
    transition: transform 0.2s ease;
}

.btn-close-detail:hover {
    transform: scale(1.1);
}

.detail-right {
    flex: 0 0 75%; 
    width: 75%;
    padding: 60px 8% 60px 20%; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
    color: #000000;
    min-height: 100vh;
    overflow-y: auto;
}

.detail-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 70px;
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: 1px;
    color: #000000;
}

.detail-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #555555;
    margin-bottom: 25px;
}

.detail-bullets {
    list-style: none;
    margin-bottom: 35px;
}

.detail-bullets li {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #333333;
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
}

.detail-bullets li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #000000;
    font-size: 18px;
}

.tech-stack-title-small {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #000000;
}

.detail-tech-grid {
    display: flex;
    gap: 10px;
}

.detail-tech-grid .tech-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.06);
    width: 48px;
    height: 48px;
}

.contact-section {
    background-color: #000000;
    color: #ffffff;
    z-index: 5;
    align-items: center;
    justify-content: center;
    border-top: none;
    min-height: 60vh; 
    padding: 100px 7% 60px 7%;
}

.contact-section .section-title {
    color: #ffffff;
    margin-bottom: 0;
}

.contact-section .section-desc {
    color: #aaaaaa;
    max-width: 420px;
    font-size: 16px;
    margin-bottom: 30px;
}
.contact-section .btn-talk {
    background-color: #ffffff;
    color: #000000;
    padding: 16px 36px;
}

.contact-section .btn-arrow {
    background-color: #000000;
    color: #ffffff;
}

.contact-content-wrapper {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.contact-left {
    flex: 1.3;
}

.contact-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.main-footer {
    background-color: #000000;
    color: #ffffff;
    width: 100%;
    padding: 40px 7% 40px 7%;
    border-top: 1px solid #222222;
    position: relative;
    z-index: 6;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.footer-left {
    display: flex;
    align-items: center;
}

.copyright {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #777777;
}

.footer-right {
    display: flex;
    align-items: center;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.social-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    border-radius: 8px;
    width: 42px;
    height: 42px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.social-icon-btn:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.icon-svg {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

/* ==========================================
   7. RESPONSIVE MEDIA QUERIES (TABLET)
   ========================================== */
@media (min-width: 768px) and (max-width: 1024px) {
    .section-flexbox {
        padding: 80px 7%;
        position: relative;
        min-height: 100vh;
        border-top: 1px solid #DFDEDE;
    }

    .section-title {
        font-size: 55px;
    }

    .main-header {
        padding: 4% 7%;
    }

    .hero-banner {
        background-position: 23% center;
        padding: 30% 7%;
        border-top: none;
    }

    .hero-content {
        max-width: 100%;
        justify-content: center;
        align-items: flex-start;
    }

    .hero-title {
        font-size: 139px;
        margin-bottom: 70%;
    }

    .hero-desc {
        font-size: 18px;
        margin-bottom: 30px;
        text-align: left;
    }

    .about-section {
        flex-direction: column;
        border-top: none;
    }

    .about-left {
        padding-top: 0px;
    }

    .about-right {
        order: -1;
        width: 100%;
    }

    .lanyard-img {
        margin-top: -20%;
        max-width: 500px;
    }

    .experience-section {
        flex-direction: column;
        gap: 40px; 
    }

    .exp-left, .exp-right {
        width: 100%;
    }

    .exp-right {
        order: -1;
    }

    .exp-info h3 {
        font-size: 18px;
    }

    .exp-info p, .exp-date {
        font-size: 15px;
    }

    .tech-stack-container {
        padding-top: 0px;
    }

    .tech-stack-title {
        text-align: left;
        margin-bottom: 15px;
    }

    .tech-grid {
        grid-template-columns: repeat(7, 1fr); 
        gap: 12px;
        justify-items: start; 
    }

    .tech-card {
        width: 52px;
        height: 52px;
    }

    .project-section {
        border-top: 1px solid #DFDEDE;
        padding: 80px 7%;         
    }

    .project-header {
        flex-direction: column;
        gap: 15px;
    }

    .project-slider-wrapper {
        padding: 0 40px;
        width: 100%;
    }
    
    .project-slider {
        gap: 30px; 
        padding: 40px 0;
        scroll-snap-type: x mandatory; 
    }

    .project-card {
        flex: 0 0 calc((100% - 30px) / 2); 
        width: calc((100% - 30px) / 2);
        max-width: calc((100% - 30px) / 2);
        min-width: 0;
        scroll-snap-align: start; 
    }

    .laptop-container {
        min-height: 380px; 
        overflow-y: auto; 
    }

    .bg-black-shadow {
        width: 75%;
        height: 100%;
    }

    .laptop-img {
        width: 105%;
        max-width: 100%;
        transform: translateX(0px);
    }

    .project-card:hover .laptop-img {
        transform: translateX(0px) scale(1.02);
    }

    .detail-content-wrapper { 
        flex-direction: column;
        min-height: 100vh; 
    }

    .project-detail-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        overflow-y: scroll;
        -webkit-overflow-scrolling: touch;
    }

    .detail-container {
        height: auto;
        min-height: 100vh;
    }

    .detail-content-wrapper {
        flex-direction: column;
        height: auto;
        min-height: 100vh;
    }

    .detail-left {
        flex: none;
        width: 100%;
        height: auto;
        min-height: 320px;
        padding: 60px 7% 100px 7%;
        background-color: #000000;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: relative;
    }

    .detail-laptop-view { 
        width: 100%; 
        max-width: 440px; 
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 0;
    }

    .detail-mockup-img { 
        width: 100%; 
        max-width: 370px; 
        height: auto;
        transform: none;
        margin-top: 10px;
    }

    .btn-visit-site {
        position: absolute !important;
        bottom: 50px;
        left: 50%;
        transform: translateX(-50%);
        margin-top: 0; 
        padding: 12px 30px;
        font-size: 14px;
        z-index: 999;
    }

    .btn-close-detail { 
        top: 30px; 
        left: 7%; 
        z-index: 1000;
    }

    .detail-right {
        flex: none;
        width: 100%;
        height: auto;
        padding: 40px 7% 80px 7%; 
        background-color: #ffffff;
        overflow-y: auto;
    }

    .contact-section {
        padding: 100px 7%;
        min-height: auto;
    }

    .contact-content-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .contact-section .section-title { font-size: 52px; }
    .contact-section .section-desc { max-width: 100%; }
}

/* ==========================================
   8. RESPONSIVE MEDIA QUERIES (MOBILE)
   ========================================== */
@media (max-width: 767px) {
    .section-flexbox {
        padding: 80px 7%;
        position: relative;
        min-height: auto;
        border-top: 1px solid #DFDEDE;
    }

    .section-title {
        font-size: 47px;
    }

    .main-header {
        padding: 6% 7%;
    }

    .hero-banner {
        padding-bottom: 27%;
        justify-content: center;
        background-position: 27% center;
        border-top: none;
    }

    .hero-content {
        max-width: 100%;
        align-items: flex-start;
        text-align: left;
        justify-content: center;
    }

    .hero-title {
        font-size: 65px;
        margin-bottom: 70%;
    }

    .hero-desc {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .about-section {
        flex-direction: column;
        border-top: none;
    }

    .about-left, .about-right {
        padding-top: 0px;
    }

    .about-right {
        order: -1;
        width: 100%;
    }

    .lanyard-img {
        margin-top: -36%;
        max-width: 400px;
    }

    .experience-section {
        flex-direction: column;
        gap: 60px;
    }

    .exp-left, .exp-right {
        width: 100%;
    }

    .exp-right {
        order: -1;
    }

    .exp-item {
        position: relative;
        padding: 20px 0 40px 0;
    }

    .exp-logo-wrapper {
        width: 50px;
        height: 50px;
        margin-right: 15px;
    }

    .exp-info h3 {
        font-size: 18px;
    }

    .exp-info p {
        font-size: 14px;
    }

    .exp-date {
        position: absolute;
        bottom: 15px;
        left: 65px;
        font-size: 14px;
        text-align: left;
    }

    .tech-stack-container {
        padding-top: 0;
    }

    .tech-stack-title {
        text-align: left;
        margin-bottom: 15px;
    }

    .tech-grid {
        grid-template-columns: repeat(5, 1fr);
        justify-items: start;
    }

    .project-section {
        padding: 80px 7%;
    }

    .project-header {
        flex-direction: column;
        gap: 15px;
    }

    .slider-arrow {
        display: none;
    }

    .project-slider-wrapper {
        padding: 0;
    }
    
    .project-slider { 
        gap: 20px; 
        padding: 30px 0;
        scroll-snap-type: x mandatory;
    }
    
    .project-card { 
        flex: 0 0 100%;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        scroll-snap-align: start;
        box-sizing: border-box;
    }

    .laptop-container {
        min-height: 500px;
    }

    .bg-black-shadow {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #000000;
        border-radius: 40px;
        z-index: 3; 
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 35px 25px;
        opacity: 0;
        transform: scale(0.95);
        transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
    }
    
    .project-card:hover .bg-black-shadow {
        opacity: 1;
        transform: scale(1);
    }
    
    .laptop-img {
        display: block; 
        width: 100%;
        max-width: 280px; 
        height: auto;
        position: relative;
        z-index: 3;
        transform: translateX(0); 
        transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
    }

    .project-card:hover .laptop-img {
        transform: scale(1.02);
    }

    .project-detail-overlay {
        overflow-y: auto;
        min-height: 100vh;
        height: 100%;
    }

    .detail-content-wrapper {
        flex-direction: column;
        height: auto;
        min-height: 100vh;
        background-color: #ffffff;
    }

    .detail-left {
        flex: none;
        width: 100%;
        height: auto;
        min-height: 250px;
        padding: 30px 7% 80px 7%;
        background-color: #000000;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: relative;
    }

    .detail-laptop-view {
        width: 100%;
        max-width: 500px;
    }

    .detail-mockup-img {
        width: 330px;
        transform: translateX(0%);
    }

    .btn-visit-site {
        align-items: center;
        justify-content: center;
        bottom: 30px;
        transform: translateX(50%);
    }

    .btn-close-detail {
        top: 20px;
        left: 20px;
    }

    .detail-right {
        flex: 0 0 75%;
        width: 100%;
        height: auto;
        min-height: 58vh;
        padding: 60px 7% 100px 7%; 
        background-color: #ffffff;
        overflow-y: auto;
    }

    .detail-title {
        font-size: 45px; 
    }

    .btn-talk {
        font-size: 15px;
        padding: 10px 24px;
    }

    .hamburger-label {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 21px;
        cursor: pointer;
        z-index: 200;
    }

    .hamburger-label span {
        display: block;
        height: 3px;
        width: 100%;
        background-color: #fff;
        border-radius: 3px;
        transition: all 0.3s ease;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: right 0.3s ease;
    }

    .menu-toggle:checked ~ .nav-menu {
        right: 0;
    }

    .menu-toggle:checked ~ .hamburger-label span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .menu-toggle:checked ~ .hamburger-label span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle:checked ~ .hamburger-label span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .contact-section {
        padding: 80px 7%;
        min-height: auto;
        border-top: none !important;
    }

    .contact-content-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }

    .contact-section .section-title {
        font-size: 40px;
    }

    .footer-container {
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 30px;
    }
}