/* ===== RESET & GLOBAL ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #238636;
    --primary-light: #2ea043;
    --secondary-color: #58a6ff;
    --accent-color: #79c0ff;
    --warning-color: #d29922;
    --danger-color: #f85149;
    --dark-bg: #0d1117;
    --dark-bg-secondary: #161b22;
    --dark-bg-tertiary: #21262d;
    --border-color: #30363d;
    --text-primary: #c9d1d9;
    --text-secondary: #8b949e;
    --text-muted: #6e7681;
    
    --gradient-1: linear-gradient(135deg, #238636 0%, #1f6feb 100%);
    --gradient-2: linear-gradient(135deg, #58a6ff 0%, #79c0ff 100%);
    --gradient-3: linear-gradient(135deg, #7ee787 0%, #2ea043 100%);
    --gradient-4: linear-gradient(135deg, #a371f7 0%, #58a6ff 100%);
    --gradient-5: linear-gradient(135deg, #f0883e 0%, #d29922 100%);
    --gradient-6: linear-gradient(135deg, #ff6b9d 0%, #c954e6 100%);
}

html {
    scroll-behavior: smooth;
}

@keyframes background-shift {
    0% {
        background-position: 0% 0%, 100% 100%;
    }
    50% {
        background-position: 100% 100%, 0% 0%;
    }
    100% {
        background-position: 0% 0%, 100% 100%;
    }
}

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--dark-bg);
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(35, 134, 54, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(88, 166, 255, 0.1) 0%, transparent 50%);
    background-size: 200% 200%, 200% 200%;
    background-attachment: fixed;
    animation: background-shift 15s ease-in-out infinite;
    color: var(--text-primary);
    line-height: 1.6;
    overflow: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

body.light-mode {
    background-image:
        radial-gradient(circle at 20% 50%, rgba(35, 134, 54, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(88, 166, 255, 0.05) 0%, transparent 50%);
}

/* ===== VS CODE APP LAYOUT ===== */
.vscode-app {
    display: flex;
    height: 100vh;
    background: var(--dark-bg);
}

/* Activity Bar Main (Left sidebar) */
.activity-bar-main {
    width: 50px;
    background: rgba(33, 38, 45, 0.95);
    border-right: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 0;
    gap: 16px;
}

.ab-logo {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: linear-gradient(135deg, #238636, #2ea043);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 12px rgba(35, 134, 54, 0.4), 0 0 20px rgba(35, 134, 54, 0.2);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    margin-bottom: 10px;
    position: relative;
    overflow: hidden;
}

.ab-logo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.2) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.ab-logo:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 24px rgba(35, 134, 54, 0.6), 0 0 30px rgba(35, 134, 54, 0.3);
}

.ab-logo:hover::before {
    transform: translateX(100%);
}

.ab-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.ab-item {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(248, 248, 242, 0.6);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-left: 3px solid transparent;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.ab-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(88, 166, 255, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ab-item:hover {
    color: var(--text-primary);
    background: rgba(88, 166, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(88, 166, 255, 0.2);
}

.ab-item:hover::before {
    opacity: 1;
}

.ab-item.active {
    color: var(--secondary-color);
    background: rgba(88, 166, 255, 0.25);
    border-left-color: var(--secondary-color);
    box-shadow: inset 0 0 15px rgba(88, 166, 255, 0.2), 0 4px 12px rgba(88, 166, 255, 0.15);
}

.ab-bottom {
    margin-top: auto;
}

/* Main Editor Area */
.editor-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: var(--dark-bg);
    overflow: hidden;
}

/* Editor Header Bar */
.editor-header-bar {
    background: linear-gradient(180deg, rgba(33, 38, 45, 0.95) 0%, rgba(21, 25, 32, 0.8) 100%);
    border-bottom: 2px solid rgba(35, 134, 54, 0.2);
    display: flex;
    align-items: center;
    padding: 0;
    gap: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(88, 166, 255, 0.1);
}

.logo-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    border-right: 2px solid rgba(35, 134, 54, 0.3);
    font-weight: 700;
    color: var(--text-primary);
    white-space: nowrap;
    background: linear-gradient(90deg, rgba(35, 134, 54, 0.1) 0%, transparent 100%);
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.logo-header:hover {
    background: linear-gradient(90deg, rgba(35, 134, 54, 0.2) 0%, transparent 100%);
}

.logo-header i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

/* Content Tabs */
.content-tabs {
    display: flex;
    gap: 0;
    flex: 1;
    overflow-x: auto;
}

.tab {
    padding: 12px 20px;
    border-right: 1px solid var(--border-color);
    color: rgba(248, 248, 242, 0.6);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    white-space: nowrap;
    border-bottom: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.tab::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.tab:hover {
    background: rgba(88, 166, 255, 0.15);
    color: var(--text-primary);
    transform: translateY(-2px);
}

.tab:hover::before {
    width: 100%;
}

.tab.active {
    color: var(--text-primary);
    background: rgba(88, 166, 255, 0.2);
    border-bottom-color: var(--secondary-color);
    box-shadow: inset 0 -2px 8px rgba(88, 166, 255, 0.1);
}

.tab.active::before {
    width: 100%;
}

/* Breadcrumb */
.breadcrumb-main {
    padding: 8px 20px;
    background: rgba(33, 38, 45, 0.6);
    border-bottom: 1px solid var(--border-color);
    color: rgba(248, 248, 242, 0.5);
    font-size: 0.8rem;
    font-family: 'JetBrains Mono', monospace;
}

/* Editor Content Area */
.editor-content {
    flex: 1;
    overflow-y: auto;
    background: var(--dark-bg);
}

.content-section {
    padding: 40px 60px;
    min-height: auto;
    animation: fadeIn 0.3s ease;
    position: relative;
    overflow: hidden;
    scroll-margin-top: 80px;
}

.content-section.active {
    /* Visual indicator for current section */
    border-left: 4px solid var(--primary-color);
    padding-left: 56px;
}

.section-decoration {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(1px);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Hero/Home Content */
/* Hero Section - Improved Design */
.hero-decoration {
    position: absolute;
    pointer-events: none;
    border-radius: 50%;
    filter: blur(40px);
}

.hero-deco-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(35, 134, 54, 0.15) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    animation: light-move-1 8s ease-in-out infinite;
}

.hero-deco-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(88, 166, 255, 0.12) 0%, transparent 70%);
    bottom: 100px;
    left: -150px;
    animation: light-move-2 10s ease-in-out infinite;
}

.hero-deco-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(35, 134, 54, 0.1) 0%, transparent 70%);
    top: 50%;
    right: 10%;
    animation: light-move-1 12s ease-in-out infinite reverse;
}

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

@keyframes glow-pulse {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(35, 134, 54, 0.4), 0 0 40px rgba(35, 134, 54, 0.2);
    }
    50% { 
        box-shadow: 0 0 40px rgba(35, 134, 54, 0.6), 0 0 80px rgba(35, 134, 54, 0.3);
    }
}

@keyframes light-move-1 {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
    50% { opacity: 0.6; }
    100% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.3; }
}

@keyframes light-move-2 {
    0% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.2; }
    50% { opacity: 0.5; scale: 0.9; }
    100% { transform: translate(-50%, -50%) scale(1); opacity: 0.2; }
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 20px 0 30px 0;
    position: relative;
    z-index: 1;
}

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: linear-gradient(135deg, rgba(35, 134, 54, 0.15) 0%, rgba(88, 166, 255, 0.1) 100%);
    border: 1.5px solid rgba(35, 134, 54, 0.4);
    border-radius: 50px;
    width: fit-content;
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hero-badge:hover {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(35, 134, 54, 0.25) 0%, rgba(88, 166, 255, 0.15) 100%);
}

.hero-badge i {
    color: var(--primary-color);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.15;
    color: var(--text-primary);
    letter-spacing: -2px;
    margin: 0;
}

.title-break {
    display: block;
    margin-top: 10px;
}

