/* ==========================================================================
   KWM Digital - Jasa Pembuatan Website Rental Mobil Professional
   Main Stylesheet (Vanilla CSS3)
   Inspired by: Webarq.com (Premium, Modern, Elegant & Lightweight Standard)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Import Google Fonts & Reset CSS
   -------------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* Color Palette */
    --bg-dark: #02040F;         /* Dark Obsidian */
    --bg-navy: #0A1128;         /* Deep Space Navy */
    --bg-card: rgba(10, 17, 40, 0.6);
    --primary: #00E5FF;         /* Electric Cyan */
    --primary-glow: rgba(0, 229, 255, 0.4);
    --secondary: #FFB300;       /* Neon Amber */
    --secondary-glow: rgba(255, 179, 0, 0.4);
    --text-light: #F4F5F6;      /* Off-white */
    --text-gray: #A0AEC0;       /* Cool gray */
    --border-color: rgba(0, 229, 255, 0.15);
    --border-glow: rgba(0, 229, 255, 0.3);
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    
    /* Shadow */
    --shadow-glow-cyan: 0 0 20px rgba(0, 229, 255, 0.3);
    --shadow-glow-amber: 0 0 20px rgba(255, 179, 0, 0.3);
    --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.7);
}

/* --------------------------------------------------------------------------
   2. Base Style & Scrollbar
   -------------------------------------------------------------------------- */
html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-dark);
}

body {
    font-family: var(--font-body);
    color: var(--text-light);
    background-color: var(--bg-dark);
    line-height: 1.7;
    font-size: 1.1rem;
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: #111A36;
    border-radius: 5px;
    border: 2px solid var(--bg-dark);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
    box-shadow: var(--shadow-glow-cyan);
}

/* Selection Color */
::selection {
    background-color: var(--primary);
    color: var(--bg-dark);
}

/* --------------------------------------------------------------------------
   3. Typography & Utility Classes
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-light);
}

p {
    color: var(--text-gray);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Text Gradient & Highlights */
.text-gradient-cyan {
    background: linear-gradient(135deg, #FFF, var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-amber {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.highlight-cyan {
    color: var(--primary);
    text-shadow: 0 0 10px var(--primary-glow);
}

.highlight-amber {
    color: var(--secondary);
    text-shadow: 0 0 10px var(--secondary-glow);
}

/* Buttons styling */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.875rem 2rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #00A8CC);
    color: var(--bg-dark);
    box-shadow: 0 4px 15px rgba(0, 229, 255, 0.4);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: 0.5s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 229, 255, 0.6), var(--shadow-glow-cyan);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    background: rgba(0, 229, 255, 0.1);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow-cyan);
}

.btn-outline-amber {
    background: transparent;
    color: var(--secondary);
    border: 1px solid rgba(255, 179, 0, 0.3);
}

.btn-outline-amber:hover {
    background: rgba(255, 179, 0, 0.1);
    border-color: var(--secondary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow-amber);
}

/* WhatsApp Premium Button Highlight */
.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E) !important;
    color: #FFFFFF !important;
    border: none !important;
    font-size: 1.15rem !important;
    padding: 1rem 2.5rem !important;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5) !important;
    transition: var(--transition-smooth) !important;
}
.btn-whatsapp:hover {
    transform: translateY(-4px) scale(1.03) !important;
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.7), 0 0 25px rgba(37, 211, 102, 0.4) !important;
}

/* Area Card Hover Transition */
.area-card:hover {
    border-color: var(--primary) !important;
    box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.8), 0 0 15px rgba(0, 229, 255, 0.15) !important;
    transform: translateY(-5px);
}

/* Glassmorphism Card Base */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    box-shadow: var(--shadow-card);
    transition: var(--transition-smooth);
}

.glass-card:hover {
    border-color: var(--border-glow);
    box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.8), 0 0 15px rgba(0, 229, 255, 0.1);
    transform: translateY(-5px);
}

/* Section Header styling */
.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-tag {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary);
    margin-bottom: 1rem;
    display: inline-block;
    padding: 0.35rem 1rem;
    background: rgba(0, 229, 255, 0.08);
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-radius: 50px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
}

.section-subtitle {
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

/* --------------------------------------------------------------------------
   4. Header & Navigation (Glass Navbar)
   -------------------------------------------------------------------------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition-smooth);
}

.header.shrink {
    padding: 0.875rem 0;
    background: rgba(2, 4, 15, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 229, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 12px;
    position: relative;
    box-shadow: var(--shadow-glow-cyan);
}

.logo-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--bg-dark);
}

.logo-text span {
    color: var(--primary);
}

/* Nav Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-gray);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition-fast);
    box-shadow: var(--shadow-glow-cyan);
}

.nav-link:hover, .nav-link.active {
    color: var(--text-light);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--text-light);
    border-radius: 3px;
    transition: var(--transition-smooth);
}

/* Scroll Progress Bar */
.scroll-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    box-shadow: var(--shadow-glow-cyan);
    z-index: 1001;
}

/* --------------------------------------------------------------------------
   5. Hero Section (Clean Layout with Gradient Mesh)
   -------------------------------------------------------------------------- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 10rem 0 6rem 0;
    overflow: hidden;
    background: radial-gradient(circle at 80% 20%, rgba(0, 229, 255, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 10% 80%, rgba(255, 179, 0, 0.05) 0%, transparent 50%),
                var(--bg-dark);
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3rem;
    align-items: center;
}

/* Hero Content */
.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 179, 0, 0.08);
    border: 1px solid rgba(255, 179, 0, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.hero-badge span {
    width: 8px;
    height: 8px;
    background-color: var(--secondary);
    border-radius: 50%;
    display: inline-block;
    animation: blink 1.5s infinite;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    max-width: 580px;
}

.hero-actions {
    display: flex;
    gap: 1.25rem;
}

/* Hero Visual (Interactive Mockup) */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mockup-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    z-index: 2;
}

/* Glass Floating Element */
.floating-circle {
    position: absolute;
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.15), rgba(255, 179, 0, 0.05));
    border-radius: 50%;
    filter: blur(60px);
    z-index: 1;
    animation: pulse 8s infinite alternate;
}

