/* ================================
   DESIGN KOBOLD - DIGITAL AGENCY
   ================================ */

/* CSS Variables */
:root {
  /* Kobold Green Colors - Based on Logo */
  --primary-color: #2d5016;
  --primary-light: #3d6b20;
  --primary-dark: #1d3610;
  --accent-color: #7cb342;
  --accent-light: #9ccc65;
  --accent-dark: #558b2f;
  
  /* Neutral Colors - SOFTER DARK */
  --dark-bg: #0f1419;
  --dark-color: #1a1f2e;
  --darker-color: #0a0e14;
  --light-color: #f8faf9;
  --text-color: #e8eaed;
  --text-muted: #a8b3cf;
  --border-color: #2d3748;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #2d5016 0%, #558b2f 100%);
  --gradient-accent: linear-gradient(135deg, #7cb342 0%, #9ccc65 100%);
  --gradient-dark: linear-gradient(180deg, #0f1419 0%, #1a2a1f 100%);
  
  /* Typography */
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.3);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.5);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.6);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.7);
  --shadow-glow: 0 0 20px rgba(124, 179, 66, 0.3);
  
  /* Transitions */
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  color: var(--light-color);
  font-weight: 700;
  line-height: 1.2;
}

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

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

/* ================================
   NAVIGATION
   ================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(10, 14, 15, 0.7);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-bottom: 1px solid rgba(124, 179, 66, 0.1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(10, 14, 15, 0.95);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
  border-bottom-color: rgba(124, 179, 66, 0.2);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 20px;
  transition: var(--transition);
}

.navbar.scrolled .container {
  padding: 0.3rem 20px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: var(--transition);
}

.logo-img {
  height: 90px;
  width: auto;
  object-fit: contain;
  transition: var(--transition);
  filter: drop-shadow(0 0 10px rgba(124, 179, 66, 0.3));
}

.navbar.scrolled .logo-img {
  height: 70px;
}

.logo-img:hover {
  transform: scale(1.05) rotate(2deg);
  filter: drop-shadow(0 0 15px rgba(124, 179, 66, 0.5));
}

.logo-text-fallback {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.nav-menu li {
  position: relative;
}

.nav-menu a {
  font-weight: 500;
  transition: var(--transition);
  position: relative;
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 6px;
  border-radius: 8px;
  color: var(--text-color);
}

.nav-menu > li > a:hover {
  color: var(--accent-light);
  background: rgba(124, 179, 66, 0.1);
  transform: translateY(-2px);
}

.nav-menu > li > a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 80%;
  height: 2px;
  background: var(--gradient-accent);
  transition: var(--transition);
  border-radius: 2px;
}

.nav-menu > li > a:hover::before {
  transform: translateX(-50%) scaleX(1);
}

/* Dropdown Menu - Mega Menu Style */
.dropdown {
  position: relative;
}

.dropdown > a::after {
  content: '▼';
  font-size: 0.7rem;
  margin-left: 4px;
  transition: var(--transition);
  opacity: 0.6;
}

.dropdown:hover > a::after {
  transform: rotate(180deg);
  opacity: 1;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  background: rgba(10, 14, 15, 0.98);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border: 1px solid rgba(124, 179, 66, 0.2);
  border-radius: 16px;
  padding: 1rem;
  min-width: 280px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
              0 0 0 1px rgba(124, 179, 66, 0.1) inset;
  z-index: 1000;
  list-style: none;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: rgba(10, 14, 15, 0.98);
  border-left: 1px solid rgba(124, 179, 66, 0.2);
  border-top: 1px solid rgba(124, 179, 66, 0.2);
}

.dropdown-menu li {
  width: 100%;
  margin: 0;
}

.dropdown-menu a {
  padding: 0.85rem 1rem;
  color: var(--text-color);
  white-space: nowrap;
  transition: all 0.3s ease;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  position: relative;
  overflow: hidden;
}

.dropdown-menu a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 3px;
  background: var(--gradient-accent);
  transform: scaleY(0);
  transition: var(--transition);
  border-radius: 0 3px 3px 0;
}

