@charset "UTF-8";

/* --- Variables --- */
:root {
    --color-bg-primary: #FAFAF8; /* Cream/Ivory */
    --color-bg-secondary: #EFEBE5; /* Warm Beige */
    --color-bg-dark: #1A1A1A; /* Charcoal */
    --color-accent-gold: #C5A059;
    --color-accent-dark-gold: #A68545;
    --color-whatsapp: #25D366;
    
    --color-text-dark: #1A1A1A;
    --color-text-light: #FAFAF8;
    --color-text-muted: #6B6B6B;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    
    --ease-out: cubic-bezier(0.25, 1, 0.5, 1);
    --transition-fast: all 0.3s ease;
    --transition-smooth: all 0.6s var(--ease-out);
    --transition-slow: all 1.2s var(--ease-out);
}

/* --- Base --- */
html { scroll-behavior: smooth; }
body {
    background-color: var(--color-bg-primary);
    color: var(--color-text-dark);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    margin: 0; padding: 0;
}
* { box-sizing: border-box; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 400; line-height: 1.1; margin: 0; }
.text-italic { font-style: italic; }
.text-gold { color: var(--color-accent-gold); }
.subtitle {
    font-family: var(--font-body); text-transform: uppercase; letter-spacing: 4px;
    font-size: 0.8rem; font-weight: 600; display: block; margin-bottom: 1.5rem;
}
.subtitle-dark { color: var(--color-text-dark); }
.subtitle-gold { color: var(--color-accent-gold); }
p { margin: 0 0 1.5rem 0; }

/* --- Buttons --- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 1rem 2.5rem; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 2px;
    font-weight: 500; text-decoration: none; transition: var(--transition-fast);
    border: 1px solid transparent; cursor: pointer; border-radius: 0;
}
.btn-gold { background-color: var(--color-accent-gold); color: var(--color-bg-primary); }
.btn-gold:hover { background-color: var(--color-accent-dark-gold); }
.btn-outline-dark { border-color: var(--color-text-dark); color: var(--color-text-dark); }
.btn-outline-dark:hover { background-color: var(--color-text-dark); color: var(--color-bg-primary); }
.btn-outline-light { border-color: var(--color-bg-primary); color: var(--color-bg-primary); }
.btn-outline-light:hover { background-color: var(--color-bg-primary); color: var(--color-text-dark); }

/* --- Custom Reveal Animations (Reyes Style) --- */
.reveal-text {
    opacity: 0; transform: translateY(40px);
    transition: opacity 1.2s var(--ease-out), transform 1.2s var(--ease-out);
}
.reveal-text.active { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

.reveal-img-wrapper { overflow: hidden; position: relative; display: block; }
.reveal-img {
    width: 100%; height: 100%; object-fit: cover; object-position: top; display: block;
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
    transform: scale(1.1);
    transition: clip-path 1.5s var(--ease-out), transform 1.5s var(--ease-out);
}
.reveal-img-wrapper.active .reveal-img { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); transform: scale(1); }

/* CEO Portrait - full photo tanpa crop */
.ceo-portrait { 
    border-radius: 12px; 
    height: auto !important;
}
.ceo-portrait .reveal-img { 
    object-fit: contain !important; 
    object-position: center !important; 
    height: auto !important;
    width: 100%;
}

/* --- Navigation & Mega Menu --- */
.header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    transition: var(--transition-smooth);
    background: transparent; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.header.scrolled {
    background: var(--color-bg-primary);
    border-bottom: 1px solid rgba(0,0,0,0.1);
}
.nav-container {
    display: flex; justify-content: flex-start; align-items: center; gap: 3rem;
    padding: 1.5rem 5%; max-width: 1600px; margin: 0 auto;
}
.logo {
    font-family: var(--font-heading); font-size: 1.8rem; font-weight: 700;
    color: var(--color-text-light); text-decoration: none; letter-spacing: 2px;
    transition: var(--transition-fast);
}
.header.scrolled .logo { color: var(--color-text-dark); }
.logo span { color: var(--color-accent-gold); }

.nav-links { display: flex; gap: 2.5rem; list-style: none; margin: 0; padding: 0; }
.nav-links li { position: relative; }
.nav-links a {
    color: var(--color-text-light); font-size: 0.85rem; text-transform: uppercase;
    letter-spacing: 2px; text-decoration: none; font-weight: 500; transition: var(--transition-fast);
    padding-bottom: 1.5rem; /* For mega menu hover bridge */
}
.header.scrolled .nav-links a { color: var(--color-text-dark); }
.nav-links a:hover { color: var(--color-accent-gold); }