.gradient-text {
    background: linear-gradient(90deg, #238636 0%, #2ea043 25%, #79c0ff 50%, #58a6ff 75%, #238636 100%);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 6s ease infinite;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
    font-weight: 400;
    max-width: 550px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(35, 134, 54, 0.08) 0%, rgba(88, 166, 255, 0.05) 100%);
    border: 1.5px solid rgba(35, 134, 54, 0.2);
    border-radius: 16px;
    width: fit-content;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.stat-value {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    padding-top: 10px;
}

.hero-tech-stack {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.tech-label {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 600;
}

.tech-icons {
    display: flex;
    gap: 12px;
}

.tech-icon {
    padding: 8px 14px;
    background: rgba(35, 134, 54, 0.15);
    border: 1px solid rgba(35, 134, 54, 0.3);
    border-radius: 8px;
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: default;
}

.tech-icon:hover {
    background: rgba(35, 134, 54, 0.25);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Hero Right - Code Cards */
.hero-right {
    position: relative;
    height: 450px;
}

.hero-visual {
    position: relative;
    width: 100%;
    height: 100%;
}

.code-card {
    position: absolute;
    padding: 18px;
    background: linear-gradient(135deg, rgba(13, 17, 23, 0.8) 0%, rgba(35, 134, 54, 0.05) 100%);
    border: 1.5px solid rgba(35, 134, 54, 0.3);
    border-radius: 14px;
    backdrop-filter: blur(10px);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-secondary);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.code-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 0 30px 80px rgba(35, 134, 54, 0.2);
}

.code-header {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-size: 0.95rem;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(35, 134, 54, 0.2);
}

.code-line {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.keyword {
    color: #ff7b72;
}

.selector {
    color: #79c0ff;
}

.property {
    color: #d29922;
}

.tag {
    color: #7ee787;
}

.string {
    color: #a371f7;
}

.variable {
    color: #79c0ff;
}

.function {
    color: #d29922;
}

.code-card-1 {
    width: 280px;
    top: 0;
    left: 0;
    animation: float 5.5s ease-in-out infinite;
}

.code-card-2 {
    width: 260px;
    top: 120px;
    right: 20px;
    animation: float 5s ease-in-out infinite;
}

.code-card-3 {
    width: 300px;
    bottom: 0;
    left: 80px;
    animation: float 6s ease-in-out infinite reverse;
}

/* Section Title & Subtitle */
.section-title {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--text-primary);
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #238636, #79c0ff);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 50px;
    font-weight: 300;
    max-width: 600px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 24px;
}

.service-card {
    background: linear-gradient(135deg, rgba(33, 38, 45, 0.7) 0%, rgba(22, 27, 34, 0.5) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(88, 166, 255, 0.2);
    border-left: 4px solid rgba(35, 134, 54, 0.4);
    border-radius: 12px;
    padding: 0;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(88, 166, 255, 0.6), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(35, 134, 54, 0.15) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.service-card:hover {
    border-left-color: var(--primary-color);
    border-color: rgba(88, 166, 255, 0.4);
    background: linear-gradient(135deg, rgba(33, 38, 45, 0.95) 0%, rgba(22, 27, 34, 0.75) 100%);
    box-shadow: 0 15px 35px rgba(35, 134, 54, 0.2), inset 0 0 25px rgba(35, 134, 54, 0.08);
    transform: translateY(-6px);
}

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

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

.card-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 24px;
    margin-bottom: 0;
    border-bottom: 1px solid rgba(48, 54, 61, 0.6);
    background: rgba(21, 25, 32, 0.8);
    position: relative;
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--bg-color), rgba(255, 255, 255, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-card:hover .service-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.3);
}

.card-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: all 0.3s ease;
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 0.5px;
}

.service-card:hover .card-header h3 {
    background: linear-gradient(135deg, #238636, #79c0ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 0 24px;
    flex: 1;
}

.service-card:hover p {
    color: var(--text-primary);
}

.card-footer {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    padding: 0 24px 24px;
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(35, 134, 54, 0.15), rgba(88, 166, 255, 0.1));
    border: 2px solid rgba(35, 134, 54, 0.4);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    backdrop-filter: blur(8px);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.badge::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(88, 166, 255, 0.4), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.badge:hover {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(35, 134, 54, 0.25), rgba(88, 166, 255, 0.15));
    color: var(--text-primary);
    transform: scale(1.08);
    box-shadow: 0 8px 20px rgba(35, 134, 54, 0.25);
}

.badge:hover::before {
    transform: translateX(100%);
}

/* About Content */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-points {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-point {
    display: flex;
    gap: 24px;
    padding: 24px 28px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(21, 25, 32, 0.6) 0%, rgba(33, 38, 45, 0.3) 100%);
    border: 2px solid rgba(88, 166, 255, 0.2);
    border-left: 4px solid rgba(35, 134, 54, 0.4);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.about-point::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--secondary-color), var(--primary-color));
    transition: height 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.about-point::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(35, 134, 54, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-point:hover {
    background: linear-gradient(135deg, rgba(21, 25, 32, 0.8) 0%, rgba(33, 38, 45, 0.5) 100%);
    border-color: rgba(88, 166, 255, 0.4);
    border-left-color: var(--secondary-color);
    transform: translateX(6px);
    box-shadow: 0 10px 25px rgba(35, 134, 54, 0.15);
}

.about-point:hover::before {
    height: 100%;
}

.about-point:hover::after {
    opacity: 1;
}

.point-number {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #238636, #79c0ff);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease infinite;
    flex-shrink: 0;
}

.about-stats {
    background: rgba(21, 25, 32, 0.4);
    border: 1px solid rgba(48, 54, 61, 0.5);
    border-left: 3px solid rgba(88, 166, 255, 0.5);
    padding: 32px;
    border-radius: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.stat-item {
    padding: 24px;
    background: linear-gradient(135deg, rgba(35, 134, 54, 0.08) 0%, rgba(88, 166, 255, 0.04) 100%);
    border: 2px solid rgba(35, 134, 54, 0.25);
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(35, 134, 54, 0.6), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(88, 166, 255, 0.15) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-item:hover {
    background: linear-gradient(135deg, rgba(35, 134, 54, 0.15) 0%, rgba(88, 166, 255, 0.1) 100%);
    border-color: rgba(35, 134, 54, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(35, 134, 54, 0.15);
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-item:hover::after {
    opacity: 1;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #238636, #79c0ff, #58a6ff);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 6s ease infinite;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-number {
    transform: scale(1.1);
}

.stat-label {
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.stat-item:hover .stat-label {
    color: var(--text-primary);
}

/* Buttons */
.btn {
    padding: 14px 32px;
    border-radius: 12px;
    border: none;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-decoration: none;
    text-align: center;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #238636, #2ea043);
    color: white;
    box-shadow: 0 10px 30px rgba(35, 134, 54, 0.5), 0 0 50px rgba(35, 134, 54, 0.2), inset 0 1px 0 rgba(255,255,255,0.25);
    border: 1px solid rgba(46, 160, 67, 0.6);
    position: relative;
    overflow: hidden;
}

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

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(35, 134, 54, 0.5), 0 0 60px rgba(35, 134, 54, 0.3);
}

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

.btn-primary:hover::after {
    opacity: 1;
}

.btn-secondary {
    background: linear-gradient(135deg, rgba(88, 166, 255, 0.15) 0%, rgba(121, 192, 255, 0.08) 100%);
    border: 2px solid rgba(35, 134, 54, 0.6);
    color: var(--text-primary);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 20px rgba(35, 134, 54, 0.1), 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(35, 134, 54, 0.4), transparent);
    transition: left 0.6s ease;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, rgba(35, 134, 54, 0.25) 0%, rgba(46, 160, 67, 0.15) 100%);
    border-color: var(--primary-light);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(35, 134, 54, 0.3), inset 0 0 20px rgba(35, 134, 54, 0.15);
}

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

.btn-outline {
    background: transparent;
    border: 2px solid rgba(35, 134, 54, 0.5);
    color: var(--primary-color);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.btn-outline::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(35, 134, 54, 0.1);
    z-index: -1;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    border-color: var(--primary-color);
    background: rgba(35, 134, 54, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(35, 134, 54, 0.2);
}

.btn-outline:hover::before {
    background: rgba(35, 134, 54, 0.2);
}

/* Status Bar */
.status-bar-main {
    padding: 8px 20px;
    background: linear-gradient(180deg, rgba(35, 134, 54, 0.2) 0%, rgba(35, 134, 54, 0.1) 100%);
    border-top: 2px solid rgba(35, 134, 54, 0.3);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.75rem;
    color: rgba(248, 248, 242, 0.8);
    font-family: 'JetBrains Mono', monospace;
    gap: 20px;
    box-shadow: inset 0 1px 0 rgba(88, 166, 255, 0.1);
    position: relative;
    overflow: hidden;
}



.status-item {
    padding: 4px 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-radius: 4px;
    position: relative;
    z-index: 1;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.status-item:hover {
    color: var(--secondary-color);
    background: rgba(88, 166, 255, 0.2);
    box-shadow: 0 0 12px rgba(88, 166, 255, 0.3);
    transform: translateY(-1px);
}

.status-spacer {
    flex: 1;
}

/* Theme Toggle */
.theme-toggle {
    background: none;
    border: 2px solid var(--border-color);
    color: var(--text-primary);
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.theme-toggle:hover {
    background-color: var(--dark-bg-secondary);
    border-color: var(--secondary-color);
    color: var(--secondary-color);
    transform: rotate(180deg) scale(1.1);
}

/* ===== CONTACT SECTION ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
    margin-top: 30px;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.contact-card {
    background: linear-gradient(135deg, rgba(21, 25, 32, 0.8) 0%, rgba(33, 38, 45, 0.6) 100%);
    border: 1.5px solid rgba(88, 166, 255, 0.2);
    padding: 28px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(35, 134, 54, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.contact-card:hover {
    background: linear-gradient(135deg, rgba(21, 25, 32, 0.95) 0%, rgba(33, 38, 45, 0.8) 100%);
    border-color: rgba(88, 166, 255, 0.4);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(35, 134, 54, 0.2), 0 0 30px rgba(88, 166, 255, 0.1);
}

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

.contact-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.2) rotate(10deg);
    color: var(--primary-light);
}

.contact-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

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

.contact-form {
    background: linear-gradient(135deg, rgba(21, 25, 32, 0.8) 0%, rgba(33, 38, 45, 0.6) 100%);
    border: 1.5px solid rgba(88, 166, 255, 0.2);
    padding: 40px;
    border-radius: 16px;
    transition: all 0.4s ease;
}

.contact-form:hover {
    border-color: rgba(88, 166, 255, 0.4);
    box-shadow: 0 20px 40px rgba(35, 134, 54, 0.15), inset 0 0 30px rgba(35, 134, 54, 0.05);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(21, 25, 32, 0.8);
    border: 1.5px solid rgba(88, 166, 255, 0.2);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: inherit;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background: rgba(21, 25, 32, 0.95);
    border-color: rgba(35, 134, 54, 0.6);
    box-shadow: 0 0 20px rgba(35, 134, 54, 0.2), inset 0 0 20px rgba(35, 134, 54, 0.05);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ===== PORTFOLIO SECTION ===== */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 28px;
    margin-top: 30px;
}

.portfolio-item {
    background: linear-gradient(135deg, rgba(21, 25, 32, 0.8) 0%, rgba(33, 38, 45, 0.6) 100%);
    border: 1.5px solid rgba(88, 166, 255, 0.2);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.portfolio-image {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

.portfolio-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(13, 17, 23, 0.4) 100%);
}

.portfolio-item:hover .portfolio-image {
    transform: scale(1.08) rotate(1deg);
}

.portfolio-content {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.portfolio-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.portfolio-item:hover .portfolio-content h3 {
    color: var(--primary-light);
}

.portfolio-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 16px;
    line-height: 1.6;
    flex: 1;
}

.portfolio-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tech-tag {
    display: inline-block;
    padding: 6px 12px;
    background: linear-gradient(135deg, rgba(35, 134, 54, 0.2) 0%, rgba(88, 166, 255, 0.1) 100%);
    border: 1px solid rgba(35, 134, 54, 0.4);
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.portfolio-item:hover .tech-tag {
    background: linear-gradient(135deg, rgba(35, 134, 54, 0.3) 0%, rgba(88, 166, 255, 0.2) 100%);
    border-color: rgba(35, 134, 54, 0.6);
}

.portfolio-item:hover {
    background: linear-gradient(135deg, rgba(21, 25, 32, 0.95) 0%, rgba(33, 38, 45, 0.8) 100%);
    border-color: rgba(88, 166, 255, 0.4);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(35, 134, 54, 0.2), 0 0 30px rgba(88, 166, 255, 0.1);
}

/* ===== PRICING SECTION ===== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    margin-top: 30px;
}

.pricing-card {
    background: linear-gradient(135deg, rgba(21, 25, 32, 0.8) 0%, rgba(33, 38, 45, 0.6) 100%);
    border: 1.5px solid rgba(88, 166, 255, 0.2);
    padding: 36px;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card.featured {
    background: linear-gradient(135deg, rgba(35, 134, 54, 0.15) 0%, rgba(88, 166, 255, 0.1) 100%);
    border: 2px solid rgba(35, 134, 54, 0.5);
    transform: scale(1.05);
    position: relative;
}

.pricing-card.featured::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(35, 134, 54, 0.1) 0%, transparent 70%);
    border-radius: 16px;
    pointer-events: none;
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #238636, #2ea043);
    color: white;
    padding: 8px 20px;
    border-radius: 24px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 20px rgba(35, 134, 54, 0.4);
}

.price-tag {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.price-amount {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-primary);
    margin: 12px 0 8px 0;
}

.price-period {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-weight: 300;
}

.price-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 28px;
}

.price-features {
    list-style: none;
    margin-bottom: 28px;
    flex: 1;
}

.price-features li {
    padding: 12px 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(88, 166, 255, 0.1);
    transition: all 0.3s ease;
}

.price-features li:last-child {
    border-bottom: none;
}

.price-features li:hover {
    color: var(--text-primary);
    padding-left: 8px;
}

.price-features i {
    color: var(--primary-color);
    margin-right: 10px;
    width: 16px;
}

.pricing-card:hover {
    background: linear-gradient(135deg, rgba(21, 25, 32, 0.95) 0%, rgba(33, 38, 45, 0.8) 100%);
    border-color: rgba(88, 166, 255, 0.4);
    box-shadow: 0 20px 40px rgba(35, 134, 54, 0.2), 0 0 30px rgba(88, 166, 255, 0.1);
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
    margin-top: 30px;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(21, 25, 32, 0.8) 0%, rgba(33, 38, 45, 0.6) 100%);
    border: 1.5px solid rgba(88, 166, 255, 0.2);
    padding: 32px;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    flex-direction: column;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(35, 134, 54, 0.2);
    font-family: Georgia, serif;
}

.stars {
    color: #f0883e;
    margin-bottom: 16px;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.stars i {
    margin-right: 4px;
    transition: all 0.3s ease;
}

.testimonial-card:hover .stars i {
    transform: scale(1.2);
}

.testimonial-text {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 24px;
    font-weight: 300;
    font-style: italic;
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    flex-shrink: 0;
    border: 2px solid rgba(88, 166, 255, 0.3);
    transition: all 0.3s ease;
}

.testimonial-card:hover .author-avatar {
    border-color: rgba(35, 134, 54, 0.6);
    box-shadow: 0 0 15px rgba(35, 134, 54, 0.2);
}

.author-name {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 0.95rem;
    margin: 0;
}

.author-role {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin: 0;
    font-weight: 300;
}

.testimonial-card:hover {
    background: linear-gradient(135deg, rgba(21, 25, 32, 0.95) 0%, rgba(33, 38, 45, 0.8) 100%);
    border-color: rgba(88, 166, 255, 0.4);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(35, 134, 54, 0.2), 0 0 30px rgba(88, 166, 255, 0.1);
}

/* ===== CONTACT SECTION ===== */
.contact-background-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: radial-gradient(circle at 20% 50%, rgba(35, 134, 54, 0.08) 0%, transparent 40%),
                radial-gradient(circle at 80% 80%, rgba(88, 166, 255, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    margin: 60px 0 80px 0;
}

.contact-card {
    background: linear-gradient(135deg, rgba(21, 25, 32, 0.7) 0%, rgba(33, 38, 45, 0.5) 100%);
    border: 1.5px solid rgba(88, 166, 255, 0.25);
    padding: 40px 32px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(35, 134, 54, 0.1) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.contact-card:hover {
    background: linear-gradient(135deg, rgba(21, 25, 32, 0.9) 0%, rgba(33, 38, 45, 0.7) 100%);
    border-color: rgba(88, 166, 255, 0.45);
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(35, 134, 54, 0.25), 0 0 40px rgba(88, 166, 255, 0.15);
}

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

.contact-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, rgba(35, 134, 54, 0.15) 0%, rgba(88, 166, 255, 0.1) 100%);
    border: 2px solid rgba(88, 166, 255, 0.3);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.contact-card:hover .contact-icon-wrapper {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(35, 134, 54, 0.25) 0%, rgba(88, 166, 255, 0.15) 100%);
    border-color: rgba(88, 166, 255, 0.5);
    transform: scale(1.1) rotate(10deg);
}

.contact-card i {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #238636, #58a6ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.contact-card:hover i {
    transform: scale(1.2) rotate(-10deg);
}

.contact-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.contact-card:hover h3 {
    color: var(--primary-light);
}

.contact-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.contact-card:hover p {
    color: var(--text-primary);
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 10px 20px;
    border: 1.5px solid rgba(88, 166, 255, 0.4);
    border-radius: 8px;
    background: rgba(88, 166, 255, 0.05);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.contact-link:hover {
    background: rgba(88, 166, 255, 0.15);
    border-color: var(--secondary-color);
    transform: translateX(4px);
    box-shadow: 0 8px 20px rgba(88, 166, 255, 0.2);
}

.contact-link i {
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.contact-link:hover i {
    transform: translateX(4px);
}

/* Contact Form Section */
.contact-form-wrapper {
    background: linear-gradient(135deg, rgba(21, 25, 32, 0.6) 0%, rgba(33, 38, 45, 0.4) 100%);
    border: 1.5px solid rgba(88, 166, 255, 0.25);
    border-radius: 20px;
    padding: 60px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 0%, rgba(88, 166, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.contact-form-wrapper:hover {
    border-color: rgba(88, 166, 255, 0.4);
    box-shadow: 0 20px 50px rgba(35, 134, 54, 0.15), inset 0 0 30px rgba(35, 134, 54, 0.03);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.form-subtitle {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.contact-form {
    position: relative;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    background: rgba(21, 25, 32, 0.8);
    border: 1.5px solid rgba(88, 166, 255, 0.25);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    background: rgba(21, 25, 32, 0.95);
    border-color: rgba(35, 134, 54, 0.7);
    box-shadow: 0 0 25px rgba(35, 134, 54, 0.25), inset 0 0 15px rgba(35, 134, 54, 0.05);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(248, 248, 242, 0.4);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2358a6ff' 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 12px center;
    background-size: 20px;
    padding-right: 40px;
}

.contact-form .btn {
    width: 100%;
    padding: 16px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    letter-spacing: 0.5px;
}

.contact-form .btn-primary {
    background: linear-gradient(135deg, #238636, #2ea043);
    color: white;
    box-shadow: 0 8px 20px rgba(35, 134, 54, 0.3);
}

.contact-form .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(35, 134, 54, 0.4);
}

.contact-form .btn-primary:active {
    transform: translateY(-1px);
}

/* Form Status Messages */
.form-status {
    margin-top: 16px;
    padding: 14px 16px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    text-align: center;
    display: none;
    animation: slideUp 0.3s ease;
}

.form-status.show {
    display: block;
}

.form-status.success {
    background: rgba(35, 134, 54, 0.15);
    border: 1.5px solid rgba(35, 134, 54, 0.5);
    color: #7ee787;
}

.form-status.error {
    background: rgba(248, 85, 73, 0.15);
    border: 1.5px solid rgba(248, 85, 73, 0.5);
    color: #f85149;
}

.form-status i {
    margin-right: 8px;
}


/* Animations */
@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes titleGlow {
    0%, 100% { text-shadow: 0 0 15px rgba(35, 134, 54, 0.2); }
    50% { text-shadow: 0 0 25px rgba(35, 134, 54, 0.3); }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes rippleAnimation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}



/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .vscode-app {
        flex-direction: row;
    }

    .editor-header-bar {
        flex-wrap: wrap;
        gap: 0;
    }

    .logo-header {
        width: 100%;
        justify-content: center;
        border-right: none;
        border-bottom: 1px solid var(--border-color);
    }

    .content-tabs {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .tab {
        padding: 10px 12px;
        font-size: 0.8rem;
    }

    .activity-bar-main {
        width: 50px;
        height: 100vh;
        flex-direction: column;
        padding: 16px 0;
        border-right: 1px solid var(--border-color);
        border-bottom: none;
    }

    .ab-items {
        flex-direction: column;
        flex: 1;
    }

    .editor-content {
        order: 0;
    }

    .content-section {
        padding: 30px 20px;
    }

    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 60px 0 80px 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-right {
        height: 350px;
    }

    .code-card {
        font-size: 0.8rem;
        padding: 14px;
    }

    .code-card-1 {
        width: 240px;
    }

    .code-card-2 {
        width: 220px;
        top: 80px;
    }

    .code-card-3 {
        width: 260px;
        bottom: 20px;
        left: 40px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-stats {
        grid-template-columns: 1fr 1fr;
    }

    .hero-features {
        grid-template-columns: 1fr;
    }

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

    .contact-info {
        grid-template-columns: 1fr;
    }

    .contact-methods {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 40px 0 60px 0;
    }

    .contact-form-wrapper {
        padding: 40px 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .form-title {
        font-size: 1.2rem;
    }

    .contact-card {
        padding: 32px 24px;
    }

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

    /* Pricing tablet */
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-card.featured {
        grid-column: 1 / -1;
        transform: scale(1.02);
        max-width: 50%;
        margin: 0 auto;
    }

    /* Testimonials tablet */
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(13, 17, 23, 0.95);
    border-bottom: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

body.light-mode .navbar {
    background-color: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid #e1e4e8;
}

body.light-mode .activity-bar-main {
    background: rgba(248, 249, 250, 0.95);
    border-right-color: #e1e4e8;
}

body.light-mode .editor-header-bar {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.9) 100%);
    border-bottom-color: #e1e4e8;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(35, 134, 54, 0.1);
}

body.light-mode .ab-item {
    color: #6b7280;
}

body.light-mode .ab-item:hover {
    color: #1f2937;
    background: rgba(35, 134, 54, 0.1);
    box-shadow: 0 4px 12px rgba(35, 134, 54, 0.15);
}

body.light-mode .ab-item.active {
    color: #238636;
    background: rgba(35, 134, 54, 0.15);
    border-left-color: #238636;
    box-shadow: inset 0 0 15px rgba(35, 134, 54, 0.1), 0 4px 12px rgba(35, 134, 54, 0.1);
}

body.light-mode .editor-main {
    background: rgba(248, 249, 250, 0.8);
}

body.light-mode .editor-content {
    background: rgba(248, 249, 250, 0.8);
}

body.light-mode .breadcrumb-main {
    background: rgba(240, 242, 245, 0.9);
    color: #6b7280;
    border-bottom-color: #e1e4e8;
}

body.light-mode .section-container {
    color: #1f2937;
}

body.light-mode .content-section {
    background: rgba(248, 249, 250, 0.8);
}

body.light-mode .tab {
    color: #6b7280;
    border-color: transparent;
}

body.light-mode .tab.active {
    color: #1f2937;
    border-color: #238636;
    background: rgba(248, 249, 250, 0.8);
}

body.light-mode .tab:hover {
    color: #1f2937;
    background: rgba(240, 242, 245, 0.6);
}

body.light-mode .hero-badge {
    background: linear-gradient(135deg, rgba(35, 134, 54, 0.08) 0%, rgba(88, 166, 255, 0.05) 100%);
    border-color: rgba(35, 134, 54, 0.3);
}

body.light-mode .hero-stats {
    background: linear-gradient(135deg, rgba(35, 134, 54, 0.05) 0%, rgba(88, 166, 255, 0.03) 100%);
    border-color: rgba(35, 134, 54, 0.2);
}

body.light-mode .code-card {
    background: rgba(255, 255, 255, 0.9);
    border-color: #e1e4e8;
}

body.light-mode .services-grid .service-card {
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.95) 0%, rgba(255, 255, 255, 0.95) 100%) !important;
    border: 2px solid #e1e4e8 !important;
    border-left: 4px solid #238636 !important;
    backdrop-filter: blur(5px);
}

body.light-mode .services-grid .service-card::before {
    background: linear-gradient(90deg, transparent, rgba(35, 134, 54, 0.4), transparent) !important;
}

body.light-mode .services-grid .service-card::after {
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(35, 134, 54, 0.08) 0%, transparent 50%) !important;
}

body.light-mode .services-grid .service-card h3 {
    color: #1f2937;
}

body.light-mode .services-grid .service-card p {
    color: #6b7280;
}

body.light-mode .services-grid .service-card:hover {
    border-left-color: #238636 !important;
    border-color: rgba(35, 134, 54, 0.3) !important;
    background: linear-gradient(135deg, rgba(248, 249, 250, 1) 0%, rgba(255, 255, 255, 1) 100%) !important;
    box-shadow: 0 15px 35px rgba(35, 134, 54, 0.15), inset 0 0 25px rgba(35, 134, 54, 0.05) !important;
    transform: translateY(-6px);
}

body.light-mode .services-grid .card-header {
    background: rgba(248, 249, 250, 0.9) !important;
    border-bottom: 1px solid #e1e4e8 !important;
}

body.light-mode .services-grid .service-icon {
    background: linear-gradient(135deg, rgba(35, 134, 54, 0.15), rgba(35, 134, 54, 0.2)) !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08), inset 0 1px 1px rgba(255, 255, 255, 0.5) !important;
    color: #238636 !important;
}

body.light-mode .services-grid .service-card:hover .service-icon {
    background: linear-gradient(135deg, rgba(35, 134, 54, 0.25), rgba(35, 134, 54, 0.3)) !important;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1), inset 0 1px 1px rgba(255, 255, 255, 0.5) !important;
}

body.light-mode .services-grid .service-card:hover .card-header h3 {
    background: linear-gradient(135deg, #238636, #2ea043) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

body.light-mode .service-icon {
    background: rgba(35, 134, 54, 0.15) !important;
}

body.light-mode .card-footer .badge {
    background: rgba(35, 134, 54, 0.12);
    border-color: rgba(35, 134, 54, 0.3);
    color: #238636;
}

body.light-mode .about-point {
    background: linear-gradient(135deg, rgba(35, 134, 54, 0.08) 0%, rgba(88, 166, 255, 0.05) 100%);
    border-color: rgba(35, 134, 54, 0.2);
}

body.light-mode .stat-item {
    background: linear-gradient(135deg, rgba(35, 134, 54, 0.07) 0%, rgba(88, 166, 255, 0.05) 100%);
    border-color: rgba(35, 134, 54, 0.2);
}

body.light-mode .contact-card {
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.95) 0%, rgba(255, 255, 255, 0.95) 100%);
    border-color: #e1e4e8;
}

body.light-mode .contact-card h3 {
    color: #1f2937;
}

body.light-mode .contact-card p {
    color: #6b7280;
}

body.light-mode .contact-link {
    color: #238636;
    border-color: rgba(35, 134, 54, 0.3);
    background: rgba(35, 134, 54, 0.05);
}

body.light-mode .contact-form-wrapper {
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.95) 0%, rgba(255, 255, 255, 0.95) 100%);
    border-color: #e1e4e8;
}

body.light-mode .contact-form-wrapper::before {
    background: radial-gradient(circle at 80% 0%, rgba(35, 134, 54, 0.06) 0%, transparent 55%);
}

body.light-mode .form-title {
    color: #1f2937;
}

body.light-mode .form-subtitle {
    color: #6b7280;
}

body.light-mode .form-group label {
    color: #1f2937;
}

body.light-mode .form-group input,
body.light-mode .form-group select,
body.light-mode .form-group textarea {
    background: #ffffff;
    border-color: #e1e4e8;
    color: #1f2937;
}

body.light-mode .form-group input::placeholder,
body.light-mode .form-group textarea::placeholder {
    color: #9ca3af;
}

body.light-mode .contact-card {
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.95) 0%, rgba(255, 255, 255, 0.95) 100%) !important;
    border: 2px solid #e1e4e8 !important;
    color: #1f2937 !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06) !important;
}

body.light-mode .contact-card:hover {
    border-color: rgba(35, 134, 54, 0.4) !important;
    box-shadow: 0 12px 28px rgba(35, 134, 54, 0.12) !important;
    transform: translateY(-4px);
}

body.light-mode input,
body.light-mode textarea {
    background: #ffffff;
    border-color: #e1e4e8;
    color: #1f2937;
}

body.light-mode input::placeholder,
body.light-mode textarea::placeholder {
    color: #9ca3af;
}

body.light-mode input:focus,
body.light-mode textarea:focus {
    border-color: #238636;
}

body.light-mode .ab-item {
    color: #6b7280;
}

body.light-mode .ab-item:hover {
    color: #1f2937;
    background: rgba(35, 134, 54, 0.1);
}

body.light-mode .ab-item.active {
    color: #238636;
    background: rgba(35, 134, 54, 0.15);
    border-left-color: #238636;
}

body.light-mode .logo-header {
    border-right-color: #e1e4e8;
    background: linear-gradient(90deg, rgba(35, 134, 54, 0.05) 0%, transparent 100%);
    color: #1f2937;
}

body.light-mode .logo-header:hover {
    background: linear-gradient(90deg, rgba(35, 134, 54, 0.1) 0%, transparent 100%);
}

body.light-mode .content-tabs {
    background: rgba(248, 249, 250, 0.8);
}

body.light-mode .tab {
    color: #6b7280;
    border-right-color: #e1e4e8;
    border-bottom-color: transparent;
}

body.light-mode .tab::before {
    background: #238636;
}

body.light-mode .tab.active {
    color: #1f2937;
    background: rgba(248, 249, 250, 0.8);
    border-bottom-color: #238636;
}

body.light-mode .tab:hover {
    color: #1f2937;
    background: rgba(240, 242, 245, 0.6);
}

body.light-mode .content-section {
    background: rgba(248, 249, 250, 0.5);
}

body.light-mode .section-title {
    color: #1f2937;
}

body.light-mode .section-title::after {
    background: linear-gradient(90deg, #238636, #2ea043);
}

body.light-mode .section-subtitle {
    color: #6b7280;
}

body.light-mode h2, 
body.light-mode h3, 
body.light-mode h4, 
body.light-mode h5, 
body.light-mode h6 {
    color: #1f2937;
}

body.light-mode p {
    color: #4b5563;
}

body.light-mode .hero-badge {
    color: #6b7280;
}

body.light-mode .hero-badge i {
    color: #238636;
}

body.light-mode .hero-title {
    color: #1f2937;
}

body.light-mode .hero-subtitle {
    color: #6b7280;
}

body.light-mode .stat-value {
    color: #238636;
}

body.light-mode .stat-label {
    color: #6b7280;
}

body.light-mode .code-card {
    color: #4b5563;
}

body.light-mode .code-header {
    color: #238636;
    border-bottom-color: #e1e4e8;
}

body.light-mode .service-card h3 {
    color: #1f2937;
}

body.light-mode .service-card p {
    color: #6b7280;
}

body.light-mode .about-point h3 {
    color: #1f2937;
}

body.light-mode .about-point p {
    color: #6b7280;
}

body.light-mode .point-number {
    color: #1f2937;
    background: rgba(35, 134, 54, 0.1);
    border-color: rgba(35, 134, 54, 0.3);
}

body.light-mode .stat-item h3 {
    color: #1f2937;
}

/* Heading styles untuk light mode */
body.light-mode .section-title {
    color: #1f2937 !important;
}

body.light-mode .section-subtitle {
    color: #6b7280 !important;
}

body.light-mode h1, body.light-mode h2, body.light-mode h3, body.light-mode h4, body.light-mode h5, body.light-mode h6 {
    color: #1f2937 !important;
}

body.light-mode .hero-title {
    color: #1f2937 !important;
}

body.light-mode .hero-subtitle {
    color: #6b7280 !important;
}

/* Card headings */
body.light-mode .service-card h3,
body.light-mode .about-point h3,
body.light-mode .contact-card h3,
body.light-mode .contact-card h2 {
    color: #1f2937 !important;
}

body.light-mode .service-card p,
body.light-mode .about-point p,
body.light-mode .contact-card p {
    color: #4b5563 !important;
}

/* Icons styling */
body.light-mode .service-icon {
    background: rgba(35, 134, 54, 0.15) !important;
    color: #238636 !important;
}

body.light-mode .service-card:hover .service-icon {
    background: rgba(35, 134, 54, 0.25) !important;
    transform: scale(1.1);
}

/* Point-number styling */
body.light-mode .point-number {
    color: #1f2937 !important;
    background: rgba(35, 134, 54, 0.12) !important;
    border-color: rgba(35, 134, 54, 0.3) !important;
}

/* Contact icons */
body.light-mode .contact-card i {
    color: #238636 !important;
}

body.light-mode .status-bar-main {
    background: rgba(240, 242, 245, 0.9);
    border-top: 2px solid #e1e4e8;
    color: #6b7280;
    box-shadow: none;
    font-family: 'JetBrains Mono', monospace;
}

body.light-mode .status-item {
    color: #6b7280;
    cursor: pointer;
}

body.light-mode .status-item:hover {
    color: #238636;
    background: rgba(35, 134, 54, 0.1);
}

/* Form styling untuk light mode */
body.light-mode .form-group {
    margin-bottom: 20px;
}

body.light-mode .form-group label {
    color: #1f2937;
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
}

body.light-mode .form-control {
    background: #ffffff !important;
    border: 1.5px solid #e1e4e8 !important;
    color: #1f2937 !important;
}

body.light-mode .form-control:focus {
    border-color: #238636 !important;
    background: #f8f9fa !important;
    box-shadow: 0 0 0 3px rgba(35, 134, 54, 0.1) !important;
    outline: none;
}

body.light-mode .form-control::placeholder {
    color: #9ca3af;
}

/* Additional light mode overrides */
body.light-mode .breadcrumb {
    color: #6b7280;
    background: rgba(240, 242, 245, 0.8);
}

body.light-mode .service-icon {
    background: rgba(35, 134, 54, 0.15) !important;
    color: #238636 !important;
}

body.light-mode .service-card .service-icon:hover {
    background: rgba(35, 134, 54, 0.25) !important;
}

body.light-mode .badge {
    background: rgba(35, 134, 54, 0.12);
    border-color: rgba(35, 134, 54, 0.3);
    color: #238636;
}

/* Additional light mode fixes */
body.light-mode .section-decoration {
    opacity: 0.3 !important;
}

body.light-mode .breadcrumb {
    background: rgba(240, 242, 245, 0.8) !important;
    color: #6b7280 !important;
}

body.light-mode .breadcrumb-main {
    background: rgba(240, 242, 245, 0.9) !important;
    color: #6b7280 !important;
    border-bottom-color: #e1e4e8 !important;
}

body.light-mode .ab-logo {
    box-shadow: 0 4px 12px rgba(35, 134, 54, 0.2), 0 0 20px rgba(35, 134, 54, 0.1);
}

body.light-mode .editor-main {
    background: #f8f9fa !important;
}

body.light-mode .content-section {
    background: transparent;
    color: #1f2937;
}

body.light-mode .stat-number {
    font-size: 2rem;
    font-weight: 900;
    color: #238636 !important;
    background: linear-gradient(90deg, #238636, #2ea043) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

body.light-mode .badge {
    background: rgba(35, 134, 54, 0.12) !important;
    border: 1px solid rgba(35, 134, 54, 0.3) !important;
    color: #238636 !important;
}

body.light-mode .btn-primary {
    box-shadow: 0 10px 30px rgba(35, 134, 54, 0.2), 0 0 50px rgba(35, 134, 54, 0.08) !important;
}

body.light-mode .btn-primary:hover {
    box-shadow: 0 15px 40px rgba(35, 134, 54, 0.25), 0 0 60px rgba(35, 134, 54, 0.12) !important;
}

body.light-mode .keyboard {
    background: rgba(35, 134, 54, 0.08);
    border: 1px solid rgba(35, 134, 54, 0.2);
    color: #1f2937;
}

body.light-mode .btn-outline {
    border-color: rgba(35, 134, 54, 0.4);
    color: #238636;
}

body.light-mode .btn-outline:hover {
    background: rgba(35, 134, 54, 0.08);
    border-color: #238636;
}

body.light-mode .tech-icon {
    background: rgba(35, 134, 54, 0.12);
    border-color: rgba(35, 134, 54, 0.3);
    color: #238636;
}

/* Override dark card backgrounds untuk light mode */
body.light-mode .service-card {
    background: rgba(255, 255, 255, 0.95) !important;
    border: 1.5px solid #e1e4e8 !important;
    color: #1f2937 !important;
}

body.light-mode .service-card:hover {
    border-color: rgba(35, 134, 54, 0.4) !important;
    background: rgba(248, 249, 250, 0.95) !important;
}

body.light-mode .about-point {
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.8) 0%, rgba(255, 255, 255, 0.8) 100%) !important;
    border: 1.5px solid #e1e4e8 !important;
    color: #1f2937 !important;
}

body.light-mode .contact-card {
    background: rgba(255, 255, 255, 0.95) !important;
    border: 1.5px solid #e1e4e8 !important;
    color: #1f2937 !important;
}

body.light-mode .code-card {
    background: rgba(255, 255, 255, 0.95) !important;
    border: 1.5px solid #e1e4e8 !important;
    color: #1f2937 !important;
}

body.light-mode .contact-form {
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.95) 0%, rgba(240, 242, 245, 0.95) 100%) !important;
    border: 2px solid #e1e4e8 !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06) !important;
}

body.light-mode .contact-form:hover {
    border-color: rgba(35, 134, 54, 0.4) !important;
    box-shadow: 0 12px 28px rgba(35, 134, 54, 0.1), inset 0 0 30px rgba(35, 134, 54, 0.03) !important;
}

body.light-mode .form-group label {
    color: #1f2937 !important;
    font-weight: 700;
    font-size: 0.95rem;
}

body.light-mode .form-group input,
body.light-mode .form-group textarea,
body.light-mode .form-control {
    background: #ffffff !important;
    border: 1.5px solid #e1e4e8 !important;
    color: #1f2937 !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03) !important;
}

body.light-mode .form-group input::placeholder,
body.light-mode .form-group textarea::placeholder,
body.light-mode .form-control::placeholder {
    color: #9ca3af !important;
}

body.light-mode .form-group input:focus,
body.light-mode .form-group textarea:focus,
body.light-mode .form-group select:focus,
body.light-mode .form-control:focus {
    outline: none !important;
    background: #f8f9fa !important;
    border-color: #238636 !important;
    box-shadow: 0 0 0 3px rgba(35, 134, 54, 0.1), 0 2px 8px rgba(35, 134, 54, 0.1) !important;
}

/* Select dropdown styling untuk light mode */
body.light-mode .form-group select {
    background: #ffffff !important;
    border: 1.5px solid #e1e4e8 !important;
    color: #1f2937 !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03) !important;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231f2937' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 1.2em;
    padding-right: 36px;
}

body.light-mode .form-group select option {
    background: #ffffff !important;
    color: #1f2937 !important;
}

body.light-mode .form-group textarea {
    background: #ffffff !important;
    border: 1.5px solid #e1e4e8 !important;
    color: #1f2937 !important;
}

body.light-mode .form-group textarea:focus {
    background: #f8f9fa !important;
    border-color: #238636 !important;
}

body.light-mode .form-group label {
    color: #1f2937 !important;
}

/* Additional light mode contact form styling */
body.light-mode .contact-form textarea {
    background: #ffffff !important;
    border: 1.5px solid #e1e4e8 !important;
    color: #1f2937 !important;
    resize: vertical;
    min-height: 120px;
}

body.light-mode .contact-form textarea:focus {
    background: #f8f9fa !important;
    border-color: #238636 !important;
    box-shadow: 0 0 0 3px rgba(35, 134, 54, 0.1), 0 2px 8px rgba(35, 134, 54, 0.1) !important;
}

body.light-mode .contact-info {
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.8) 0%, rgba(240, 242, 245, 0.8) 100%);
}

body.light-mode .contact-card-item {
    background: rgba(255, 255, 255, 0.95);
    border: 1.5px solid #e1e4e8;
}

body.light-mode .contact-card-item:hover {
    border-color: rgba(35, 134, 54, 0.4);
    box-shadow: 0 8px 24px rgba(35, 134, 54, 0.1);
}

body.light-mode .contact-card-item h3 {
    color: #1f2937 !important;
}

body.light-mode .contact-card-item p {
    color: #6b7280 !important;
}

body.light-mode .contact-card-item i {
    color: #238636 !important;
}

body.light-mode .contact-form .btn-primary {
    background: linear-gradient(135deg, #238636, #2ea043) !important;
    color: white !important;
    border: none !important;
}

body.light-mode .contact-form .btn-primary:hover {
    box-shadow: 0 10px 30px rgba(35, 134, 54, 0.3) !important;
}

body.light-mode .form-control,
body.light-mode input[type="text"],
body.light-mode input[type="email"],
body.light-mode textarea {
    background: #ffffff !important;
    border: 1.5px solid #e1e4e8 !important;
    color: #1f2937 !important;
}

body.light-mode .form-control::placeholder {
    color: #9ca3af !important;
}

body.light-mode .form-control:focus,
body.light-mode input:focus,
body.light-mode textarea:focus {
    border-color: #238636 !important;
    background: #f8f9fa !important;
    box-shadow: 0 0 0 3px rgba(35, 134, 54, 0.1) !important;
    outline: none;
}

body.light-mode .form-group textarea {
    background: #ffffff !important;
    border: 1.5px solid #e1e4e8 !important;
    color: #1f2937 !important;
}

body.light-mode .form-group textarea::placeholder {
    color: #9ca3af !important;
}

body.light-mode .editor-content {
    background: rgba(248, 249, 250, 0.8) !important;
    color: #1f2937;
}

body.light-mode .editor-main {
    background: rgba(248, 249, 250, 0.8) !important;
}

body.light-mode .about-stats {
    background: rgba(248, 249, 250, 0.8) !important;
    border: 1px solid #e1e4e8 !important;
    border-left: 3px solid rgba(35, 134, 54, 0.5) !important;
}

body.light-mode .about-stats .stat-item {
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.9) 0%, rgba(255, 255, 255, 0.9) 100%) !important;
    border: 2px solid #e1e4e8 !important;
    color: #1f2937;
}