/* Interactive Device Mockup */
.device-mockup {
    position: relative;
    background: #0d152d;
    border: 8px solid #1c274c;
    border-radius: 30px;
    padding: 10px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8), 0 0 40px rgba(0, 229, 255, 0.15);
    animation: float 6s ease-in-out infinite;
    overflow: hidden;
}

.device-screen {
    background: #02040f;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Mockup Web Header */
.mockup-web-header {
    height: 24px;
    background: #111a36;
    padding: 0 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.mockup-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ff5f56;
}
.mockup-dot:nth-child(2) { background: #ffbd2e; }
.mockup-dot:nth-child(3) { background: #27c93f; }

.mockup-address {
    flex-grow: 1;
    height: 14px;
    background: #060919;
    border-radius: 4px;
    margin: 0 15px;
    font-size: 8px;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    padding-left: 8px;
    font-family: monospace;
}

/* Mockup Web Content (Mini Rental App Simulator) */
.mockup-web-content {
    flex-grow: 1;
    padding: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mockup-hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.mockup-hero-text {
    width: 60%;
}

.mockup-title-bar {
    height: 8px;
    width: 90%;
    background: var(--text-light);
    border-radius: 2px;
    margin-bottom: 4px;
}

.mockup-desc-bar {
    height: 4px;
    width: 70%;
    background: var(--text-gray);
    border-radius: 1px;
}

.mockup-car-img {
    width: 35%;
    position: relative;
    transform: scale(1.1);
    animation: car-bounce 3s ease-in-out infinite alternate;
}

.mockup-car-img svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 5px 5px rgba(0, 0, 0, 0.5));
}

/* Mockup Form Booking */
.mockup-booking-widget {
    background: #0a1128;
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-radius: 10px;
    padding: 8px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    margin-bottom: 8px;
}

.mockup-input-box {
    background: #02040f;
    padding: 4px;
    border-radius: 4px;
    font-size: 7px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.mockup-input-lbl {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 2px;
}

.mockup-input-val {
    color: var(--text-light);
}

/* Mockup Fleet Selector */
.mockup-fleets {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.mockup-fleet-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    padding: 5px;
    text-align: center;
    position: relative;
    transition: 0.3s;
}

.mockup-fleet-card.active {
    border-color: var(--primary);
    background: rgba(0, 229, 255, 0.05);
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.1);
}

.mockup-fleet-car {
    width: 80%;
    margin: 0 auto 3px auto;
}

.mockup-fleet-car svg {
    width: 100%;
    height: auto;
}

.mockup-fleet-name {
    font-size: 7px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1px;
}

.mockup-fleet-price {
    font-size: 6px;
    color: var(--secondary);
    font-weight: 600;
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    background: rgba(10, 17, 40, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    padding: 8px 12px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-card);
    z-index: 10;
    animation: float-reverse 7s ease-in-out infinite;
}

.fb-1 {
    top: 15%;
    left: -15%;
}

.fb-2 {
    bottom: 15%;
    right: -10%;
    animation-delay: 1.5s;
    border-color: rgba(255, 179, 0, 0.2);
}

.fb-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fb-1 .fb-icon {
    background: rgba(0, 229, 255, 0.15);
    color: var(--primary);
}

.fb-2 .fb-icon {
    background: rgba(255, 179, 0, 0.15);
    color: var(--secondary);
}

.fb-info {
    display: flex;
    flex-direction: column;
}

.fb-title {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-light);
    line-height: 1.2;
}

.fb-sub {
    font-size: 0.65rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* --------------------------------------------------------------------------
   6. Features Section (6 Keunggulan Utama)
   -------------------------------------------------------------------------- */
.features {
    padding: 8rem 0;
    position: relative;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-navy) 100%);
}

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

.feature-card {
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(0, 229, 255, 0.05);
    border: 1px solid rgba(0, 229, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: var(--transition-smooth);
    color: var(--primary);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.feature-card:hover .feature-icon-wrapper {
    background: var(--primary);
    color: var(--bg-dark);
    box-shadow: var(--shadow-glow-cyan);
    transform: rotate(10deg) scale(1.1);
}

.feature-card:nth-child(even):hover .feature-icon-wrapper {
    background: var(--secondary);
    color: var(--bg-dark);
    box-shadow: var(--shadow-glow-amber);
}

.feature-card:nth-child(even) .feature-icon-wrapper {
    color: var(--secondary);
    border-color: rgba(255, 179, 0, 0.15);
    background: rgba(255, 179, 0, 0.05);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    transition: var(--transition-fast);
}

.feature-card:hover .feature-title {
    color: var(--primary);
}

.feature-card:nth-child(even):hover .feature-title {
    color: var(--secondary);
}

.feature-desc {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Decorator line for hover card */
.card-hover-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary);
    transition: var(--transition-smooth);
}

.feature-card:nth-child(even) .card-hover-border {
    background: var(--secondary);
}

.feature-card:hover .card-hover-border {
    width: 100%;
}

/* --------------------------------------------------------------------------
   7. Showcase/Template Demo Gallery Section
   -------------------------------------------------------------------------- */
.showcase {
    padding: 8rem 0;
    background: var(--bg-dark);
    position: relative;
}

/* Filter controls removed for simplification */

/* Gallery Grid */
.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.template-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    border-radius: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-card);
    transition: var(--transition-smooth);
}

.template-card:hover {
    border-color: var(--border-glow);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 229, 255, 0.1);
}

.template-visual {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #0d152d;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* CSS Mockups inside Templates */
.template-screen {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background: #02040f;
    border: 4px solid #1c274c;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.template-card:hover .template-screen {
    transform: scale(1.05) rotate(1deg);
    border-color: var(--primary);
}

/* Custom visual templates layout */
.t-header {
    height: 18px;
    background: #111a36;
    display: flex;
    align-items: center;
    padding: 0 8px;
    gap: 4px;
}

.t-body {
    flex-grow: 1;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Template 1: LuxoDrive */
.t1-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.t1-left { width: 55%; }
.t1-line1 { height: 8px; width: 85%; background: var(--text-light); border-radius: 2px; margin-bottom: 4px; }
.t1-line2 { height: 4px; width: 60%; background: var(--primary); border-radius: 1px; }
.t1-right { width: 40%; }
.t1-right svg { width: 100%; height: auto; filter: drop-shadow(0 4px 4px rgba(0,0,0,0.5)); }

.t1-booking {
    background: rgba(0, 229, 255, 0.05);
    border: 1px dashed var(--primary);
    border-radius: 6px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0 5px;
}
.t1-b-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--primary); }
.t1-b-bar { height: 3px; width: 25%; background: rgba(255,255,255,0.3); border-radius: 1px; }

