/* ============================================
   RETURN RISE APPAREL - MAIN STYLESHEET
   DUAL THEME: LIGHT & DARK MODE
   WARNA AKSEN: #9EFF00 (HIJAU NEON)
   ============================================ */

/* === CSS Variables - Light Mode (Default) === */
/* === CSS Variables - Light Mode (Default) === */
:root {
    --primary: #9EFF00;
    --primary-dark: #7ECC00;
    --primary-light: #B8FF3D;
    --secondary: #B8FF3D;
    --accent: #D4EDC9;
    --accent-light: #E8F5DC;
    --bg-primary: #F5F9F0;
    --bg-secondary: #EDF4E5;
    --bg-card: #FAFCF7;
    --bg-navbar: rgba(245,249,240,0.95);
    --text-primary: #1A1A1A;
    --text-secondary: #4A5A3A;
    --text-muted: #7A8A6A;
    --border-color: #D0DCC0;
    --border-light: #E0E8D5;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.06);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.08);
    --shadow-xl: 0 16px 48px rgba(0,0,0,0.10);
    --gradient-primary: linear-gradient(135deg, #9EFF00 0%, #7ECC00 100%);
    --gradient-accent: linear-gradient(135deg, #D4EDC9 0%, #E8F5DC 100%);
    --gradient-hero: linear-gradient(135deg, #F5F9F0 0%, #E8F5DC 100%);
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-family: 'Poppins', sans-serif;
}

/* === CSS Variables - Dark Mode === */
[data-theme="dark"] {
    --primary: #9EFF00;
    --primary-dark: #7ECC00;
    --primary-light: #B8FF3D;
    --secondary: #B8FF3D;
    --accent: #2A3318;
    --accent-light: #1E2410;
    --bg-primary: #0D0D0D;
    --bg-secondary: #111111;
    --bg-card: #1A1A1A;
    --bg-navbar: rgba(13,13,13,0.95);
    --text-primary: #FFFFFF;
    --text-secondary: #BBBBBB;
    --text-muted: #888888;
    --border-color: #333333;
    --border-light: #262626;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.4);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.5);
    --shadow-xl: 0 16px 48px rgba(0,0,0,0.6);
    --gradient-primary: linear-gradient(135deg, #9EFF00 0%, #7ECC00 100%);
    --gradient-accent: linear-gradient(135deg, #2A3318 0%, #1E2410 100%);
    --gradient-hero: linear-gradient(135deg, #0D0D0D 0%, #1A1A1A 50%, #1E2410 100%);
}
/* Dark Mode: Pattern lebih subtle + glow */
[data-theme="dark"] body::before {
    opacity: 0.15;
    background-image: 
        linear-gradient(rgba(158, 255, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(158, 255, 0, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

[data-theme="dark"] body::after {
    background: radial-gradient(
        ellipse at 50% 0%,
        rgba(158, 255, 0, 0.08) 0%,
        transparent 70%
    );
    opacity: 1;
}

/* === Reset & Base === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family);
    color: var(--text-primary);
    background: var(--bg-primary);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background 0.3s ease, color 0.3s ease;
    position: relative;
}

/* === Background Pattern & Texture === */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.25;
    background-image: 
        url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E"),
        linear-gradient(var(--border-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--border-color) 1px, transparent 1px);
    background-size: auto, 60px 60px, 60px 60px;
    background-position: center center;
}

/* Overlay kedua: radial gradient */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background: radial-gradient(
        ellipse at 50% 0%,
        var(--accent) 0%,
        transparent 60%
    );
    opacity: 0.5;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul { list-style: none; }
img { max-width: 100%; height: auto; }

/* === Loading Screen === */
.loading-screen {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s, visibility 0.5s;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.loader-circle {
    width: 60px;
    height: 60px;
    border: 4px solid var(--border-color);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    box-shadow: 0 0 20px rgba(158, 255, 0, 0.3);
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loader-logo {
    width: 80px;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(0.95); }
}

.loader-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 2px;
}

/* Dark mode loading */
[data-theme="dark"] .loading-screen {
    background: #000000;
}

[data-theme="dark"] .loader-circle {
    border-color: #555555;
    border-top-color: #9EFF00;
    box-shadow: 0 0 30px rgba(158, 255, 0, 0.8), 0 0 80px rgba(158, 255, 0, 0.3);
}

/* === Floating WhatsApp === */
.wa-float {
    position: fixed;
    bottom: 30px; right: 30px;
    width: 60px; height: 60px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    z-index: 999;
    transition: var(--transition);
    animation: wa-pulse 2s infinite;
}
.wa-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37,211,102,0.6);
}
@keyframes wa-pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 4px 30px rgba(37,211,102,0.7); }
}

/* === Navbar === */
.navbar {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    background: var(--bg-navbar);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.navbar.scrolled {
    box-shadow: var(--shadow-md);
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}
.nav-logo {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.logo-img {
    height: 65px;
    width: auto;
}

..logo-text {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: 1px;
}
.logo-sub {
    font-size: 0.7rem;
    color: var(--text-secondary);
    letter-spacing: 3px;
    text-transform: uppercase;
}
.logo-highlight {
    color: var(--primary);
}
.nav-menu {
    display: flex;
    gap: 5px;
}
.nav-link {
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-dark);
    background: var(--accent);
}

.btn-nav {
    background: var(--gradient-primary);
    color: #0D0D0D;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.85rem;
    transition: var(--transition);
    white-space: nowrap;
}
.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--white);
}
.nav-hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}
.bar {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 3px;
    transition: var(--transition);
}
.nav-hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}
.nav-hamburger.active .bar:nth-child(2) {
    opacity: 0;
}
.nav-hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}
.btn-primary {
    background: var(--gradient-primary);
    color: #0D0D0D;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(158,255,0,0.3);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,107,53,0.5);
}
.btn-outline {
    background: transparent;
    color: var(--primary-dark);
    border: 2px solid var(--primary);
}
.btn-outline:hover {
    background: var(--primary);
    color: var(--dark);
}
.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}
.btn-block {
    width: 100%;
    justify-content: center;
}

