/* ========================================
   NexusTech Solutions - Main Stylesheet
   Dark Tech Aesthetic with Teal/Cyan Accents
   ======================================== */

/* CSS Variables - Elevated Dark Tech Aesthetic */
:root {
    /* ========================================
       COLOR PALETTE - Sophisticated Dark
       ======================================== */
    /* Backgrounds - Layered Depth */
    --bg-primary: #080808;
    --bg-secondary: #0d0d0f;
    --bg-tertiary: #131316;
    --bg-card: #18181c;
    --bg-card-hover: #1e1e23;
    --bg-elevated: #222228;

    /* Accent Colors - Teal/Cyan with variants */
    --accent-primary: #00d4aa;
    --accent-secondary: #22d3ee;
    --accent-tertiary: #06b6d4;
    --accent-primary-dark: #00a87d;
    --accent-secondary-dark: #0891b2;

    /* Accent gradients */
    --gradient-teal: linear-gradient(135deg, #00d4aa 0%, #22d3ee 100%);
    --gradient-teal-subtle: linear-gradient(135deg, rgba(0, 212, 170, 0.15) 0%, rgba(34, 211, 238, 0.15) 100%);
    --gradient-surface: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, transparent 100%);

    /* Text Colors */
    --text-primary: #fafafa;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;
    --text-subtle: #52525b;
    --text-dark: #09090b;

    /* Border Colors */
    --border-subtle: rgba(255, 255, 255, 0.06);
    --border-default: rgba(255, 255, 255, 0.1);
    --border-hover: rgba(255, 255, 255, 0.15);
    --border-accent: rgba(0, 212, 170, 0.4);

    /* ========================================
       TYPOGRAPHY - Fluid with clamp()
       ======================================== */
    --font-display: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;

    /* Fluid Heading Sizes */
    --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.8rem);
    --text-sm: clamp(0.875rem, 0.8rem + 0.25vw, 0.9rem);
    --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.05rem);
    --text-lg: clamp(1.125rem, 1rem + 0.5vw, 1.25rem);
    --text-xl: clamp(1.25rem, 1.1rem + 0.75vw, 1.5rem);
    --text-2xl: clamp(1.5rem, 1.2rem + 1.5vw, 2rem);
    --text-3xl: clamp(1.875rem, 1.5rem + 2vw, 2.5rem);
    --text-4xl: clamp(2.25rem, 1.75rem + 2.5vw, 3rem);
    --text-5xl: clamp(2.75rem, 2rem + 3vw, 3.5rem);
    --text-6xl: clamp(3.25rem, 2.5rem + 4vw, 4.5rem);

    /* ========================================
       SPACING - Refined System
       ======================================== */
    --space-1: 0.25rem;    /* 4px */
    --space-2: 0.5rem;    /* 8px */
    --space-3: 0.75rem;   /* 12px */
    --space-4: 1rem;      /* 16px */
    --space-5: 1.25rem;   /* 20px */
    --space-6: 1.5rem;   /* 24px */
    --space-8: 2rem;     /* 32px */
    --space-10: 2.5rem;  /* 40px */
    --space-12: 3rem;    /* 48px */
    --space-16: 4rem;    /* 64px */
    --space-20: 5rem;    /* 80px */
    --space-24: 6rem;    /* 96px */

    /* Legacy spacing aliases for compatibility */
    --spacing-xs: var(--space-4);
    --spacing-sm: var(--space-6);
    --spacing-md: var(--space-12);
    --spacing-lg: var(--space-16);
    --spacing-xl: var(--space-24);

    /* ========================================
       LAYOUT
       ======================================== */
    --container-max: 1200px;
    --container-padding: var(--space-6);
    --section-padding: var(--space-24);
    --section-padding-md: var(--space-16);

    /* ========================================
       BORDER RADIUS - Refined
       ======================================== */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-full: 9999px;

    /* ========================================
       TRANSITIONS - Smoother
       ======================================== */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms ease;
    --transition-slower: 600ms ease;

    /* Legacy */
    --transition-fast: var(--transition-fast);
    --transition-normal: var(--transition-base);
    --transition-slow: var(--transition-slower);

    /* ========================================
       SHADOWS - More dimensional
       ======================================== */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.35);
    --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);
    --shadow-glow: 0 4px 24px rgba(0, 212, 170, 0.25);
    --shadow-glow-lg: 0 8px 40px rgba(0, 212, 170, 0.35);

    /* Legacy */
    --shadow-sm: var(--shadow-sm);
    --shadow-md: var(--shadow-md);
    --shadow-lg: var(--shadow-lg);
    --shadow-teal: var(--shadow-glow);

    /* ========================================
       Z-INDEX scale
       ======================================== */
    --z-base: 1;
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-overlay: 300;
    --z-modal: 400;
    --z-toast: 500;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-secondary);
    line-height: 1.6;
    overflow-x: hidden;
    min-width: 320px; /* Prevent horizontal overflow on small devices */
    position: relative;
}