.t1-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
}
.t1-card {
    height: 28px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.t1-c-car { width: 70%; height: 10px; background: rgba(255,255,255,0.1); border-radius: 2px; margin-bottom: 2px; }
.t1-c-bar { height: 3px; width: 50%; background: var(--text-gray); border-radius: 1px; }

/* Template 2: UrbanGo */
.t2-hero {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.t2-line1 { height: 8px; width: 70%; background: var(--text-light); border-radius: 2px; }
.t2-line2 { height: 4px; width: 90%; background: var(--text-gray); border-radius: 1px; margin-bottom: 4px; }
.t2-banner {
    height: 40px;
    background: radial-gradient(circle, #ffb30033 0%, transparent 80%), #111a36;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 10px;
    border: 1px solid rgba(255, 179, 0, 0.1);
}
.t2-b-text { width: 50%; display: flex; flex-direction: column; gap: 3px; }
.t2-b-t1 { height: 5px; width: 80%; background: var(--secondary); border-radius: 1px; }
.t2-b-t2 { height: 3px; width: 50%; background: var(--text-light); border-radius: 1px; }
.t2-b-car { width: 40%; }
.t2-b-car svg { width: 100%; height: auto; }

.t2-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
}
.t2-item {
    height: 18px;
    background: rgba(255,255,255,0.04);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.t2-item-bar { height: 4px; width: 60%; background: rgba(255,255,255,0.3); border-radius: 1px; }

/* Template 3: AdvenTrip */
.t3-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}
.t3-n-logo { width: 20px; height: 6px; background: var(--text-light); border-radius: 1px; }
.t3-n-links { display: flex; gap: 4px; }
.t3-n-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--text-gray); }

.t3-hero {
    height: 52px;
    background: linear-gradient(180deg, rgba(0,0,0,0.1), rgba(0,0,0,0.8)), #19381e;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 8px;
    border: 1px solid rgba(255,255,255,0.05);
}
.t3-mountain {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 40px;
    opacity: 0.15;
}
.t3-mountain svg { width: 100%; fill: #fff; }
.t3-h-text { position: relative; z-index: 2; }
.t3-h-title { height: 8px; width: 65%; background: var(--text-light); border-radius: 2px; margin-bottom: 3px; }
.t3-h-desc { height: 3px; width: 85%; background: #27c93f; border-radius: 1px; margin-bottom: 6px; }
.t3-h-car { width: 55px; position: absolute; bottom: 4px; right: 4px; }
.t3-h-car svg { width: 100%; height: auto; }

.t3-footer {
    height: 12px;
    background: #0d152d;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 6px;
}
.t3-f-bar { height: 3px; width: 30%; background: var(--text-gray); border-radius: 1px; }
.t3-f-btn { height: 6px; width: 15px; background: #27c93f; border-radius: 2px; }

/* Template Info */
.template-info {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.template-cat {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.5rem;
}

.template-card:nth-child(even) .template-cat {
    color: var(--secondary);
}

.template-card:nth-child(3) .template-cat {
    color: #27C93F;
}

.template-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.template-desc {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.template-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.25rem;
}

.template-features-list {
    display: flex;
    gap: 8px;
}

.t-feat {
    width: 20px;
    height: 20px;
    border-radius: 5px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    font-size: 10px;
    transition: var(--transition-fast);
}

.template-card:hover .t-feat {
    background: rgba(0, 229, 255, 0.05);
    border-color: rgba(0, 229, 255, 0.2);
    color: var(--primary);
}

.template-card:nth-child(even):hover .t-feat {
    background: rgba(255, 179, 0, 0.05);
    border-color: rgba(255, 179, 0, 0.2);
    color: var(--secondary);
}

.template-link {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
}

.template-link svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    transition: var(--transition-fast);
}

.template-card:hover .template-link {
    color: var(--primary);
}

.template-card:nth-child(even):hover .template-link {
    color: var(--secondary);
}

.template-card:hover .template-link svg {
    transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   8. Pricing & Real-time Calculator Section
   -------------------------------------------------------------------------- */
.pricing {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-navy) 100%);
    position: relative;
    overflow: hidden;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 3.5rem;
    align-items: flex-start;
}

/* Pricing Cards Left Column */
.pricing-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.price-card {
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
}

.price-card.popular {
    border-color: rgba(255, 179, 0, 0.3);
    box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.8), 0 0 25px rgba(255, 179, 0, 0.1);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--secondary);
    color: var(--bg-dark);
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 30px;
    transform: rotate(45deg);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-header {
    margin-bottom: 2rem;
}

.price-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.price-amt-wrapper {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    margin-top: 0.75rem;
}

.price-currency {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
}

.price-card.popular .price-currency {
    color: var(--secondary);
}

.price-amt {
    font-size: 3rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--text-light);
    line-height: 1;
}

.price-period {
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-left: 0.25rem;
}

.price-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.price-feat-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
}

.price-feat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(0, 229, 255, 0.1);
    color: var(--primary);
    font-size: 12px;
}

.price-card.popular .price-feat-icon {
    background: rgba(255, 179, 0, 0.1);
    color: var(--secondary);
}

/* Pricing Interactive Calculator removed for simplification */

/* --------------------------------------------------------------------------
   9. Our Process Section (Interactive Roadmap)
   -------------------------------------------------------------------------- */
.process {
    padding: 8rem 0;
    background: var(--bg-dark);
    position: relative;
}

.process-timeline {
    position: relative;
    max-width: 900px;
    margin: 4rem auto 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, var(--border-color) 0%, rgba(255, 179, 0, 0.15) 100%);
}

.process-step {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 4rem;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-card {
    width: 45%;
    padding: 2.25rem 2rem;
    position: relative;
    z-index: 2;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

/* Timeline dot */
.process-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-dark);
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--primary);
    box-shadow: var(--shadow-card);
    transition: var(--transition-smooth);
    z-index: 5;
}