/* === Hero Section === */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--bg-primary);
    overflow: hidden;
    padding-top: 70px;
}
.hero-bg-shapes {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 0;
}
.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
}
.shape-1 {
    width: 600px; height: 600px;
    background: var(--primary);
    top: -200px; right: -200px;
    animation: float 8s ease-in-out infinite;
    filter: blur(80px);
}
.shape-2 {
    width: 400px; height: 400px;
    background: var(--primary-light);
    bottom: -100px; left: -100px;
    animation: float 10s ease-in-out infinite 2s;
    filter: blur(60px);
}
.shape-3 {
    width: 300px; height: 300px;
    background: var(--primary);
    top: 40%; left: 10%;
    animation: float 7s ease-in-out infinite 1s;
    filter: blur(40px);
    opacity: 0.04;
}
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-30px) rotate(5deg); }
    66% { transform: translateY(20px) rotate(-5deg); }
}

/* === Decorative Section Divider === */
.section-divider {
    position: relative;
    width: 100%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        var(--primary) 20%,
        var(--primary) 80%,
        transparent 100%
    );
    opacity: 0.2;
    margin: 0 auto;
    max-width: 800px;
}

/* === Card Decorative Corner === */
.service-card::before,
.step-card::before,
.testimonial-card::before,
.contact-card::before,
.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    border-top: 2px solid var(--primary);
    border-right: 2px solid var(--primary);
    border-radius: 0 12px 0 0;
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover::before,
.step-card:hover::before,
.testimonial-card:hover::before,
.contact-card:hover::before,
.why-card:hover::before {
    opacity: 0.5;
}