body.light-mode .about-stats .stat-item:hover {
    border-color: rgba(35, 134, 54, 0.4) !important;
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(248, 249, 250, 1) 100%) !important;
}

body.light-mode .services-grid {
    background: transparent;
}

body.light-mode .about-content {
    background: transparent;
}

body.light-mode .about-points {
    background: transparent;
}

body.light-mode .contact-grid {
    background: transparent;
}

body.light-mode .contact-info {
    background: transparent;
}

/* Shadows dan visual effects untuk light mode */
body.light-mode .service-card,
body.light-mode .about-point,
body.light-mode .contact-card,
body.light-mode .code-card {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06) !important;
}

body.light-mode .service-card:hover,
body.light-mode .about-point:hover,
body.light-mode .contact-card:hover,
body.light-mode .code-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1) !important;
}

/* Text colors consistency */
body.light-mode .section-container {
    color: #1f2937;
}

body.light-mode .card-header h3 {
    color: #1f2937 !important;
}

body.light-mode .point-content h3 {
    color: #1f2937 !important;
}

body.light-mode .point-content p {
    color: #4b5563 !important;
}

body.light-mode .card-header p {
    color: #6b7280 !important;
}

/* Ensure all text is readable */
body.light-mode strong,
body.light-mode b {
    color: #1f2937;
}

