/* ========================================
   CEMTEX WEBSITE - COMPLETE CSS PROFESSIONAL
   ✅ Brush TEPAT di belakang teks & responsive
   ✅ Animasi PROFESIONAL & ELEGAN
   ✅ Slider hover SMOOTH tanpa mengganggu
   ✅ Semua font Outfit
======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --red: #D32F2F;
    --cream: #F5EFE6; 
    --container-pad: 4rem;
}

@media (max-width: 1200px) { :root { --container-pad: 3rem; } }
@media (max-width: 768px) { :root { --container-pad: 2rem; } }
@media (max-width: 420px) { :root { --container-pad: 1.5rem; } }

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

html, body {
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
    background: var(--cream);
}

section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ========================================
   ✅ SCROLL ANIMATIONS - PROFESSIONAL
======================================== */
.fade-scroll {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 1s cubic-bezier(0.19, 1, 0.22, 1),
                transform 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.fade-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-scroll.visible .offer-item {
    animation: staggerFadeIn 0.8s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.fade-scroll.visible .offer-item:nth-child(1) { animation-delay: 0.15s; }
.fade-scroll.visible .offer-item:nth-child(2) { animation-delay: 0.3s; }
.fade-scroll.visible .offer-item:nth-child(3) { animation-delay: 0.45s; }
.fade-scroll.visible .offer-item:nth-child(4) { animation-delay: 0.6s; }

@keyframes staggerFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   ✅ BRUSH SYSTEM - TEPAT DI BELAKANG TEKS!
   Brush mengikuti ukuran teks secara OTOMATIS
======================================== */
.text-with-brush {
    position: relative;
    display: inline-block;
    z-index: 2;
}

.brush-behind-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-3deg);
    z-index: -1;
    pointer-events: none;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1),
                transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

/* ✅ Brush muncul saat section visible dengan animasi profesional */
.fade-scroll.visible .brush-behind-text {
    opacity: 0.75;
    animation: brushAppear 1s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

@keyframes brushAppear {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) rotate(-8deg) scale(0.85);
    }
    to {
        opacity: 0.75;
        transform: translate(-50%, -50%) rotate(-3deg) scale(1);
    }
}

/* ✅ BRUSH DECORATION - General untuk brush lainnya */
.brush-decoration {
    position: absolute;
    pointer-events: none;
    object-fit: contain;
    z-index: 1;
    opacity: 0;
    transition: opacity 1s cubic-bezier(0.19, 1, 0.22, 1),
                transform 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.fade-scroll.visible ~ .brush-decoration,
section .fade-scroll.visible ~ .brush-decoration {
    opacity: 0.75;
}

/* INTRO BRUSH */
.brush-intro-main {
    width: clamp(600px, 65vw, 1050px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-3deg);
    z-index: 5;
    opacity: 0;
    animation: brushIntroAppear 1.2s cubic-bezier(0.19, 1, 0.22, 1) 0.5s forwards;
}

@keyframes brushIntroAppear {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) rotate(-8deg) scale(0.9);
    }
    to {
        opacity: 0.85;
        transform: translate(-50%, -50%) rotate(-3deg) scale(1);
    }
}

/* SLIDER BRUSHES */
.brush-slider-top-left {
    width: clamp(200px, 25vw, 350px);
    top: 1%;
    left: 1%;
    transform: rotate(-8deg);
    z-index: 0;
    opacity: 0;
}

.fade-scroll.visible ~ .brush-slider-top-left {
    animation: brushSlideInTopLeft 1s cubic-bezier(0.19, 1, 0.22, 1) 0.3s forwards;
}

@keyframes brushSlideInTopLeft {
    from {
        opacity: 0;
        transform: rotate(-15deg) translateX(-30px) translateY(-30px);
    }
    to {
        opacity: 0.8;
        transform: rotate(-8deg) translateX(0) translateY(0);
    }
}

.brush-slider-bottom-right {
    width: clamp(200px, 25vw, 350px);
    bottom: 5%;
    right: 2%;
    transform: rotate(-10deg);
    z-index: 0;
    opacity: 0;
}

.fade-scroll.visible ~ .brush-slider-bottom-right {
    animation: brushSlideInBottomRight 1s cubic-bezier(0.19, 1, 0.22, 1) 0.5s forwards;
}

@keyframes brushSlideInBottomRight {
    from {
        opacity: 0;
        transform: rotate(-20deg) translateX(30px) translateY(30px);
    }
    to {
        opacity: 0.8;
        transform: rotate(-10deg) translateX(0) translateY(0);
    }
}

/* PROFILE BRUSH */
.brush-profile-main {
    width: clamp(400px, 45vw, 600px);
    top: 15%;
    right: 3%;
    transform: rotate(-25deg);
    z-index: 1;
    opacity: 0;
}

.fade-scroll.visible ~ .brush-profile-main {
    animation: brushProfileAppear 1s cubic-bezier(0.19, 1, 0.22, 1) 0.4s forwards;
}

@keyframes brushProfileAppear {
    from {
        opacity: 0;
        transform: rotate(-35deg) scale(0.9);
    }
    to {
        opacity: 0.75;
        transform: rotate(-25deg) scale(1);
    }
}

/* CATALOG BRUSH */
.brush-catalog-main {
    width: clamp(500px, 55vw, 750px);
    bottom: 10%;
    left: 45%;
    transform: translateX(-50%) rotate(28deg) scaleY(2.5);
    z-index: 1;
    opacity: 0;
}

.fade-scroll.visible ~ .brush-catalog-main {
    animation: brushCatalogAppear 1.2s cubic-bezier(0.19, 1, 0.22, 1) 0.6s forwards;
}

@keyframes brushCatalogAppear {
    from {
        opacity: 0;
        transform: translateX(-50%) rotate(35deg) scaleY(2.3) scale(0.95);
    }
    to {
        opacity: 0.5;
        transform: translateX(-50%) rotate(28deg) scaleY(2.5) scale(1);
    }
}

/* ========================================
   NAVIGATION
======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 1200;
    opacity: 0;
    transition: opacity 0.6s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--cream);
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

.navbar.visible { 
    opacity: 1;
    animation: navbarSlideDown 0.6s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

@keyframes navbarSlideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo {
    height: 80px;
    width: auto;
    margin-left: 5px;
    transform: scale(0.7); /* perkecil logo jadi 70% */
}

.navbar {
    height: 65px; /* atau 70px, sesuaikan */
    padding: 0 var(--container-pad);
    display: flex;
    align-items: center; /* biar logo & menu tetap center vertikal */
}

