@import url('fonts.css');

/* ==========================================================================
   DESIGN TOKENS & THEMING
   ========================================================================== */
:root {
  /* Fonts */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Brand Colors */
  --color-brand-lime: #8dc63f;
  --color-brand-forest: #2f914a;
  --color-brand-dark-forest: #1f6a33;
  --color-brand-lime-rgb: 141, 198, 63;
  --color-brand-forest-rgb: 47, 145, 74;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  /* Borders & Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  /* Light Theme Variables (Default) */
  --bg-primary: #f4f7f5;
  --bg-secondary: #ffffff;
  --bg-tertiary: #e9efe9;
  --bg-footer: #0c140f;
  --text-primary: #121e16;
  --text-secondary: #485b4d;
  --text-muted: #7d9382;
  --border-color: #dbe4de;
  --border-glow: rgba(47, 145, 74, 0.1);
  
  --card-bg: rgba(255, 255, 255, 0.8);
  --card-shadow: 0 10px 30px -10px rgba(18, 30, 22, 0.08);
  --card-hover-shadow: 0 20px 40px -15px rgba(47, 145, 74, 0.15);
  
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(47, 145, 74, 0.08);
  
  --input-bg: #ffffff;
  --input-border: #ccd8d0;
  --input-focus: rgba(47, 145, 74, 0.2);

  --gradient-accent: linear-gradient(135deg, var(--color-brand-lime) 0%, var(--color-brand-forest) 100%);
  --gradient-accent-hover: linear-gradient(135deg, #9cd44f 0%, #3ca658 100%);
  --gradient-glow: rgba(141, 198, 63, 0.15);
  --gradient-hero: radial-gradient(circle at 80% 20%, rgba(141, 198, 63, 0.08) 0%, rgba(47, 145, 74, 0.02) 50%, transparent 100%);
}



/* ==========================================================================
   BASE RESET
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  transition: background-color var(--transition-normal), color var(--transition-normal);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, textarea, select {
  font-family: inherit;
  color: inherit;
  font-size: inherit;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

ul, ol {
  list-style: none;
}

/* Scrollbar Styles */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: var(--radius-full);
  border: 2px solid var(--bg-primary);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-brand-forest);
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-primary);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-weight: 600;
}

p {
  color: var(--text-secondary);
}

p.lead {
  font-size: clamp(1.125rem, 1.5vw, 1.25rem);
  font-weight: 400;
}

.text-gradient {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ==========================================================================
   LAYOUT UTILITIES
   ========================================================================== */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 6rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem auto;
}

.section-tag {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  background-color: var(--bg-tertiary);
  color: var(--color-brand-forest);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  border: 1px solid var(--border-color);
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* ==========================================================================
   COMPONENTS
   ========================================================================== */

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all var(--transition-normal);
  cursor: pointer;
  border: none;
  font-size: 0.95rem;
}

.btn-primary {
  background: var(--gradient-accent);
  color: #ffffff;
  box-shadow: 0 4px 15px var(--gradient-glow);
}

.btn-primary:hover {
  background: var(--gradient-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(141, 198, 63, 0.3);
}

.btn-secondary {
  background-color: var(--bg-tertiary);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background-color: var(--border-color);
  transform: translateY(-2px);
}

.btn-icon {
  margin-left: 0.5rem;
  transition: transform var(--transition-fast);
}

.btn:hover .btn-icon {
  transform: translateX(3px);
}

/* Cards */
.card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  box-shadow: var(--card-shadow);
  transition: transform var(--transition-normal), 
              box-shadow var(--transition-normal), 
              border-color var(--transition-normal);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.card:hover {
  transform: translateY(-5px);
  border-color: var(--color-brand-lime);
  box-shadow: var(--card-hover-shadow);
}

/* Glassmorphism Panel */
.glass-panel {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

/* ==========================================================================
   NAVIGATION HEADER
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: padding var(--transition-normal), background-color var(--transition-normal), box-shadow var(--transition-normal);
}

.header.scrolled {
  padding: 0.75rem 0;
  background-color: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-wrapper {
  display: flex;
  align-items: center;
}

.logo {
  height: 50px;
  width: auto;
  transition: height var(--transition-normal);
}

.header.scrolled .logo {
  height: 40px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  font-weight: 500;
  color: var(--text-secondary);
  font-size: 0.95rem;
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-accent);
  transition: width var(--transition-normal);
  border-radius: var(--radius-full);
}

.nav-link:hover {
  color: var(--text-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Theme Toggle Button */
.theme-toggle {
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  transition: all var(--transition-fast);
}

.theme-toggle:hover {
  color: var(--text-primary);
  background-color: var(--border-color);
  border-color: var(--color-brand-forest);
}

.theme-toggle svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.sun-icon { display: none; }
.moon-icon { display: block; }




/* Mobile Menu Button */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--text-primary);
  transition: transform var(--transition-normal), opacity var(--transition-normal);
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 120px;
  overflow: hidden;
  background: var(--gradient-hero);
}

#hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: all;
  opacity: 0.65;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background-color: rgba(47, 145, 74, 0.08);
  border: 1px solid rgba(141, 198, 63, 0.2);
  border-radius: var(--radius-full);
  color: var(--color-brand-forest);
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}



.hero-badge-dot {
  width: 8px;
  height: 8px;
  background-color: var(--color-brand-lime);
  border-radius: var(--radius-full);
  animation: pulse 2s infinite;
}

.hero-title {
  margin-bottom: 1.5rem;
}

.hero-description {
  margin-bottom: 2.5rem;
  color: var(--text-secondary);
}

.hero-actions {
  display: flex;
  gap: 1rem;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-circle-backdrop {
  position: absolute;
  width: 450px;
  height: 450px;
  background: var(--gradient-accent);
  filter: blur(80px);
  opacity: 0.15;
  border-radius: var(--radius-full);
  z-index: 1;
}

.hero-image-wrapper {
  position: relative;
  z-index: 2;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  background: var(--card-bg);
  padding: 2rem;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-logo-large {
  max-width: 250px;
  height: auto;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

.hero-feature-pill {
  position: absolute;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--card-shadow);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  font-size: 0.9rem;
  z-index: 3;
}

.hero-pill-1 {
  top: 15%;
  left: -20px;
  animation: float 4s ease-in-out infinite;
}

.hero-pill-2 {
  bottom: 15%;
  right: -25px;
  animation: float 4s ease-in-out infinite 2s;
}

.hero-feature-pill svg {
  width: 24px;
  height: 24px;
  color: var(--color-brand-lime);
}

/* ==========================================================================
   STATS SECTION
   ========================================================================== */
.stats {
  padding: 3rem 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  background-color: var(--bg-secondary);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-number {
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-brand-forest);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}



.stat-label {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  background-color: rgba(47, 145, 74, 0.08);
  border: 1px solid rgba(141, 198, 63, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-brand-forest);
  margin-bottom: 1.5rem;
  transition: all var(--transition-normal);
}



.service-card:hover .service-icon-wrapper {
  background: var(--gradient-accent);
  color: #ffffff;
  transform: scale(1.05);
  box-shadow: 0 8px 20px var(--gradient-glow);
}

.service-icon-wrapper svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.service-title {
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.service-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border-top: 1px solid var(--border-color);
  padding-top: 1.25rem;
}

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.service-item svg {
  width: 16px;
  height: 16px;
  color: var(--color-brand-forest);
  flex-shrink: 0;
  margin-top: 3px;
}



/* ==========================================================================
   ABOUT ME SECTION
   ========================================================================== */
.about {
  background-color: var(--bg-secondary);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 4rem;
  align-items: center;
}

.about-image-column {
  position: relative;
}

.about-image-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border-color);
  background-color: var(--bg-primary);
}

.about-image {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gradient-accent);
  color: #ffffff;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(47, 145, 74, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  z-index: 2;
}

.experience-years {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1;
}