.process-step:hover .process-dot {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow-cyan);
    transform: translate(-50%, -50%) scale(1.15);
    color: var(--bg-dark);
    background: var(--primary);
}

.process-step:nth-child(even):hover .process-dot {
    border-color: var(--secondary);
    box-shadow: var(--shadow-glow-amber);
    color: var(--bg-dark);
    background: var(--secondary);
}

.process-step:nth-child(even) .process-dot {
    color: var(--secondary);
    border-color: rgba(255, 179, 0, 0.2);
}

.proc-num {
    font-size: 1.1rem;
}

.proc-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.proc-title svg {
    width: 20px;
    height: 20px;
    fill: var(--primary);
}

.process-step:nth-child(even) .proc-title svg {
    fill: var(--secondary);
}

.proc-desc {
    font-size: 0.9rem;
    line-height: 1.6;
}

/* --------------------------------------------------------------------------
   10. Coverage & Map Section
   -------------------------------------------------------------------------- */
.coverage {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--bg-navy) 0%, var(--bg-dark) 100%);
    position: relative;
    overflow: hidden;
}

/* Peta Indonesia removed for simplification */

/* --------------------------------------------------------------------------
   11. Testimonials & FAQ Section (Accordion)
   -------------------------------------------------------------------------- */
.testimonials-faq {
    padding: 8rem 0;
    background: var(--bg-dark);
}

.tf-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

/* Testimonials Slider */
.testimonial-section {
    display: flex;
    flex-direction: column;
}

.tf-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 2.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.tf-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
}

.testimonial-container {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    transform: translateX(30px);
}

.testimonial-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.t-card {
    padding: 2.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.t-quote {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
    position: relative;
}

.t-quote::before {
    content: '“';
    font-family: var(--font-heading);
    font-size: 5rem;
    position: absolute;
    top: -45px;
    left: -20px;
    color: rgba(0, 229, 255, 0.08);
    line-height: 1;
}

.t-client {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.t-client-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    overflow: hidden;
    background: #1c274c;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-weight: 700;
}

.t-client-info {
    display: flex;
    flex-direction: column;
}

.t-client-name {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-light);
}

.t-client-company {
    font-size: 0.8rem;
    color: var(--text-gray);
}

.testimonial-controls {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.t-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    cursor: pointer;
    transition: var(--transition-fast);
}

.t-btn:hover {
    background: var(--primary);
    color: var(--bg-dark);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow-cyan);
}

.t-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* FAQ Accordion */
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item.active {
    border-color: var(--border-glow);
    background: rgba(10, 17, 40, 0.4);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.faq-header {
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: transparent;
}

.faq-question {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-light);
}

.faq-icon-wrapper {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: var(--transition-smooth);
}

.faq-item.active .faq-icon-wrapper {
    transform: rotate(180deg);
    background: var(--primary);
    color: var(--bg-dark);
}

.faq-icon-wrapper svg {
    width: 12px;
    height: 12px;
    fill: currentColor;
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.faq-answer {
    padding: 0 1.5rem 1.5rem 1.5rem;
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* --------------------------------------------------------------------------
   12. Contact Form Section (WhatsApp Redirect)
   -------------------------------------------------------------------------- */
.contact {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-navy) 100%);
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 4rem;
}

/* Contact Info Column Left */
.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-tag-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.contact-lead {
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.contact-channels {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.channel-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem;
}

.channel-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(0, 229, 255, 0.08);
    border: 1px solid rgba(0, 229, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.channel-detail {
    display: flex;
    flex-direction: column;
}

.channel-lbl {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-gray);
}

.channel-val {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-light);
}

/* Contact Form Column Right */
.contact-form-card {
    padding: 3.5rem 3rem;
}

.form-title {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.form-desc {
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    position: relative;
    width: 100%;
}

.form-group.full-width {
    grid-column: span 2;
}

/* Floating Input Label Styles */
.form-input, .form-select, .form-textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 1rem 1.25rem;
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-fast);
    outline: none;
}

.form-textarea {
    resize: none;
    height: 120px;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    border-color: var(--primary);
    background: rgba(0, 229, 255, 0.02);
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.1);
}

.form-label {
    position: absolute;
    left: 1.25rem;
    top: 1rem;
    color: var(--text-gray);
    pointer-events: none;
    transition: var(--transition-smooth);
    transform-origin: left top;
    font-size: 0.95rem;
}

/* Float Label Up */
.form-input:focus ~ .form-label,
.form-input:not(:placeholder-shown) ~ .form-label,
.form-textarea:focus ~ .form-label,
.form-textarea:not(:placeholder-shown) ~ .form-label {
    transform: translateY(-1.75rem) scale(0.8);
    color: var(--primary);
    font-weight: 700;
}

/* For Select input label needs to float immediately */
.form-select ~ .form-label {
    transform: translateY(-1.75rem) scale(0.8);
    color: var(--text-gray);
}

.form-select:focus ~ .form-label {
    color: var(--primary);
    font-weight: 700;
}

.form-select option {
    background-color: var(--bg-navy);
    color: var(--text-light);
}

.form-btn {
    width: 100%;
}

/* --------------------------------------------------------------------------
   13. Footer Section
   -------------------------------------------------------------------------- */
.footer {
    background: var(--bg-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 5rem 0 2.5rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-logo-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    transition: var(--transition-fast);
}

.social-btn:hover {
    color: var(--primary);
    border-color: var(--primary);
    background: rgba(0, 229, 255, 0.05);
    transform: translateY(-2px);
}

.social-btn svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-link {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.footer-link:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.footer-contact-item svg {
    width: 16px;
    height: 16px;
    fill: var(--primary);
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    font-size: 0.85rem;
    color: var(--text-gray);
}

.footer-extra {
    display: flex;
    gap: 2rem;
    font-size: 0.85rem;
    color: var(--text-gray);
}

.footer-extra a:hover {
    color: var(--primary);
}

/* --------------------------------------------------------------------------
   14. Animations
   -------------------------------------------------------------------------- */
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.1); opacity: 0.9; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes float-reverse {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(12px); }
}

@keyframes car-bounce {
    0% { transform: translateY(0) scale(1.1); }
    100% { transform: translateY(-4px) scale(1.1); }
}