.menu-btn {
    background: none;
    border: none;
    color: var(--red);
    font-size: 1rem;
    font-weight: 400;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    margin-right: var(--container-pad);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.menu-btn:hover { 
    opacity: 0.7;
    transform: translateX(-3px);
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(232,224,213,0.97);
    backdrop-filter: blur(10px);
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.menu-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.menu-close {
    position: absolute;
    top: 2rem;
    right: 3rem;
    background: none;
    border: none;
    color: var(--red);
    font-size: 2.5rem;
    cursor: pointer;
    font-weight: 300;
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.menu-close:hover { 
    transform: rotate(90deg);
}

.menu-list {
    list-style: none;
    text-align: center;
}

.menu-list li { 
    margin: 1.2rem 0;
    opacity: 0;
    transform: translateY(20px);
}

.menu-overlay.active .menu-list li {
    animation: menuItemAppear 0.5s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.menu-overlay.active .menu-list li:nth-child(1) { animation-delay: 0.1s; }
.menu-overlay.active .menu-list li:nth-child(2) { animation-delay: 0.15s; }
.menu-overlay.active .menu-list li:nth-child(3) { animation-delay: 0.2s; }
.menu-overlay.active .menu-list li:nth-child(4) { animation-delay: 0.25s; }
.menu-overlay.active .menu-list li:nth-child(5) { animation-delay: 0.3s; }
.menu-overlay.active .menu-list li:nth-child(6) { animation-delay: 0.35s; }
.menu-overlay.active .menu-list li:nth-child(7) { animation-delay: 0.4s; }

@keyframes menuItemAppear {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.menu-list a {
    display: inline-block;
    font-size: 2rem;
    padding: 0.5rem 1rem;
    color: var(--red);
    text-decoration: none;
    font-weight: 500;
    font-family: 'Outfit', sans-serif;
    transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

.menu-list a:hover { 
    opacity: 0.6;
    transform: translateX(10px);
}

/* ========================================
   SPLASH SCREEN
======================================== */
#splash {
    background: var(--red);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

#splash.fade-out {
    opacity: 0;
    pointer-events: none;
}

.splash-text {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 700;
    color: white;
    letter-spacing: 0.25em;
    font-family: 'Outfit', sans-serif;
    animation: splashPulse 2s ease-in-out infinite;
}

@keyframes splashPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.progress-container {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.progress-number {
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: white;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
}

.progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    width: 0%;
    transition: width 0.1s linear;
}

/* ========================================
   INTRO SECTION
======================================== */
#intro {
    background: var(--red);
    color: white;
    overflow: hidden;
}

.intro-content {
    text-align: center;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 2rem;
}

.intro-main {
    font-size: clamp(2.5rem, 7vw, 5.5rem);
    font-weight: 700;
    line-height: 1.1;
    z-index: 10;
    color: var(--cream);
    margin: 0 auto;
    text-align: center;
    text-shadow: 0 6px 20px rgba(0,0,0,0.25);
    max-width: 90%;
    white-space: nowrap;
    font-family: 'Outfit', sans-serif;
}

.intro-small {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    z-index: 10;
    font-family: 'Outfit', sans-serif;
}

.intro-year {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    font-size: 0.85rem;
    font-weight: 300;
    z-index: 10;
    font-family: 'Outfit', sans-serif;
}

/* ========================================
   ✅ SLIDER SECTION - SMOOTH & ELEGANT!
   Hover animation TIDAK mengganggu
======================================== */
#slider {
    background: var(--cream);
    padding: 6rem 0;
}

.slider-wrapper {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--container-pad);
}

.slider-container {
    width: 100%;
    height: clamp(350px, 50vw, 550px);
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.slider-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-align: center;
    pointer-events: none;
}

.slider-title h2 {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
    color: #fff;
    text-shadow: 0 12px 35px rgba(0,0,0,0.5);
    letter-spacing: -0.02em;
    line-height: 1;
    white-space: nowrap;
    font-family: 'Outfit', sans-serif;
}

.slider-track {
    display: flex;
    transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
    height: 100%;
}

.slider-item {
    min-width: 100%;
    height: 100%;
    display: flex;
    flex-shrink: 0;
    gap: 0;
}

/* ✅ SLIDER IMAGE - SMOOTH HOVER tanpa mengganggu */
.slider-img {
    flex: 1;
    background: #8B7355;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-right: 2px solid rgba(255,255,255,0.1);
    position: relative;
    overflow: hidden;
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

/* ✅ Overlay untuk smooth effect */
.slider-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 1;
}

.slider-img:hover::before {
    opacity: 0;
}

/* ✅ SMOOTH SCALE - Tidak mengganggu, sangat elegan */
.slider-img:hover {
    transform: scale(1.02);
    z-index: 2;
}

.slider-img:last-child { border-right: none; }

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    color: white;
    border: none;
    width: 80px;
    height: 80px;
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 10;
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.slider-nav:hover {
    transform: translateY(-50%) scale(1.15);
}

.slider-nav::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 130%;
    background: var(--red);
    transform: skewX(-18deg);
    z-index: -1;
    box-shadow: 0 10px 28px rgba(0,0,0,0.15);
    transition: box-shadow 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.slider-nav:hover::before {
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

.slider-nav.prev::before { 
    transform-origin: right center; 
    transform: translateX(-35%) skewX(-18deg); 
}

.slider-nav.next::before { 
    transform-origin: left center; 
    transform: translateX(35%) skewX(-18deg); 
}

.slider-nav.prev { left: -1rem; }
.slider-nav.next { right: -1rem; }

@media (max-width: 768px) {
    .slider-nav {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
}

/* ========================================
   ✅ OUR TEAM SECTION
   Brush TEPAT di belakang "Our Team" & "Team in Action"
======================================== */
#team {
    background: var(--cream);
    padding: clamp(6rem, 100vw, 12rem) 0;
    min-height: auto;
    display: flex;
    align-items: center;
}

.team-content {
    width: 100%;
    max-width: 1200px;
    z-index: 10;
    margin: 0 auto;
    padding: 0 var(--container-pad);
}

.team-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.team-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--red);
    line-height: 1.2;
    letter-spacing: -0.02em;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 0.8rem;
}

.team-subtitle {
    font-size: clamp(0.9rem, 1.2vw, 1rem);
    font-weight: 400;
    color: #888;
    font-family: 'Outfit', sans-serif;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 5rem;
}

.team-member {
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    text-align: center;
}

.fade-scroll.visible .team-member {
    opacity: 1;
    transform: translateY(0);
}

.fade-scroll.visible .team-member:nth-child(1) { transition-delay: 0.1s; }
.fade-scroll.visible .team-member:nth-child(2) { transition-delay: 0.2s; }
.fade-scroll.visible .team-member:nth-child(3) { transition-delay: 0.3s; }
.fade-scroll.visible .team-member:nth-child(4) { transition-delay: 0.4s; }
.fade-scroll.visible .team-member:nth-child(5) { transition-delay: 0.5s; }
.fade-scroll.visible .team-member:nth-child(6) { transition-delay: 0.6s; }

.team-photo-container {
    position: relative;
    width: 100%;
    padding-top: 130%;
    background: #A67C6D;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1),
                box-shadow 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.team-member:hover .team-photo-container {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.team-photo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.team-member:hover .team-photo {
    transform: scale(1.05);
}

.team-name {
    font-size: clamp(0.95rem, 1.1vw, 1.05rem);
    font-weight: 600;
    color: var(--red);
    margin-bottom: 0.3rem;
    font-family: 'Outfit', sans-serif;
}

.team-position {
    font-size: clamp(0.8rem, 0.9vw, 0.85rem);
    font-weight: 400;
    color: #999;
    font-family: 'Outfit', sans-serif;
    line-height: 1.3;
}

.team-photos-title {
    font-size: clamp(1.5rem, 2.2vw, 1.8rem);
    font-weight: 600;
    color: var(--red);
    margin-bottom: 2.5rem;
    text-align: center;
    font-family: 'Outfit', sans-serif;
}

.team-photos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.team-photo-item {
    position: relative;
    width: 100%;
    padding-top: 75%;
    background: #A67C6D;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1),
                box-shadow 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    opacity: 0;
    transform: translateY(20px);
}

.fade-scroll.visible .team-photo-item {
    opacity: 1;
    transform: translateY(0);
}

.fade-scroll.visible .team-photo-item:nth-child(1) { transition-delay: 0.15s; }
.fade-scroll.visible .team-photo-item:nth-child(2) { transition-delay: 0.3s; }
.fade-scroll.visible .team-photo-item:nth-child(3) { transition-delay: 0.45s; }
.fade-scroll.visible .team-photo-item:nth-child(4) { transition-delay: 0.6s; }

.team-photo-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.team-photo-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.team-photo-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .team-photos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .team-photos-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   PROFILE SECTION
======================================== */
#profile {
    background: var(--cream);
    padding: 8rem 0;
    display: flex;
    align-items: flex-start;
}

.profile-content {
    max-width: 600px;
    z-index: 10;
    margin: 0;
    margin-left: var(--container-pad);
    padding: 0;
    padding-right: var(--container-pad);
    text-align: left;
}

.profile-header {
    font-size: clamp(1.8rem, 3.5vw, 2.3rem);
    font-weight: 400;
    color: var(--red);
    margin-bottom: 2rem;
    line-height: 1.3;
    font-family: 'Outfit', sans-serif;
}

.profile-text {
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 400;
    color: var(--red);
    line-height: 1.7;
    font-family: 'Outfit', sans-serif;
}

.profile-text strong { 
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
}

/* ========================================
   CATALOG SECTION
======================================== */
#catalog {
    background: var(--cream);
    padding: 8rem 0;
}

.catalog-inner {
width: 100%;
max-width: 1400px;
margin: 0 auto;
padding: 0 var(--container-pad);
position: relative;
z-index: 2;
}
.catalog-header {
font-size: clamp(1.3rem, 2.5vw, 1.8rem);
font-weight: 600;
color: var(--red);
margin-bottom: 3rem;
line-height: 1.5;
font-family: 'Outfit', sans-serif;
}
.catalog-viewport {
width: 100%;
height: clamp(400px, 55vw, 500px);
position: relative;
overflow: visible;
background: transparent;
}
.catalog-container {
display: flex;
gap: 1.5rem;
position: relative;
height: 100%;
transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
cursor: grab;
background: transparent;
}
.catalog-container:active { cursor: grabbing; }
.catalog-card {
flex: 0 0 clamp(200px, 24vw, 240px);
background: #A67C6D;
display: flex;
flex-direction: column;
align-items: center;
justify-content: flex-end;
position: relative;
padding: 2rem 1rem;
border-radius: 10px;
box-shadow: 0 15px 35px rgba(0,0,0,0.08);
background-size: cover;
background-position: center;
transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1),
box-shadow 0.4s cubic-bezier(0.19, 1, 0.22, 1);
cursor: pointer;
transform-style: preserve-3d;
}
.catalog-card:hover {
transform: translateY(-10px) rotateX(2deg) rotateY(-2deg);
box-shadow: 0 25px 50px rgba(0,0,0,0.18);
}
.catalog-card::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
transition: left 0.6s cubic-bezier(0.19, 1, 0.22, 1);
pointer-events: none;
border-radius: inherit;
}
.catalog-card:hover::before {
left: 100%;
}
.catalog-card:nth-child(1) { height: 340px; align-self: center; }
.catalog-card:nth-child(2) { height: 400px; align-self: flex-end; }
.catalog-card:nth-child(3) { height: 360px; align-self: flex-start; }
.catalog-card:nth-child(4) { height: 440px; align-self: flex-end; }
.catalog-card:nth-child(5) { height: 380px; align-self: flex-start; }
.catalog-card:nth-child(6) { height: 340px; align-self: center; }
.catalog-card:nth-child(7) { height: 420px; align-self: flex-start; }
.catalog-card:nth-child(8) { height: 460px; align-self: flex-end; }
.catalog-card-name {
position: absolute;
bottom: 3rem;
font-size: 1rem;
font-weight: 600;
color: white;
text-shadow: 0 2px 8px rgba(0,0,0,0.6);
font-family: 'Outfit', sans-serif;
}
.catalog-card-sub {
position: absolute;
bottom: 1.5rem;
font-size: 0.75rem;
font-weight: 300;
color: rgba(255,255,255,0.9);
text-shadow: 0 2px 6px rgba(0,0,0,0.5);
font-family: 'Outfit', sans-serif;
}
.catalog-btn {
position: absolute;
top: 50%;
transform: translateY(-50%);
background: transparent;
color: var(--red);
border: none;
width: 35px;
height: 35px;
font-size: 2.2rem;
cursor: pointer;
z-index: 20;
font-weight: 300;
transition: color 0.3s ease, transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
font-family: 'Outfit', sans-serif;
}
.catalog-btn:hover {
color: #8B1F1F;
transform: translateY(-50%) scale(1.3);
}
.catalog-btn.prev { left: 0.5rem; }
.catalog-btn.next { right: 0.5rem; }
@media (max-width: 768px) {
.catalog-btn { display: none; }
.catalog-viewport {
    overflow-x: auto;
    overflow-y: visible;
}
}
/* ========================================
TEXTURE DETAIL MODAL
======================================== */
.texture-modal {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100vh;
background: rgba(232, 224, 213, 0.98);
backdrop-filter: blur(10px);
z-index: 10001;
display: none;
align-items: center;
justify-content: center;
padding: clamp(2rem, 5vw, 4rem);
opacity: 0;
transition: opacity 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}
.texture-modal.active {
display: flex;
animation: modalFadeIn 0.4s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}
@keyframes modalFadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
.texture-modal-content {
width: 100%;
max-width: 1000px;
background: var(--cream);
border-radius: 20px;
padding: 3rem;
position: relative;
max-height: 85vh;
overflow-y: auto;
box-shadow: 0 20px 60px rgba(0,0,0,0.15);
transform: scale(0.95);
animation: modalContentAppear 0.5s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}
@keyframes modalContentAppear {
from {
transform: scale(0.95) translateY(20px);
opacity: 0;
}
to {
transform: scale(1) translateY(0);
opacity: 1;
}
}
.texture-close {
position: absolute;
top: 1.5rem;
right: 2rem;
background: none;
border: none;
color: var(--red);
font-size: 2.5rem;
cursor: pointer;
transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
z-index: 10;
}
.texture-close:hover {
transform: rotate(90deg);
}
.texture-modal-header {
text-align: center;
margin-bottom: 2rem;
}
.texture-modal-title {
font-size: clamp(2rem, 4vw, 2.5rem);
font-weight: 700;
color: var(--red);
margin-bottom: 0.5rem;
font-family: 'Outfit', sans-serif;
}
.texture-modal-subtitle {
font-size: clamp(0.9rem, 1.5vw, 1rem);
font-weight: 400;
color: #666;
font-family: 'Outfit', sans-serif;
}
.texture-colors-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
margin-bottom: 2rem;
}
.texture-color-item {
position: relative;
background: #A67C6D;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1),
box-shadow 0.4s cubic-bezier(0.19, 1, 0.22, 1);
cursor: pointer;
}
.texture-color-item:hover {
transform: translateY(-8px);
box-shadow: 0 15px 45px rgba(0,0,0,0.18);
}
.texture-color-image {
width: 100%;
height: 250px;
background-size: cover;
background-position: center;
transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}
.texture-color-item:hover .texture-color-image {
transform: scale(1.05);
}
.texture-color-name {
padding: 1rem;
background: white;
text-align: center;
}
.texture-color-name h4 {
font-size: 1rem;
font-weight: 600;
color: var(--red);
margin-bottom: 0.3rem;
font-family: 'Outfit', sans-serif;
}
.texture-color-name p {
font-size: 0.85rem;
font-weight: 300;
color: #666;
font-family: 'Outfit', sans-serif;
}
@media (max-width: 768px) {
.texture-modal-content {
padding: 2rem 1.5rem;
}
.texture-colors-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
}