.experience-text {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.about-content h2 {
  margin-bottom: 1.5rem;
}

.about-content p {
  margin-bottom: 1.5rem;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.about-feature-item {
  display: flex;
  gap: 1rem;
}

.about-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-brand-forest);
  flex-shrink: 0;
}



.about-feature-icon svg {
  width: 20px;
  height: 20px;
}

.about-feature-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--text-primary);
}

.about-feature-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* ==========================================================================
   TESTIMONIALS (REVIEWS) SECTION
   ========================================================================== */
.reviews {
  overflow: hidden;
}

.reviews-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.reviews-slider {
  display: flex;
  transition: transform var(--transition-slow);
  width: 100%;
}

.review-slide {
  min-width: 100%;
  padding: 1rem;
  box-sizing: border-box;
}

.review-card {
  text-align: center;
  padding: 3rem;
  position: relative;
}

.quote-icon {
  width: 48px;
  height: 48px;
  color: rgba(47, 145, 74, 0.1);
  margin: 0 auto 1.5rem auto;
}



.review-text {
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--text-primary);
  margin-bottom: 2rem;
}

.review-author {
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.review-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.reviews-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.reviews-btn {
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.reviews-btn:hover {
  background-color: var(--border-color);
  color: var(--text-primary);
  border-color: var(--color-brand-forest);
}

.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.reviews-dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  background-color: var(--border-color);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.reviews-dot.active {
  background-color: var(--color-brand-forest);
  width: 24px;
}



/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact {
  background-color: var(--bg-secondary);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 4rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-card {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  transition: transform var(--transition-normal);
}

.contact-card:hover {
  transform: translateY(-2px);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-brand-forest);
  flex-shrink: 0;
}



.contact-card-icon svg {
  width: 20px;
  height: 20px;
}

.contact-card-title {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.contact-card-value {
  font-weight: 500;
  color: var(--text-primary);
}

/* Contact Form */
.form-group {
  margin-bottom: 1.5rem;
  position: relative;
}

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.form-input {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  background-color: var(--input-bg);
  border: 1px solid var(--input-border);
  color: var(--text-primary);
  outline: none;
  transition: all var(--transition-normal);
}

.form-input:focus {
  border-color: var(--color-brand-forest);
  box-shadow: 0 0 0 4px var(--input-focus);
}



textarea.form-input {
  resize: vertical;
  min-height: 150px;
}

.form-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
  cursor: pointer;
}

.form-checkbox {
  margin-top: 3px;
  cursor: pointer;
}

.form-checkbox-label a {
  text-decoration: underline;
  color: var(--color-brand-forest);
}



/* Form Message Box */
.form-message {
  padding: 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  display: none;
  animation: fadeIn var(--transition-normal);
}

.form-message.success {
  background-color: rgba(47, 145, 74, 0.1);
  border: 1px solid rgba(47, 145, 74, 0.2);
  color: #277c3e;
  display: block;
}

.form-message.error {
  background-color: rgba(220, 53, 69, 0.1);
  border: 1px solid rgba(220, 53, 69, 0.2);
  color: #dc3545;
  display: block;
}



/* Loading Spinner */
.spinner {
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #ffffff;
  animation: spin 0.8s ease-in-out infinite;
  display: none;
  margin-right: 0.5rem;
}

.btn-primary.loading .spinner {
  display: inline-block;
}

.btn-primary.loading .btn-text-content {
  opacity: 0.8;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background-color: var(--bg-footer);
  color: #f0f6f2;
  padding: 5rem 0 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}



.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 4rem;
  margin-bottom: 3.5rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-logo {
  height: 55px;
  width: auto;
  align-self: flex-start;
}

.footer-desc {
  color: #9cb1a2;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-title {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--gradient-accent);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  color: #9cb1a2;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  transition: all var(--transition-fast);
}

.footer-link:hover {
  color: #ffffff;
  transform: translateX(3px);
}

.footer-link svg {
  width: 14px;
  height: 14px;
  margin-right: 0.5rem;
  color: var(--color-brand-lime);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: #9cb1a2;
  font-size: 0.95rem;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--color-brand-lime);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact-item a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #6b8272;
  font-size: 0.85rem;
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
}

.footer-bottom-links a {
  color: #6b8272;
}

.footer-bottom-links a:hover {
  color: #ffffff;
}

/* ==========================================================================
   SUBPAGES (IMPRINT & PRIVACY)
   ========================================================================== */
.subpage-hero {
  padding: 10rem 0 4rem 0;
  background-color: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.subpage-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-hero);
  opacity: 0.5;
  pointer-events: none;
}