.dropdown-menu a:hover::before {
  transform: scaleY(1);
}

.dropdown-menu a:hover {
  background: rgba(124, 179, 66, 0.15);
  color: var(--accent-light);
  padding-left: 1.5rem;
  box-shadow: 0 4px 15px rgba(124, 179, 66, 0.2);
}

.dropdown-menu a::after {
  content: '→';
  opacity: 0;
  margin-left: auto;
  transition: var(--transition);
  font-size: 1.1rem;
}

.dropdown-menu a:hover::after {
  opacity: 1;
  transform: translateX(5px);
}

.btn-contact {
  background: var(--gradient-accent);
  color: var(--dark-bg) !important;
  padding: 0.75rem 1.75rem;
  border-radius: 12px;
  transition: var(--transition);
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(124, 179, 66, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-contact::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: var(--transition);
}

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

.btn-contact:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(124, 179, 66, 0.5);
}

.btn-contact::after {
  display: none !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  padding: 8px;
  border-radius: 8px;
  transition: var(--transition);
  background: rgba(124, 179, 66, 0.1);
  border: 1px solid rgba(124, 179, 66, 0.2);
}

.hamburger:hover {
  background: rgba(124, 179, 66, 0.2);
  transform: scale(1.1);
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--accent-light);
  border-radius: 3px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-20px);
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* ================================
   HERO SECTION WITH PARTICLES
   ================================ */
.hero {
  position: relative;
  padding: 0;
  background: var(--gradient-dark);
  color: white;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Particles Background */
#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  padding: 100px 20px 80px;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

/* Hero Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(124, 179, 66, 0.1);
  border: 1px solid rgba(124, 179, 66, 0.3);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.9rem;
  color: var(--accent-light);
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease;
}

.badge-icon {
  font-size: 1.2rem;
}

/* Hero Title */
.hero-title {
  font-size: 4rem;
  font-weight: 900;
  color: white;
  margin-bottom: 2.5rem;
  padding-top: 2.5rem;
  line-height: 1.1;
  animation: fadeInUp 0.8s ease 0.2s both;
  letter-spacing: -2px;
}

.gradient-text {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

/* Hero Subtitle */
.hero-subtitle {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  color: var(--text-muted);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 0.8s ease 0.4s both;
}

/* Hero Features */
.hero-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  animation: fadeInUp 0.8s ease 0.6s both;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-color);
  padding: 0.6rem 1.2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
  white-space: nowrap;
  flex: 0 1 auto;
}

.feature-item:hover {
  background: rgba(124, 179, 66, 0.15);
  border-color: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(124, 179, 66, 0.2);
}

.feature-icon {
  width: 20px;
  height: 20px;
  color: var(--accent-light);
  flex-shrink: 0;
  stroke-width: 2;
}

/* Hero Buttons */
.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 0rem;
  animation: fadeInUp 0.8s ease 0.8s both;
  flex-wrap: wrap;
}

.btn {
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 1rem;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: var(--gradient-accent);
  color: var(--dark-bg);
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(124, 179, 66, 0.5);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent-color);
  color: var(--accent-light);
}

/* Hero Stats */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 450px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  animation: fadeInUp 0.8s ease 1s both;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent-light);
  margin-bottom: 0.3rem;
  display: block;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
  animation: fadeInUp 0.8s ease 1.2s both;
}

.scroll-indicator p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.mouse {
  width: 26px;
  height: 40px;
  border: 2px solid var(--accent-color);
  border-radius: 20px;
  margin: 0 auto;
  position: relative;
}

.wheel {
  width: 4px;
  height: 8px;
  background: var(--accent-color);
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll 1.5s infinite;
}

@keyframes scroll {
  0% {
    opacity: 1;
    top: 8px;
  }
  100% {
    opacity: 0;
    top: 24px;
  }
}

/* ================================
   SECTIONS
   ================================ */