.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 10px;
    color: var(--text-primary);
}
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.hero-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    max-width: 500px;
    line-height: 1.8;
}
.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.hero-stats {
    display: flex;
    gap: 30px;
}
.stat-item {
    text-align: center;
}
.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}
.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: block;
}
.hero-image-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-image-bg {
    width: 350px;
    height: 350px;
    background: var(--gradient-accent);
    border-radius: 50%;
    position: absolute;
    animation: float 6s ease-in-out infinite;
}
.hero-tshirt-mockup {
    position: relative;
    z-index: 1;
    text-align: center;
}
.tshirt-silhouette {
    font-size: 180px;
    color: var(--primary);
    opacity: 0.8;
}
.mockup-badge {
    position: absolute;
    bottom: 20px;
    right: 10px;
    background: #9EFF00;
    color: #1A1A1A;
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    z-index: 10;
    white-space: nowrap;
    letter-spacing: 0.5px;
}
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    color: var(--text-muted);
    font-size: 0.8rem;
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* === Section Styles === */
.section-padding {
    padding: 80px 20px;
}
.section-header {
    text-align: center;
    margin-bottom: 50px;
}
.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}
.section-desc {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* === Services Section === */
.services {
    padding: 80px 20px;
    background: var(--bg-primary);
}
.services-grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.service-card {
    background: var(--bg-card);
    padding: 35px 25px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}
.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 8px 32px rgba(158,255,0,0.1);
}
.service-icon {
    width: 70px; height: 70px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--primary);
}
.service-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-primary);
}
.service-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* === How It Works === */
.how-it-works {
    padding: 80px 20px;
    background: var(--bg-primary);
}
.steps-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 0;
}
.step-card {
    text-align: center;
    flex: 1;
    background: var(--bg-card);
    padding: 30px 20px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}
.step-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 10px;
}
.step-icon {
    width: 50px; height: 50px;
    background: var(--gradient-primary);
    color: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 20px;
}
.step-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}
.step-card p {
    font-size: 0.8rem;
    color: var(--text-secondary);
}
.step-connector {
    width: 40px;
    height: 2px;
    background: var(--primary-light);
    margin-top: 60px;
    flex-shrink: 0;
}

/* === Testimonials === */
.testimonials {
    padding: 80px 20px;
    background: var(--bg-secondary);
}
.testimonial-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.testimonial-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: var(--border-radius-lg);
    transition: var(--transition);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}
.testimonial-card:hover {
    box-shadow: var(--shadow-md);
}
.testimonial-stars {
    color: #FFB800;
    font-size: 1.1rem;
    margin-bottom: 15px;
}
.testimonial-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.author-avatar {
    width: 45px; height: 45px;
    background: var(--gradient-primary);
    color: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}
.author-info h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}
.author-info span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* === CTA Section === */
/* ===== CTA Section ===== */
.cta {
    padding: 60px 20px;
    position: relative;
}

.cta-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--gradient-primary);
    color: #1A1A1A;
    text-align: center;
    padding: 50px 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.cta-container h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 800;
    color: #1A1A1A;
    position: relative;
    z-index: 1;
}

.cta-container p {
    margin-bottom: 30px;
    color: #333333;
    position: relative;
    z-index: 1;
    font-size: 1rem;
    font-weight: 500;
}

/* Shimmer effect */
.cta-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.15) 50%,
        transparent 70%
    );
    animation: shimmer 3s ease-in-out infinite;
    z-index: 0;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

/* Tombol CTA - PUTIH BERSIH */
.cta-container .btn-primary {
    background: #FFFFFF;
    color: #1A1A1A;
    font-weight: 700;
    font-size: 1.05rem;
    padding: 16px 36px;
    border-radius: 30px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.15), 0 2px 8px rgba(0,0,0,0.1);
    border: 3px solid #FFFFFF;
    position: relative;
    z-index: 1;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.5px;
}