.subpage-hero .container {
  position: relative;
  z-index: 2;
}

.subpage-content {
  padding: 5rem 0;
}

.legal-box {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 3rem;
  box-shadow: var(--card-shadow);
}

.legal-box h2 {
  font-size: 1.75rem;
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.5rem;
}

.legal-box h2:first-of-type {
  margin-top: 0;
}

.legal-box h3 {
  font-size: 1.25rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.legal-box h4 {
  font-size: 1.05rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.legal-box p {
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.legal-box ul {
  list-style: disc;
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.legal-box li {
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(141, 198, 63, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(141, 198, 63, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(141, 198, 63, 0);
  }
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll Animation classes (active on scroll script) */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-visual {
    order: -1;
    margin-bottom: 2rem;
  }
  .hero-circle-backdrop {
    width: 350px;
    height: 350px;
  }
  .hero {
    padding-top: 100px;
    padding-bottom: 4rem;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .footer-grid {
    grid-template-columns: 1.5fr 1fr;
  }
  .footer-grid > :last-child {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 15px;
  }

  .container {
    padding: 0 1.25rem;
  }

  .section {
    padding: 4rem 0;
  }

  .grid-2 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background-color: var(--bg-secondary);
    border-left: 1px solid var(--border-color);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 6rem 2.5rem 3rem 2.5rem;
    gap: 2rem;
    z-index: 999;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
    transition: right var(--transition-normal);
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-link {
    font-size: 1.1rem;
    width: 100%;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-grid > :last-child {
    grid-column: span 1;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .footer-bottom-links {
    justify-content: center;
  }
  
  .legal-box {
    padding: 1.5rem;
  }

  .hero-pill-1 {
    left: 0;
  }
  
  .hero-pill-2 {
    right: 0;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .hero-actions {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .hero-feature-pill {
    position: static;
    margin-top: 1rem;
    width: 100%;
    justify-content: center;
  }
  
  .hero-image-wrapper {
    padding: 1rem;
  }
  
  .about-features {
    grid-template-columns: 1fr;
  }
}

/* Service Card Image Styles */
.service-image-container {
  width: 100%;
  height: 160px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 1.5rem;
  border: 1px solid var(--border-color);
  background-color: var(--bg-primary);
}

.service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.service-card:hover .service-image {
  transform: scale(1.05);
}

/* Cookie Consent Banner */
.cookie-consent {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: calc(100% - 48px);
  max-width: 420px;
  background: var(--glass-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--card-shadow);
  padding: 1.75rem;
  z-index: 9999;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: none;
  animation: slideUp var(--transition-normal) forwards;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cookie-consent-title {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.cookie-consent-text {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.cookie-consent-text a {
  text-decoration: underline;
  color: var(--color-brand-forest);
}

.cookie-consent-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cookie-consent-btn-row {
  display: flex;
  gap: 0.75rem;
  width: 100%;
}

.cookie-consent-btn-row button {
  flex: 1;
}

.cookie-consent-details {
  display: none;
  margin-top: 1rem;
  border-top: 1px solid var(--border-color);
  padding-top: 1rem;
  animation: fadeIn var(--transition-fast) forwards;
}

.cookie-consent-option {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.cookie-consent-option input[type="checkbox"] {
  margin-top: 3px;
  cursor: pointer;
}

.cookie-consent-option-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
}

.cookie-consent-option-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Logo Text Styles */
.logo-text {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: transform var(--transition-fast);
}

.logo-text:hover {
  transform: scale(1.05);
}

/* WhatsApp Button Hover Effect */
.whatsapp-btn:hover {
  background-color: #20ba59 !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4) !important;
}
