/* ==========================================================================
   RESET & VARIABLES
   ========================================================================== */
   *, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette - Earthy, Warm, Sundanese Vibe */
    --primary-green: #4a7c59;       /* Warna asri dedaunan */
    --primary-green-hover: #3d6649;
    --accent-orange: #d48166;       /* Warna hangat bata/tanah */
    --accent-blue: #6688d4;         /* Aksen cerah modern */
    
    --bg-main: #fcfbfa;             /* Off-white warm */
    --bg-surface: #ffffff;
    --bg-footer: #2b3a30;           /* Dark green wood */
    
    --text-dark: #2c3e33;           /* Deep dark green for text */
    --text-body: #5a6660;
    --text-light: #9eaba3;

    /* Typography */
    --font-sans: 'Outfit', sans-serif;
    --font-serif: 'Lora', serif;

    /* UI Elements */
    --border-radius-lg: 24px;
    --border-radius-md: 16px;
    --border-radius-sm: 8px;
    --shadow-soft: 0 12px 36px rgba(44, 62, 51, 0.06);
    --shadow-hover: 0 20px 48px rgba(74, 124, 89, 0.12);
    
    /* Layout */
    --container-width: 1200px;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-main);
    color: var(--text-body);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography Utilities */
h1, h2, h3, h4 {
    color: var(--text-dark);
    line-height: 1.2;
}

.text-italic {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 500;
}

.text-highlight { color: var(--primary-green); }
.text-green { color: var(--primary-green); }
.text-orange { color: var(--accent-orange); }
.text-blue { color: var(--accent-blue); }

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(252, 251, 250, 0.95);
    backdrop-filter: blur(12px);
    z-index: 1000;
    transition: var(--transition-smooth);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    padding: 4px 0;
    border-bottom: 1px solid rgba(44, 62, 51, 0.05);
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.logo span { font-weight: 400; color: var(--text-body); }

.nav-links {
    display: flex;
    gap: 36px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-body);
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.2s;
}