/* Extra styling untuk form dan button di light mode */
body.light-mode .btn-primary {
    color: white;
    background: linear-gradient(135deg, #238636, #2ea043) !important;
}

body.light-mode .btn-secondary {
    background: linear-gradient(135deg, rgba(35, 134, 54, 0.12) 0%, rgba(35, 134, 54, 0.08) 100%) !important;
    border: 2px solid rgba(35, 134, 54, 0.4) !important;
    color: #238636 !important;
}

body.light-mode .btn-secondary:hover {
    background: linear-gradient(135deg, rgba(35, 134, 54, 0.2) 0%, rgba(35, 134, 54, 0.15) 100%) !important;
    border-color: #238636 !important;
    color: #1f2937 !important;
}

body.light-mode .card-footer {
    background: transparent;
    border-top: 1px solid #e1e4e8;
}

/* Additional styling untuk contact card icons dan hover effects */
body.light-mode .contact-card i {
    color: #238636 !important;
    transition: all 0.3s ease;
}

body.light-mode .contact-card:hover i {
    color: #1f6feb !important;
    transform: scale(1.1);
}

body.light-mode .contact-card h2,
body.light-mode .contact-card h3 {
    color: #1f2937 !important;
    font-weight: 600;
}

body.light-mode .contact-card p {
    color: #6b7280 !important;
}

body.light-mode .contact-card:hover h3 {
    color: #238636 !important;
}

/* Button styling di contact form */
body.light-mode .contact-form button,
body.light-mode .contact-form .btn {
    background: linear-gradient(135deg, #238636, #2ea043) !important;
    color: white !important;
    border: none !important;
    font-weight: 700;
}

body.light-mode .contact-form button:hover,
body.light-mode .contact-form .btn:hover {
    box-shadow: 0 10px 30px rgba(35, 134, 54, 0.3) !important;
    transform: translateY(-2px);
}

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

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: linear-gradient(135deg, #238636, #2ea043);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 4px 12px rgba(35, 134, 54, 0.3);
    transition: all 0.3s ease;
}

.logo-icon:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(35, 134, 54, 0.4);
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-main {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.logo-sub {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--secondary-color);
    text-shadow: 0 0 20px rgba(88, 166, 255, 0.4);
}

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

.theme-toggle {
    background: none;
    border: 2px solid var(--border-color);
    color: var(--text-primary);
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.theme-toggle:hover {
    background-color: var(--dark-bg-secondary);
    border-color: var(--secondary-color);
    color: var(--secondary-color);
    transform: rotate(180deg) scale(1.1);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-top: 70px;
    padding: 60px 0;
}

.hero-animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(88, 166, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(88, 166, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: slide 20s linear infinite;
}

@keyframes slide {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.1;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #238636, #1f6feb);
    top: -100px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #58a6ff, #79c0ff);
    bottom: -50px;
    left: -50px;
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(30px, 30px);
    }
}

.hero .container {
    position: relative;
    z-index: 1;
    width: 100%;
}

/* VS Code Container */
.vscode-container {
    display: flex;
    height: 600px;
    background: var(--dark-bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    animation: slideUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Activity Bar - Left Side Navigation */
.activity-bar {
    width: 50px;
    background: rgba(33, 38, 45, 0.9);
    border-right: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 0;
    gap: 16px;
}

.activity-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: rgba(248, 248, 242, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    border-left: 3px solid transparent;
}

.activity-icon:hover {
    color: var(--text-primary);
    background: rgba(88, 166, 255, 0.2);
}

.activity-icon.active {
    color: var(--secondary-color);
    background: rgba(88, 166, 255, 0.15);
    border-left-color: var(--secondary-color);
}

/* Sidebar */
.vscode-sidebar {
    width: 250px;
    background: rgba(22, 27, 34, 0.6);
    border-right: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.sidebar-header {
    padding: 16px 12px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(33, 38, 45, 0.8);
}

.sidebar-title {
    font-size: 0.75rem;
    color: rgba(248, 248, 242, 0.6);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sidebar-action {
    background: none;
    border: none;
    color: rgba(248, 248, 242, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    padding: 4px 8px;
}

.sidebar-action:hover {
    color: var(--secondary-color);
}

/* File Tree */
.file-tree {
    padding: 8px 0;
    font-size: 0.85rem;
}

.file-item {
    padding: 6px 16px;
    color: rgba(248, 248, 242, 0.8);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
    position: relative;
}

.file-item::before {
    content: '';
    position: absolute;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(88, 166, 255, 0.15);
    z-index: -1;
    transition: width 0.2s ease;
}

.file-item:hover::before {
    width: 100%;
}

.file-item:hover {
    background: rgba(88, 166, 255, 0.1);
    color: var(--text-primary);
}

.file-item.child {
    padding-left: 40px;
}

.file-item i {
    width: 16px;
    font-size: 0.8rem;
}

/* VS Code Editor Main Area */
.vscode-editor {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: var(--dark-bg-primary);
}

/* File Tabs */
.file-tabs {
    display: flex;
    background: rgba(33, 38, 45, 0.9);
    border-bottom: 1px solid var(--border-color);
    gap: 0;
}

.file-tab {
    padding: 10px 16px;
    border-right: 1px solid var(--border-color);
    color: rgba(248, 248, 242, 0.7);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.file-tab:hover {
    background: rgba(88, 166, 255, 0.1);
    color: var(--text-primary);
}

.file-tab.active {
    color: var(--text-primary);
    background: rgba(88, 166, 255, 0.15);
    border-bottom: 2px solid var(--secondary-color);
}

.file-tab i {
    font-size: 0.75rem;
}

.tab-close {
    background: none;
    border: none;
    color: rgba(248, 248, 242, 0.6);
    cursor: pointer;
    padding: 0 4px;
    font-size: 0.7rem;
    transition: all 0.2s ease;
}

.tab-close:hover {
    color: var(--secondary-color);
}

/* Breadcrumb */
.breadcrumb {
    padding: 8px 16px;
    background: rgba(33, 38, 45, 0.6);
    border-bottom: 1px solid var(--border-color);
    color: rgba(248, 248, 242, 0.5);
    font-size: 0.8rem;
    font-family: 'JetBrains Mono', monospace;
}

/* Status Bar */
.status-bar {
    padding: 6px 16px;
    background: rgba(35, 134, 54, 0.15);
    border-top: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.75rem;
    color: rgba(248, 248, 242, 0.7);
    font-family: 'JetBrains Mono', monospace;
    gap: 20px;
}

.status-item {
    padding: 0 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.status-item:hover {
    color: var(--secondary-color);
    background: rgba(88, 166, 255, 0.15);
    border-radius: 4px;
}

.status-spacer {
    flex: 1;
}

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

/* Code Editor Mockup */
.code-editor-mockup {
    background: linear-gradient(135deg, rgba(22, 27, 34, 0.8), rgba(33, 38, 45, 0.8));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(48, 54, 61, 0.8);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(88, 166, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: editorFloat 4s ease-in-out infinite;
}

@keyframes editorFloat {
    0%, 100% {
        transform: translateY(0) rotateX(0deg);
    }
    50% {
        transform: translateY(-10px) rotateX(2deg);
    }
}

@keyframes shimmer {
    0%, 100% {
        background-position: -1000px 0;
    }
    50% {
        background-position: 1000px 0;
    }
}

.code-editor-mockup:hover {
    transform: translateY(-15px);
    box-shadow: 0 40px 100px rgba(35, 134, 54, 0.3), inset 0 1px 0 rgba(88, 166, 255, 0.2);
    border-color: rgba(35, 134, 54, 0.5);
}

.editor-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-color);
    background-color: var(--dark-bg-tertiary);
}

.editor-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red {
    background-color: #f85149;
}

.dot.yellow {
    background-color: #d29922;
}

.dot.green {
    background-color: #238636;
}

.editor-filename {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-left: 12px;
    flex: 1;
}

.editor-content {
    padding: 16px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    line-height: 1.8;
}

.code-line {
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.code-line.active-line {
    background-color: rgba(88, 166, 255, 0.1);
    color: var(--accent-color);
    padding: 0 8px;
    margin: 0 -8px;
    animation: codeLineGlow 2s ease-in-out infinite;
}

.line-number {
    color: var(--text-muted);
    margin-right: 16px;
    user-select: none;
}

.indent {
    display: inline-block;
    width: 20px;
}

.keyword {
    color: #ff7b72;
}

.attribute {
    color: #79c0ff;
}

.string {
    color: #a5d6ff;
}

.element {
    color: #79c0ff;
}

.comment {
    color: #8b949e;
}

.function {
    color: #d2a8ff;
}

/* Hero Content */
.hero-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-primary);
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% {
        text-shadow: 0 0 20px rgba(35, 134, 54, 0.3);
    }
    50% {
        text-shadow: 0 0 40px rgba(35, 134, 54, 0.5), 0 0 60px rgba(88, 166, 255, 0.3);
    }
}

.gradient-text {
    background: linear-gradient(135deg, #238636, #79c0ff, #238636);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes codeLineGlow {
    0%, 100% {
        box-shadow: inset 0 0 0px rgba(88, 166, 255, 0);
    }
    50% {
        box-shadow: inset 0 0 15px rgba(88, 166, 255, 0.2);
    }
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.8;
    transition: all 0.3s ease;
}

.hero-content:hover .hero-subtitle {
    color: var(--text-primary);
}

.hero-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    animation: slideUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    opacity: 0;
}

.feature-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: linear-gradient(135deg, #238636, #7ee787);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(35, 134, 54, 0.3);
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.15) rotate(-5deg);
    box-shadow: 0 8px 25px rgba(35, 134, 54, 0.5);
}

.feature-item span:last-child {
    font-size: 0.95rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.feature-item:hover span:last-child {
    color: var(--secondary-color);
}

.cta-group {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.btn {
    padding: 14px 28px;
    border-radius: 8px;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #238636, #2ea043);
    color: white;
    box-shadow: 0 4px 15px rgba(35, 134, 54, 0.4), 0 0 30px rgba(35, 134, 54, 0.2);
    position: relative;
    overflow: hidden;
}

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(35, 134, 54, 0.5), 0 0 50px rgba(35, 134, 54, 0.3);
}

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

.btn-primary:active {
    transform: translateY(-1px);
}

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

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

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

.btn-secondary-outline:hover {
    background-color: rgba(88, 166, 255, 0.1);
    transform: translateY(-2px);
}

/* ===== SERVICES SECTION ===== */
.services {
    padding: 120px 0;
    background: linear-gradient(180deg, rgba(13, 17, 23, 1) 0%, rgba(22, 27, 34, 0.8) 50%, rgba(13, 17, 23, 1) 100%);
    position: relative;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(35, 134, 54, 0.3), transparent);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
    opacity: 0;
    transition: all 0.3s ease;
}

.section-header:hover::after {
    opacity: 1;
    width: 150px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 300;
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #238636, #79c0ff);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    animation: gradientShift 4s ease infinite;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.95rem;
    letter-spacing: 1px;
}

.section-header:hover .section-subtitle {
    color: var(--text-primary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 24px;
    position: relative;
}

.service-card {
    background: rgba(33, 38, 45, 0.5);
    backdrop-filter: blur(10px);
    border-left: 4px solid rgba(35, 134, 54, 0);
    border-bottom: 1px solid rgba(48, 54, 61, 0.6);
    border-radius: 0;
    padding: 0;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    border-left-color: var(--primary-color);
    box-shadow: inset 0 0 20px rgba(35, 134, 54, 0.1), 0 10px 40px rgba(35, 134, 54, 0.15);
}

.service-card::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: all 0.3s ease;
}

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

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(35, 134, 54, 0), rgba(88, 166, 255, 0.1), rgba(35, 134, 54, 0));
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 0 30px 80px rgba(35, 134, 54, 0.25), inset 0 1px 0 0 rgba(88, 166, 255, 0.2);
}

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

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

.card-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 24px;
    margin-bottom: 0;
    border-bottom: 1px solid rgba(48, 54, 61, 0.6);
    background: rgba(21, 25, 32, 0.8);
    position: relative;
}

.card-header::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary-color);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.service-card:hover .card-header::before {
    transform: scaleY(1);
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--bg-color), rgba(255, 255, 255, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.2);
    opacity: 1;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

.service-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.3);
}

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

.card-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: all 0.3s ease;
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 0.5px;
}