/* ========================================
   TEXTURE MODAL - UPDATE DENGAN BUTTON
======================================== */

/* Update struktur item */
.texture-color-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: default; /* ← Ubah jadi default, bukan pointer */
    display: flex;
    flex-direction: column;
}

.texture-color-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.texture-color-image {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* ✅ WRAPPER BARU untuk Info + Button */
.texture-color-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.texture-color-name {
    flex: 1;
}

.texture-color-name h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 5px 0;
}

.texture-color-name p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

/* ✅ BUTTON DOWNLOAD STYLE */
.texture-download-btn {
    width: 100%;
    padding: 12px 20px;
    background: linear-gradient(135deg, #D32F2F 0%, #B71C1C 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(211, 47, 47, 0.3);
}

.texture-download-btn:hover {
    background: linear-gradient(135deg, #B71C1C 0%, #D32F2F 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(211, 47, 47, 0.4);
}

.texture-download-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(211, 47, 47, 0.3);
}

.texture-download-btn svg {
    width: 18px;
    height: 18px;
}

/* Responsive untuk mobile */
@media (max-width: 768px) {
    .texture-color-image {
        height: 200px;
    }
    
    .texture-color-info {
        padding: 15px;
        gap: 12px;
    }
    
    .texture-download-btn {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
}
/* ========================================
✅ JOURNEY SECTION
Brush TEPAT di belakang "OUR CREATIVE Journey"
======================================== */
#journey {
background: var(--cream);
padding: clamp(4rem, 400px, 8rem) 0;
min-height: 100vh;
display: flex;
align-items: center;
}
.journey-content {
width: 100%;
max-width: 1400px;
display: flex;
justify-content: space-between;
align-items: center;
gap: clamp(3rem, 8vw, 8rem);
z-index: 10;
margin: 0 auto;
padding: 0 var(--container-pad);
}
.journey-left {
flex: 0 0 auto;
position: relative;
z-index: 10;
}
.journey-title-container {
display: flex;
flex-direction: column;
}
.journey-title-line {
display: flex;
align-items: baseline;
gap: 0.5rem;
position: relative;
flex-wrap: nowrap;
}
/* ✅ Wrapper untuk teks + brush */
.journey-text-wrapper {
display: inline-flex;
align-items: baseline;
gap: 0.5rem;
}
.journey-title {
font-size: clamp(2rem, 5vw, 4rem);
font-weight: 700;
color: var(--red);
line-height: 1;
letter-spacing: -0.01em;
font-family: 'Outfit', sans-serif;
white-space: nowrap;
}
.journey-subtitle {
font-size: clamp(1.1rem, 2.2vw, 1.9rem);
font-weight: 400;
color: var(--red);
line-height: 1;
font-family: 'Outfit', sans-serif;
position: relative;
top: -0.2rem;
white-space: nowrap;
}
.journey-right {
flex: 1;
display: flex;
flex-direction: column;
gap: clamp(2rem, 4vw, 3.5rem);
position: relative;
z-index: 10;
min-width: 0;
}
.journey-card {
position: relative;
height: clamp(160px, 22vw, 220px);
width: 100%;
background: #B8A89A;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
border-radius: clamp(12px, 1.5vw, 18px);
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
background-size: cover;
background-position: center;
overflow: visible;
transform-style: preserve-3d;
}
.journey-card:hover {
transform: translateY(-10px) rotateX(3deg) scale(1.02);
box-shadow: 0 30px 70px rgba(0,0,0,0.25);
}
.journey-card::after {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%, rgba(255,255,255,0.08) 100%);
border-radius: inherit;
opacity: 0;
transition: opacity 0.5s cubic-bezier(0.19, 1, 0.22, 1);
pointer-events: none;
}
.journey-card:hover::after {
opacity: 1;
}
.journey-card-number {
position: absolute;
left: clamp(-20px, -2.5vw, -30px);
top: clamp(-10px, -1.5vw, -15px);
font-size: clamp(2.8rem, 5.5vw, 5.5rem);
font-weight: 700;
color: var(--red);
z-index: 15;
line-height: 1;
font-family: 'Outfit', sans-serif;
transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
.journey-card:hover .journey-card-number {
transform: scale(1.1);
}
.journey-card-title {
position: absolute;
right: clamp(-8px, -1.2vw, -12px);
top: clamp(-18px, -2.2vw, -25px);
font-size: clamp(0.75rem, 1vw, 0.95rem);
font-weight: 500;
color: var(--red);
z-index: 15;
background: var(--cream);
padding: clamp(0.3rem, 0.5vw, 0.4rem) clamp(0.5rem, 0.8vw, 0.7rem);
border-radius: 5px;
font-family: 'Outfit', sans-serif;
white-space: nowrap;
transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
.journey-card:hover .journey-card-title {
transform: translateX(-5px);
}
@media (max-width: 1200px) {
.journey-content {
flex-direction: column;
gap: 4rem;
align-items: center;
}
.journey-left {
    width: 100%;
    display: flex;
    justify-content: center;
}

.journey-title-line {
    justify-content: center;
}

.journey-right {
    width: 100%;
    max-width: 600px;
}
}
@media (max-width: 768px) {
.journey-card { height: 160px; }
.journey-card-number { left: -15px; top: -10px; font-size: 2.8rem; }
.journey-card-title { right: -8px; top: -18px; font-size: 0.75rem; }
}
/* ========================================
PORTFOLIO MODAL - RESPONSIVE
======================================== */
.portfolio-modal {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100vh;
background: rgba(232, 224, 213, 0.98);
backdrop-filter: blur(8px);
z-index: 10000;
display: none;
align-items: center;
justify-content: center;
padding: 0;
opacity: 0;
transition: opacity 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}
.portfolio-modal.active {
display: flex;
animation: modalFadeIn 0.4s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}
.portfolio-close {
position: absolute;
top: 2rem;
right: 2rem;
background: none;
border: none;
color: var(--red);
font-size: 2.5rem;
cursor: pointer;
transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
z-index: 10002;
}
.portfolio-close:hover {
transform: rotate(90deg);
}
.portfolio-split-container {
display: flex;
width: 100%;
height: 100vh;
position: relative;
}
.portfolio-left-panel {
width: 30%;
min-width: 320px;
background: var(--cream);
padding: 3rem 2rem;
overflow-y: auto;
display: flex;
flex-direction: column;
gap: 2rem;
border-right: 1px solid rgba(211, 47, 47, 0.1);
animation: slideInLeft 0.6s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}
@keyframes slideInLeft {
from {
opacity: 0;
transform: translateX(-40px);
}
to {
opacity: 1;
transform: translateX(0);
}
}
.portfolio-project-info {
padding-bottom: 1.5rem;
border-bottom: 1px solid rgba(211, 47, 47, 0.15);
}
.portfolio-project-title {
font-size: clamp(1.5rem, 2.5vw, 1.8rem);
font-weight: 700;
color: var(--red);
margin-bottom: 0.5rem;
font-family: 'Outfit', sans-serif;
}
.portfolio-project-meta {
font-size: 0.9rem;
color: #666;
font-family: 'Outfit', sans-serif;
line-height: 1.6;
}
.portfolio-project-meta strong {
color: var(--red);
font-weight: 600;
}
.portfolio-thumbnails {
display: flex;
flex-direction: column;
gap: 0.8rem;
}
.portfolio-thumb {
width: 100%;
height: 120px;
background: #A67C6D;
background-size: cover;
background-position: center;
border-radius: 8px;
cursor: pointer;
transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
border: 3px solid transparent;
opacity: 0;
animation: cascadeFadeIn 0.5s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}
.portfolio-thumb:nth-child(1) { animation-delay: 0.7s; }
.portfolio-thumb:nth-child(2) { animation-delay: 0.8s; }
.portfolio-thumb:nth-child(3) { animation-delay: 0.9s; }
.portfolio-thumb:nth-child(4) { animation-delay: 1s; }
.portfolio-thumb:nth-child(5) { animation-delay: 1.1s; }
.portfolio-thumb:nth-child(6) { animation-delay: 1.2s; }
@keyframes cascadeFadeIn {
from {
opacity: 0;
transform: translateY(15px);
}
to {
opacity: 0.7;
transform: translateY(0);
}
}
.portfolio-thumb:hover {
opacity: 1 !important;
transform: translateX(8px);
box-shadow: 0 10px 25px rgba(0,0,0,0.18);
}
.portfolio-thumb.active {
border-color: var(--red);
opacity: 1 !important;
box-shadow: 0 12px 30px rgba(211, 47, 47, 0.35);
}
.portfolio-right-panel {
flex: 1;
background: #1a1a1a;
display: flex;
align-items: center;
justify-content: center;
position: relative;
animation: slideInRight 0.6s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}
@keyframes slideInRight {
from {
opacity: 0;
transform: translateX(40px);
}
to {
opacity: 1;
transform: translateX(0);
}
}
.portfolio-main-image {
max-width: 90%;
max-height: 85vh;
object-fit: contain;
border-radius: 8px;
box-shadow: 0 20px 60px rgba(0,0,0,0.4);
opacity: 0;
transition: opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1),
transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}
.portfolio-main-image.visible {
opacity: 1;
animation: imageCrossfade 0.7s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}
@keyframes imageCrossfade {
from {
opacity: 0;
filter: blur(12px);
transform: scale(0.95);
}
to {
opacity: 1;
filter: blur(0);
transform: scale(1);
}
}
.portfolio-nav-arrow {
position: absolute;
top: 50%;
transform: translateY(-50%);
background: rgba(211, 47, 47, 0.9);
color: white;
border: none;
width: 50px;
height: 50px;
border-radius: 50%;
font-size: 2rem;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
z-index: 10;
font-family: 'Outfit', sans-serif;
}
.portfolio-nav-arrow:hover {
background: var(--red);
transform: translateY(-50%) scale(1.15);
box-shadow: 0 10px 25px rgba(211, 47, 47, 0.5);
}
.portfolio-nav-arrow.prev { left: 2rem; }
.portfolio-nav-arrow.next { right: 2rem; }
.portfolio-image-counter {
position: absolute;
bottom: 2rem;
left: 50%;
transform: translateX(-50%);
background: rgba(0, 0, 0, 0.7);
color: white;
padding: 0.5rem 1.2rem;
border-radius: 20px;
font-size: 0.9rem;
font-family: 'Outfit', sans-serif;
font-weight: 500;
}
.portfolio-content {
width: 100%;
max-width: 1400px;
padding: 0 var(--container-pad);
}
.portfolio-title {
color: var(--red);
font-size: clamp(2rem, 3.5vw, 2.5rem);
margin-bottom: 2.5rem;
font-weight: 600;
font-family: 'Outfit', sans-serif;
}
.portfolio-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(clamp(250px, 35vw, 350px), 1fr));
gap: 2rem;
max-height: 60vh;
overflow-y: auto;
}
.portfolio-item {
background: #A67C6D;
position: relative;
display: flex;
align-items: center;
justify-content: center;
color: white;
border-radius: 10px;
height: clamp(220px, 35vw, 300px);
background-size: cover;
background-position: center;
opacity: 0;
transform: translateY(30px);
animation: portfolioFadeIn 0.6s cubic-bezier(0.19, 1, 0.22, 1) forwards;
transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1),
box-shadow 0.4s cubic-bezier(0.19, 1, 0.22, 1);
cursor: pointer;
}
.portfolio-item:nth-child(1) { animation-delay: 0.1s; }
.portfolio-item:nth-child(2) { animation-delay: 0.2s; }
.portfolio-item:nth-child(3) { animation-delay: 0.3s; }
.portfolio-item:nth-child(4) { animation-delay: 0.4s; }
.portfolio-item:nth-child(5) { animation-delay: 0.5s; }
.portfolio-item:nth-child(6) { animation-delay: 0.6s; }
@keyframes portfolioFadeIn {
to {
opacity: 1;
transform: translateY(0);
}
}
.portfolio-item:hover {
transform: translateY(-8px);
box-shadow: 0 18px 45px rgba(0,0,0,0.2);
}
.portfolio-desc {
position: absolute;
bottom: 0;
left: 0;
right: 0;
background: rgba(0, 0, 0, 0.75);
color: var(--cream);
padding: 1.5rem;
border-radius: 0 0 10px 10px;
transition: background 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}
.portfolio-item:hover .portfolio-desc {
background: rgba(0, 0, 0, 0.85);
}
.portfolio-desc h4 {
font-size: clamp(1.1rem, 1.8vw, 1.25rem);
font-weight: 600;
margin-bottom: 0.3rem;
color: white;
font-family: 'Outfit', sans-serif;
}
.portfolio-desc p {
font-size: clamp(0.85rem, 1.1vw, 0.9rem);
font-weight: 300;
font-family: 'Outfit', sans-serif;
}
@media (max-width: 1024px) {
.portfolio-split-container {
flex-direction: column;
}
.portfolio-left-panel {
    width: 100%;
    height: 35vh;
    min-width: unset;
    border-right: none;
    border-bottom: 1px solid rgba(211, 47, 47, 0.1);
    padding: 2rem 1.5rem;
}

.portfolio-thumbnails {
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 0.5rem;
}

.portfolio-thumb {
    min-width: 100px;
    height: 80px;
    flex-shrink: 0;
}

.portfolio-right-panel {
    height: 65vh;
}

.portfolio-main-image {
    max-width: 95%;
    max-height: 80%;
}

.portfolio-nav-arrow {
    width: 45px;
    height: 45px;
    font-size: 1.8rem;
}

.portfolio-nav-arrow.prev { left: 1rem; }
.portfolio-nav-arrow.next { right: 1rem; }

.portfolio-image-counter {
    bottom: 1rem;
    font-size: 0.85rem;
}
}
@media (max-width: 768px) {
.portfolio-close {
top: 1rem;
right: 1rem;
font-size: 2rem;
}
.portfolio-left-panel {
    height: 30vh;
    padding: 1.5rem 1rem;
}

.portfolio-project-title {
    font-size: 1.3rem;
}

.portfolio-project-meta {
    font-size: 0.85rem;
}

.portfolio-thumb {
    min-width: 90px;
    height: 70px;
}

.portfolio-right-panel {
    height: 70vh;
}

.portfolio-main-image {
    max-width: 92%;
    max-height: 75%;
}

.portfolio-nav-arrow {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
}

.portfolio-nav-arrow.prev { left: 0.5rem; }
.portfolio-nav-arrow.next { right: 0.5rem; }
.portfolio-grid {
grid-template-columns: 1fr;
max-height: 70vh;
gap: 1.5rem;
}
.portfolio-item {
    height: 250px;
}
}
@media (max-width: 480px) {
.portfolio-left-panel {
height: 25vh;
}
.portfolio-right-panel {
    height: 75vh;
}

.portfolio-thumb {
    min-width: 80px;
    height: 60px;
}

.category {
    font-size: 0.9rem;
    color: var(--red);
    margin-top: 0.3rem;
    font-family: 'Outfit', sans-serif;
}
}
/* ========================================
✅ OFFER SECTION
Brush TEPAT di belakang "Contact Us Now!"
======================================== */
#offer {
background: var(--cream);
padding: 8rem 0;
}
.offer-content {
width: 100%;
max-width: 1400px;
z-index: 10;
margin: 0 auto;
padding: 0 var(--container-pad);
}
.offer-title {
font-size: clamp(2rem, 3.5vw, 2.5rem);
font-weight: 700;
color: var(--red);
margin-bottom: 2.5rem;
font-family: 'Outfit', sans-serif;
}
.offer-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 0;
margin-bottom: 4rem;
}
.offer-item {
border-right: 1.5px solid var(--red);
padding: 1rem 3rem 2.5rem 1.5rem;
min-height: 180px;
opacity: 0;
}
.offer-item:first-child { padding-left: 0; }
.offer-item:last-child { border-right: none; padding-right: 0; }
.offer-item h3 {
font-size: clamp(0.95rem, 1.3vw, 1.05rem);
font-weight: 700;
color: var(--red);
margin-bottom: 0.5rem;
line-height: 1.4;
font-family: 'Outfit', sans-serif;
}
.offer-item .subtitle {
font-size: clamp(0.7rem, 0.95vw, 0.75rem);
color: #888;
margin-bottom: 0.8rem;
font-family: 'Outfit', sans-serif;
}
.offer-item p {
font-size: clamp(0.8rem, 1.1vw, 0.85rem);
color: #555;
line-height: 1.6;
font-family: 'Outfit', sans-serif;
}
.contact-wrapper {
display: flex;
justify-content: space-between;
gap: clamp(3rem, 8vw, 6rem);
margin-bottom: 2.5rem;
}
.contact-left h3 {
font-size: clamp(2rem, 3.5vw, 2.5rem);
font-weight: 700;
color: var(--red);
font-family: 'Outfit', sans-serif;
}
.contact-right {
flex: 1;
max-width: 600px;
}
.contact-right p {
font-size: clamp(0.9rem, 1.3vw, 0.95rem);
font-weight: 300;
color: #555;
font-style: italic;
margin-bottom: 1.8rem;
font-family: 'Outfit', sans-serif;
}
.contact-form {
display: flex;
flex-direction: column;
gap: 1.3rem;
margin-bottom: 1.8rem;
}
.form-group {
display: flex;
flex-direction: column;
}
.form-group label {
font-size: 0.75rem;
color: #888;
margin-bottom: 0.3rem;
font-family: 'Outfit', sans-serif;
}
.form-group input {
border: none;
border-bottom: 1px solid var(--red);
background: transparent;
padding: 0.6rem 0;
font-size: 0.9rem;
font-family: 'Outfit', sans-serif;
color: #333;
width: 100%;
transition: border-bottom 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}
.form-group input:focus {
outline: none;
border-bottom: 2px solid var(--red);
}
.form-group input:-webkit-autofill,
.form-group input:-webkit-autofill:hover,
.form-group input:-webkit-autofill:focus,
.form-group input:-webkit-autofill:active {
-webkit-box-shadow: 0 0 0 1000px var(--cream) inset !important;
-webkit-text-fill-color: #333 !important;
background-color: transparent !important;
transition: background-color 5000s ease-in-out 0s;
}
.submit-btn {
background: var(--red);
color: white;
border: none;
padding: 0.75rem 2.5rem;
font-size: 0.9rem;
font-weight: 600;
cursor: pointer;
font-family: 'Outfit', sans-serif;
align-self: flex-start;
margin-bottom: 1.5rem;
transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
border-radius: 4px;
}
.submit-btn:hover {
background: #B71C1C;
transform: translateY(-3px);
box-shadow: 0 8px 20px rgba(211, 47, 47, 0.4);
}
.contact-info {
font-size: 0.85rem;
color: #666;
line-height: 1.9;
font-family: 'Outfit', sans-serif;
}
.contact-info p {
margin: 0.3rem 0;
font-style: normal;
font-family: 'Outfit', sans-serif;
}
.contact-info strong {
color: var(--red);
font-weight: 600;
font-family: 'Outfit', sans-serif;
}
.contact-info a {
color: var(--red);
text-decoration: none;
font-family: 'Outfit', sans-serif;
transition: opacity 0.3s ease, transform 0.3s ease;
display: inline-block;
}
.contact-info a:hover {
opacity: 0.7;
text-decoration: underline;
transform: translateX(3px);
}
.footer-text {
font-size: clamp(0.95rem, 1.3vw, 1.05rem);
color: var(--red);
font-weight: 700;
line-height: 1.5;
font-family: 'Outfit', sans-serif;
}
@media (max-width: 1024px) {
.offer-grid {
grid-template-columns: repeat(2, 1fr);
gap: 2rem 0;
}
.offer-item {
    padding-right: 2rem;
    border-bottom: 1px solid var(--red);
}

.offer-item:nth-child(2n) { border-right: none; }
.offer-item:nth-child(n+3) { padding-top: 2rem; }
.offer-item:last-child,
.offer-item:nth-last-child(2) { border-bottom: none; }

.contact-wrapper {
    flex-direction: column;
    gap: 3rem;
}
}
@media (max-width: 768px) {
.offer-grid { grid-template-columns: 1fr; }
.offer-item {
    border-right: none;
    border-bottom: 1px solid var(--red);
    padding: 2rem 0;
}

.offer-item:last-child { border-bottom: none; }
}