section {
  padding: 6rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.section-title {
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Services */
.services {
  background: var(--dark-bg);
}

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

.service-card {
  background: rgba(124, 179, 66, 0.06);
  border: 1px solid rgba(124, 179, 66, 0.15);
  border-radius: 20px;
  padding: 2.5rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-color);
  box-shadow: 0 20px 40px rgba(124, 179, 66, 0.2);
  background: rgba(124, 179, 66, 0.1);
}

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

.service-icon {
  width: 60px;
  height: 60px;
  background: rgba(124, 179, 66, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.service-icon svg {
  width: 32px;
  height: 32px;
  color: var(--accent-color);
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--accent-color);
  transform: scale(1.1) rotate(5deg);
}

.service-card:hover .service-icon svg {
  color: var(--dark-bg);
}

.service-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--light-color);
}

.service-description {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.service-features li {
  color: var(--text-muted);
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.95rem;
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
}

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

.service-link svg {
  transition: var(--transition);
}

.service-link:hover {
  color: var(--accent-light);
  gap: 0.75rem;
}

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


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

.why-us {
  background: linear-gradient(135deg, #0a0e0f 0%, #1a2a1f 100%);
}

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

.why-card {
  background: rgba(124, 179, 66, 0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(124, 179, 66, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-color);
  box-shadow: 0 10px 30px rgba(124, 179, 66, 0.2);
}

.why-number {
  font-size: 4rem;
  font-weight: 900;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 1rem;
}

.why-number::after {
  content: '+';
  margin-left: 0.2rem;
}

.why-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: rgba(124, 179, 66, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.why-icon svg {
  width: 40px;
  height: 40px;
  color: var(--accent-color);
}

.why-card:hover .why-icon {
  background: var(--accent-color);
  transform: scale(1.1);
}

.why-card:hover .why-icon svg {
  color: var(--dark-bg);
}

.why-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--light-color);
}

.why-description {
  color: var(--text-muted);
  line-height: 1.7;
}


/* ================================
   PROCESS SECTION
   ================================ */

.process {
  background: var(--dark-bg);
}

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

.process-timeline::before {
  content: '';
  position: absolute;
  left: 40px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, 
    var(--accent-color) 0%, 
    rgba(124, 179, 66, 0.3) 100%);
}

.process-step {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 3rem;
  position: relative;
}

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

.process-number {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--dark-bg);
  box-shadow: 0 10px 30px rgba(124, 179, 66, 0.3);
  position: relative;
  z-index: 2;
}

.process-content {
  flex: 1;
  background: rgba(124, 179, 66, 0.06);
  border: 1px solid rgba(124, 179, 66, 0.15);
  border-radius: 16px;
  padding: 2rem;
  transition: var(--transition);
}

.process-content:hover {
  border-color: var(--accent-color);
  background: rgba(124, 179, 66, 0.1);
}

.process-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--light-color);
}