.cta-container .btn-primary:hover {
    background: #1A1A1A;
    color: #9EFF00;
    border-color: #1A1A1A;
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.25), 0 4px 12px rgba(0,0,0,0.15);
}

.cta-container .btn-primary i {
    font-size: 1.1rem;
}

/* Animasi pulse halus pada tombol */
.cta-container .btn-primary {
    animation: ctaPulse 2s ease-in-out infinite;
}

@keyframes ctaPulse {
    0%, 100% { box-shadow: 0 6px 24px rgba(0,0,0,0.15), 0 2px 8px rgba(0,0,0,0.1); }
    50% { box-shadow: 0 8px 28px rgba(0,0,0,0.25), 0 4px 12px rgba(0,0,0,0.2); }
}

/* Dark mode CTA - tombol lebih glowing */
[data-theme="dark"] .cta-container {
    box-shadow: var(--shadow-xl), 0 0 40px rgba(158, 255, 0, 0.2);
}

[data-theme="dark"] .cta-container .btn-primary {
    background: #FFFFFF;
    color: #1A1A1A;
    box-shadow: 0 6px 24px rgba(0,0,0,0.4), 0 0 20px rgba(255,255,255,0.2);
}

[data-theme="dark"] .cta-container .btn-primary:hover {
    background: #000000;
    color: #9EFF00;
    border-color: #000000;
    box-shadow: 0 12px 32px rgba(0,0,0,0.6), 0 0 30px rgba(158,255,0,0.3);
}

@media (max-width: 768px) {
    .cta-container {
        padding: 40px 20px;
    }
    
    .cta-container h2 {
        font-size: 1.4rem;
    }
    
    .cta-container p {
        font-size: 0.9rem;
    }
    
    .cta-container .btn-primary {
        padding: 14px 28px;
        font-size: 0.95rem;
    }
}

/* === Page Header === */
.page-header {
    padding: 120px 20px 60px;
    text-align: center;
    background: var(--bg-secondary);
    position: relative;
}
.page-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}
.page-header p {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* === About Page === */
.about-content {
    max-width: 1200px;
    margin: 0 auto;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.about-image-placeholder {
    width: 100%;
    height: 400px;
    background: var(--gradient-accent);
    border-radius: var(--border-radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 80px;
    gap: 10px;
}
.about-image-placeholder span {
    font-size: 1rem;
    font-weight: 600;
}
.about-text h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}
.about-text p {
    margin-bottom: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
}
.mission-vision {
    background: var(--accent-light);
}
.mv-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.mv-card {
    background: var(--bg-card);
    padding: 35px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
}
.mv-icon {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 15px;
}
.mv-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}
.mv-card ul {
    list-style: disc;
    padding-left: 20px;
}
.mv-card li {
    margin-bottom: 8px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}
.why-us {
    max-width: 1200px;
    margin: 0 auto;
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
.why-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--bg-card);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}
.why-card i {
    font-size: 35px;
    color: var(--primary);
    margin-bottom: 15px;
}
.why-card h4 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}
.why-card p {
    font-size: 0.8rem;
    color: var(--text-secondary);
}
.bg-light { background: var(--accent-light); }