/* Mega Menu */
.mega-menu {
    position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(20px);
    width: 600px; background: var(--color-bg-primary); padding: 3rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    opacity: 0; visibility: hidden; transition: var(--transition-smooth);
    display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
    border-top: 2px solid var(--color-accent-gold);
}
.nav-links li:hover .mega-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.mega-col h4 { font-size: 1rem; color: var(--color-accent-gold); margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 2px; font-family: var(--font-body); }
.mega-col a { color: var(--color-text-dark) !important; padding-bottom: 0; display: block; margin-bottom: 0.8rem; font-size: 0.9rem; text-transform: none; font-weight: 400; letter-spacing: 1px;}
.mega-col a:hover { color: var(--color-accent-gold) !important; padding-left: 5px; }

/* Sticky CTA */
.header-cta { margin-left: auto; display: flex; align-items: center; gap: 2rem; }
.header.scrolled .btn-outline-light { border-color: var(--color-text-dark); color: var(--color-text-dark); }
.header.scrolled .btn-outline-light:hover { background-color: var(--color-text-dark); color: var(--color-text-light); }

/* Mobile Menu */
.menu-toggle { display: none; color: var(--color-text-light); font-size: 1.5rem; cursor: pointer; }
.header.scrolled .menu-toggle { color: var(--color-text-dark); }

/* --- Sections --- */
.section { padding: 10rem 5%; }
.container { max-width: 1400px; margin: 0 auto; }

/* 1. Cinematic Hero Carousel */
.hero-slider { height: 100vh; width: 100%; position: relative; overflow: hidden; }
.hero-slider .swiper-wrapper { height: 100%; display: flex; }
.swiper-slide { position: relative; overflow: hidden; height: 100%; width: 100%; flex-shrink: 0; }
.slide-bg {
    position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
    transform: scale(1.1); transition: transform 6s linear;
}
.swiper-slide-active .slide-bg { transform: scale(1); }
.slide-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(26,26,26,0.8) 0%, rgba(26,26,26,0.3) 100%); }
.slide-content {
    position: relative; z-index: 10; height: 100%; display: flex; flex-direction: column; justify-content: center;
    max-width: 1400px; margin: 0 auto; padding: 0 5%;
}
.slide-content h1,
.slide-content h2 {
    font-size: clamp(3.5rem, 6vw, 6rem); color: var(--color-text-light);
    line-height: 1.1; margin-bottom: 1.5rem; max-width: 900px;
}
.slide-content p {
    font-size: 1.2rem; color: #CCC; max-width: 600px; margin-bottom: 2.5rem;
}
/* Slide Animations */
.slide-content h1, .slide-content h2, .slide-content p, .slide-content .hero-btns {
    opacity: 0; transform: translateY(40px); transition: var(--transition-slow);
}
.swiper-slide-active .slide-content h1 { opacity: 1; transform: translateY(0); transition-delay: 0.5s; }
.swiper-slide-active .slide-content h2 { opacity: 1; transform: translateY(0); transition-delay: 0.5s; }
.swiper-slide-active .slide-content p { opacity: 1; transform: translateY(0); transition-delay: 0.7s; }
.swiper-slide-active .slide-content .hero-btns { opacity: 1; transform: translateY(0); transition-delay: 0.9s; }

.slider-nav { position: absolute; bottom: 50px; right: 5%; z-index: 20; display: flex; gap: 15px; }
.swiper-button-next, .swiper-button-prev {
    position: static; width: 50px; height: 50px; border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%; color: white; display: flex; align-items: center; justify-content: center;
    transition: var(--transition-fast);
}
.swiper-button-next::after { content: "\2192" !important; font-family: sans-serif !important; font-size: 1.5rem; }
.swiper-button-prev::after { content: "\2190" !important; font-family: sans-serif !important; font-size: 1.5rem; }
.swiper-button-next:hover, .swiper-button-prev:hover { background: var(--color-accent-gold); border-color: var(--color-accent-gold); }

/* 2. Intro & Animated Stats */
.intro-section { background-color: var(--color-bg-primary); }
.intro-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 6rem; align-items: center; }
.intro-text h2 { font-size: clamp(2.5rem, 4vw, 3.5rem); margin-bottom: 2rem; color: var(--color-bg-dark); }
.intro-text p { font-size: 1.1rem; color: var(--color-text-muted); line-height: 1.8; }
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.stat-item { padding-left: 1.5rem; border-left: 2px solid var(--color-accent-gold); }
.stat-num { font-family: var(--font-heading); font-size: 3.5rem; color: var(--color-bg-dark); line-height: 1; margin-bottom: 0.5rem; display: flex; }
.stat-num span { color: var(--color-accent-gold); }
.stat-label { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 2px; color: var(--color-text-muted); }