/* map-pulse keyframes removed */

/* --------------------------------------------------------------------------
   15. Responsive Media Queries
   -------------------------------------------------------------------------- */
@media (max-width: 1100px) {
    .hero-title {
        font-size: 2.75rem;
    }
    .features-grid, .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pricing-grid, .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    .container {
        padding: 0 1.5rem;
    }
    .header {
        padding: 1rem 0;
    }
    .menu-toggle {
        display: flex;
    }
    
    /* Responsive Hamburger Menu Open */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: rgba(2, 4, 15, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        z-index: 1000;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-left: 1px solid rgba(0, 229, 255, 0.1);
        box-shadow: -10px 0 35px rgba(0,0,0,0.8);
    }
    
    .nav-menu.open {
        right: 0;
    }
    
    .menu-toggle.open span:first-child {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .menu-toggle.open span:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.open span:last-child {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .hero {
        padding-top: 8rem;
    }
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 4rem;
    }
    .hero-content {
        align-items: center;
    }
    .hero-actions {
        justify-content: center;
    }
    .process-timeline::before {
        left: 20px;
    }
    .process-step {
        flex-direction: row !important;
        margin-bottom: 3rem;
    }
    .process-card {
        width: calc(100% - 60px);
        margin-left: 60px;
        padding: 1.5rem;
    }
    .process-dot {
        left: 20px;
        transform: translate(-50%, -50%);
    }
    .process-step:hover .process-dot {
        transform: translate(-50%, -50%) scale(1.1);
    }
    .tf-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    .testimonial-container {
        height: auto;
        min-height: 250px;
    }
    .t-card {
        padding: 1.75rem;
    }
    .contact-form-card {
        padding: 2.25rem 1.5rem;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .form-group.full-width {
        grid-column: auto;
    }
    .form-group {
        margin-bottom: 2rem;
    }
    .form-row .form-group {
        margin-bottom: 2rem;
    }
    .form-row .form-group:last-child {
        margin-bottom: 2rem;
    }
    .form-btn {
        margin-top: 0.5rem;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    .footer-extra {
        justify-content: center;
    }
}

@media (max-width: 550px) {
    .hero-title {
        font-size: 2.25rem;
    }
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    .hero-actions .btn {
        width: 100%;
    }
    .features-grid, .showcase-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* --------------------------------------------------------------------------
   16. Tidy Pass - Cleaner, More Consistent Presentation
   -------------------------------------------------------------------------- */
:root {
    --bg-dark: #071018;
    --bg-navy: #0f1a24;
    --bg-card: rgba(15, 26, 36, 0.78);
    --primary: #35d0ba;
    --primary-glow: rgba(53, 208, 186, 0.22);
    --secondary: #f6b84b;
    --secondary-glow: rgba(246, 184, 75, 0.22);
    --text-light: #f7faf9;
    --text-gray: #b6c3c4;
    --border-color: rgba(255, 255, 255, 0.1);
    --border-glow: rgba(53, 208, 186, 0.32);
    --shadow-card: 0 18px 44px rgba(0, 0, 0, 0.28);
}

body {
    background:
        radial-gradient(circle at 18% 8%, rgba(53, 208, 186, 0.12), transparent 30rem),
        radial-gradient(circle at 86% 18%, rgba(246, 184, 75, 0.08), transparent 28rem),
        linear-gradient(180deg, #071018 0%, #0b1219 48%, #071018 100%);
    font-size: 1rem;
}

.container {
    max-width: 1180px;
}

.header {
    background: rgba(7, 16, 24, 0.84);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header.shrink {
    background: rgba(7, 16, 24, 0.94);
}

.logo-icon,
.feature-icon-wrapper,
.step-number,
.fb-icon {
    border-radius: 12px;
}

.logo-text,
.nav-link,
.btn,
.section-tag {
    letter-spacing: 0;
}

.nav-menu {
    gap: 1.7rem;
}

.nav-link {
    color: #d9e4e4;
    font-size: 0.92rem;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.btn {
    border-radius: 10px;
    min-height: 48px;
    box-shadow: none;
}

.btn:hover,
.glass-card:hover,
.area-card:hover {
    transform: translateY(-2px);
}

.btn-whatsapp {
    border-radius: 10px !important;
    box-shadow: 0 12px 26px rgba(37, 211, 102, 0.22) !important;
}

.btn-whatsapp:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 16px 34px rgba(37, 211, 102, 0.32) !important;
}

.hero {
    min-height: auto;
    padding: 10rem 0 5rem;
}

.hero-grid {
    gap: clamp(2rem, 6vw, 5rem);
    align-items: center;
}

.hero-badge {
    border-radius: 999px;
    background: rgba(53, 208, 186, 0.1);
    border-color: rgba(53, 208, 186, 0.24);
}

.hero-title {
    max-width: 720px;
    font-size: clamp(2.4rem, 5vw, 4.55rem);
}

.hero-description {
    max-width: 660px;
    color: #c3d1d2;
}

.hero-screenshot-wrapper img {
    border-radius: 12px !important;
    box-shadow: 0 22px 52px rgba(0, 0, 0, 0.38) !important;
}

.floating-circle {
    opacity: 0.38;
}

.floating-badge {
    border-radius: 12px;
    background: rgba(10, 18, 27, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.28);
}

.trust-banner {
    background: rgba(255, 255, 255, 0.035) !important;
    margin-bottom: 0 !important;
}

section {
    scroll-margin-top: 96px;
}

.features,
.showcase,
.pricing,
.process,
.coverage,
.testimonials-faq,
.contact {
    padding: 5.5rem 0;
}

.section-header {
    margin-bottom: 3.5rem;
}

.section-tag {
    color: var(--secondary);
    background: rgba(246, 184, 75, 0.1);
    border: 1px solid rgba(246, 184, 75, 0.2);
    border-radius: 999px;
    padding: 0.45rem 0.85rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.25rem);
}

.section-subtitle {
    max-width: 720px;
    margin-inline: auto;
    color: #b6c3c4;
}

.glass-card,
.feature-card,
.pricing-card,
.contact-form-card,
.faq-item,
.t-card,
.template-card,
.process-card,
.area-card {
    border-radius: 12px !important;
    background: rgba(15, 26, 36, 0.76) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: var(--shadow-card) !important;
}

.features-grid,
.showcase-grid,
.pricing-grid,
.tf-grid,
.contact-grid {
    gap: 1.5rem;
}

.feature-card,
.pricing-card,
.contact-form-card,
.faq-item,
.t-card,
.process-card,
.area-card {
    padding: clamp(1.4rem, 3vw, 2rem);
}

.feature-title,
.pricing-card h3,
.faq-question {
    color: #ffffff;
}

.feature-desc,
.pricing-card p,
.faq-answer,
.contact-lead,
.footer-desc {
    color: #b6c3c4;
}

.template-preview,
.template-browser,
.showcase-card,
.portfolio-card img {
    border-radius: 10px !important;
}

input,
select,
textarea,
.form-control {
    border-radius: 10px !important;
    background: rgba(255, 255, 255, 0.055) !important;
    border: 1px solid rgba(255, 255, 255, 0.13) !important;
}

input:focus,
select:focus,
textarea:focus,
.form-control:focus {
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 4px rgba(53, 208, 186, 0.12) !important;
}

.footer {
    background: #060d13;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Fix pricing cards and process cards that still use older inline layout. */
.pricing-grid {
    display: flex !important;
    justify-content: center !important;
}

.pricing-cards {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(280px, 1fr)) !important;
    gap: 1.5rem !important;
    width: 100% !important;
    max-width: 980px !important;
}

.price-card {
    display: flex !important;
    flex-direction: column;
    min-width: 0 !important;
    max-width: none !important;
    padding: clamp(1.5rem, 3vw, 2rem) !important;
    border-radius: 12px !important;
    background: rgba(15, 26, 36, 0.78) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: var(--shadow-card) !important;
}

.price-card.popular {
    border-color: rgba(246, 184, 75, 0.34) !important;
}

.popular-badge {
    top: 1rem;
    right: 1rem;
    transform: none;
    border-radius: 999px;
    padding: 0.35rem 0.65rem;
    letter-spacing: 0;
}

.price-header {
    padding-right: 7rem;
}

.price-card:not(.popular) .price-header {
    padding-right: 0;
}

.price-amt-wrapper {
    flex-wrap: wrap;
    row-gap: 0.35rem;
}

.price-amt {
    font-size: clamp(2.2rem, 5vw, 3rem);
}

.price-period {
    width: 100%;
    margin-left: 0;
}

.price-features {
    flex: 1;
}

.price-feat-item {
    align-items: flex-start;
}

.price-feat-icon {
    flex: 0 0 20px;
    margin-top: 0.18rem;
    font-size: 0 !important;
    line-height: 1;
}

.price-feat-icon::before {
    content: "OK";
    font-size: 9px;
    font-weight: 800;
}

.process-timeline {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 1.5rem !important;
    max-width: none !important;
    margin-top: 3rem !important;
}

.process-timeline::before {
    display: none !important;
}

.process-step {
    display: block !important;
    margin-bottom: 0 !important;
    text-align: center;
}

.process-dot {
    position: static !important;
    transform: none !important;
    width: 46px;
    height: 46px;
    margin: 0 auto -1.25rem auto !important;
    background: linear-gradient(135deg, var(--primary), #1ba995);
    border-color: rgba(255, 255, 255, 0.16);
    color: #061015;
}

.process-step:hover .process-dot,
.process-step:nth-child(even):hover .process-dot {
    transform: translateY(-2px) !important;
    box-shadow: 0 12px 26px rgba(53, 208, 186, 0.22);
}

.process-step:nth-child(even) .process-dot {
    background: linear-gradient(135deg, var(--secondary), #d99824);
    color: #061015;
}

.process-card {
    width: 100% !important;
    min-height: 100% !important;
    padding: 2.25rem 1.5rem 1.5rem !important;
}

.proc-title {
    justify-content: center;
    gap: 0.55rem;
    line-height: 1.25;
}

.proc-title svg {
    flex: 0 0 22px;
}

.proc-desc {
    color: #b6c3c4;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

#showcase-grid {
    display: none !important;
}

.portfolio-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    overflow: hidden;
}

.portfolio-preview {
    aspect-ratio: 16 / 10;
    background:
        linear-gradient(135deg, rgba(53, 208, 186, 0.16), rgba(246, 184, 75, 0.1)),
        rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.portfolio-preview img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: top;
}

.portfolio-preview-text {
    display: grid;
    place-items: center;
}

.portfolio-preview-text span {
    display: grid;
    place-items: center;
    width: 72px;
    height: 72px;
    border-radius: 16px;
    background: rgba(7, 16, 24, 0.78);
    color: var(--primary);
    border: 1px solid rgba(255, 255, 255, 0.14);
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
}

.portfolio-domain {
    color: #d7e1e1;
    font-size: 0.86rem;
    word-break: break-word;
}

.quick-order-card {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: clamp(1.5rem, 4vw, 2.5rem);
    margin-top: 2rem;
    padding: clamp(1.5rem, 4vw, 2.25rem);
}

.quick-order-copy {
    align-self: center;
}

.quick-order-copy h3 {
    margin: 1rem 0 0.75rem;
    font-size: clamp(1.5rem, 3vw, 2rem);
}

.quick-order-copy p {
    color: #b6c3c4;
}

.quick-order-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.quick-order-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.quick-order-form .form-group {
    margin-bottom: 0;
}

.quick-order-form .form-input,
.quick-order-form .form-select {
    width: 100%;
}

.quick-order-form textarea {
    min-height: 96px;
    resize: vertical;
}

.quick-order-btn {
    width: 100%;
}

/* --------------------------------------------------------------------------
   17. Brand Color Theme — Orange & Navy (KepriWebsite Brand)
   -------------------------------------------------------------------------- */
:root {
    --bg-dark:        #F5F7FA;              /* Abu Terang — background utama */
    --bg-navy:        #EEF1F6;              /* Abu lebih gelap — section alt */
    --bg-card:        #ffffff;              /* Card putih bersih */
    --primary:        #F15A24;              /* Orange Utama — CTA, aksen */
    --primary-glow:   rgba(241,90,36,0.15);
    --primary-dk:     #D44A18;              /* Orange lebih gelap — hover */
    --secondary:      #0B1F3A;             /* Navy Utama — text, dark bg */
    --secondary-glow: rgba(11,31,58,0.12);
    --accent-orange:  #FF7A1A;             /* Orange Terang */
    --accent-blue:    #0066CC;             /* Biru Digital */
    --accent-green:   #7CB518;             /* Hijau Aksen */
    --text-light:     #0B1F3A;             /* Navy — teks utama */
    --text-gray:      #5A6A7E;             /* Abu — teks sekunder */
    --border-color:   rgba(11,31,58,0.1);
    --border-glow:    rgba(241,90,36,0.3);
    --shadow-card:    0 8px 32px rgba(11,31,58,0.08);
    --shadow-glow-cyan:  0 0 20px rgba(241,90,36,0.2);
    --shadow-glow-amber: 0 0 20px rgba(11,31,58,0.15);
}

html,
body {
    background-color: #F5F7FA;
}

body {
    color: #0B1F3A;
    background:
        radial-gradient(circle at 8% 10%, rgba(241,90,36,0.07), transparent 30rem),
        radial-gradient(circle at 90% 15%, rgba(0,102,204,0.06), transparent 28rem),
        linear-gradient(180deg, #ffffff 0%, #F5F7FA 50%, #ffffff 100%);
}

p,
.section-subtitle,
.feature-desc,
.pricing-card p,
.price-header p,
.faq-answer,
.contact-lead,
.footer-desc,
.proc-desc,
.quick-order-copy p,
.template-desc {
    color: #5A6A7E !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.section-title,
.feature-title,
.price-name,
.template-title,
.faq-question,
.contact-tag-title {
    color: #0B1F3A !important;
}

.header {
    background: rgba(255, 255, 255, 0.88);
    border-bottom: 1px solid rgba(16, 32, 39, 0.08);
    box-shadow: 0 12px 30px rgba(16, 32, 39, 0.06);
}

.header.shrink {
    background: rgba(255, 255, 255, 0.96);
}

.nav-link {
    color: #33484e;
}

.logo-icon {
    background: linear-gradient(135deg, #F15A24, #FF7A1A);
}

.hero {
    background:
        linear-gradient(135deg, rgba(255,255,255,0.94), rgba(245,247,250,0.88)),
        radial-gradient(circle at 80% 35%, rgba(241,90,36,0.1), transparent 28rem);
}

.hero-description {
    color: #4a5568 !important;
}

.text-gradient-cyan {
    background: linear-gradient(135deg, #0B1F3A, #F15A24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-badge,
.section-tag {
    background: rgba(241,90,36,0.08);
    border-color: rgba(241,90,36,0.22);
    color: #D44A18;
}

.floating-badge,
.glass-card,
.feature-card,
.price-card,
.contact-form-card,
.faq-item,
.t-card,
.template-card,
.process-card,
.area-card,
.quick-order-card {
    background: rgba(255, 255, 255, 0.9) !important;
    border: 1px solid rgba(16, 32, 39, 0.09) !important;
    box-shadow: var(--shadow-card) !important;
}

.floating-badge .fb-title,
.floating-badge .fb-sub {
    color: #102027;
}

.features,
.pricing,
.coverage,
.contact {
    background: #ffffff !important;
}

.showcase,
.process,
.testimonials-faq {
    background: #EEF1F6 !important;
}

.trust-banner {
    background: #ffffff !important;
    border-color: rgba(16, 32, 39, 0.08) !important;
}

.portfolio-preview {
    background:
        linear-gradient(135deg, rgba(241,90,36,0.1), rgba(0,102,204,0.08)),
        #f5f7fa;
    border-bottom-color: rgba(11,31,58,0.08);
}

.portfolio-preview-text span {
    background: #ffffff;
    color: var(--primary);
    border-color: rgba(241,90,36,0.18);
}

.portfolio-domain {
    color: #42575c;
}

input,
select,
textarea,
.form-control {
    color: #102027 !important;
    background: #ffffff !important;
    border-color: rgba(16, 32, 39, 0.14) !important;
}

.form-label {
    color: #667a7e !important;
}

.price-feat-item {
    color: #33484e;
}

.price-feat-icon {
    background: rgba(241,90,36,0.09);
}

.btn-secondary {
    color: #102027;
    background: #ffffff;
    border-color: rgba(16, 32, 39, 0.14);
}

.btn-secondary:hover {
    background: rgba(241,90,36,0.07);
    border-color: rgba(241,90,36,0.25);
}

.footer {
    background: #0B1F3A;
}

.footer h4,
.footer .logo-text,
.footer .copyright {
    color: #ffffff !important;
}

.footer p,
.footer span,
.footer a {
    color: #c9d7d7;
}

/* --------------------------------------------------------------------------
   18. Professional Polish
   -------------------------------------------------------------------------- */
.nav-container {
    min-height: 72px;
}

.logo-text {
    font-size: 1.25rem;
}

.nav-link-cta {
    padding: 0.6rem 1rem;
    color: #ffffff !important;
    background: linear-gradient(135deg, var(--primary), #D44A18);
    border-radius: 10px;
    box-shadow: 0 10px 22px rgba(241,90,36,0.25);
}

.nav-link-cta::after {
    display: none;
}

.hero {
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255,255,255,0.97) 0%, rgba(255,255,255,0.80) 48%, rgba(245,247,250,0.72) 100%);
    pointer-events: none;
}

.hero-grid {
    position: relative;
    z-index: 1;
}

.hero-title {
    letter-spacing: 0;
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.hero-proof span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0.4rem 0.75rem;
    color: #33484e;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(16, 32, 39, 0.08);
    border-radius: 999px;
    font-size: 0.88rem;
    box-shadow: 0 8px 20px rgba(16, 32, 39, 0.06);
}

.section-header {
    max-width: 820px;
    margin-inline: auto;
}

.feature-card,
.price-card,
.portfolio-card,
.process-card,
.quick-order-card,
.contact-form-card {
    border-top: 4px solid rgba(241,90,36,0.28) !important;
}

.feature-card:hover,
.price-card:hover,
.portfolio-card:hover,
.quick-order-card:hover {
    box-shadow: 0 22px 54px rgba(11,31,58,0.13) !important;
}

.feature-icon-wrapper,
.channel-icon,
.fb-icon {
    box-shadow: inset 0 0 0 1px rgba(16, 32, 39, 0.04);
}

.portfolio-card .template-info,
.template-info {
    display: flex;
    flex: 1;
    flex-direction: column;
}

.template-meta {
    margin-top: auto;
}

.price-card.popular {
    border-top-color: #F15A24 !important;
}

.quick-order-card {
    position: relative;
    overflow: hidden;
}

.quick-order-card::after {
    content: "";
    position: absolute;
    right: -90px;
    bottom: -90px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(241,90,36,0.1), transparent 68%);
    pointer-events: none;
}

.quick-order-form,
.quick-order-copy {
    position: relative;
    z-index: 1;
}

.floating-wa {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 999;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 1.1rem;
    color: #ffffff;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 999px;
    box-shadow: 0 16px 34px rgba(37, 211, 102, 0.32);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
}

.floating-wa:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 42px rgba(37, 211, 102, 0.42);
}

.footer-grid {
    align-items: flex-start;
}

.footer-contact-item {
    line-height: 1.55;
}

/* --------------------------------------------------------------------------
   19. Campaign Landing Simplification
   -------------------------------------------------------------------------- */
.hero-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
}

.hero-title {
    max-width: 760px;
    font-size: clamp(2.45rem, 5.1vw, 4.45rem);
    line-height: 1.03;
}

.hero-description {
    max-width: 570px;
    font-size: 1.12rem !important;
}

.hero-actions .btn {
    min-height: 54px;
    padding-inline: 1.35rem;
}

.hero-actions .btn-whatsapp {
    font-size: 1rem !important;
}

.section-title {
    line-height: 1.08;
}

.features-grid {
    margin-bottom: 2rem;
}

.feature-card,
.price-card,
.quick-order-card {
    padding: clamp(1.55rem, 3vw, 2.25rem) !important;
}

.feature-title,
.price-name {
    font-size: 1.35rem;
}

.quick-order-copy h3 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    line-height: 1.08;
}

.quick-order-form .form-input,
.quick-order-form .form-select {
    min-height: 54px;
}

.quick-order-btn {
    min-height: 56px;
    font-size: 1rem !important;
}

.price-amt {
    font-size: clamp(2.7rem, 7vw, 3.65rem);
}

.single-price {
    grid-template-columns: minmax(280px, 520px) !important;
    max-width: 560px !important;
}

.single-price #price-card-basic {
    max-width: 540px !important;
    border-top-color: rgba(17, 159, 139, 0.55) !important;
}

.single-price #price-card-basic .btn {
    color: #ffffff !important;
    background: linear-gradient(135deg, #25D366, #128C7E) !important;
    border: none !important;
}

/* #price-card-custom {
    display: none !important;
} */

.price-old {
    display: inline-block;
    margin-top: 1rem;
    color: #8a9a9d;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: line-through;
    text-decoration-thickness: 3px;
    text-decoration-color: #ef4444;
}

.portfolio-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.portfolio-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-specialist,
.coverage {
    display: none !important;
}

.features > .container > .section-header,
.features > .container > .features-grid {
    display: none !important;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: clamp(2.1rem, 10vw, 3rem);
    }

    .hero-proof {
        justify-content: center;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .floating-wa {
        right: 1rem;
        bottom: 1rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 8rem 0 4rem;
    }

    .hero-grid {
        gap: 2.5rem;
    }

    .hero-actions {
        width: 100%;
    }

    .hero-actions .btn {
        flex: 1 1 220px;
    }

    .nav-menu {
        background: rgba(255, 255, 255, 0.98);
        border-left-color: rgba(16, 32, 39, 0.1);
        box-shadow: -10px 0 35px rgba(16, 32, 39, 0.12);
    }

    .pricing-cards,
    .process-timeline {
        grid-template-columns: 1fr !important;
    }

    .price-header {
        padding-right: 0;
        padding-top: 2rem;
    }

    .price-card:not(.popular) .price-header {
        padding-top: 0;
    }

    .quick-order-card,
    .quick-order-row {
        grid-template-columns: 1fr;
    }

    .features,
    .showcase,
    .pricing,
    .process,
    .coverage,
    .testimonials-faq,
    .contact {
        padding: 4rem 0;
    }
}

/* --------------------------------------------------------------------------
   19. Global Font Size Reduction
   -------------------------------------------------------------------------- */

body { font-size: 0.95rem; }

.hero-title { font-size: clamp(1.8rem, 4vw, 2.75rem); }
.section-title { font-size: clamp(1.45rem, 3vw, 2rem); }

.hero-description,
.section-subtitle { font-size: 0.97rem; }

.feature-desc,
.proc-desc,
.faq-answer,
.contact-lead,
.template-desc,
.footer-desc,
.t-quote,
.quick-order-copy p { font-size: 0.9rem; }

.price-amt { font-size: 2.5rem; }

.form-input,
.form-select { font-size: 0.88rem; }

.btn {
    font-size: 0.9rem;
    padding: 0.75rem 1.7rem;
}
.btn-whatsapp {
    font-size: 0.95rem !important;
    padding: 0.78rem 1.7rem !important;
}

.nav-link { font-size: 0.87rem; }
.section-tag { font-size: 0.74rem; }

.feature-title,
.proc-title,
.faq-question,
.template-title,
.price-name { font-size: 1rem; }

.contact-tag-title { font-size: clamp(1.35rem, 3vw, 1.85rem); }

.footer-title { font-size: 0.92rem; }
.footer-link  { font-size: 0.84rem; }
.copyright    { font-size: 0.78rem; }

.tf-title { font-size: 1.25rem; }

/* --------------------------------------------------------------------------
   20. Header Slim (No Nav Menu — Landing Page Only)
   -------------------------------------------------------------------------- */
.header {
    padding: 0.85rem 0;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.header.shrink {
    padding: 0.6rem 0;
}

.nav-container {
    min-height: unset;
}

/* Sembunyikan semua elemen nav jika ada sisa */
.nav-menu,
.menu-toggle,
.mobile-menu {
    display: none !important;
}

/* Pastikan logo dan CTA sejajar dengan benar */
.header .nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