/* Grain texture overlay - subtle noise */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: overlay;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    color: var(--text-primary);
    font-weight: 700;
    line-height: 1.2;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Container */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding-left: clamp(1rem, 4vw, var(--container-padding));
    padding-right: clamp(1rem, 4vw, var(--container-padding));
}

/* ========================================
   NAVIGATION
   ======================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-sticky);
    background: rgba(8, 8, 8, 0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border-subtle);
    padding: 1rem 0;
    transition: all var(--transition-base);
}

.navbar.scrolled {
    background: rgba(8, 8, 8, 0.95);
    box-shadow: var(--shadow-lg);
    border-bottom-color: var(--border-default);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding-left: clamp(1rem, 4vw, var(--container-padding));
    padding-right: clamp(1rem, 4vw, var(--container-padding));
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
}

.logo-icon {
    color: var(--accent-primary);
    font-size: 1.75rem;
}

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

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

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-links a {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-teal);
    transition: var(--transition-normal);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-primary);
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: var(--text-sm);
    cursor: pointer;
    transition: all var(--transition-base);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.btn:hover::before {
    opacity: 1;
}

.btn-primary {
    background: var(--gradient-teal);
    color: var(--text-dark);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow-lg);
}

.btn-primary:active {
    transform: translateY(-1px);
    box-shadow: var(--shadow-glow);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--border-default);
    color: var(--text-primary);
}

.btn-secondary:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    transform: translateY(-2px);
    background: var(--gradient-teal-subtle);
}

.btn-secondary:active {
    transform: translateY(0);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--border-default);
    color: var(--text-secondary);
}

.btn-outline:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: var(--text-sm);
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 24px rgba(37, 211, 102, 0.4);
    background: #20bd5a;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0.5rem;
    background: none;
    border: none;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition-normal);
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    position: relative;
    padding: 0 0 4rem;
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10, 10, 10, 0.7) 0%,
        rgba(10, 10, 10, 0.5) 40%,
        rgba(10, 10, 10, 0.7) 100%
    );
}

.hero-bg { display: none; }
}

@keyframes particleFloat {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-200px) rotate(360deg); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 10, 10, 0.85) 0%,
        rgba(10, 10, 10, 0.7) 50%,
        rgba(10, 10, 10, 0.85) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-teal-subtle);
    border: 1px solid var(--border-accent);
    color: var(--accent-primary);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.9); }
}

.hero-title {
    font-size: var(--text-5xl);
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.gradient-text {
    background: var(--gradient-teal);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 520px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 800;
    color: var(--accent-primary);
}

.stat-label {
    font-size: var(--text-xs);
    color: var(--text-muted);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-subtle);
}

.scroll-indicator {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: none;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--accent-primary);
    border-bottom: 2px solid var(--accent-primary);
    transform: rotate(45deg);
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ========================================
   SERVICES PREVIEW
   ======================================== */