.service-card:hover .card-header h3 {
    background: linear-gradient(135deg, #238636, #79c0ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 0 32px;
    flex: 1;
}

.service-card:hover p {
    color: var(--text-primary);
}

.card-footer {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    padding: 0 32px 24px;
}

.badge {
    display: inline-block;
    padding: 6px 14px;
    background: linear-gradient(135deg, rgba(35, 134, 54, 0.1), rgba(88, 166, 255, 0.05));
    border: 1px solid rgba(35, 134, 54, 0.3);
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    backdrop-filter: blur(5px);
    cursor: pointer;
}

.badge:hover {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(35, 134, 54, 0.25), rgba(88, 166, 255, 0.2));
    color: var(--text-primary);
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 8px 20px rgba(35, 134, 54, 0.25);
}

.service-card:hover .badge {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(35, 134, 54, 0.2), rgba(88, 166, 255, 0.15));
    color: var(--text-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(35, 134, 54, 0.2);
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: 120px 0;
    background: linear-gradient(180deg, rgba(13, 17, 23, 1) 0%, rgba(33, 38, 45, 0.2) 50%, rgba(13, 17, 23, 1) 100%);
    position: relative;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.about::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(88, 166, 255, 0.3), transparent);
}

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

.about-points {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-point {
    display: flex;
    gap: 24px;
    padding: 24px;
    border-radius: 0;
    background: rgba(21, 25, 32, 0.4);
    border: 1px solid rgba(48, 54, 61, 0.5);
    border-left: 3px solid rgba(35, 134, 54, 0);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

.about-point::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 0;
    background: var(--secondary-color);
    transition: height 0.3s ease;
}

.about-point:hover {
    background: rgba(35, 134, 54, 0.08);
    border-left-color: var(--secondary-color);
    transform: translateX(6px);
    box-shadow: inset 0 0 15px rgba(35, 134, 54, 0.1);
}

.about-point:hover::before {
    height: 100%;
}

.point-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #238636, #79c0ff);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex-shrink: 0;
    animation: gradientShift 4s ease infinite;
}