/* 3. Hospitality Process Timeline */
.timeline-section { background-color: var(--color-bg-secondary); }
.section-header { text-align: center; max-width: 800px; margin: 0 auto 5rem; }
.section-header h2 { font-size: clamp(2.5rem, 4vw, 3.5rem); margin-bottom: 1.5rem; }
.timeline { position: relative; max-width: 1000px; margin: 0 auto; }
.timeline::before { content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 1px; background: rgba(0,0,0,0.1); transform: translateX(-50%); }
.timeline-item { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; margin-bottom: 4rem; position: relative; }
.timeline-item::after {
    content: ''; position: absolute; left: 50%; top: 0; width: 15px; height: 15px;
    background: var(--color-accent-gold); border-radius: 50%; transform: translateX(-50%);
    box-shadow: 0 0 0 5px var(--color-bg-secondary);
}
.timeline-item:nth-child(even) .t-content { grid-column: 2 / 3; }
.timeline-item:nth-child(even) .t-image { grid-column: 1 / 2; grid-row: 1; }
.t-content { padding-top: -5px; }
.t-content h3 { font-size: 2rem; margin-bottom: 1rem; }
.t-image { height: 300px; }

/* 4. Business Ecosystem Cards */
.ecosystem-section { background-color: var(--color-bg-primary); }
.eco-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.eco-card {
    height: 500px; position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end;
    padding: 3rem; text-decoration: none; background: #000;
}
.eco-bg {
    position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
    opacity: 0.6; transition: transform 1s var(--ease-out), opacity 1s var(--ease-out); z-index: 1;
}
.eco-card:hover .eco-bg { transform: scale(1.05); opacity: 0.4; }
.eco-content { position: relative; z-index: 2; color: var(--color-text-light); }
.eco-content h3 { font-size: 2rem; margin-bottom: 1rem; transform: translateY(20px); transition: var(--transition-smooth); }
.eco-content p { font-size: 1rem; color: #DDD; opacity: 0; transform: translateY(20px); transition: var(--transition-smooth); transition-delay: 0.1s; }
.eco-card:hover .eco-content h3 { transform: translateY(0); }
.eco-card:hover .eco-content p { opacity: 1; transform: translateY(0); }

/* 5. Parallax Banner */
.parallax-section {
    height: 70vh; position: relative; display: flex; align-items: center; justify-content: center;
    background: url('../images/local/unsplash_1559339352-11d035aa65de.jpg') center/cover fixed;
}
.parallax-overlay { position: absolute; inset: 0; background: rgba(26,26,26,0.8); }
.parallax-content { position: relative; z-index: 2; text-align: center; color: var(--color-text-light); width: 100%; max-width: 800px; padding: 0 5%; }
.parallax-content h2 { font-size: clamp(3rem, 5vw, 4rem); margin-bottom: 1.5rem; }
.parallax-content p { font-size: 1.2rem; color: #CCC; }

/* 6. Signature Experience Grid */
.experience-section { background-color: var(--color-bg-primary); }
.exp-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.exp-item { height: 400px; position: relative; overflow: hidden; }
.exp-item img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition-slow); }
.exp-item:hover img { transform: scale(1.05); }
.exp-overlay {
    position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    display: flex; align-items: flex-end; padding: 2rem; color: white;
}
.exp-overlay h4 { font-size: 1.5rem; font-family: var(--font-body); letter-spacing: 1px; text-transform: uppercase; }