.process-description {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.process-list {
  list-style: none;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.process-list li {
  background: rgba(124, 179, 66, 0.1);
  color: var(--accent-light);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
}


/* ================================
   PORTFOLIO SECTION
   ================================ */

.portfolio {
  background: linear-gradient(135deg, #0a0e0f 0%, #1a2a1f 100%);
}

.portfolio-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  background: rgba(124, 179, 66, 0.05);
  border: 1px solid rgba(124, 179, 66, 0.2);
  color: var(--text-muted);
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

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

.filter-btn.active {
  background: var(--gradient-accent);
  border-color: var(--accent-color);
  color: var(--dark-bg);
}

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

.portfolio-item {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
}

.portfolio-image {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  background: linear-gradient(135deg, rgba(124, 179, 66, 0.1) 0%, rgba(124, 179, 66, 0.05) 100%);
}

.portfolio-item:nth-child(1) .portfolio-image img { background: linear-gradient(135deg, #2d5016 0%, #558b2f 100%); }
.portfolio-item:nth-child(2) .portfolio-image img { background: linear-gradient(135deg, #558b2f 0%, #7cb342 100%); }
.portfolio-item:nth-child(3) .portfolio-image img { background: linear-gradient(135deg, #7cb342 0%, #9ccc65 100%); }
.portfolio-item:nth-child(4) .portfolio-image img { background: linear-gradient(135deg, #9ccc65 0%, #7cb342 100%); }
.portfolio-item:nth-child(5) .portfolio-image img { background: linear-gradient(135deg, #7cb342 0%, #558b2f 100%); }
.portfolio-item:nth-child(6) .portfolio-image img { background: linear-gradient(135deg, #558b2f 0%, #2d5016 100%); }


.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, 
    rgba(10, 14, 15, 0) 0%, 
    rgba(10, 14, 15, 0.9) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  opacity: 0;
  transition: var(--transition);
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-item:hover .portfolio-image img {
  transform: scale(1.1);
}

.portfolio-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--light-color);
  margin-bottom: 0.5rem;
}

.portfolio-category {
  color: var(--accent-light);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.portfolio-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--light-color);
  text-decoration: none;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  background: rgba(124, 179, 66, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid var(--accent-color);
  border-radius: 30px;
  transition: var(--transition);
  width: fit-content;
}

.portfolio-link:hover {
  background: var(--accent-color);
  color: var(--dark-bg);
}

.portfolio-cta {
  text-align: center;
}


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

.cta-section {
  background: var(--gradient-dark);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(124, 179, 66, 0.1) 0%, transparent 70%);
  animation: pulse 8s ease-in-out infinite;
}

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

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

.cta-title {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

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

.btn-large {
  padding: 1.2rem 2.5rem;
  font-size: 1.1rem;
}

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

.btn-outline:hover {
  background: var(--accent-color);
  color: var(--dark-bg);
}

.cta-features {
  display: flex;
  gap: 3rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-muted);
  font-size: 1rem;
}

.cta-feature svg {
  width: 24px;
  height: 24px;
  color: var(--accent-color);
  flex-shrink: 0;
}


/* ================================
   CONTACT SECTION
   ================================ */

.contact {
  background: var(--dark-bg);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
}

.contact-logo {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 0 15px rgba(124, 179, 66, 0.3));
  transition: var(--transition);
}

.contact-logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 20px rgba(124, 179, 66, 0.5));
}

.contact-description {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

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

.contact-item {
  display: flex;
  gap: 1.5rem;
}

.contact-item svg {
  width: 24px;
  height: 24px;
  color: var(--accent-color);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.contact-item h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--light-color);
}

.contact-item p {
  color: var(--text-muted);
  line-height: 1.6;
}

.contact-item a {
  color: var(--accent-color);
  text-decoration: none;
  transition: var(--transition);
}

.contact-item a:hover {
  color: var(--accent-light);
}

.contact-form {
  background: rgba(124, 179, 66, 0.06);
  border: 1px solid rgba(124, 179, 66, 0.15);
  border-radius: 20px;
  padding: 2.5rem;
}

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

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

.form-group label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--light-color);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(10, 14, 15, 0.5);
  border: 1px solid rgba(124, 179, 66, 0.2);
  color: var(--light-color);
  padding: 1rem;
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: var(--font-main);
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  background: rgba(10, 14, 15, 0.7);
}

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

.form-checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.75rem;
}

.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 0.25rem;
  flex-shrink: 0;
  cursor: pointer;
  accent-color: var(--accent-color);
}

.form-checkbox label {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-muted);
  cursor: pointer;
}

.form-checkbox label a {
  color: var(--accent-color);
  text-decoration: none;
}

.form-checkbox label a:hover {
  color: var(--accent-light);
  text-decoration: underline;
}

.contact-form .btn-primary {
  margin-top: 1.5rem;
}

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

.footer {
  background: var(--dark-bg);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    var(--accent-color) 50%, 
    transparent 100%);
}

.footer-main {
  padding: 4rem 0 2rem;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

/* Footer Brand Column */
.footer-logos {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.footer-logo,
.footer-logo-konzept {
  width: 100px;
  height: 100px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(124, 179, 66, 0.3));
  transition: var(--transition);
}

.footer-logo-konzept {
  filter: drop-shadow(0 0 10px rgba(124, 179, 66, 0.2));
  width: 60px;
  height: 60px;
}

.footer-logos img:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 0 15px rgba(124, 179, 66, 0.5));
}

.footer-brand-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-brand-text strong {
  color: var(--accent-light);
  font-weight: 600;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

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

.footer-contact-item svg {
  flex-shrink: 0;
  color: var(--accent-color);
  margin-top: 0.15rem;
}

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

.footer-contact-item a {
  color: var(--accent-color);
  text-decoration: none;
  transition: var(--transition);
}

.footer-contact-item a:hover {
  color: var(--accent-light);
}

.footer-description {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 350px;
}

/* Social Media Icons */
.footer-social {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(124, 179, 66, 0.1);
  border: 1px solid rgba(124, 179, 66, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.footer-social a::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-accent);
  opacity: 0;
  transition: var(--transition);
}

.footer-social a:hover {
  transform: translateY(-3px);
  border-color: var(--accent-color);
  box-shadow: 0 5px 15px rgba(124, 179, 66, 0.3);
}

.footer-social a:hover::before {
  opacity: 0.15;
}

.footer-social a svg {
  width: 20px;
  height: 20px;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

.footer-social a:hover svg {
  color: var(--accent-light);
}

/* Footer Columns */
.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--light-color);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--gradient-accent);
  border-radius: 2px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: var(--transition);
  display: inline-block;
  position: relative;
}

.footer-links a::before {
  content: '→';
  position: absolute;
  left: -20px;
  opacity: 0;
  color: var(--accent-color);
  transition: var(--transition);
}

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

.footer-links a:hover::before {
  opacity: 1;
  left: 0;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(124, 179, 66, 0.1);
  padding: 1.5rem 0;
  background: rgba(10, 14, 15, 0.5);
  backdrop-filter: blur(10px);
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

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

.footer-legal {
  list-style: none;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-legal a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
  position: relative;
}

.footer-legal a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent-color);
  transition: var(--transition);
}