.point-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.point-content p {
    color: var(--text-secondary);
}

.stats-box {
    background: var(--dark-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    border-radius: 12px;
    background: rgba(35, 134, 54, 0.05);
    border: 1px solid rgba(35, 134, 54, 0.1);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.stat-item:hover {
    background: rgba(35, 134, 54, 0.1);
    border-color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(35, 134, 54, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #238636, #79c0ff);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 10px;
    animation: gradientShift 4s ease infinite;
    transition: transform 0.3s ease;
}

.stat-item:hover .stat-number {
    transform: scale(1.1);
}

.stat-label {
    color: var(--text-secondary);
    font-weight: 600;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(13, 17, 23, 0.95) 0%, rgba(35, 134, 54, 0.08) 50%, rgba(13, 17, 23, 0.95) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(35, 134, 54, 0.4), transparent);
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(35, 134, 54, 0.15) 0%, rgba(88, 166, 255, 0.1) 100%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #238636, #79c0ff);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    animation: gradientShift 4s ease infinite;
}

.cta-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    transition: all 0.3s ease;
}

.cta-content p:hover {
    color: var(--text-primary);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    animation: buttonPulse 2s ease-in-out infinite;
}

@keyframes buttonPulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(35, 134, 54, 0.4), 0 0 30px rgba(35, 134, 54, 0.2);
    }
    50% {
        box-shadow: 0 4px 15px rgba(35, 134, 54, 0.5), 0 0 50px rgba(35, 134, 54, 0.35);
    }
}