.services-preview {
    padding: var(--spacing-xl) 0;
    background: var(--bg-secondary);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-tag {
    display: inline-block;
    color: var(--accent-secondary);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

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

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

/* Subtle interior highlight */
.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.service-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-accent);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.service-card h3 {
    font-size: var(--text-xl);
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: var(--text-sm);
}

.service-link {
    color: var(--accent-primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.service-link:hover {
    gap: 0.75rem;
}

/* ========================================
   WHY US SECTION
   ======================================== */

.why-us {
    padding: var(--spacing-xl) 0;
    background: var(--bg-secondary);
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.why-us-content {
    padding-right: 2rem;
}

.why-us-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.why-us-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-normal);
}

.why-us-list li:hover {
    border-color: rgba(0, 212, 170, 0.3);
    transform: translateX(5px);
}

.why-us-list .check-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: var(--gradient-teal);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--text-dark);
}

.why-us-list strong {
    display: block;
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.why-us-list p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.why-us-visual {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    position: relative;
}

.visual-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: var(--transition-normal);
}

.visual-card:hover {
    border-color: var(--accent-primary);
    transform: translateY(-5px);
}

.visual-card.card-1 {
    grid-column: 1 / 3;
}

.visual-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.visual-card span {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ========================================
   TESTIMONIALS
   ======================================== */

.testimonials {
    padding: var(--spacing-xl) 0;
    background: var(--gradient-dark);
}

.testimonials-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonials-slider {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 1rem 0;
    width: 100%;
}

.testimonials-slider::-webkit-scrollbar {
    display: none;
}

.testimonials-slider {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.testimonial-card {
    min-width: 350px;
    max-width: 350px;
    scroll-snap-align: start;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(34, 211, 238, 0.03), transparent);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.testimonial-card:hover {
    border-color: rgba(34, 211, 238, 0.3);
    transform: translateY(-2px);
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-rating {
    color: #fbbf24;
    font-size: var(--text-sm);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: var(--text-base);
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-subtle);
}

.author-avatar {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    background: var(--gradient-teal);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1rem;
}

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

.author-info strong {
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 600;
}

.author-info span {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.slider-arrow {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-normal);
    z-index: 10;
}

.slider-arrow:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.slider-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition-normal);
}

.slider-dots .dot.active,
.slider-dots .dot:hover {
    background: var(--accent-primary);
    transform: scale(1.2);
}

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

.author-name {
    font-weight: 600;
    color: var(--text-primary);
}

.author-role {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ========================================
   CTA SECTION
   ======================================== */

.cta-section {
    padding: var(--spacing-xl) 0;
    background: var(--gradient-subtle);
    border-top: 1px solid rgba(0, 212, 170, 0.2);
    border-bottom: 1px solid rgba(0, 212, 170, 0.2);
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-buttons .btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
    min-width: 220px;
}

.btn-whatsapp.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
    min-width: 220px;
}

/* ========================================
   CLIENTS SECTION
   ======================================== */

.clients {
    padding: 4rem 0;
    background: var(--bg-secondary);
}

.clients-label {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.clients-grid {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.client-logo {
    background: var(--bg-card);
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-weight: 600;
    color: var(--text-secondary);
    min-width: 160px;
    text-align: center;
    font-size: 0.85rem;
    letter-spacing: 0.3px;
    transition: var(--transition-normal);
}

.client-logo:hover {
    background: var(--bg-card-hover);
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    transform: translateY(-2px);
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: var(--bg-secondary);
    padding: var(--spacing-lg) 0 var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: var(--spacing-lg);
}

.footer-brand {
    padding-right: 1rem;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-top: 1rem;
    max-width: 280px;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-muted);
    transition: var(--transition-normal);
}

.footer-social a:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    transform: translateY(-3px);
}

.footer-social svg {
    width: 18px;
    height: 18px;
}

.footer-links h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.footer-links ul li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: var(--transition-normal);
}

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

.footer-contact h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact ul li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-contact svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--accent-primary);
}

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

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* ========================================
   WHATSAPP FLOAT BUTTON
   ======================================== */

.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    transition: var(--transition-normal);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 40px rgba(37, 211, 102, 0.4);
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
    color: white;
}

/* ========================================
   WHATSAPP POPUP
   ======================================== */