.footer-legal a:hover {
  color: var(--accent-light);
}

.footer-legal a:hover::after {
  width: 100%;
}


/* ================================
   FLOATING KOBOLD MASCOT
   ================================ */

.floating-kobold {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
  animation: floatBounce 3s ease-in-out infinite;
}

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

.speech-bubble {
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 100%);
  color: var(--dark-bg);
  padding: 1rem 1.5rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 10px 30px rgba(124, 179, 66, 0.4);
  position: relative;
  opacity: 1;
  animation: bubbleAppear 0.5s ease forwards 1s, bubblePulse 2s ease-in-out infinite 1.5s;
  max-width: 250px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  line-height: 1.4;
  transition: all 0.3s ease;
}

.speech-bubble::after {
  content: '';
  position: absolute;
  bottom: -10px;
  right: 30px;
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 0px solid transparent;
  border-top: 15px solid var(--accent-light);
}

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

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

.kobold-character {
  width: 120px;
  height: 120px;
  cursor: pointer;
  transition: var(--transition);
  filter: drop-shadow(0 10px 20px rgba(124, 179, 66, 0.3));
}

.kobold-character:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 10px 20px rgba(124, 179, 66, 0.4));
}

@keyframes glowPulse {
  0%, 100% { 
    filter: drop-shadow(0 15px 30px rgba(124, 179, 66, 0.5)); 
  }
  50% { 
    filter: drop-shadow(0 15px 40px rgba(124, 179, 66, 0.9))
            drop-shadow(0 0 30px rgba(124, 179, 66, 1)); 
  }
}

.kobold-character:active {
  transform: scale(0.95);
}

.kobold-character img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: koboldWiggle 6s ease-in-out infinite;
  background: transparent;
  mix-blend-mode: normal;
}

@keyframes koboldWiggle {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-1deg); }
  75% { transform: rotate(1deg); }
}