/* ===== VS CODE THEMED SEPARATORS ===== */
.services::after,
.about::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 40px;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(88, 166, 255, 0.3), transparent);
    bottom: -20px;
}

/* ===== VS CODE SECTION STYLING ===== */
.section-header {
    position: relative;
    padding-bottom: 30px;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(35, 134, 54, 0.4), transparent);
}

/* ===== ENHANCED ABOUT STATS ===== */
.about-stats {
    background: rgba(21, 25, 32, 0.4);
    border: 1px solid rgba(48, 54, 61, 0.5);
    border-left: 3px solid rgba(88, 166, 255, 0.5);
    padding: 32px;
    border-radius: 0;
}

.stat-item {
    padding: 16px;
    background: rgba(35, 134, 54, 0.05);
    border: 1px solid rgba(35, 134, 54, 0.2);
    border-radius: 0;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(35, 134, 54, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-item:hover {
    background: rgba(35, 134, 54, 0.1);
    border-color: rgba(35, 134, 54, 0.4);
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--dark-bg-secondary);
    border-top: 2px solid rgba(35, 134, 54, 0.3);
    padding: 80px 0 40px;
    color: var(--text-secondary);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, rgba(35, 134, 54, 0), rgba(35, 134, 54, 0.3), rgba(35, 134, 54, 0));
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
}