.nav-links a:hover { color: var(--primary-green); }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.status-badge {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    background: rgba(0,0,0,0.05);
    display: none; /* Hide on small mobile */
}
.status-badge.open { background: #e6f4ea; color: #1e6b36; }
.status-badge.closed { background: #fdeceb; color: #a12e27; }
.status-badge.loading { background: #f0f0f0; color: #888; }

@media (min-width: 769px) { .status-badge { display: block; } }

/* Buttons */
.btn-primary {
    background: var(--primary-green);
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary:hover {
    background: var(--primary-green-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(74, 124, 89, 0.25);
}

.btn-large { padding: 16px 32px; font-size: 1.1rem; }

.btn-whatsapp { background: #25D366; }
.btn-whatsapp:hover { background: #1ebd5a; box-shadow: 0 8px 24px rgba(37, 211, 102, 0.25); }

.desktop-only { display: block; }

/* Hamburger & Mobile Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.hamburger-menu span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: 0.3s;
}

.mobile-menu {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: var(--bg-surface);
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    gap: 16px;
    transform: translateY(-150%);
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 999;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
}

.mobile-link {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 600;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    position: relative;
    padding: 180px 0 100px;
    overflow: hidden;
    background: linear-gradient(135deg, #fcfbfa 0%, #f4eee6 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    max-width: 540px;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    letter-spacing: -1px;
    margin-bottom: 24px;
}

.hero-desc {
    font-size: 1.15rem;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.price-hint {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
}

/* Diagonal Image Trick ala Sitesizzle */
.hero-visual {
    position: relative;
    height: 600px;
    z-index: 2;
}

.visual-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    /* Clip path creating the diagonal cut */
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
    border-radius: 0 40px 40px 0;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform 10s ease;
}

.hero-section:hover .hero-img { transform: scale(1); }

/* Floating Elements & Rings */
.decorative-ring {
    position: absolute;
    border: 8px solid;
    border-radius: 50%;
    opacity: 0.8;
}

.ring-1 {
    width: 60px; height: 60px;
    border-color: #a3e6b5;
    top: 25%; left: 45%;
    animation: float 4s ease-in-out infinite;
}

.ring-2 {
    width: 100px; height: 100px;
    border-color: #e8d5b7;
    bottom: 10%; left: -20px;
    border-width: 12px;
    animation: float 6s ease-in-out infinite reverse;
}

.floating-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.badge-top { top: 40px; left: -20px; animation: float 5s ease-in-out infinite; }
.badge-bottom { bottom: 60px; right: 40px; animation: float 5s ease-in-out infinite 1s; }

/* ==========================================================================
   FEATURES (1, 2, 3) SECTION
   ========================================================================== */
.features-section {
    padding: 100px 0;
    background: var(--bg-surface);
    text-align: center;
}

.section-header {
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-header h2 { font-size: 2.5rem; margin-bottom: 16px; }

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-card {
    padding: 40px 20px;
}

.feature-number {
    font-family: var(--font-sans);
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 20px;
}

.feature-card h3 { font-size: 1.3rem; margin-bottom: 12px; }

/* ==========================================================================
   HIGHLIGHT SECTION
   ========================================================================== */
.highlight-section {
    padding: 100px 0;
    position: relative;
    background: #fdfdfc;
    overflow: hidden;
}

.highlight-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.highlight-img-wrapper {
    position: relative;
}

.rounded-img {
    width: 100%;
    border-radius: 40px;
    object-fit: cover;
    height: 500px;
}

.experience-card {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--bg-surface);
    padding: 24px;
    border-radius: 20px;
    box-shadow: var(--shadow-hover);
    max-width: 220px;
}

.exp-icon {
    width: 40px; height: 40px;
    background: #f0f7f2;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 12px; font-size: 1.2rem;
}

.highlight-text h2 { font-size: 2.8rem; margin-bottom: 24px; }
.highlight-text p.section-desc { font-size: 1.1rem; margin-bottom: 32px; }

.underline-wave {
    position: relative;
    display: inline-block;
}
.underline-wave::after {
    content: '';
    position: absolute;
    bottom: 5px; left: 0; width: 100%; height: 8px;
    background: rgba(74, 124, 89, 0.2);
    border-radius: 4px;
    z-index: -1;
}

.highlight-list {
    list-style: none;
    margin-bottom: 40px;
}
.highlight-list li {
    display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px;
}
.check-icon {
    color: var(--primary-green); font-weight: bold; background: #e6f4ea;
    width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; border-radius: 50%; flex-shrink: 0;
}

.btn-text-arrow {
    background: none; border: none; color: var(--primary-green);
    font-size: 1.1rem; font-weight: 600; cursor: pointer;
    display: inline-flex; align-items: center; gap: 8px;
    transition: var(--transition-smooth); font-family: var(--font-sans);
}
.btn-text-arrow:hover { gap: 16px; color: var(--text-dark); }

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-section {
    padding: 100px 0;
    background: var(--bg-surface);
}

.rating-summary {
    display: inline-flex; align-items: center; gap: 12px;
    background: #fff9e6; padding: 10px 24px; border-radius: 50px; margin-top: 16px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.fiksi {
    color: red;
    margin-bottom: 10px;
}

.testi-card {
    background: var(--bg-main);
    padding: 40px 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    display: flex; flex-direction: column; justify-content: space-between;
}
.testi-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.testi-quote {
    font-family: var(--font-serif); font-size: 1.1rem; font-style: italic; color: var(--text-dark); margin-bottom: 30px;
}
.testi-author {
    display: flex; align-items: center; gap: 16px;
}
.testi-avatar {
    width: 50px; height: 50px; border-radius: 50%; background: #ddd; display: flex; align-items: center; justify-content: center; font-weight: bold; color: white; font-size: 1.2rem;
}
.testi-info h4 { font-size: 1rem; margin-bottom: 4px; }
.testi-info p { font-size: 0.85rem; color: var(--text-light); }

/* ==========================================================================
   CTA & MAP SECTION
   ========================================================================== */
.cta-map-section {
    padding: 0 0 100px;
}

.cta-banner {
    background: var(--primary-green);
    border-radius: var(--border-radius-lg);
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 60px;
    color: white;
    transform: translateY(-50px);
    box-shadow: 0 20px 40px rgba(74, 124, 89, 0.3);
}

.cta-content h2 { color: white; font-size: 2.5rem; margin-bottom: 12px; }
.cta-content p { color: rgba(255,255,255,0.8); font-size: 1.1rem; }

.maps-container {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 40px;
    background: var(--bg-surface);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-soft);
}

.address-info h3 { font-size: 1.5rem; margin-bottom: 24px; }
.address-info p { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 20px; font-weight: 500;}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
    background: var(--bg-footer);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 30px;
}

.footer-content { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 30px;}
.footer-brand h3 { color: white; font-size: 1.8rem; margin-bottom: 12px; }
.footer-brand p { max-width: 400px; }
.footer-links { text-align: right; }

/* ==========================================================================
   ANIMATIONS & RESPONSIVE
   ========================================================================== */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

a {
    text-decoration: none;
    color: white;
}

/* Observer Classes */
.animate-slide-up { opacity: 0; transform: translateY(40px); transition: var(--transition-smooth); }
.animate-slide-left { opacity: 0; transform: translateX(40px); transition: var(--transition-smooth); }
.animate-slide-right { opacity: 0; transform: translateX(-40px); transition: var(--transition-smooth); }
.animate-fade-in { opacity: 0; transition: var(--transition-smooth); }
.is-visible { opacity: 1; transform: translate(0); }

/* Media Queries */
@media (max-width: 1024px) {
    .hero-title { font-size: 3.2rem; }
    .hero-visual { height: 500px; }
    .cta-banner { flex-direction: column; text-align: center; padding: 40px; }
    .maps-container { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-links, .desktop-only { display: none; }
    .hamburger-menu { display: flex; }
    .hero-grid, .highlight-grid { grid-template-columns: 1fr; gap: 40px;}
    .hero-section { padding-top: 120px; }
    .visual-wrapper { clip-path: none; border-radius: 24px; }
    .hero-visual { height: 400px; }
    .features-grid { grid-template-columns: 1fr; gap: 30px; }
    .feature-card { padding: 20px; }
    .experience-card { right: 0; bottom: -20px; }
    .cta-banner { transform: translateY(0); margin-top: 40px;}
    .footer-content { flex-direction: column; align-items: flex-start; text-align: left; }
    .footer-links { text-align: left; }
}