@keyframes magicShake {
  0%, 100% { transform: scale(1) rotate(0deg); }
  25% { transform: scale(1.2) rotate(-10deg); }
  50% { transform: scale(1.3) rotate(10deg); }
  75% { transform: scale(1.2) rotate(-5deg); }
}

/* Magic Sparkle Effect */
.magic-sparkle {
  position: fixed;
  width: 12px;
  height: 12px;
  background: radial-gradient(circle, var(--accent-light) 0%, var(--accent-color) 100%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  animation: sparkleExplosion 1s ease-out forwards;
  box-shadow: 0 0 10px var(--accent-color),
              0 0 20px var(--accent-light),
              0 0 30px rgba(124, 179, 66, 0.5);
}

.magic-sparkle::before {
  content: '✨';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 14px;
  animation: sparkleRotate 1s linear forwards;
}

@keyframes sparkleExplosion {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translate(var(--tx), var(--ty)) scale(0);
    opacity: 0;
  }
}

@keyframes sparkleRotate {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(720deg); }
}

@keyframes floatUp {
  0% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(-150px) scale(1.5);
  }
}

@keyframes flyToCenter {
  0% {
    opacity: 1;
    transform: translate(0, 0) scale(1) rotate(0deg);
  }
  100% {
    opacity: 0;
    transform: translate(var(--tx), var(--ty)) scale(0.3) rotate(720deg);
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(0.3);
  }
}

.kobold-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  background: var(--gradient-accent);
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(124, 179, 66, 0.4);
  animation: rotatePulse 3s ease-in-out infinite;
}

@keyframes rotatePulse {
  0%, 100% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.1); }
}

/* Mobile Kobold */
@media (max-width: 768px) {
  .floating-kobold {
    bottom: 20px;
    right: 20px;
    scale: 0.85;
  }
  
  .speech-bubble {
    font-size: 0.85rem;
    padding: 0.75rem 1.25rem;
    max-width: 200px;
  }
  
  .kobold-character {
    width: 90px;
    height: 90px;
  }
}

@media (max-width: 480px) {
  .floating-kobold {
    scale: 0.7;
    bottom: 15px;
    right: 15px;
  }
  
  .speech-bubble {
    display: none;
  }
}


/* ================================
   ANIMATIONS
   ================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

/* ================================
   SUBPAGE SPECIFIC STYLES
   ================================ */

/* Hero with Background Image */
.hero-with-image {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero-with-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, 
    rgba(45, 80, 22, 0.85) 0%, 
    rgba(15, 20, 25, 0.9) 100%);
  z-index: 1;
}

.hero-with-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(124, 179, 66, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 179, 66, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: 1;
  animation: gridSlide 20s linear infinite;
}

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

/* Content Image Section */
.content-image-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin: 4rem 0;
}

.content-image-section.reverse {
  direction: rtl;
}

.content-image-section.reverse > * {
  direction: ltr;
}

.content-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.content-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-image-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, 
    rgba(45, 80, 22, 0.6) 0%, 
    rgba(15, 20, 25, 0.7) 100%);
  z-index: 1;
}

.content-image-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(124, 179, 66, 0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 179, 66, 0.15) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 2;
}

.content-image-text h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.content-image-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.content-image-text ul {
  list-style: none;
  margin-top: 2rem;
}

.content-image-text ul li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  color: var(--text-color);
  font-size: 1rem;
}

.content-image-text ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
  font-size: 1.2rem;
}

/* Horizontal Process for Subpages */
.process-horizontal {
  background: rgba(124, 179, 66, 0.03);
  padding: 4rem 0;
}

.process-horizontal .process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 100%;
}

.process-horizontal .process-timeline::before {
  display: none;
}

.process-horizontal .process-step {
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 0;
  text-align: center;
}

.process-horizontal .process-number {
  margin: 0 auto;
}

.process-horizontal .process-content {
  height: 100%;
}

.process-horizontal .process-list {
  justify-content: center;
}