/* === Design Form === */
.design-form-section {
    max-width: 1200px;
    margin: 0 auto;
}
.form-container {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 40px;
    align-items: start;
}
.form-info {
    background: var(--accent);
    padding: 30px;
    border-radius: var(--border-radius-lg);
    position: sticky;
    top: 90px;
}
.form-info h3 {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--primary-dark);
}
.form-info ol {
    padding-left: 20px;
}
.form-info li {
    margin-bottom: 10px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.form-info-contact {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}
.form-info-contact a {
    color: var(--primary-dark);
    font-weight: 600;
}
.design-form {
    background: var(--bg-card);
    padding: 35px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}
.design-form h3 {
    margin-bottom: 25px;
    color: var(--primary-dark);
}
.form-section-title {
    font-weight: 700;
    font-size: 0.95rem;
    margin: 25px 0 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--accent);
    color: var(--text-primary);
}
.form-section-title span {
    margin-right: 5px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.form-row-3 {
    grid-template-columns: 1fr 1fr 1fr;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-weight: 500;
    font-size: 0.85rem;
    margin-bottom: 6px;
    color: var(--text-primary);
}
.required {
    color: var(--danger);
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: var(--font-family);
    font-size: 0.9rem;
    transition: var(--transition);
    background: var(--bg-primary);
    color: var(--text-primary);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(158,255,0,0.2);
}
.form-agreement {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 25px 0;
}
.form-agreement input[type="checkbox"] {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
}
.form-agreement label {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* === Gallery === */
.gallery-section {
    max-width: 1200px;
    margin: 0 auto;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.gallery-item {
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
}
.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
}
.gallery-image-placeholder {
    width: 100%;
    height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 50px;
    gap: 10px;
}
.gallery-image-placeholder span {
    font-size: 0.85rem;
    font-weight: 500;
}
.gallery-cta {
    text-align: center;
    margin-top: 50px;
}
.gallery-cta p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--text-primary);
}

/* === Contact === */
.contact-section {
    max-width: 1200px;
    margin: 0 auto;
}
.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
.contact-card {
    text-align: center;
    padding: 35px 20px;
    background: var(--bg-card);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}
.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}
.contact-card-icon {
    width: 70px; height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    color: var(--white);
}
.whatsapp-bg { background: #25D366; }
.instagram-bg { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.tiktok-bg { background: #B3B3B3; }
.facebook-bg { background: #1877F2; }
.contact-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}
.contact-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

/* === FAQ === */
.faq-section {
    max-width: 800px;
    margin: 0 auto;
}
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.faq-item {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border-light);
}
.faq-item:hover {
    box-shadow: var(--shadow-md);
}
.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}
.faq-question h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.faq-question i {
    transition: var(--transition);
    color: var(--primary);
}
.faq-item.active .faq-question i {
    transform: rotate(180deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 25px 20px;
}
.faq-answer p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* === Footer === */
.footer {
    background: #111111;
    color: #FFFFFF;
    padding: 60px 20px 20px;
    margin-top: 40px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 0 0 3px 3px;
}

[data-theme="dark"] .footer {
    background: #333333;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-brand h3 {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 1px;
}
.footer-brand h3 span {
    color: var(--primary);
}
.footer-brand p {
    font-size: 0.75rem;
    letter-spacing: 3px;
    opacity: 0.7;
    margin-bottom: 10px;
}
.footer-tagline {
    font-size: 0.8rem !important;
    letter-spacing: 1px !important;
    opacity: 0.8 !important;
    line-height: 1.6;
}
.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}
.footer-social a {
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: var(--transition);
}
.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}
.footer-links h4,
.footer-contact h4 {
    font-size: 1rem;
    margin-bottom: 15px;
    color: var(--primary);
}
.footer-links ul li {
    margin-bottom: 8px;
}
.footer-links a, .footer-contact a {
    font-size: 0.85rem;
    opacity: 0.7;
    transition: var(--transition);
    color: #CCCCCC;
}

.footer-links a:hover, .footer-contact a:hover {
    opacity: 1;
    color: var(--primary);
}
.footer-contact p {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.8rem;
    opacity: 0.6;
}
/* =============================================
   LIGHT MODE - BORDER HIJAU TIPIS DI CONTAINER
   ============================================= */

/* Card umum */
.service-card,
.step-card,
.testimonial-card,
.contact-card,
.why-card,
.mv-card,
.faq-item,
.design-form,
.form-info,
.gallery-item {
    border: 1px solid #C5D8B0;
    transition: var(--transition);
}