/* 7. Footer / Contact */
.footer { background-color: var(--color-bg-dark); color: var(--color-text-light); padding-top: 6rem; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; margin-bottom: 4rem; }
.footer-info h2 { font-size: 3rem; margin-bottom: 2rem; color: var(--color-text-light); }
.footer-info p { color: #AAA; font-size: 1.1rem; }
.form-group { margin-bottom: 1.5rem; }
.form-input {
    width: 100%; background: transparent; border: none; border-bottom: 1px solid rgba(255,255,255,0.2);
    padding: 1rem 0; color: white; font-family: var(--font-body); font-size: 1rem; outline: none; transition: var(--transition-fast);
}
.form-input:focus { border-bottom-color: var(--color-accent-gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 2rem 0; text-align: center; color: #666; font-size: 0.9rem; }

/* Responsive */
@media (max-width: 992px) {
    .intro-grid, .timeline-item, .footer-grid { grid-template-columns: 1fr; gap: 3rem; }
    .eco-grid { grid-template-columns: 1fr 1fr; }
    .timeline::before { left: 0; }
    .timeline-item::after { left: 0; transform: translateX(-50%); }
    .timeline-item:nth-child(even) .t-content { grid-column: 1 / -1; padding-left: 2rem; }
    .timeline-item:nth-child(odd) .t-content { padding-left: 2rem; }
    .timeline-item:nth-child(even) .t-image, .timeline-item:nth-child(odd) .t-image { grid-column: 1 / -1; grid-row: 2; margin-left: 2rem;}
    
    .nav-links { 
        display: flex !important; 
        position: fixed; 
        top: 0; 
        right: 0; 
        width: 75%; 
        max-width: 350px;
        height: 100vh;
        background: var(--color-bg-primary); 
        padding: 6rem 2rem 2rem 2rem; 
        flex-direction: column; 
        box-shadow: -5px 0 30px rgba(0,0,0,0.2); 
        overflow-y: auto;
        z-index: 1040;
        transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .nav-links li { border-bottom: 1px solid rgba(0,0,0,0.06); padding-bottom: 1rem; padding-top: 0.5rem; }
    .nav-links li:last-child { border-bottom: none; }
    .nav-links a { 
        padding-bottom: 0; 
        display: block; 
        font-size: 1rem; 
        color: var(--color-text-dark) !important;
    }
    
    .header-cta { display: none !important; }
    .nav-container { justify-content: space-between; }
    
    .menu-toggle { 
        display: flex; 
        align-items: center; 
        justify-content: center; 
        margin-left: 0; 
        background-color: var(--color-accent-gold);
        width: 45px; 
        height: 45px; 
        border-radius: 8px;
        z-index: 1050;
        cursor: pointer;
    }
    .menu-toggle i { display: none; }
    .menu-toggle::before {
        content: "\2630";
        font-size: 24px;
        color: var(--color-bg-primary);
        font-family: sans-serif;
    }
    
    /* Overlay gelap saat menu dibuka */
    .header.mobile-active::after {
        content: "";
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1035;
        animation: fadeIn 0.3s ease forwards;
    }
    @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
    
    .header.mobile-active { background: var(--color-bg-primary); }
    .header.mobile-active .logo { color: var(--color-text-dark); }
    .header.mobile-active .menu-toggle { background-color: var(--color-text-dark); }
    .header.mobile-active .menu-toggle::before { 
        content: "\2715";
        color: var(--color-text-light);
        font-size: 20px;
    }
    
    .header.mobile-active .nav-links { transform: translateX(0); }
    .header.mobile-active .header-cta { display: none !important; }
    
    .mega-menu { 
        position: static !important; 
        transform: none !important; 
        width: 100% !important; 
        box-shadow: none; 
        padding: 0.8rem 0 0.5rem 1.5rem; 
        display: none; 
        border-top: none; 
        grid-template-columns: 1fr !important; 
        gap: 0.8rem;
        opacity: 1 !important;
        visibility: visible !important;
        background: transparent;
    }
    .nav-links li:hover .mega-menu, .nav-links li:focus-within .mega-menu { display: grid; }
    .mega-col { padding: 0; }
    .mega-col h4 { font-size: 0.75rem; margin-bottom: 0.3rem; }
    .mega-col a { font-size: 0.9rem !important; margin-bottom: 0.3rem; padding-left: 0 !important; }
}
@media (max-width: 768px) {
    .eco-grid, .exp-grid, .stats-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .exp-item:nth-child(n) { grid-column: 1 / -1; height: 300px; }
    .eco-card { height: 350px; padding: 2rem; }
    .section { padding: 5rem 5%; }
    .slide-content h1, .slide-content h2 { font-size: clamp(2.5rem, 10vw, 3.5rem); }
    .slide-content p { font-size: 1rem; margin-bottom: 1.5rem; }
    .parallax-section { background-attachment: scroll !important; height: 50vh !important; }
    .parallax-content { max-width: 100%; }
    .parallax-content h2 { font-size: clamp(2.2rem, 8vw, 3rem); }
    .intro-text h2 { font-size: clamp(2.2rem, 8vw, 3rem); }
    .footer-info h2 { font-size: clamp(2.2rem, 8vw, 3rem); }
    .reveal-img-wrapper[style*="height: 600px"] { height: 400px !important; }
    .slider-nav { bottom: 20px; right: 50%; transform: translateX(50%); }
    .t-image { height: 250px; }
    .btn { padding: 0.8rem 1.5rem; font-size: 0.8rem; }
    .footer { padding-bottom: 6rem; }
    .footer-form { padding-right: 4.5rem; padding-bottom: 2rem; }
    .whatsapp-float {
        width: 52px !important;
        height: 52px !important;
        right: 16px !important;
        bottom: 16px !important;
        font-size: 30px !important;
    }
    .whatsapp-float svg {
        width: 30px !important;
        height: 30px !important;
    }
}