/* Responsive for Content Image Section */
@media (max-width: 1024px) {
  .content-image-section {
    gap: 3rem;
  }
  
  .content-image-text h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .content-image-section {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .content-image-section.reverse {
    direction: ltr;
  }
  
  .hero-with-image {
    background-attachment: scroll;
  }
  
  .process-horizontal .process-timeline {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .content-image-text h2 {
    font-size: 1.75rem;
  }
  
  .content-image-text p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .content-image-text h2 {
    font-size: 1.5rem;
  }
}

/* Tablet */
@media (max-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
  
  .section-title {
    font-size: 2.25rem;
  }
  
  /* Services */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  /* Why Us */
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  /* Portfolio */
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Contact */
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  
  .footer-column:first-child {
    grid-column: 1 / -1;
  }
  
  /* Navigation */
  .nav-menu {
    gap: 0.3rem;
  }
  
  .nav-menu a {
    font-size: 0.85rem;
    padding: 0.6rem 0.8rem;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 95px;
    flex-direction: column;
    background: rgba(10, 14, 15, 0.98);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    width: 100%;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    padding: 1.5rem 0;
    border-top: 1px solid rgba(124, 179, 66, 0.2);
    max-height: calc(100vh - 95px);
    overflow-y: auto;
    gap: 0;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-menu li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  }
  
  .nav-menu > li > a {
    padding: 1.2rem 2rem;
    border-radius: 0;
    justify-content: space-between;
  }
  
  .nav-menu > li > a:hover {
    background: rgba(124, 179, 66, 0.1);
    transform: translateX(10px);
  }
  
  .nav-menu > li > a::before {
    display: none;
  }
  
  .nav-menu > li > a::after {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 50%;
    margin-left: auto;
  }
  
  /* Mobile Dropdown */
  .dropdown > a::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    transition: var(--transition);
  }
  
  .dropdown.active > a::after {
    content: '−';
    transform: none;
  }
  
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: rgba(124, 179, 66, 0.05);
    border: none;
    border-left: 3px solid var(--accent-color);
    border-radius: 0;
    box-shadow: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55), padding 0.4s ease;
    padding: 0;
    margin: 0 1rem;
  }
  
  .dropdown-menu::before {
    display: none;
  }
  
  .dropdown.active .dropdown-menu {
    max-height: 600px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
  }
  
  .dropdown-menu a {
    padding: 1rem 1.5rem;
    font-size: 0.9rem;
    border-radius: 8px;
    margin: 0.2rem 0.5rem;
  }
  
  .dropdown-menu a:hover {
    padding-left: 2rem;
    margin-left: 0.5rem;
  }
  
  .dropdown-menu a::before {
    left: 0.5rem;
  }
  
  .btn-contact {
    margin: 0.5rem 2rem;
    justify-content: center;
  }
  
  .logo-img {
    height: 75px;
  }
  
  .navbar.scrolled .logo-img {
    height: 60px;
  }
  
  /* Hero Responsive */
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-features {
    gap: 0.75rem;
    max-width: 100%;
  }
  
  .feature-item {
    width: auto;
    justify-content: center;
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
  
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  /* Sections Mobile */
  section {
    padding: 4rem 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  /* Services Mobile */
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .service-card {
    padding: 2rem;
  }
  
  /* Why Us Mobile */
  .why-grid {
    grid-template-columns: 1fr;
  }
  
  /* Process Mobile */
  .process-timeline::before {
    left: 20px;
  }
  
  .process-step {
    gap: 1.5rem;
  }
  
  .process-number {
    width: 60px;
    height: 60px;
    font-size: 1.4rem;
  }
  
  /* Portfolio Mobile */
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  
  .portfolio-filters {
    gap: 0.75rem;
  }
  
  .filter-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }
  
  /* CTA Mobile */
  .cta-title {
    font-size: 2rem;
  }
  
  .cta-subtitle {
    font-size: 1rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cta-features {
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
  }
  
  /* Footer Mobile */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-column:first-child {
    grid-column: 1;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-legal {
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
  }
}