/* Hover: border lebih tegas */
.service-card:hover,
.step-card:hover,
.testimonial-card:hover,
.contact-card:hover,
.why-card:hover,
.mv-card:hover,
.faq-item:hover {
    border-color: #9EFF00;
    box-shadow: var(--shadow-md), 0 0 12px rgba(158, 255, 0, 0.15);
}

/* Hero image background */
.hero-image-bg {
    border: 2px solid rgba(158, 255, 0, 0.2);
}

/* CTA container */
.cta-container {
    border: 2px solid rgba(0, 0, 0, 0.05);
}

/* Form inputs */
.form-group input,
.form-group select,
.form-group textarea {
    border: 1px solid #C5D8B0;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #9EFF00;
    box-shadow: 0 0 0 3px rgba(158, 255, 0, 0.12);
}

/* Navbar */
.navbar {
    border-bottom: 1px solid #D4E0C5;
}

/* About image placeholder */
.about-image-placeholder {
    border: 1px solid #C5D8B0;
}

/* Section header (divider halus) */
.section-header {
    position: relative;
}

.section-header::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: #9EFF00;
    margin: 15px auto 0;
    border-radius: 2px;
    opacity: 0.6;
}
/* === Responsive === */
@media (max-width: 1024px) {
    .hero-title { font-size: 2.5rem; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-container { flex-wrap: wrap; gap: 20px; }
    .step-connector { display: none; }
    .step-card { flex: 0 0 calc(50% - 10px); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .form-container { grid-template-columns: 1fr; }
    .form-info { position: static; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
		display: flex !important;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--bg-primary);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 30px;
        gap: 20px;
        transition: left 0.3s ease;
        z-index: 999;
    }
    .nav-menu.active { left: 0; }
	.nav-link {
        font-size: 1.2rem;
        padding: 12px 24px;
    }
    .nav-hamburger {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        cursor: pointer;
        z-index: 1001;
    }
    .btn-nav { display: none; }
    
    .hero-container { grid-template-columns: 1fr; text-align: center; }
    .hero-title { font-size: 2rem; }
    .hero-desc { margin: 0 auto 30px; }
    .hero-buttons { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-image { 
    display: flex; 
    justify-content: center;
    margin-top: 30px;
	}
    
    .hero-scroll { display: none; }
    
    .services-grid { grid-template-columns: 1fr; }
    .testimonial-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .mv-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .form-row { grid-template-columns: 1fr; }
    .form-row-3 { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .section-title { font-size: 1.6rem; }
    .page-header h1 { font-size: 1.8rem; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 1.6rem; }
    .hero-subtitle { font-size: 0.8rem; letter-spacing: 3px; }
    .hero-buttons { flex-direction: column; }
    .hero-stats { flex-direction: column; gap: 15px; }
    .why-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .wa-float { width: 50px; height: 50px; font-size: 24px; bottom: 20px; right: 20px; }
}

/* ===== Theme Toggle Button ===== */
.theme-toggle {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.theme-toggle:hover {
    border-color: var(--primary);
    box-shadow: 0 0 12px rgba(158,255,0,0.3);
}

.theme-toggle .fa-sun {
    color: #FFB800;
    position: absolute;
    transform: scale(0) rotate(180deg);
    transition: var(--transition);
}

.theme-toggle .fa-moon {
    color: #6B7280;
    transition: var(--transition);
}

/* Dark mode: tampilkan sun, sembunyikan moon */
[data-theme="dark"] .theme-toggle .fa-sun {
    transform: scale(1) rotate(0deg);
}

[data-theme="dark"] .theme-toggle .fa-moon {
    transform: scale(0) rotate(-180deg);
}

/* === Dotted Background untuk Section Bergantian === */
.services,
.testimonials,
.page-header {
    position: relative;
}

.services::before,
.testimonials::before,
.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.3;
    background-image: radial-gradient(var(--primary) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 0;
}

/* Pastikan konten di atas dots */
.services > *,
.testimonials > *,
.page-header > * {
    position: relative;
    z-index: 1;
}