.whatsapp-popup {
    position: fixed;
    bottom: 6rem;
    right: 2rem;
    background: var(--bg-card);
    border: 1px solid rgba(0, 212, 170, 0.3);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    max-width: 320px;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transform: translateY(20px);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.whatsapp-popup.show {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.popup-header h4 {
    color: var(--accent-primary);
    font-size: 1rem;
}

.popup-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.popup-close:hover {
    color: var(--text-primary);
}

.popup-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.popup-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #25D366;
    color: white;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.9rem;
    width: 100%;
    justify-content: center;
}

.popup-btn:hover {
    background: #20bd5a;
}

/* ========================================
   PAGE HEADER (for inner pages)
   ======================================== */

.page-header {
    padding: 150px 0 80px;
    background: var(--bg-secondary);
    text-align: center;
}

.page-header h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin: 1rem 0;
}

.page-header p {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   RESPONSIVE DESIGN - Tablet-First
   ======================================== */

/* Large Tablet (iPad Pro landscape) & Small Desktop */
@media (max-width: 1100px) {
    :root {
        --section-padding: var(--space-20);
        --section-padding-md: var(--space-12);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-detail-grid.reverse {
        direction: ltr;
    }

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

    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
        gap: var(--space-12);
    }

    .why-us-content {
        padding-right: 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .story-content {
        padding-right: 0;
    }
}

/* Tablet (iPad portrait) & Large Phones */
@media (max-width: 900px) {
    :root {
        --section-padding: var(--space-16);
        --section-padding-md: var(--space-10);
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-title {
        font-size: var(--text-4xl);
    }

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

    .service-detail-card {
        grid-template-columns: 1fr;
        padding: 2rem;
    }

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

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }

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

    .testimonial-card {
        min-width: 300px;
        max-width: 300px;
    }

    .result-cards {
        grid-template-columns: repeat(3, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .different-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

/* Legacy: Desktop */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Legacy: Mobile */
@media (max-width: 768px) {
    :root {
        --section-padding: var(--space-12);
        --section-padding-md: var(--space-8);
        --container-padding: var(--space-4);
    }

    .nav-links {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .nav-menu.active .nav-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-secondary);
        padding: 2rem;
        gap: 1rem;
        border-top: 1px solid var(--border-subtle);
    }

    .btn-whatsapp {
        display: none;
    }

    .hero {
        padding-top: 100px;
    }

    .hero-title {
        font-size: var(--text-3xl);
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .stat-divider {
        display: none;
    }

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

    .testimonial-slider {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .whatsapp-popup {
        right: 1rem;
        left: 1rem;
        max-width: none;
    }

    /* Form improvements for mobile */
    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .result-cards {
        grid-template-columns: 1fr;
    }

    .visual-placeholder {
        max-width: 100%;
        aspect-ratio: 4/3;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .testimonial-card {
        min-width: 280px;
        max-width: 280px;
    }
}

/* ========================================
   ANIMATIONS & MOTION
   ======================================== */

/* Base fade animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered reveal animations - for page load */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Hero section stagger - apply with animation-delay */
.hero-badge,
.hero-title,
.hero-subtitle,
.hero-buttons,
.hero-stats {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.hero-badge {
    animation-delay: 0.1s;
}

.hero-title {
    animation-delay: 0.2s;
}

.hero-subtitle {
    animation-delay: 0.35s;
}

.hero-buttons {
    animation-delay: 0.5s;
}

.hero-stats {
    animation-delay: 0.65s;
}

/* Service card stagger animations */
.service-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    .hero-badge,
    .hero-title,
    .hero-subtitle,
    .hero-buttons,
    .hero-stats,
    .service-card {
        animation: none;
        opacity: 1;
    }

    .fade-in {
        transition: none;
    }
}

/* ========================================
   NOTIFICATION SYSTEM
   ======================================== */

.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 2000;
    animation: slideIn 0.3s ease;
    max-width: 400px;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.notification-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.notification-message {
    font-size: 0.95rem;
    font-weight: 500;
}

.notification-success {
    background: #10b981;
    color: white;
    border: 1px solid #059669;
}

.notification-error {
    background: #ef4444;
    color: white;
    border: 1px solid #dc2626;
}

/* WhatsApp Popup */
.btn-whatsapp-popup {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #25D366;
    color: white;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.9rem;
    width: 100%;
    transition: var(--transition-normal);
}

.btn-whatsapp-popup:hover {
    background: #20bd5a;
}

.popup-icon {
    width: 40px;
    height: 40px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}

.popup-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.popup-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

/* ========================================
   CONTACT FORM (kontak.html)
   ======================================== */

.contact-section {
    padding: var(--spacing-xl) 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--spacing-lg);
    align-items: start;
}

.contact-form-wrapper h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.contact-form-wrapper > p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 0.875rem 1rem;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition-normal);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(0, 212, 170, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #ef4444;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23b3b3b3' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
    padding-right: 3rem;
}

.form-group select option {
    background: var(--bg-card);
    color: var(--text-primary);
}

.error-message {
    color: #ef4444;
    font-size: 0.8rem;
    display: none;
}

.error-message.show {
    display: block;
}

.btn-block {
    width: 100%;
    padding: 1rem;
}

.form-success {
    text-align: center;
    padding: 2rem;
    background: var(--gradient-subtle);
    border: 1px solid rgba(0, 212, 170, 0.3);
    border-radius: var(--radius-lg);
    margin-top: 1rem;
}

.success-icon {
    width: 60px;
    height: 60px;
    background: #10b981;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: white;
    margin: 0 auto 1rem;
}

.form-success h3 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.form-success p {
    color: var(--text-muted);
}

/* Contact Info Side */
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

.contact-info-card h3 {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.contact-icon-wrapper {
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.contact-details a,
.contact-details span {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.contact-details a:hover {
    color: var(--accent-primary);
}

.quick-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.quick-links a {
    color: var(--text-secondary);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quick-links a::before {
    content: '→';
    color: var(--accent-primary);
    transition: var(--transition-normal);
}

.quick-links a:hover {
    color: var(--accent-primary);
}

.quick-links a:hover::before {
    transform: translateX(4px);
}

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

.social-btn {
    width: 44px;
    height: 44px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition-normal);
}

.social-btn svg {
    width: 18px;
    height: 18px;
    fill: var(--text-secondary);
}

.social-btn:hover {
    border-color: var(--accent-primary);
    background: var(--gradient-subtle);
}

.social-btn:hover svg {
    fill: var(--accent-primary);
}

/* ========================================
   ABOUT PAGE (tentang.html)
   ======================================== */

.about-section {
    padding: var(--spacing-xl) 0;
    background: var(--bg-secondary);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.about-image {
    background: var(--gradient-subtle);
    border-radius: var(--radius-xl);
    padding: var(--spacing-lg);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.about-image-icon {
    font-size: 8rem;
}

.about-content h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    margin-bottom: 1rem;
}

.about-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.about-content .gradient-text {
    background: var(--gradient-teal);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--bg-card);
    border-radius: var(--radius-md);
}

.value-icon {
    color: var(--accent-primary);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.value-text h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.value-text p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
}

/* Team Section */
.team-section {
    padding: var(--spacing-xl) 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: var(--spacing-lg);
}

.team-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: var(--transition-normal);
}

.team-card:hover {
    border-color: rgba(0, 212, 170, 0.3);
    transform: translateY(-5px);
}

.team-avatar {
    width: 100px;
    height: 100px;
    background: var(--gradient-teal);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.team-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.team-role {
    color: var(--accent-primary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.team-bio {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Stats Section */
.stats-section {
    padding: var(--spacing-lg) 0;
    background: var(--gradient-subtle);
    border-top: 1px solid rgba(0, 212, 170, 0.2);
    border-bottom: 1px solid rgba(0, 212, 170, 0.2);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-box {
    padding: 1rem;
}

.stat-box .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-primary);
    margin-bottom: 0.5rem;
}

.stat-box .stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ========================================
   SERVICES PAGE (layanan.html)
   ======================================== */

.services-section {
    padding: var(--spacing-xl) 0;
}

.service-detail-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    padding: 3rem;
    margin-bottom: 3rem;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.service-detail-card.reverse {
    direction: rtl;
}

.service-detail-card.reverse > * {
    direction: ltr;
}

.service-detail-icon {
    font-size: 5rem;
    text-align: center;
    padding: 2rem;
    background: var(--gradient-subtle);
    border-radius: var(--radius-lg);
}

.service-detail-content .tag {
    display: inline-block;
    color: var(--accent-secondary);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.service-detail-content > p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.feature-list {
    margin-bottom: 2rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
}

.feature-list li::before {
    content: '✓';
    color: var(--accent-primary);
    font-weight: bold;
}

/* ========================================
   PORTFOLIO PAGE (portofolio.html)
   ======================================== */

.portfolio-section {
    padding: var(--spacing-xl) 0;
}

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

.portfolio-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
    position: relative;
}

.portfolio-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.portfolio-image {
    height: 240px;
    background: var(--gradient-teal-subtle);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 4rem;
    position: relative;
    overflow: hidden;
}

.portfolio-content {
    padding: 1.5rem;
}

.portfolio-content .industry {
    display: inline-block;
    color: var(--accent-secondary);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.portfolio-content h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.portfolio-content .challenge,
.portfolio-content .solution {
    margin-bottom: 1rem;
}

.portfolio-content h4 {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.portfolio-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

.results-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.result-tag {
    background: rgba(0, 212, 170, 0.15);
    color: var(--accent-primary);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 500;
}

/* ========================================
   LAYANAN PAGE - ENHANCED STYLES
   ======================================== */

/* Service Detail Grid Layout */
.service-detail {
    padding: var(--spacing-xl) 0;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.service-detail-grid.reverse {
    direction: rtl;
}

.service-detail-grid.reverse > * {
    direction: ltr;
}

/* Service Badge */
.service-badge {
    display: inline-block;
    background: var(--gradient-subtle);
    border: 1px solid rgba(0, 212, 170, 0.3);
    color: var(--accent-secondary);
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-xl);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

/* Service Detail Content */
.service-detail-content h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.service-detail-content > p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-detail-content h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

/* Feature List Enhanced */
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
}

.feature-list li:hover {
    border-color: rgba(0, 212, 170, 0.2);
    transform: translateX(5px);
}

.feature-icon {
    font-size: 1.5rem;
    min-width: 40px;
    text-align: center;
}

.feature-list li strong {
    display: block;
    color: var(--text-primary);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.feature-list li p {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
}

/* Result Cards */
.result-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
}

.result-card {
    background: var(--bg-card);
    border: 1px solid rgba(0, 212, 170, 0.2);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    text-align: center;
    transition: var(--transition-normal);
}

.result-card:hover {
    border-color: var(--accent-primary);
    transform: translateY(-3px);
}

.result-number {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--accent-primary);
    margin-bottom: 0.5rem;
}

.result-label {
    color: var(--text-muted);
    font-size: 0.8rem;
    line-height: 1.4;
}

/* Service Visual Placeholder */
.service-detail-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-placeholder {
    width: 100%;
    max-width: 480px;
    aspect-ratio: 1;
    background: var(--gradient-subtle);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.visual-placeholder.dark {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border-color: rgba(255, 255, 255, 0.05);
}

/* Visual Content Overlay */
.visual-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    z-index: 10;
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.85) 0%, rgba(15, 15, 15, 0.7) 50%, rgba(15, 15, 15, 0.85) 100%);
}

.visual-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.visual-desc {
    font-family: var(--font-body);
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

/* Pricing Section */
.pricing-section {
    padding: var(--spacing-xl) 0;
    background: var(--bg-secondary);
}

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

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 212, 170, 0.03), transparent);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.pricing-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card.featured {
    border-color: var(--accent-primary);
    transform: scale(1.05);
    box-shadow: var(--shadow-glow-lg);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-6px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-teal);
    color: var(--text-dark);
    padding: 0.375rem 1rem;
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-header h3 {
    font-size: var(--text-xl);
    margin-bottom: 0.5rem;
}

.pricing-header p {
    color: var(--text-muted);
    font-size: var(--text-sm);
    margin-bottom: 1.5rem;
}

.pricing-price {
    margin-bottom: 1.5rem;
    padding: 1rem 0;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.pricing-price .price {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-primary);
}

.pricing-features {
    text-align: left;
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-features li::before {
    content: '✓';
    color: var(--accent-primary);
    font-weight: bold;
}

.pricing-card .btn {
    width: 100%;
    padding: 1rem;
}

/* CTA Section - Samakan button size */
.cta-section .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-section .btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    min-width: 200px;
}

/* ========================================
   PORTOFOLIO PAGE - ENHANCED STYLES
   ======================================== */

/* Portfolio Filter Buttons */
.portfolio-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.filter-btn {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-normal);
}

.filter-btn:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

.filter-btn.active {
    background: var(--gradient-teal);
    border-color: var(--accent-primary);
    color: var(--text-dark);
    font-weight: 600;
}

/* Enhanced Portfolio Cards */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.portfolio-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-normal), opacity 0.3s ease, transform 0.3s ease;
    opacity: 1;
    transform: translateY(0);
}

.portfolio-card:hover {
    border-color: rgba(0, 212, 170, 0.3);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

/* Portfolio Image with Gradient Placeholder */
.portfolio-image {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.portfolio-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Different gradient for each category */
.portfolio-image-placeholder[data-category="klinik"] {
    background: linear-gradient(135deg, #0d4d4d 0%, #1a5f5f 50%, #0d4d4d 100%);
}

.portfolio-image-placeholder[data-category="retail"] {
    background: linear-gradient(135deg, #1a1a3d 0%, #2d2d5f 50%, #1a1a3d 100%);
}

.portfolio-image-placeholder[data-category="fnb"] {
    background: linear-gradient(135deg, #3d1a1a 0%, #5f2d2d 50%, #3d1a1a 100%);
}

.portfolio-image-placeholder[data-category="pendidikan"] {
    background: linear-gradient(135deg, #1a2d3d 0%, #2d4a5f 50%, #1a2d3d 100%);
}

.portfolio-image-placeholder[data-category="ai-services"] {
    background: linear-gradient(135deg, #0d2d1a 0%, #1a5f2d 50%, #0d2d1a 100%);
}

.portfolio-image-placeholder[data-category="website"] {
    background: linear-gradient(135deg, #2d1a3d 0%, #5f2d5f 50%, #2d1a3d 100%);
}

.category-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Portfolio Content */
.portfolio-content {
    padding: 1.5rem;
}

.portfolio-service {
    color: var(--accent-secondary);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
}

.portfolio-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.portfolio-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

/* Portfolio Results */
.portfolio-results {
    display: flex;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 1rem;
}

.result-item {
    flex: 1;
    text-align: center;
}

.result-value {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-primary);
    margin-bottom: 0.25rem;
}

.result-item .result-label {
    color: var(--text-muted);
    font-size: 0.75rem;
    line-height: 1.3;
}

.portfolio-link {
    color: var(--accent-primary);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-normal);
}

.portfolio-link:hover {
    gap: 0.75rem;
}

/* Stats Section */
.stats-section {
    padding: var(--spacing-xl) 0;
    background: var(--bg-secondary);
}

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

.stat-box {
    text-align: center;
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    transition: var(--transition-normal);
}

.stat-box:hover {
    border-color: rgba(0, 212, 170, 0.3);
    transform: translateY(-5px);
}

.stat-box .stat-number {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-primary);
    margin-bottom: 0.5rem;
}

.stat-box .stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ========================================
   TENTANG PAGE - ENHANCED STYLES
   ======================================== */

/* Story Section */
.story-section {
    padding: var(--spacing-xl) 0;
}

.story-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.story-content {
    padding-right: 2rem;
}

.story-content .section-tag {
    text-align: left;
}

.story-content h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.story-text {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.story-visual {
    display: flex;
    justify-content: center;
}

.founder-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    max-width: 320px;
}

.founder-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
}

.founder-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gradient-teal);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
}

.founder-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.founder-title {
    color: var(--accent-secondary);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.founder-bio {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Mission & Values */
.mission-values {
    padding: var(--spacing-xl) 0;
    background: var(--bg-secondary);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: var(--spacing-lg);
}

.value-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition-normal);
}

.value-card:hover {
    border-color: rgba(0, 212, 170, 0.3);
    transform: translateY(-5px);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.value-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.values-list {
    text-align: center;
}

.values-list h2 {
    font-size: clamp(1.75rem, 3vw, 2rem);
    margin-bottom: 2rem;
}

.values-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    text-align: left;
    transition: var(--transition-normal);
}

.value-item:hover {
    border-color: rgba(0, 212, 170, 0.2);
    transform: translateX(5px);
}

.value-number {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-primary);
    min-width: 40px;
}

.value-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.value-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Team Section */
.team-section {
    padding: var(--spacing-xl) 0;
}

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

.team-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: var(--transition-normal);
}

.team-card:hover {
    border-color: rgba(0, 212, 170, 0.3);
    transform: translateY(-5px);
}

.team-image {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.25rem;
}

.team-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gradient-subtle);
    border: 1px solid rgba(0, 212, 170, 0.3);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-primary);
}

.team-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.team-role {
    color: var(--accent-secondary);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.team-desc {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.5;
}

/* Why Different Section */
.why-different {
    padding: var(--spacing-xl) 0;
    background: var(--bg-secondary);
}

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

.different-item {
    text-align: center;
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    transition: var(--transition-normal);
}

.different-item:hover {
    border-color: rgba(0, 212, 170, 0.3);
    transform: translateY(-5px);
}

.different-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.different-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.different-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ========================================
   KONTAK PAGE - ENHANCED STYLES
   ======================================== */

/* Contact Grid - sudah ada, tapi perlu perbaiki alignment */
.contact-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* Contact Form Wrapper */
.contact-form-wrapper {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
}

.contact-form-wrapper h2 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.contact-form-wrapper > p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* Form Group - rapikan spacing */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.form-group label {
    font-weight: 500;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition-normal);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(0, 212, 170, 0.15);
}

/* Contact Info Cards - samakan sizing */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    transition: var(--transition-normal);
}

.info-card:hover {
    border-color: rgba(0, 212, 170, 0.2);
}

.info-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.info-card > p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
}