/* ========================================
   ✅ ANIMASI SUPER KEREN - GEN Z VIBES!
======================================== */

/* Base scroll animation - Fade In Up */
.fade-scroll {
    opacity: 0;
    transform: translateY(100px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
                transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ✅ SMOOTH SCROLLBAR */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--cream);
}

::-webkit-scrollbar-thumb {
    background: var(--red);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #8B1F1F;
}

/* ✅ TEXTAREA STYLING */
.form-group textarea {
    border: none;
    border-bottom: 1px solid var(--red);
    background: transparent;
    padding: 0.6rem 0;
    font-size: 0.9rem;
    font-family: 'Outfit', sans-serif;
    color: #333;
    width: 100%;
    resize: vertical;
    transition: all 0.3s ease;
}

.form-group textarea:focus {
    outline: none;
    border-bottom: 2px solid var(--red);
    transform: translateY(-2px);
}

/* ✅ FORM NOTE */
.form-note {
    font-size: 0.75rem;
    color: #999;
    font-style: italic;
    margin-top: 0.8rem;
    font-family: 'Outfit', sans-serif;
}

/* ✅ BUTTON ARROW ANIMATION */
.btn-arrow {
    display: inline-block;
    transition: transform 0.3s ease;
    margin-left: 0.5rem;
}