.footer-section h4 {
    color: var(--text-primary);
    margin-bottom: 20px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
}

.footer-section:hover h4::after {
    width: 100%;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.footer-section p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.footer-section a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-color);
    transform: translateX(6px);
}

.footer-section a:hover::before {
    width: 100%;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background-color: var(--dark-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transition: left 0.4s ease;
    z-index: -1;
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 8px 20px rgba(35, 134, 54, 0.4);
    border-color: var(--secondary-color);
}

.social-links a:hover::before {
    left: 100%;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
}

.heart {
    animation: heartbeat 0.6s ease infinite;
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .vscode-container {
        height: 500px;
    }

    .vscode-sidebar {
        width: 180px;
    }

    .sidebar-title {
        font-size: 0.7rem;
    }

    .file-item {
        font-size: 0.75rem;
        padding: 4px 12px;
    }

    .file-item.child {
        padding-left: 28px;
    }

    .file-tabs {
        font-size: 0.75rem;
    }

    .file-tab {
        padding: 8px 12px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background-color: var(--dark-bg-secondary);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 20px 0;
        gap: 0;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu li {
        padding: 15px 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-stats {
        gap: 30px;
    }

    .hero-stats .stat h3 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

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

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

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

    .pricing-card.active {
        transform: scale(1);
    }

    .testimonial-btn.prev,
    .testimonial-btn.next {
        position: static;
        transform: none !important;
        margin: 0 10px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .testimonial-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .hero-right {
        display: none;
    }

    .hero-stats {
        flex-direction: row;
        gap: 15px;
        padding: 20px;
    }

    .stat-value {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .cta-group {
        gap: 10px;
        flex-direction: column;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
        width: 100%;
    }

    .tech-icons {
        gap: 8px;
    }

    .tech-icon {
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    /* Disable animations on mobile for performance */
    .stars {
        display: none;
    }

    .code-snippet {
        display: none;
    }

    .animated-bg {
        display: none;
    }

    .service-card::before {
        display: none;
    }

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

    .service-card:hover .service-icon {
        transform: scale(1.1);
    }

    .glow-btn {
        animation: none;
    }

    /* VS Code responsive adjustments for mobile */
    .vscode-container {
        height: 400px;
    }

    .activity-bar {
        width: 45px;
        padding: 8px 0;
        gap: 8px;
    }

    .activity-icon {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }

    .vscode-sidebar {
        width: 140px;
    }

    .sidebar-title {
        font-size: 0.65rem;
    }

    .file-item {
        font-size: 0.7rem;
        padding: 2px 8px;
    }

    .code-editor-mockup {
        border-radius: 8px;
    }

    /* Portfolio responsive */
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    /* Pricing responsive */
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    /* Testimonials responsive */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

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

    /* Chatbot responsive */
    .chatbot-container {
        width: 90vw;
        height: 70vh;
        max-width: 350px;
        max-height: 500px;
    }
}

/* ===== CHATBOT STYLES ===== */
.chatbot-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #238636, #2ea043);
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(35, 134, 54, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chatbot-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(35, 134, 54, 0.6);
}

.chatbot-toggle.hidden {
    display: none;
}

.chatbot-container {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 380px;
    height: 500px;
    background: #151924;
    border: 1px solid #30363d;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    z-index: 999;
    animation: slideUp 0.3s ease;
    overflow: hidden;
}

.chatbot-container.hidden {
    display: none;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chatbot-header {
    background: linear-gradient(135deg, #238636, #2ea043);
    color: white;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(35, 134, 54, 0.3);
}

.chatbot-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.95rem;
}

.chatbot-minimize {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chatbot-minimize:hover {
    background: rgba(255, 255, 255, 0.3);
}

.chatbot-messages {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: #0d1117;
}

.chatbot-quick-replies {
    display: flex;
    gap: 8px;
    padding: 8px 12px 12px 12px;
    border-top: 1px solid #30363d;
    background: #0d1117;
    overflow-x: auto;
    scrollbar-width: thin;
}

.chatbot-quick-replies::-webkit-scrollbar {
    height: 6px;
}

.chatbot-quick-replies::-webkit-scrollbar-thumb {
    background: #30363d;
    border-radius: 999px;
}

.chatbot-chip {
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid #30363d;
    background: #151924;
    color: #e6edf3;
    font-size: 0.78rem;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.2s ease;
}

.chatbot-chip:hover {
    border-color: #238636;
    color: #ffffff;
    transform: translateY(-1px);
}

.chat-message {
    display: flex;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bot-message {
    justify-content: flex-start;
}

.user-message {
    justify-content: flex-end;
}

.message-content {
    max-width: 70%;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 0.9rem;
    line-height: 1.4;
    word-wrap: break-word;
}

.message-content p {
    margin: 0;
}

.message-content a {
    color: #238636;
    text-decoration: underline;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.message-content a:hover {
    opacity: 0.8;
}

body.light-mode .message-content a {
    color: #238636;
}

.bot-message .message-content {
    background: #21262d;
    color: #e6edf3;
    border: 1px solid #30363d;
}

.user-message .message-content {
    background: #238636;
    color: white;
}

.chatbot-input-area {
    display: flex;
    gap: 8px;
    padding: 12px;
    border-top: 1px solid #30363d;
    background: #151924;
}

.chatbot-input {
    flex: 1;
    padding: 10px 12px;
    border: 1px solid #30363d;
    border-radius: 6px;
    background: #0d1117;
    color: #e6edf3;
    font-family: inherit;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.chatbot-input:focus {
    outline: none;
    border-color: #238636;
    box-shadow: 0 0 8px rgba(35, 134, 54, 0.3);
}

.chatbot-input::placeholder {
    color: #8b949e;
}

.chatbot-send {
    padding: 10px 14px;
    background: #238636;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chatbot-send:hover {
    background: #2ea043;
    transform: translateY(-2px);
}

.chatbot-send:active {
    transform: translateY(0);
}

/* Light mode chatbot styles */
body.light-mode .chatbot-container {
    background: #ffffff;
    border-color: #e1e4e8;
}

body.light-mode .chatbot-messages {
    background: #f8f9fa;
}

body.light-mode .chatbot-quick-replies {
    background: #f8f9fa;
    border-top-color: #e1e4e8;
}

body.light-mode .chatbot-chip {
    background: #ffffff;
    border-color: #e1e4e8;
    color: #1f2937;
}

body.light-mode .bot-message .message-content {
    background: #ffffff;
    border-color: #e1e4e8;
    color: #1f2937;
}

body.light-mode .user-message .message-content {
    background: #238636;
    color: white;
}

body.light-mode .chatbot-input-area {
    background: #ffffff;
    border-top-color: #e1e4e8;
}

body.light-mode .chatbot-input {
    background: #f8f9fa;
    color: #1f2937;
    border-color: #e1e4e8;
}

body.light-mode .chatbot-input::placeholder {
    color: #9ca3af;
}

body.light-mode .chatbot-input:focus {
    border-color: #238636;
    box-shadow: 0 0 8px rgba(35, 134, 54, 0.2);
}