.info-card .btn {
    width: 100%;
}

/* Contact List */
.contact-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-list svg {
    flex-shrink: 0;
    color: var(--accent-primary);
    margin-top: 2px;
}

.contact-list strong {
    display: block;
    color: var(--text-primary);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.contact-list span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Hours List */
.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hours-list li:last-child {
    border-bottom: none;
}

.hours-list span:first-child {
    color: var(--text-primary);
    font-weight: 500;
}

.hours-list span:last-child {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Map Section */
.map-section {
    padding: var(--spacing-xl) 0;
}

.map-placeholder {
    width: 100%;
    height: 300px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.map-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 212, 170, 0.05) 1px, transparent 1px),
        linear-gradient(rgba(0, 212, 170, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
}

.map-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.map-icon {
    font-size: 4rem;
    display: block;
    margin-bottom: 1rem;
}

.map-content p {
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.map-note {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* FAQ Mini */
.faq-mini {
    padding: var(--spacing-xl) 0;
    background: var(--bg-secondary);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    transition: var(--transition-normal);
}

.faq-item:hover {
    border-color: rgba(0, 212, 170, 0.2);
}

.faq-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.faq-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ========================================
   RESPONSIVE ENHANCEMENTS
   ======================================== */

@media (max-width: 1024px) {
    /* Layanan */
    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-detail-grid.reverse {
        direction: ltr;
    }

    .result-cards {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Pricing */
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }

    /* Portfolio */
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Tentang */
    .story-grid {
        grid-template-columns: 1fr;
    }

    .story-content {
        padding-right: 0;
    }

    .founder-card {
        max-width: 100%;
    }

    .values-items {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .different-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Kontak */
    .contact-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    /* Portfolio */
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-filter {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 0.625rem 1rem;
        font-size: 0.85rem;
    }

    /* Stats */
    .stats-grid {
        grid-template-columns: 1fr;
    }

    /* Team */
    .team-grid {
        grid-template-columns: 1fr;
    }

    /* Values */
    .values-grid {
        grid-template-columns: 1fr;
    }

    /* Different */
    .different-grid {
        grid-template-columns: 1fr;
    }

    /* Contact */
    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .result-cards {
        grid-template-columns: 1fr;
    }
}