.submit-btn:hover .btn-arrow {
    transform: translateX(5px);
}

/* ========================================
   ✅ CATALOG FIX - Tidak hilang lagi!
======================================== */
.catalog-card {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* ========================================
   ✅ TITLE REVEAL ANIMATION
======================================== */
.team-title,
.journey-title,
.offer-title,
.catalog-header,
.profile-header {
    opacity: 0;
    transform: translateX(-80px);
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-scroll.visible .team-title,
.fade-scroll.visible .journey-title,
.fade-scroll.visible .offer-title,
.fade-scroll.visible .catalog-header,
.fade-scroll.visible .profile-header {
    opacity: 1;
    transform: translateX(0);
}

/* ========================================
   ✅ TEAM MEMBERS - STAGGER ANIMATION
======================================== */
.team-member {
    opacity: 0;
    transform: translateY(60px) scale(0.9);
}

.fade-scroll.visible .team-member {
    animation: teamMemberPop 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes teamMemberPop {
    0% {
        opacity: 0;
        transform: translateY(60px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.fade-scroll.visible .team-member:nth-child(1) { animation-delay: 0.1s; }
.fade-scroll.visible .team-member:nth-child(2) { animation-delay: 0.2s; }
.fade-scroll.visible .team-member:nth-child(3) { animation-delay: 0.3s; }
.fade-scroll.visible .team-member:nth-child(4) { animation-delay: 0.4s; }
.fade-scroll.visible .team-member:nth-child(5) { animation-delay: 0.5s; }
.fade-scroll.visible .team-member:nth-child(6) { animation-delay: 0.6s; }

/* ========================================
   ✅ TEAM PHOTOS - WAVE ANIMATION
======================================== */
.team-photo-item {
    opacity: 0;
    transform: translateY(50px) rotateX(20deg);
}

.fade-scroll.visible .team-photo-item {
    animation: photoWave 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes photoWave {
    0% {
        opacity: 0;
        transform: translateY(50px) rotateX(20deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}

.fade-scroll.visible .team-photo-item:nth-child(1) { animation-delay: 0.15s; }
.fade-scroll.visible .team-photo-item:nth-child(2) { animation-delay: 0.3s; }
.fade-scroll.visible .team-photo-item:nth-child(3) { animation-delay: 0.45s; }
.fade-scroll.visible .team-photo-item:nth-child(4) { animation-delay: 0.6s; }

/* ========================================
   ✅ OFFER ITEMS - SLIDE IN FROM LEFT/RIGHT
======================================== */
.offer-item {
    opacity: 0;
}

.offer-item:nth-child(odd) {
    transform: translateX(-80px);
}

.offer-item:nth-child(even) {
    transform: translateX(80px);
}

.fade-scroll.visible .offer-item {
    animation: slideInFromSide 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideInFromSide {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-scroll.visible .offer-item:nth-child(1) { animation-delay: 0.15s; }
.fade-scroll.visible .offer-item:nth-child(2) { animation-delay: 0.3s; }
.fade-scroll.visible .offer-item:nth-child(3) { animation-delay: 0.45s; }
.fade-scroll.visible .offer-item:nth-child(4) { animation-delay: 0.6s; }

/* ========================================
   ✅ JOURNEY CARDS - BOUNCE ENTRANCE
======================================== */
.journey-card {
    opacity: 0;
    transform: scale(0.8) translateY(50px);
}

.fade-scroll.visible .journey-card {
    animation: cardBounce 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes cardBounce {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(50px);
    }
    60% {
        transform: scale(1.05) translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.fade-scroll.visible .journey-card:nth-child(1) { animation-delay: 0.2s; }
.fade-scroll.visible .journey-card:nth-child(2) { animation-delay: 0.4s; }

/* ========================================
   ✅ ENHANCED HOVER EFFECTS
======================================== */
.catalog-card:hover,
.journey-card:hover,
.team-photo-container:hover,
.portfolio-item:hover,
.team-photo-item:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.3);
}

/* Smooth image scale on hover */
.team-photo,
.team-photo-item img {
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.team-member:hover .team-photo,
.team-photo-item:hover img {
    transform: scale(1.1);
}

/* ========================================
   ✅ CONTACT INFO LINKS - SMOOTH UNDERLINE
======================================== */
.contact-info a {
    position: relative;
    display: inline-block;
    transition: color 0.3s ease;
}

.contact-info a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--red);
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-info a:hover::before {
    width: 100%;
}

.contact-info a::after {
    content: '→';
    opacity: 0;
    margin-left: 0;
    transition: all 0.3s ease;
}

.contact-info a:hover::after {
    opacity: 1;
    margin-left: 8px;
}

/* ========================================
   ✅ SUBMIT BUTTON - RIPPLE EFFECT
======================================== */
.submit-btn {
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.submit-btn:hover::before {
    width: 500px;
    height: 500px;
}

.submit-btn:active {
    transform: scale(0.95);
}

/* ========================================
   ✅ FORM INPUTS - FLOATING LABEL EFFECT
======================================== */
.form-group {
    position: relative;
}

.form-group input:focus,
.form-group textarea:focus {
    border-bottom-width: 2px;
}

.form-group label {
    transition: all 0.3s ease;
}

.form-group input:focus + label,
.form-group textarea:focus + label {
    color: var(--red);
    transform: translateY(-5px);
}

/* ========================================
   ✅ BRUSH FLOATING ANIMATION
======================================== */
@keyframes brushFloat {
    0%, 100% {
        transform: translate(-50%, -50%) rotate(-3deg);
    }
    50% {
        transform: translate(-50%, -50%) rotate(-3deg) translateY(-20px);
    }
}

.fade-scroll.visible .brush-behind-text {
    animation: brushAppear 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards,
               brushFloat 12s ease-in-out infinite 2s;
}

@keyframes brushAppear {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) rotate(-10deg) scale(0.8);
    }
    to {
        opacity: 0.75;
        transform: translate(-50%, -50%) rotate(-3deg) scale(1);
    }
}

/* ========================================
   ✅ NAVBAR - SLIDE DOWN
======================================== */
.navbar {
    transform: translateY(-100%);
}

.navbar.visible {
    animation: navSlide 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes navSlide {
    to {
        transform: translateY(0);
    }
}

/* ========================================
   ✅ MENU ITEMS - CASCADE ANIMATION
======================================== */
.menu-list li {
    opacity: 0;
    transform: translateX(-50px);
}

.menu-overlay.active .menu-list li {
    animation: menuCascade 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes menuCascade {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.menu-overlay.active .menu-list li:nth-child(1) { animation-delay: 0.1s; }
.menu-overlay.active .menu-list li:nth-child(2) { animation-delay: 0.15s; }
.menu-overlay.active .menu-list li:nth-child(3) { animation-delay: 0.2s; }
.menu-overlay.active .menu-list li:nth-child(4) { animation-delay: 0.25s; }
.menu-overlay.active .menu-list li:nth-child(5) { animation-delay: 0.3s; }
.menu-overlay.active .menu-list li:nth-child(6) { animation-delay: 0.35s; }
.menu-overlay.active .menu-list li:nth-child(7) { animation-delay: 0.4s; }

/* ========================================
   ✅ MODAL - ZOOM IN
======================================== */
.texture-modal.active .texture-modal-content,
.portfolio-modal.active .portfolio-split-container {
    animation: modalZoom 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes modalZoom {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ========================================
   ✅ PROFILE TEXT - TYPEWRITER EFFECT (SUBTLE)
======================================== */
.profile-text {
    opacity: 0;
}

.fade-scroll.visible .profile-text {
    animation: textReveal 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

@keyframes textReveal {
    to {
        opacity: 1;
    }
}

/* ========================================
   ✅ CATALOG HEADER - GRADIENT TEXT
======================================== */
.catalog-header {
    background: linear-gradient(135deg, var(--red) 0%, #FF6B6B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========================================
   ✅ PAGE LOAD - FADE IN
======================================== */
body {
    animation: pageLoad 0.8s ease forwards;
}

@keyframes pageLoad {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ========================================
   ✅ IMAGE LAZY LOAD EFFECT
======================================== */
img {
    opacity: 0;
    transition: opacity 0.6s ease;
}

img[src] {
    animation: imgFadeIn 0.6s ease forwards;
}

@keyframes imgFadeIn {
    to {
        opacity: 1;
    }
}

/* ========================================
   ✅ SMOOTH TRANSITIONS FOR ALL
======================================== */
* {
    transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ========================================
   ✅ PORTFOLIO ITEMS - SCALE UP
======================================== */
.portfolio-item {
    opacity: 0;
    transform: scale(0.9);
}

@keyframes portfolioFadeIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ========================================
   END OF KEREN GEN Z ANIMATIONS! 🔥
======================================== */
/* ========================================
✅ END OF CSS - PROFESSIONAL & ELEGANT!
SUMMARY PERBAIKAN:

✅ Brush TEPAT di belakang teks & responsive otomatis
✅ Animasi SANGAT PROFESIONAL & SMOOTH
✅ Slider hover ELEGAN tanpa mengganggu
✅ Transisi cubic-bezier(0.19, 1, 0.22, 1) = Easing profesional
✅ Semua font Outfit
======================================== */