/* ============================================
   BUNTYTECH PORTFOLIO - MAIN STYLESHEET
   Complete CSS with animations, 3D effects
   ============================================ */

/* ---- CSS Variables ---- */
:root {
  --primary-green: #7B9669;
  --light-gray: #E6E6E6;
  --slate-blue: #6C8480;
  --sage-green: #BAC8B1;
  --dark-forest: #404E3B;
  --text-color: #1a1a1a;
  --white: #ffffff;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --shadow-sm: 0 2px 8px rgba(64,78,59,0.08);
  --shadow-md: 0 8px 30px rgba(64,78,59,0.12);
  --shadow-lg: 0 20px 60px rgba(64,78,59,0.15);
  --shadow-3d: 0 25px 50px -12px rgba(64,78,59,0.25);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-color);
  background: var(--light-gray);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ---- Scroll Progress ---- */
#scroll-progress { position: fixed; top: 0; left: 0; width: 100%; height: 3px; z-index: 99998; background: rgba(123,150,105,0.2); }
#scroll-progress-bar { height: 100%; width: 0%; background: linear-gradient(90deg, var(--primary-green), var(--dark-forest)); transition: width 0.1s; }

/* ---- Custom Cursor ---- */
#custom-cursor { position: fixed; width: 12px; height: 12px; background: var(--dark-forest); border-radius: 50%; pointer-events: none; z-index: 99997; transform: translate(-50%,-50%); transition: width 0.2s, height 0.2s, background 0.2s; mix-blend-mode: difference; }
#custom-cursor-trail { position: fixed; width: 40px; height: 40px; border: 1px solid var(--primary-green); border-radius: 50%; pointer-events: none; z-index: 99996; transform: translate(-50%,-50%); transition: width 0.3s, height 0.3s, border-color 0.3s; opacity: 0.5; }
#custom-cursor.hover { width: 20px; height: 20px; background: var(--primary-green); }
#custom-cursor-trail.hover { width: 60px; height: 60px; border-color: var(--dark-forest); }
@media (pointer: coarse) { #custom-cursor, #custom-cursor-trail { display: none; } }

/* ============================================
   NAVBAR
   ============================================ */
.navbar { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; transition: var(--transition); padding: 15px 0; }
.navbar.scrolled { background: rgba(230,230,230,0.92); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); box-shadow: var(--shadow-sm); padding: 10px 0; }
.nav-container { max-width: 1400px; margin: 0 auto; padding: 0 30px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 12px; font-family: var(--font-display); font-size: 26px; color: var(--dark-forest); letter-spacing: 2px; transition: color 0.3s ease; }
.nav-logo img { width: 72px; height: 72px; transition: transform 0.3s ease; }
.nav-logo img:hover { transform: rotate(-5deg) scale(1.08); }
.nav-menu { display: flex; align-items: center; gap: 6px; }
.nav-link { font-family: var(--font-body); font-size: 13px; font-weight: 500; color: var(--dark-forest); padding: 8px 14px; border-radius: 100px; position: relative; letter-spacing: 0.5px; text-transform: uppercase; transition: color 0.3s ease, background 0.3s ease; }
.nav-link:hover, .nav-link.active { background: rgba(123,150,105,0.15); color: var(--primary-green); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.btn-hire { display: inline-block; padding: 10px 24px; background: var(--primary-green); color: var(--white); font-family: var(--font-body); font-size: 13px; font-weight: 600; border-radius: 100px; letter-spacing: 0.5px; text-transform: uppercase; box-shadow: 0 4px 15px rgba(123,150,105,0.3); transition: var(--transition); }
.btn-hire:hover { background: var(--dark-forest); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.nav-admin { width: 36px; height: 36px; border-radius: 50%; background: rgba(64,78,59,0.1); display: flex; align-items: center; justify-content: center; color: var(--dark-forest); font-size: 14px; transition: var(--transition); }
.nav-admin:hover { background: var(--dark-forest); color: var(--white); }

/* Transparent navbar (page top) — white text on dark hero backgrounds */
.navbar:not(.scrolled) .nav-link { color: rgba(255,255,255,0.93); }
.navbar:not(.scrolled) .nav-link:hover,
.navbar:not(.scrolled) .nav-link.active { color: #fff; background: rgba(255,255,255,0.18); }
.navbar:not(.scrolled) .nav-logo { color: #fff; }
.navbar:not(.scrolled) .nav-admin { color: rgba(255,255,255,0.9); background: rgba(255,255,255,0.12); }
.navbar:not(.scrolled) .nav-admin:hover { background: rgba(255,255,255,0.25); color: #fff; }
.navbar:not(.scrolled) .nav-toggle span { background: rgba(255,255,255,0.9); }
.navbar:not(.scrolled) .btn-hire { background: rgba(255,255,255,0.18); color: #fff; border: 1.5px solid rgba(255,255,255,0.4); box-shadow: none; }
.navbar:not(.scrolled) .btn-hire:hover { background: var(--primary-green); border-color: var(--primary-green); }

/* Scrolled navbar — restore dark text */
.navbar.scrolled .nav-link { color: var(--dark-forest); }
.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active { color: var(--primary-green); background: rgba(123,150,105,0.15); }
.navbar.scrolled .nav-logo { color: var(--dark-forest); }
.navbar.scrolled .nav-admin { color: var(--dark-forest); background: rgba(64,78,59,0.1); }
.navbar.scrolled .nav-toggle span { background: var(--dark-forest); }
.navbar.scrolled .btn-hire { background: var(--primary-green); color: #fff; border: none; }

/* Mobile Toggle */
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 5px; z-index: 1001; }
.nav-toggle span { display: block; width: 25px; height: 2px; background: var(--dark-forest); border-radius: 2px; transition: var(--transition); }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu Overlay */
.mobile-menu-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.3); z-index: 998; opacity: 0; visibility: hidden; transition: var(--transition); }
.mobile-menu-overlay.active { opacity: 1; visibility: visible; }

/* ============================================
   BUTTONS
   ============================================ */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 32px; font-family: var(--font-body); font-size: 14px; font-weight: 600; border-radius: 8px; border: none; cursor: pointer; transition: var(--transition); letter-spacing: 0.5px; }
.btn-primary { background: var(--primary-green); color: var(--white); box-shadow: 0 4px 15px rgba(123,150,105,0.3); }
.btn-primary:hover { background: var(--dark-forest); transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.btn-outline { background: transparent; color: var(--dark-forest); border: 2px solid var(--dark-forest); }
.btn-outline:hover { background: var(--dark-forest); color: var(--white); transform: translateY(-3px); }
.btn-white { background: var(--white); color: var(--dark-forest); }
.btn-white:hover { background: var(--sage-green); transform: translateY(-3px); }

/* ============================================
   HERO SECTION
   ============================================ */
.hero { min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; background: linear-gradient(135deg, var(--light-gray) 0%, var(--sage-green) 50%, var(--primary-green) 100%); }
.hero-container { max-width: 1400px; margin: 0 auto; padding: 120px 30px 60px; display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 2; }
.hero-greeting { font-family: var(--font-body); font-size: 18px; color: var(--slate-blue); font-weight: 400; margin-bottom: 8px; }
.hero-title { font-family: var(--font-display); font-size: clamp(48px, 8vw, 96px); color: var(--dark-forest); line-height: 0.95; letter-spacing: -1px; margin-bottom: 16px; text-transform: uppercase; }
.hero-title span { display: block; }
.hero-typing { font-family: var(--font-body); font-size: clamp(20px, 3vw, 32px); font-weight: 600; color: var(--primary-green); min-height: 40px; margin-bottom: 8px; }
.hero-typing-secondary { font-family: var(--font-body); font-size: clamp(16px, 2.5vw, 24px); font-weight: 500; color: var(--sage-green); margin-bottom: 20px; }
.hero-subtitle { font-family: var(--font-body); font-size: 16px; color: var(--text-color); opacity: 0.8; margin-bottom: 30px; max-width: 500px; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-stats { display: flex; gap: 30px; flex-wrap: wrap; }
.hero-stat { text-align: center; }
.hero-stat-number { font-family: var(--font-mono); font-size: 28px; font-weight: 600; color: var(--dark-forest); }
.hero-stat-label { font-family: var(--font-body); font-size: 12px; color: var(--slate-blue); text-transform: uppercase; letter-spacing: 1px; }
.hero-social { display: flex; gap: 12px; margin-top: 30px; }
.hero-social a { width: 42px; height: 42px; border-radius: 50%; background: rgba(64,78,59,0.1); display: flex; align-items: center; justify-content: center; color: var(--dark-forest); font-size: 16px; transition: var(--transition); }
.hero-social a:hover { background: var(--dark-forest); color: var(--white); transform: translateY(-3px); }

/* Hero Right - Devices Wrapper (Laptop + Mobile) */
.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; }

.hero-devices-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 40px;
}

/* ---- Laptop ---- */
.hero-laptop-3d {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 500px;
  animation: floatLaptop 6s ease-in-out 2.8s infinite;
  filter: drop-shadow(0 30px 50px rgba(0,0,0,0.45));
}
.hero-laptop-lid {
  /* No 3D rotation — clean flat display */
}
.hero-laptop-frame {
  /* Outer screen body — dark aluminum look */
  background: linear-gradient(180deg, #3a3a3a 0%, #2a2a2a 40%, #1e1e1e 100%);
  border-radius: 18px 18px 6px 6px;
  padding: 30px 18px 10px;  /* top bezel tall, sides, bottom thin */
  position: relative;
  box-shadow:
    0 0 0 1.5px rgba(255,255,255,0.10),
    0 0 0 2.5px rgba(0,0,0,0.7),
    inset 0 1px 0 rgba(255,255,255,0.14);
}
/* Camera dot in top bezel */
.hero-laptop-camera {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  background: #111;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.12);
  z-index: 5;
}
.hero-laptop-camera::after {
  content: '';
  position: absolute;
  top: 2px; left: 2px;
  width: 3px; height: 3px;
  background: rgba(90,160,255,0.5);
  border-radius: 50%;
}
/* Subtle light line on inner bezel edge */
.hero-laptop-frame::before {
  content: '';
  position: absolute;
  top: 28px; left: 16px; right: 16px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.04), transparent);
  border-radius: 1px;
}
.hero-laptop-screen {
  background: #080c10;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 16/10;
  position: relative;
  width: 100%;
}
.hero-laptop-screen img { width: 100%; height: 100%; object-fit: cover; }

/* Keyboard / base */
.hero-laptop-base {
  background: linear-gradient(180deg, #383838 0%, #2c2c2c 30%, #242424 100%);
  height: 28px;
  border-radius: 0 0 18px 18px;
  margin-top: 0;
  position: relative;
  box-shadow:
    0 0 0 1.5px rgba(0,0,0,0.8),
    0 12px 30px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.07);
}
/* Hinge line between screen and base */
.hero-laptop-base::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #1a1a1a, #3a3a3a, #1a1a1a);
}
/* Trackpad notch on base */
.hero-laptop-base::after {
  content: '';
  position: absolute;
  bottom: 6px; left: 50%;
  transform: translateX(-50%);
  width: 56px; height: 4px;
  background: rgba(0,0,0,0.35);
  border-radius: 2px;
}
/* Ground shadow */
.hero-laptop-shadow {
  position: absolute;
  bottom: -20px; left: 8%;
  width: 84%; height: 20px;
  background: radial-gradient(ellipse, rgba(0,0,0,0.35) 0%, transparent 72%);
  border-radius: 50%;
  z-index: 1;
}
@keyframes floatLaptop {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}

/* ---- Mobile Phone Frame ---- */
.hero-mobile-frame {
  position: absolute;
  bottom: 0;
  right: -10px;
  z-index: 10;
  animation: floatMobile 5s ease-in-out 3.2s infinite;
}
@keyframes floatMobile {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
.hero-mobile-inner {
  position: relative;
  width: 115px;
  height: 210px;
  background: linear-gradient(160deg, #2a2a2a, #1a1a1a, #222222);
  border-radius: 22px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.6), 0 0 0 1.5px rgba(255,255,255,0.1), inset 0 1px 0 rgba(255,255,255,0.1);
  padding: 10px 6px 8px;
  display: flex;
  flex-direction: column;
}
.hero-mobile-notch {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-bottom: 6px;
  flex-shrink: 0;
}
.hero-mobile-speaker {
  width: 34px;
  height: 4px;
  background: rgba(255,255,255,0.12);
  border-radius: 2px;
}
.hero-mobile-camera-dot {
  width: 5px;
  height: 5px;
  background: rgba(100,180,255,0.3);
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
}
.hero-mobile-screen {
  flex: 1;
  background: #0d1117;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-mobile-screen-fallback {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #1e1e2e, #0d1117);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.hero-mobile-screen video { position: relative; z-index: 2; }
.hero-mobile-home-bar {
  width: 36px;
  height: 4px;
  background: rgba(255,255,255,0.18);
  border-radius: 2px;
  margin: 6px auto 0;
  flex-shrink: 0;
}
/* Side buttons */
.hero-mobile-btn-vol-up,
.hero-mobile-btn-vol-down,
.hero-mobile-btn-power {
  position: absolute;
  background: linear-gradient(180deg, #3a3a3a, #2a2a2a);
  border-radius: 2px;
}
.hero-mobile-btn-vol-up {
  left: -3px; top: 56px;
  width: 3px; height: 22px;
  border-radius: 2px 0 0 2px;
}
.hero-mobile-btn-vol-down {
  left: -3px; top: 84px;
  width: 3px; height: 22px;
  border-radius: 2px 0 0 2px;
}
.hero-mobile-btn-power {
  right: -3px; top: 70px;
  width: 3px; height: 30px;
  border-radius: 0 2px 2px 0;
}

/* Floating Shapes */
.hero-shapes { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.shape { position: absolute; border-radius: 50%; opacity: 0.08; animation: floatShape 8s ease-in-out infinite; }
.shape-1 { width: 300px; height: 300px; background: var(--dark-forest); top: 10%; left: -5%; animation-delay: 0s; }
.shape-2 { width: 200px; height: 200px; background: var(--primary-green); top: 60%; right: -3%; animation-delay: -2s; border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
.shape-3 { width: 150px; height: 150px; background: var(--slate-blue); bottom: 10%; left: 30%; animation-delay: -4s; border-radius: 50% 50% 50% 50% / 60% 40% 60% 40%; }
@keyframes floatShape { 0%, 100% { transform: translate(0, 0) rotate(0deg); } 33% { transform: translate(30px, -30px) rotate(120deg); } 66% { transform: translate(-20px, 20px) rotate(240deg); } }

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header { text-align: center; margin-bottom: 60px; }
.section-label { font-family: var(--font-body); font-size: 12px; font-weight: 600; color: var(--primary-green); text-transform: uppercase; letter-spacing: 3px; margin-bottom: 12px; display: inline-block; }
.section-title { font-family: var(--font-display); font-size: clamp(36px, 5vw, 64px); color: var(--dark-forest); letter-spacing: 1px; line-height: 1; margin-bottom: 16px; }
.section-desc { font-family: var(--font-body); font-size: 16px; color: var(--slate-blue); max-width: 600px; margin: 0 auto; }

/* ============================================
   TECH MARQUEE STRIP
   ============================================ */
.tech-marquee-section {
  background: var(--dark-forest);
  padding: 0;
  overflow: hidden;
  position: relative;
}
/* Vertical label on left edge */
.marquee-label {
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: center center;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 4px;
  color: rgba(186,200,177,0.35);
  white-space: nowrap;
  z-index: 10;
  pointer-events: none;
}
/* Fade edges */
.tech-marquee-section::before,
.tech-marquee-section::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 100px;
  z-index: 5;
  pointer-events: none;
}
.tech-marquee-section::before {
  left: 0;
  background: linear-gradient(90deg, var(--dark-forest), transparent);
}
.tech-marquee-section::after {
  right: 0;
  background: linear-gradient(-90deg, var(--dark-forest), transparent);
}
.marquee-track-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 22px 0;
}
.marquee-track {
  overflow: hidden;
  display: flex;
  width: 100%;
  padding: 6px 0;
}
.marquee-inner {
  display: flex;
  gap: 12px;
  white-space: nowrap;
  flex-shrink: 0;
  width: max-content;
}
/* Row 1 scrolls left */
.marquee-left .marquee-inner {
  animation: scrollLeft 30s linear infinite;
}
.marquee-left:hover .marquee-inner {
  animation-play-state: paused;
}
/* Row 2 scrolls right */
.marquee-right .marquee-inner {
  animation: scrollRight 28s linear infinite;
}
.marquee-right:hover .marquee-inner {
  animation-play-state: paused;
}
@keyframes scrollLeft {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes scrollRight {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}
.marquee-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(186,200,177,0.12);
  border-radius: 100px;
  padding: 8px 18px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.82);
  white-space: nowrap;
  cursor: default;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.marquee-badge:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(186,200,177,0.30);
  transform: translateY(-2px);
}
.marquee-badge i {
  font-size: 16px;
  flex-shrink: 0;
}
/* Divider line at top and bottom of strip */
.tech-marquee-section {
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* ============================================
   ABOUT TEASER SECTION
   ============================================ */
.about-teaser { padding: 120px 30px; max-width: 1400px; margin: 0 auto; }
.about-teaser-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-teaser-image { position: relative; }
.about-teaser-image img { border-radius: 16px; box-shadow: var(--shadow-lg); }
.about-teaser-image::before { content: ''; position: absolute; top: -20px; left: -20px; width: 100%; height: 100%; border: 3px solid var(--sage-green); border-radius: 16px; z-index: -1; }
.about-teaser-content h2 { font-family: var(--font-display); font-size: clamp(32px, 4vw, 52px); color: var(--dark-forest); letter-spacing: 1px; margin-bottom: 20px; line-height: 1.1; }
.about-teaser-content p { font-size: 16px; color: var(--text-color); opacity: 0.8; margin-bottom: 20px; line-height: 1.7; }
.about-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 30px; }
.about-card { background: var(--white); border-radius: 12px; padding: 24px; box-shadow: var(--shadow-sm); transition: var(--transition); border: 1px solid rgba(186,200,177,0.3); }
.about-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--sage-green); }
.about-card-icon { width: 48px; height: 48px; background: linear-gradient(135deg, var(--primary-green), var(--sage-green)); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 20px; margin-bottom: 12px; }
.about-card h4 { font-family: var(--font-body); font-size: 14px; font-weight: 600; color: var(--dark-forest); margin-bottom: 4px; }
.about-card p { font-size: 12px; color: var(--slate-blue); margin: 0; }

/* ============================================
   SERVICES SECTION
   ============================================ */
.services { padding: 120px 30px; background: var(--white); }
.services-grid { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.service-card { background: linear-gradient(145deg, var(--light-gray), var(--white)); border-radius: 16px; padding: 40px 30px; border: 1px solid rgba(186,200,177,0.3); transition: box-shadow 0.3s ease, border-color 0.3s ease; position: relative; overflow: hidden; transform-style: preserve-3d; will-change: transform; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: linear-gradient(90deg, var(--primary-green), var(--sage-green)); transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease; }
.service-card:not(.js-tilt):hover { transform: translateY(-10px) rotateX(5deg); box-shadow: var(--shadow-lg); }
.service-card.js-tilt:hover { box-shadow: var(--shadow-lg); border-color: rgba(123,150,105,0.5); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { width: 64px; height: 64px; background: linear-gradient(135deg, var(--primary-green), var(--dark-forest)); border-radius: 16px; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 28px; margin-bottom: 24px; transition: var(--transition); }
.service-card:hover .service-icon { transform: scale(1.1) rotateY(10deg); }
.service-card h3 { font-family: var(--font-body); font-size: 20px; font-weight: 700; color: var(--dark-forest); margin-bottom: 12px; }
.service-card p { font-size: 14px; color: var(--slate-blue); line-height: 1.7; margin-bottom: 16px; }
.service-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.service-tags span { font-family: var(--font-mono); font-size: 11px; padding: 4px 10px; background: rgba(123,150,105,0.1); color: var(--primary-green); border-radius: 100px; }

/* ============================================
   TECH STACK SECTION
   ============================================ */
.tech-stack { padding: 120px 30px; position: relative; overflow: hidden; }
.tech-grid { max-width: 1200px; margin: 0 auto; display: flex; flex-wrap: wrap; justify-content: center; gap: 30px; perspective: 800px; }
.tech-item { width: 100px; height: 100px; background: var(--white); border-radius: 20px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; box-shadow: var(--shadow-sm); border: 1px solid rgba(186,200,177,0.3); transition: var(--transition); cursor: pointer; transform-style: preserve-3d; }
.tech-item:hover { transform: translateY(-10px) rotateY(15deg) scale(1.1); box-shadow: var(--shadow-lg); border-color: var(--primary-green); }
.tech-item i { font-size: 32px; color: var(--primary-green); }
.tech-item span { font-family: var(--font-mono); font-size: 10px; color: var(--dark-forest); text-transform: uppercase; letter-spacing: 0.5px; }

/* ============================================
   PORTFOLIO SECTION
   ============================================ */
.portfolio { padding: 120px 30px; background: var(--white); }
.portfolio-grid { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.portfolio-card { position: relative; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-sm); transition: box-shadow 0.3s ease; cursor: pointer; transform-style: preserve-3d; will-change: transform; }
.portfolio-card:not(.js-tilt):hover { transform: translateY(-10px) scale(1.02); box-shadow: var(--shadow-lg); }
.portfolio-card.js-tilt:hover { box-shadow: var(--shadow-lg); }
.portfolio-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; transition: transform 0.5s ease; }
.portfolio-card:hover img { transform: scale(1.1); }
.portfolio-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(64,78,59,0.95) 0%, rgba(64,78,59,0.3) 50%, transparent 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 24px; opacity: 0; transition: opacity 0.4s ease; }
.portfolio-card:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay h3 { font-family: var(--font-body); font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.portfolio-overlay p { font-size: 13px; color: var(--sage-green); margin-bottom: 12px; }
.portfolio-tags { display: flex; flex-wrap: wrap; gap: 4px; }
.portfolio-tags span { font-family: var(--font-mono); font-size: 10px; padding: 3px 8px; background: rgba(123,150,105,0.3); color: var(--white); border-radius: 100px; }

/* Portfolio Filters */
.portfolio-filters { display: flex; justify-content: center; gap: 10px; margin-bottom: 40px; flex-wrap: wrap; }
.filter-btn { padding: 10px 24px; background: transparent; border: 1px solid var(--sage-green); color: var(--dark-forest); font-family: var(--font-body); font-size: 13px; font-weight: 500; border-radius: 100px; cursor: pointer; transition: var(--transition); }
.filter-btn:hover, .filter-btn.active { background: var(--primary-green); color: var(--white); border-color: var(--primary-green); }

/* ============================================
   EXPERIENCE TIMELINE
   ============================================ */
.experience { padding: 120px 30px; }
.experience-container { max-width: 1000px; margin: 0 auto; position: relative; }
.experience-timeline { position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--primary-green), var(--sage-green)); transform: translateX(-50%); }
.experience-item { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-bottom: 60px; position: relative; }
.experience-item:nth-child(even) .experience-content { grid-column: 2; }
.experience-item:nth-child(even) .experience-date { grid-column: 1; text-align: right; }
.experience-dot { position: absolute; left: 50%; top: 20px; width: 16px; height: 16px; background: var(--primary-green); border-radius: 50%; transform: translateX(-50%); border: 3px solid var(--light-gray); z-index: 2; box-shadow: 0 0 0 4px rgba(123,150,105,0.2); }
.experience-content { background: var(--white); border-radius: 16px; padding: 30px; box-shadow: var(--shadow-sm); border: 1px solid rgba(186,200,177,0.3); transition: var(--transition); }
.experience-content:hover { transform: translateX(5px); box-shadow: var(--shadow-md); }
.experience-date { font-family: var(--font-mono); font-size: 13px; color: var(--primary-green); font-weight: 600; }
.experience-content h3 { font-family: var(--font-body); font-size: 20px; font-weight: 700; color: var(--dark-forest); margin-bottom: 4px; }
.experience-company { font-size: 14px; color: var(--primary-green); font-weight: 600; margin-bottom: 4px; }
.experience-location { font-size: 12px; color: var(--slate-blue); margin-bottom: 12px; }
.experience-content p { font-size: 14px; color: var(--text-color); opacity: 0.8; line-height: 1.6; }
.experience-tech { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.experience-tech span { font-family: var(--font-mono); font-size: 11px; padding: 4px 12px; background: rgba(123,150,105,0.1); color: var(--primary-green); border-radius: 100px; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials { padding: 120px 30px; background: linear-gradient(135deg, var(--slate-blue) 0%, #5a726e 100%); }
.testimonials .section-title, .testimonials .section-label { color: var(--white); }
.testimonials .section-desc { color: var(--sage-green); }
.testimonials-grid { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.testimonial-card { background: rgba(255,255,255,0.1); backdrop-filter: blur(10px); border-radius: 16px; padding: 30px; border: 1px solid rgba(255,255,255,0.1); transition: var(--transition); }
.testimonial-card:hover { transform: translateY(-5px); background: rgba(255,255,255,0.15); }
.testimonial-stars { color: #FFD700; font-size: 18px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-text { font-size: 15px; color: var(--white); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-author img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 2px solid var(--sage-green); }
.testimonial-author-info h4 { font-size: 14px; font-weight: 600; color: var(--white); }
.testimonial-author-info p { font-size: 12px; color: var(--sage-green); }

/* ============================================
   STATS COUNTER
   ============================================ */
.stats { padding: 80px 30px; background: var(--dark-forest); }
.stats-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(5, 1fr); gap: 30px; text-align: center; }
.stat-item { position: relative; }
.stat-item:not(:last-child)::after { content: ''; position: absolute; right: -15px; top: 50%; transform: translateY(-50%); width: 1px; height: 60px; background: rgba(186,200,177,0.2); }
.stat-number { font-family: var(--font-mono); font-size: clamp(32px, 4vw, 48px); font-weight: 600; color: var(--white); line-height: 1; }
.stat-number span { color: var(--primary-green); }
.stat-label { font-size: 13px; color: var(--sage-green); text-transform: uppercase; letter-spacing: 1px; margin-top: 8px; }

/* ============================================
   BLOG SECTION
   ============================================ */
.blog { padding: 120px 30px; }
.blog-grid { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.blog-card { background: var(--white); border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition); border: 1px solid rgba(186,200,177,0.3); }
.blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.blog-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.blog-content { padding: 24px; }
.blog-meta { display: flex; gap: 12px; margin-bottom: 10px; }
.blog-meta span { font-family: var(--font-mono); font-size: 11px; color: var(--primary-green); text-transform: uppercase; letter-spacing: 0.5px; }
.blog-card h3 { font-family: var(--font-body); font-size: 18px; font-weight: 700; color: var(--dark-forest); margin-bottom: 10px; line-height: 1.4; }
.blog-card p { font-size: 14px; color: var(--slate-blue); line-height: 1.6; margin-bottom: 16px; }
.blog-readmore { font-size: 13px; font-weight: 600; color: var(--primary-green); display: inline-flex; align-items: center; gap: 6px; }
.blog-readmore:hover { color: var(--dark-forest); gap: 10px; }

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact { padding: 120px 30px; background: linear-gradient(135deg, var(--slate-blue) 0%, #5a726e 100%); }
.contact .section-title, .contact .section-label { color: var(--white); }
.contact-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-form { background: rgba(255,255,255,0.1); backdrop-filter: blur(10px); border-radius: 20px; padding: 40px; border: 1px solid rgba(255,255,255,0.1); }
.form-group { margin-bottom: 24px; }
.form-group label { display: block; font-size: 13px; font-weight: 500; color: var(--sage-green); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.5px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 14px 18px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  border-radius: 10px; color: var(--white); font-family: var(--font-body); font-size: 14px;
  transition: var(--transition); outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--primary-green); background: rgba(255,255,255,0.15); }
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.5); }
.form-group textarea { min-height: 120px; resize: vertical; }
.contact-info h3 { font-family: var(--font-display); font-size: 48px; color: var(--white); letter-spacing: 1px; margin-bottom: 30px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
.contact-info-item i { width: 48px; height: 48px; background: rgba(123,150,105,0.3); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 18px; flex-shrink: 0; }
.contact-info-item h4 { font-size: 14px; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.contact-info-item p { font-size: 14px; color: var(--sage-green); }
.contact-map { margin-top: 30px; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-md); }
.contact-map iframe { width: 100%; height: 250px; border: none; display: block; }

/* ============================================
   VIDEOS SECTION
   ============================================ */
.videos { padding: 120px 30px; background: var(--white); }
.videos-grid { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.video-card { position: relative; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition); aspect-ratio: 9/16; max-height: 500px; }
.video-card:hover { transform: scale(1.03); box-shadow: var(--shadow-lg); }
.video-card video { width: 100%; height: 100%; object-fit: cover; }
.video-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px; background: linear-gradient(to top, rgba(0,0,0,0.8), transparent); }
.video-overlay h4 { font-size: 14px; font-weight: 600; color: var(--white); margin-bottom: 8px; }
.video-stats { display: flex; gap: 16px; }
.video-stats span { font-size: 12px; color: var(--sage-green); display: flex; align-items: center; gap: 4px; }

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-hero { min-height: 50vh; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--dark-forest) 0%, #2f3a2c 100%); text-align: center; padding: 140px 30px 80px; }
.about-hero h1 { font-family: var(--font-display); font-size: clamp(48px, 8vw, 100px); color: var(--white); letter-spacing: 2px; margin-bottom: 16px; }
.about-hero p { font-size: 18px; color: var(--sage-green); }
.about-content { padding: 80px 30px; max-width: 1400px; margin: 0 auto; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.about-image-frame { position: relative; }
.about-image-frame img { border-radius: 16px; box-shadow: var(--shadow-lg); }
.about-image-frame::before { content: ''; position: absolute; top: 20px; left: 20px; width: 100%; height: 100%; border: 3px solid var(--primary-green); border-radius: 16px; z-index: -1; }
.skills-section { margin-top: 60px; }
.skill-category { margin-bottom: 40px; }
.skill-category h3 { font-family: var(--font-body); font-size: 18px; font-weight: 700; color: var(--dark-forest); margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.skill-category h3 i { color: var(--primary-green); }
.skill-bar { margin-bottom: 16px; }
.skill-bar-header { display: flex; justify-content: space-between; margin-bottom: 6px; }
.skill-bar-header span { font-size: 13px; font-weight: 500; }
.skill-bar-header .skill-name { color: var(--dark-forest); }
.skill-bar-header .skill-percent { color: var(--primary-green); font-family: var(--font-mono); }
.skill-track { height: 8px; background: var(--light-gray); border-radius: 4px; overflow: hidden; }
.skill-fill { height: 100%; background: linear-gradient(90deg, var(--primary-green), var(--sage-green)); border-radius: 4px; width: 0%; transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1); }

/* ============================================
   SERVICES PAGE
   ============================================ */
.services-hero { min-height: 40vh; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-forest) 100%); text-align: center; padding: 140px 30px 80px; }
.services-hero h1 { font-family: var(--font-display); font-size: clamp(48px, 8vw, 80px); color: var(--white); letter-spacing: 2px; }
.services-detail { padding: 80px 30px; max-width: 1400px; margin: 0 auto; }
.service-detail-card { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-bottom: 80px; }
.service-detail-card:nth-child(even) .service-detail-content { order: 2; }
.service-detail-card:nth-child(even) .service-detail-visual { order: 1; }
.service-detail-visual { height: 350px; background: linear-gradient(135deg, var(--sage-green), var(--primary-green)); border-radius: 20px; display: flex; align-items: center; justify-content: center; font-size: 80px; color: var(--white); box-shadow: var(--shadow-md); }
.service-detail-content h3 { font-family: var(--font-body); font-size: 28px; font-weight: 700; color: var(--dark-forest); margin-bottom: 16px; }
.service-detail-content p { font-size: 15px; color: var(--text-color); opacity: 0.8; line-height: 1.7; margin-bottom: 20px; }
.service-features { list-style: none; }
.service-features li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--dark-forest); margin-bottom: 10px; }
.service-features li i { color: var(--primary-green); }

/* ============================================
   PORTFOLIO DETAIL PAGE
   ============================================ */
.portfolio-detail { padding: 120px 30px 60px; max-width: 1200px; margin: 0 auto; }
.portfolio-detail-header { text-align: center; margin-bottom: 60px; }
.portfolio-detail-header h1 { font-family: var(--font-display); font-size: clamp(36px, 5vw, 64px); color: var(--dark-forest); letter-spacing: 1px; margin-bottom: 12px; }
.portfolio-detail-header p { font-size: 16px; color: var(--slate-blue); max-width: 700px; margin: 0 auto; }
.device-showcase { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 30px; align-items: end; margin-bottom: 60px; }
.device-frame { background: linear-gradient(145deg, #c0c0c0, #e0e0e0); border-radius: 16px; padding: 12px; box-shadow: var(--shadow-lg); }
.device-frame-screen { background: var(--dark-forest); border-radius: 8px; overflow: hidden; }
.device-frame-screen img { width: 100%; display: block; }
.device-desktop .device-frame-screen { aspect-ratio: 16/10; }
.device-tablet .device-frame-screen { aspect-ratio: 3/4; }
.device-mobile .device-frame-screen { aspect-ratio: 9/19; }
.device-label { text-align: center; margin-top: 8px; font-family: var(--font-mono); font-size: 11px; color: var(--slate-blue); }
.portfolio-info { background: var(--white); border-radius: 16px; padding: 40px; box-shadow: var(--shadow-sm); margin-bottom: 40px; }

/* ============================================
   TESTIMONIALS / REVIEWS PAGE
   ============================================ */
.review-form-section { padding: 80px 30px; max-width: 800px; margin: 0 auto; }
.review-form { background: var(--white); border-radius: 20px; padding: 40px; box-shadow: var(--shadow-md); }
.rating-input { display: flex; gap: 8px; margin-bottom: 20px; }
.rating-input input { display: none; }
.rating-input label { font-size: 32px; color: var(--light-gray); cursor: pointer; transition: color 0.2s; }
.rating-input label:hover, .rating-input label:hover ~ label, .rating-input input:checked ~ label { color: #FFD700; }
.reviews-list { padding: 60px 30px; max-width: 1200px; margin: 0 auto; }

/* ============================================
   404 PAGE
   ============================================ */
.error-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 40px; }
.error-page img { max-width: 500px; margin: 0 auto 30px; }
.error-page h1 { font-family: var(--font-display); font-size: 120px; color: var(--dark-forest); line-height: 1; }
.error-page h2 { font-size: 24px; color: var(--slate-blue); margin-bottom: 20px; }
.error-page p { font-size: 16px; color: var(--text-color); opacity: 0.7; margin-bottom: 30px; max-width: 500px; margin-left: auto; margin-right: auto; }

/* ============================================
   FOOTER
   ============================================ */
.footer { background: var(--dark-forest); color: var(--white); padding: 80px 30px 0; }
.footer-container { max-width: 1400px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr 1.2fr; gap: 30px; margin-bottom: 50px; }
.footer-logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-size: 24px; color: var(--white); letter-spacing: 2px; margin-bottom: 16px; }
.footer-logo img { width: 40px; height: 40px; }
.footer-desc { font-size: 14px; color: var(--sage-green); line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 15px; transition: var(--transition); }
.footer-social a:hover { background: var(--primary-green); transform: translateY(-3px); }
.footer-col h4 { font-family: var(--font-body); font-size: 16px; font-weight: 600; color: var(--white); margin-bottom: 20px; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 14px; color: var(--sage-green); transition: var(--transition); }
.footer-links a:hover { color: var(--primary-green); padding-left: 5px; }
.footer-newsletter { display: flex; gap: 8px; margin-bottom: 20px; }
.footer-newsletter input { flex: 1; padding: 12px 16px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15); border-radius: 8px; color: var(--white); font-size: 13px; outline: none; }
.footer-newsletter input::placeholder { color: rgba(255,255,255,0.4); }
.footer-newsletter input:focus { border-color: var(--primary-green); }
.footer-newsletter button { width: 44px; height: 44px; background: var(--primary-green); border: none; border-radius: 8px; color: var(--white); cursor: pointer; transition: var(--transition); }
.footer-newsletter button:hover { background: var(--sage-green); }
.footer-contact-mini p { font-size: 13px; color: var(--sage-green); margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.footer-contact-mini i { color: var(--primary-green); font-size: 12px; width: 16px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 24px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { font-size: 13px; color: var(--sage-green); }

/* ============================================
   FOOTER ALL-PAGES DROPDOWN
   ============================================ */
.footer-all-pages { margin-bottom: 0; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 32px; margin-top: 10px; }
.footer-all-pages-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease;
  text-align: left;
  margin-bottom: 0;
}
.footer-all-pages-btn:hover { background: rgba(255,255,255,0.1); border-color: rgba(123,150,105,0.5); }
.footer-all-pages-btn i:first-child { color: var(--primary-green); font-size: 16px; }
.pages-count { font-family: var(--font-mono); font-size: 12px; color: #BAC8B1; background: rgba(186,200,177,0.12); border: 1px solid rgba(186,200,177,0.25); padding: 3px 10px; border-radius: 100px; font-weight: 600; }
.footer-pages-arrow { margin-left: auto; font-size: 13px; color: rgba(255,255,255,0.5); transition: transform 0.3s ease; flex-shrink: 0; }

.footer-pages-dropdown {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4,0,0.2,1), opacity 0.3s ease;
  opacity: 0;
}
.footer-pages-dropdown.open {
  max-height: 1800px;
  opacity: 1;
}
.footer-pages-inner {
  padding: 24px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.footer-pages-group { }
.footer-pages-group-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(186,200,177,0.6);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.footer-pages-group-title i { color: var(--primary-green); font-size: 11px; }
.pages-group-count {
  font-family: var(--font-mono);
  font-size: 10px;
  background: rgba(123,150,105,0.2);
  color: var(--primary-green);
  padding: 1px 7px;
  border-radius: 100px;
  margin-left: 4px;
}
.footer-pages-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.footer-page-link {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px;
  font-size: 12px;
  color: rgba(186,200,177,0.75);
  text-decoration: none;
  font-weight: 500;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.footer-page-link:hover {
  background: rgba(123,150,105,0.2);
  color: #fff;
  border-color: rgba(123,150,105,0.4);
}

/* WA popup footer */
.wa-popup-footer {
  padding: 12px 14px;
  background: #fff;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.wa-send-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px;
  background: #25D366;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s;
}
.wa-send-btn:hover { background: #128C7E; }

/* Responsive footer */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-all-pages-btn { font-size: 14px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top { position: fixed; bottom: 30px; right: 30px; width: 50px; height: 50px; background: var(--primary-green); color: var(--white); border: none; border-radius: 50%; cursor: pointer; font-size: 18px; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transform: translateY(20px); transition: var(--transition); z-index: 999; box-shadow: var(--shadow-md); }
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--dark-forest); transform: translateY(-5px); }

/* ============================================
   COOKIE CONSENT
   ============================================ */
.cookie-consent { position: fixed; bottom: 0; left: 0; right: 0; background: var(--dark-forest); color: var(--white); padding: 14px 20px; z-index: 999999 !important; transform: translateY(100%); transition: transform 0.4s ease; border-top: 2px solid rgba(123,150,105,0.4); }
.cookie-consent.show { transform: translateY(0); }
.cookie-content { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: nowrap; }
.cookie-content p { font-size: 13px; color: rgba(186,200,177,0.9); margin: 0; flex: 1; min-width: 0; }
.cookie-content p a { color: #7B9669; text-decoration: underline; }
.btn-cookie { padding: 10px 28px; background: var(--primary-green); color: #fff; border: none; border-radius: 8px; font-family: var(--font-body); font-size: 13px; font-weight: 700; cursor: pointer; transition: background 0.2s; white-space: nowrap; flex-shrink: 0; min-width: 90px; pointer-events: all !important; position: relative; z-index: 1000000 !important; }
.btn-cookie:hover { background: #5e7a4e; }
@media (max-width: 600px) { .cookie-content { flex-direction: column; text-align: center; gap: 10px; } .btn-cookie { width: 100%; } }

/* ============================================
   ALERTS & MESSAGES
   ============================================ */
.alert { padding: 16px 20px; border-radius: 10px; margin-bottom: 20px; font-size: 14px; display: flex; align-items: center; gap: 10px; }
.alert-success { background: rgba(123,150,105,0.15); color: #2d5a27; border: 1px solid rgba(123,150,105,0.3); }
.alert-error { background: rgba(220,53,69,0.1); color: #721c24; border: 1px solid rgba(220,53,69,0.2); }
.alert-info { background: rgba(108,132,128,0.15); color: #0c5460; border: 1px solid rgba(108,132,128,0.3); }

/* ============================================
   ANIMATIONS
   Elements start invisible, GSAP or IntersectionObserver
   adds .visible class to reveal them.
   Hard fallback: JS timeout forces opacity:1 at 3.5s.
   ============================================ */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1 !important; transform: translateY(0) !important; }
.fade-in-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in-left.visible { opacity: 1 !important; transform: translateX(0) !important; }
.fade-in-right { opacity: 0; transform: translateX(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in-right.visible { opacity: 1 !important; transform: translateX(0) !important; }
.scale-in { opacity: 0; transform: scale(0.92); transition: opacity 0.6s ease, transform 0.6s ease; }
.scale-in.visible { opacity: 1 !important; transform: scale(1) !important; }

/* Staggered delay helpers for child elements */
.scale-in:nth-child(1) { transition-delay: 0s; }
.scale-in:nth-child(2) { transition-delay: 0.08s; }
.scale-in:nth-child(3) { transition-delay: 0.16s; }
.scale-in:nth-child(4) { transition-delay: 0.24s; }
.scale-in:nth-child(5) { transition-delay: 0.32s; }
.scale-in:nth-child(6) { transition-delay: 0.40s; }
.scale-in:nth-child(7) { transition-delay: 0.48s; }
.scale-in:nth-child(8) { transition-delay: 0.56s; }
.scale-in:nth-child(9) { transition-delay: 0.64s; }

/* ============================================
   WHATSAPP CHAT WIDGET
   ============================================ */
.wa-widget {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}

/* --- Trigger Button --- */
.wa-trigger {
  width: 60px; height: 60px;
  background: #25D366;
  border: none;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(37,211,102,0.55), 0 2px 8px rgba(0,0,0,0.15);
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease;
  position: relative;
  outline: none;
  flex-shrink: 0;
  animation: waPulseRing 2.5s ease-out 3s infinite;
}
.wa-trigger:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(37,211,102,0.7);
}
/* Pulsing ring animation */
@keyframes waPulseRing {
  0%   { box-shadow: 0 6px 24px rgba(37,211,102,0.55), 0 0 0 0 rgba(37,211,102,0.55); }
  50%  { box-shadow: 0 6px 24px rgba(37,211,102,0.55), 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 6px 24px rgba(37,211,102,0.55), 0 0 0 0 rgba(37,211,102,0); }
}
/* Icon swap open/close */
.wa-icon-open  { display: block; transition: all 0.25s ease; }
.wa-icon-close { display: none;  transition: all 0.25s ease; font-size: 22px; }
.wa-widget.open .wa-icon-open  { display: none; }
.wa-widget.open .wa-icon-close { display: block; }
.wa-widget.open .wa-trigger { animation: none; }

/* Notification badge */
.wa-badge {
  position: absolute;
  top: -3px; right: -3px;
  width: 20px; height: 20px;
  background: #ef4444;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid #fff;
  animation: waBadgePop 0.4s cubic-bezier(0.34,1.56,0.64,1) 1s both;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
@keyframes waBadgePop {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.wa-badge.hide { transform: scale(0); opacity: 0; }

/* --- Popup Panel --- */
.wa-popup {
  width: 320px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.18), 0 4px 16px rgba(0,0,0,0.10);
  overflow: hidden;
  transform: scale(0.85) translateY(20px);
  transform-origin: bottom right;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), opacity 0.25s ease;
}
.wa-widget.open .wa-popup {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: all;
}

/* Popup Header */
.wa-popup-header {
  background: linear-gradient(135deg, #075e54, #128C7E);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.wa-avatar {
  width: 44px; height: 44px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  color: #fff;
  position: relative;
  flex-shrink: 0;
}
.wa-online-dot {
  position: absolute;
  bottom: 1px; right: 1px;
  width: 12px; height: 12px;
  background: #25D366;
  border-radius: 50%;
  border: 2px solid #075e54;
  animation: onlinePulse 2s ease-in-out infinite;
}
@keyframes onlinePulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.5; }
}
.wa-header-info { flex: 1; }
.wa-name {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}
.wa-status {
  font-size: 12px;
  color: rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  gap: 5px;
}
.wa-dot {
  width: 7px; height: 7px;
  background: #25D366;
  border-radius: 50%;
  display: inline-block;
  animation: onlinePulse 2s ease-in-out infinite;
}
.wa-close-btn {
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  width: 30px; height: 30px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  cursor: pointer;
  transition: background 0.2s;
  flex-shrink: 0;
}
.wa-close-btn:hover { background: rgba(255,255,255,0.28); }

/* Chat Body */
.wa-popup-body {
  padding: 16px 14px;
  background: #e5ddd5;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c8c0b8' fill-opacity='0.3'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  min-height: 160px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.wa-time-stamp {
  text-align: center;
  font-size: 11px;
  color: rgba(0,0,0,0.45);
  background: rgba(255,255,255,0.65);
  border-radius: 8px;
  padding: 3px 10px;
  width: fit-content;
  margin: 0 auto 4px;
  font-weight: 500;
}
.wa-bubble {
  max-width: 90%;
  position: relative;
  animation: waBubbleIn 0.4s ease both;
}
@keyframes waBubbleIn {
  from { opacity:0; transform: translateY(8px) scale(0.95); }
  to   { opacity:1; transform: translateY(0) scale(1); }
}
.wa-bubble-in {
  align-self: flex-start;
}
.wa-bubble-text {
  background: #fff;
  border-radius: 0 10px 10px 10px;
  padding: 10px 12px;
  font-size: 13.5px;
  line-height: 1.55;
  color: #303030;
  font-family: var(--font-body);
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  position: relative;
}
.wa-bubble-in .wa-bubble-text { border-radius: 0 10px 10px 10px; }

/* Popup Footer */
.wa-popup-footer {
  padding: 14px 16px 16px;
  background: #fff;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.wa-start-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: #25D366;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 13px 20px;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-body);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
}
.wa-start-btn i { font-size: 20px; }
.wa-start-btn:hover {
  background: #20bd5a;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(37,211,102,0.55);
  color: #fff;
}
.wa-disclaimer {
  text-align: center;
  font-size: 10.5px;
  color: rgba(0,0,0,0.38);
  margin-top: 8px;
  font-family: var(--font-body);
}

/* Mobile adjustments */
@media (max-width: 480px) {
  .wa-widget { bottom: 18px; right: 16px; }
  .wa-popup { width: calc(100vw - 32px); }
}

/* Photo Upload Preview */
.photo-upload-wrap { position: relative; }
.photo-upload-wrap input[type="file"] { padding: 10px; background: rgba(255,255,255,0.05); border: 2px dashed rgba(123,150,105,0.4); border-radius: 10px; color: var(--text-color); cursor: pointer; width: 100%; }
.photo-upload-wrap input[type="file"]:hover { border-color: var(--primary-green); }
#photo-preview { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; margin-top: 12px; border: 3px solid var(--primary-green); display: none; }

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { display: flex; justify-content: center; margin-top: 30px; }
  .hero-devices-wrapper { max-width: 420px; }
  .hero-laptop-3d { max-width: 360px; }
  .hero-mobile-frame { right: -5px; }
  .hero-mobile-inner { width: 100px; height: 185px; }
  .hero-stats { justify-content: center; }
  .hero-social { justify-content: center; }
  .about-teaser-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-container { grid-template-columns: 1fr; }
  .device-showcase { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .stat-item:nth-child(3)::after { display: none; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-menu { position: fixed; top: 0; right: -100%; width: 80%; max-width: 350px; height: 100vh; background: var(--light-gray); flex-direction: column; padding: 100px 30px 30px; gap: 0; transition: right 0.4s ease; z-index: 999; box-shadow: -10px 0 40px rgba(0,0,0,0.1); }
  .nav-menu.active { right: 0; }
  .nav-link { display: block; padding: 14px 0; font-size: 15px; border-bottom: 1px solid rgba(186,200,177,0.3); border-radius: 0; }
  /* Mobile menu panel has light background — always use dark text inside it */
  .navbar:not(.scrolled) .nav-menu .nav-link { color: var(--dark-forest); }
  .navbar:not(.scrolled) .nav-menu .nav-link:hover,
  .navbar:not(.scrolled) .nav-menu .nav-link.active { color: var(--primary-green); background: rgba(123,150,105,0.1); }
  .nav-actions { gap: 8px; }
  .btn-hire { padding: 8px 18px; font-size: 12px; }
  .services-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .videos-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item::after { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .about-grid { grid-template-columns: 1fr; }
  .service-detail-card { grid-template-columns: 1fr; }
  .service-detail-card:nth-child(even) .service-detail-content { order: 1; }
  .service-detail-card:nth-child(even) .service-detail-visual { order: 2; }
  .experience-timeline { left: 20px; }
  .experience-item { grid-template-columns: 1fr; padding-left: 50px; }
  .experience-item:nth-child(even) .experience-content { grid-column: 1; }
  .experience-item:nth-child(even) .experience-date { grid-column: 1; text-align: left; }
  .experience-dot { left: 20px; }
  .hero-title { font-size: clamp(36px, 10vw, 60px); }
}

@media (max-width: 480px) {
  .nav-container { padding: 0 15px; }
  .hero-container { padding: 100px 15px 40px; }
  .section-title { font-size: clamp(28px, 8vw, 40px); }
  .videos-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .about-cards { grid-template-columns: 1fr; }
  .hero-devices-wrapper { max-width: 320px; }
  .hero-laptop-3d { max-width: 280px; }
  .hero-mobile-inner { width: 80px; height: 148px; border-radius: 18px; }
  .hero-mobile-frame { right: -2px; }
  .hero-mobile-speaker { width: 24px; }
  .hero-mobile-camera-dot { width: 4px; height: 4px; }
}

/* ============================================
   PAGE HERO SECTIONS
   ============================================ */
.page-hero { position: relative; min-height: 380px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(64,78,59,0.85) 0%, rgba(108,132,128,0.75) 100%); z-index: 1; }
.page-hero-content { position: relative; z-index: 2; text-align: center; padding: 120px 30px 60px; }
.page-hero-content h1 { font-family: var(--font-display); font-size: clamp(42px,7vw,80px); color: var(--white); letter-spacing: 4px; margin: 8px 0; }
.page-hero-content p { font-size: 16px; color: var(--sage-green); margin-top: 10px; max-width: 600px; margin-left: auto; margin-right: auto; }

/* Individual page hero backgrounds — banner images with dark overlay */
.about-page-hero { background: url('../images/banner-about.png') center/cover no-repeat; }
.services-page-hero { background: url('../images/banner-services.png') center/cover no-repeat; }
.portfolio-hero-section { background: url('../images/banner-portfolio.png') center/cover no-repeat; }
.blog-hero-section { background: url('../images/banner-blog.png') center/cover no-repeat; }
.gallery-hero-section { background: url('../images/banner-gallery.png') center/cover no-repeat; }
.contact-hero-section { background: url('../images/banner-contact.png') center/cover no-repeat; }
.testimonials-hero-section { background: url('../images/banner-testimonials.png') center/cover no-repeat; }
.videos-hero-section { background: url('../images/banner-videos.png') center/cover no-repeat; }

/* Page hero brand watermark text */
.page-hero-brand {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 20px;
  display: block;
}
.page-hero-brand span { color: var(--sage-green); opacity: 0.8; }

/* ============================================
   HERO LAPTOP CODE SCREEN
   ============================================ */
.hero-laptop-screen { position: relative; overflow: hidden; }
.hero-code-screen { width: 100%; height: 100%; background: #1e1e2e; display: flex; flex-direction: column; font-family: var(--font-mono); font-size: 11px; overflow: hidden; }
.code-browser-bar { background: #2a2a3e; padding: 8px 12px; display: flex; align-items: center; gap: 6px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.code-dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.code-url { margin-left: 10px; color: rgba(255,255,255,0.4); font-size: 10px; font-family: var(--font-mono); background: rgba(255,255,255,0.05); padding: 3px 12px; border-radius: 100px; }
.code-content { padding: 14px 16px; flex: 1; overflow: hidden; line-height: 2; }
.code-line { animation: fadeInLine 0.3s ease forwards; opacity: 0; }
.code-line:nth-child(1) { animation-delay: 0.1s; }
.code-line:nth-child(2) { animation-delay: 0.3s; }
.code-line:nth-child(3) { animation-delay: 0.5s; }
.code-line:nth-child(4) { animation-delay: 0.7s; }
.code-line:nth-child(5) { animation-delay: 0.9s; }
.code-line:nth-child(6) { animation-delay: 1.1s; }
.code-line:nth-child(7) { animation-delay: 1.3s; }
.code-line:nth-child(8) { animation-delay: 1.5s; }
.code-line:nth-child(9) { animation-delay: 1.7s; }
.code-line:nth-child(10) { animation-delay: 1.9s; }
.code-line:nth-child(11) { animation-delay: 2.1s; }
.code-line:nth-child(12) { animation-delay: 2.3s; }
.code-line:nth-child(13) { animation-delay: 2.5s; }
.code-line:nth-child(14) { animation-delay: 2.7s; }
.code-active { animation-delay: 2.9s !important; }
@keyframes fadeInLine { from { opacity:0; transform:translateX(-8px); } to { opacity:1; transform:translateX(0); } }
.code-cursor { display: inline-block; width: 2px; height: 14px; background: var(--sage-green); margin-left: 2px; vertical-align: middle; animation: blink 1s step-end infinite; }
@keyframes blink { 0%,100%{ opacity:1; } 50%{ opacity:0; } }
/* Syntax colors */
.c-purple { color: #c792ea; }
.c-blue { color: #82aaff; }
.c-green { color: #c3e88d; }
.c-orange { color: #f78c6c; }
.c-yellow { color: #ffcb6b; }
.c-gray { color: #546e7a; }

/* Hero floating badges */
.hero-badge { position: absolute; background: var(--white); border-radius: 100px; padding: 7px 14px; font-size: 11px; font-weight: 700; color: var(--dark-forest); display: flex; align-items: center; gap: 6px; box-shadow: var(--shadow-md); white-space: nowrap; animation: floatBadge 3s ease-in-out infinite; z-index: 20; }
.hero-badge i { color: var(--primary-green); font-size: 13px; }
.hero-badge-1 { bottom: 38%; right: -18px; animation-delay: 0s; }
.hero-badge-2 { top: 12%; left: -18px; animation-delay: 1s; }
.hero-badge-3 { bottom: 5%; left: 5%; animation-delay: 2s; }
@keyframes floatBadge { 0%,100%{ transform:translateY(0); } 50%{ transform:translateY(-8px); } }

/* ============================================
   SERVICE DETAIL IMAGE CARDS
   ============================================ */
.service-detail-img { position: relative; border-radius: 20px; overflow: hidden; }
.service-detail-img img { width: 100%; height: 100%; object-fit: cover; min-height: 300px; transition: transform 0.5s ease; }
.service-detail-card:hover .service-detail-img img { transform: scale(1.05); }
.service-detail-img-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom right, rgba(64,78,59,0.4), rgba(108,132,128,0.2)); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s ease; }
.service-detail-img-overlay i { font-size: 48px; color: rgba(255,255,255,0.9); }
.service-detail-card:hover .service-detail-img-overlay { opacity: 1; }

/* ============================================
   GALLERY PAGE
   ============================================ */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.gallery-item { border-radius: 16px; overflow: hidden; cursor: pointer; box-shadow: var(--shadow-sm); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.gallery-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.gallery-item-img { position: relative; overflow: hidden; }
.gallery-item-img img { width: 100%; height: 220px; object-fit: cover; display: block; transition: transform 0.5s ease; }
.gallery-item:hover .gallery-item-img img { transform: scale(1.1); }
.gallery-item-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(64,78,59,0.9) 0%, transparent 50%); opacity: 0; transition: opacity 0.3s ease; display: flex; flex-direction: column; justify-content: flex-end; align-items: center; padding: 20px; }
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-zoom-icon { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(0.5); opacity: 0; transition: all 0.3s ease; font-size: 28px; color: white; background: rgba(255,255,255,0.2); width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; backdrop-filter: blur(8px); }
.gallery-item:hover .gallery-zoom-icon { transform: translate(-50%, -50%) scale(1); opacity: 1; }
.gallery-item-info { text-align: center; }
.gallery-item-info h4 { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.gallery-item-info p { font-size: 12px; color: var(--sage-green); }

/* Gallery Lightbox */
.gallery-lightbox { position: fixed; inset: 0; background: rgba(0,0,0,0.92); z-index: 10000; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: all 0.3s ease; backdrop-filter: blur(10px); }
.gallery-lightbox.active { opacity: 1; visibility: visible; }
.lightbox-content { position: relative; max-width: 90vw; max-height: 90vh; display: flex; flex-direction: column; align-items: center; }
.lightbox-img-wrap { position: relative; }
.lightbox-img-wrap img { max-width: 80vw; max-height: 75vh; object-fit: contain; border-radius: 12px; box-shadow: 0 30px 80px rgba(0,0,0,0.5); }
.lightbox-caption { text-align: center; margin-top: 16px; }
.lightbox-caption h4 { font-size: 18px; color: var(--white); margin-bottom: 4px; }
.lightbox-caption p { font-size: 14px; color: var(--sage-green); }
.lightbox-close { position: fixed; top: 20px; right: 20px; width: 44px; height: 44px; background: rgba(255,255,255,0.15); border: none; border-radius: 50%; color: white; font-size: 18px; cursor: pointer; transition: background 0.2s; backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: center; }
.lightbox-close:hover { background: rgba(255,255,255,0.3); }
.lightbox-prev, .lightbox-next { position: fixed; top: 50%; transform: translateY(-50%); width: 50px; height: 50px; background: rgba(255,255,255,0.15); border: none; border-radius: 50%; color: white; font-size: 18px; cursor: pointer; transition: background 0.2s; backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: center; }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.3); }

/* ============================================
   CERTIFICATIONS & AWARDS SECTION
   ============================================ */
.certs-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 24px; margin-top: 40px; }
.cert-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(186,200,177,0.2); border-radius: 20px; padding: 30px 20px; text-align: center; cursor: pointer; transition: all 0.3s ease; position: relative; overflow: hidden; }
.cert-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(123,150,105,0.1), transparent); opacity: 0; transition: opacity 0.3s; }
.cert-card:hover { transform: translateY(-6px); border-color: var(--primary-green); box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
.cert-card:hover::before { opacity: 1; }
.cert-icon { font-size: 42px; color: var(--sage-green); margin-bottom: 16px; transition: color 0.3s; }
.cert-card:hover .cert-icon { color: var(--primary-green); }
.cert-badge { position: absolute; top: 12px; right: 12px; width: 28px; height: 28px; background: rgba(123,150,105,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; color: var(--sage-green); opacity: 0; transition: opacity 0.3s; }
.cert-card:hover .cert-badge { opacity: 1; }
.cert-card h4 { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.cert-card p { font-size: 12px; color: var(--sage-green); margin-bottom: 10px; }
.cert-year { font-family: var(--font-mono); font-size: 11px; color: var(--primary-green); background: rgba(123,150,105,0.15); padding: 4px 12px; border-radius: 100px; display: inline-block; }

/* Cert Modal */
.cert-modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.75); z-index: 10001; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: all 0.3s ease; backdrop-filter: blur(8px); padding: 20px; }
.cert-modal-overlay.active { opacity: 1; visibility: visible; }
.cert-modal-box { background: var(--white); border-radius: 24px; padding: 40px; max-width: 480px; width: 100%; text-align: center; position: relative; animation: modalPop 0.3s ease; box-shadow: 0 30px 80px rgba(0,0,0,0.3); }
@keyframes modalPop { from { transform:scale(0.8); opacity:0; } to { transform:scale(1); opacity:1; } }
.cert-modal-close { position: absolute; top: 16px; right: 16px; width: 36px; height: 36px; background: var(--light-gray); border: none; border-radius: 50%; cursor: pointer; font-size: 14px; color: var(--dark-forest); display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.cert-modal-close:hover { background: var(--primary-green); color: white; }
.cert-modal-icon-wrap { margin-bottom: 24px; }
.cert-modal-icon { width: 80px; height: 80px; border-radius: 50%; background: linear-gradient(135deg, var(--primary-green), var(--dark-forest)); display: flex; align-items: center; justify-content: center; margin: 0 auto; font-size: 32px; color: white; }
.cert-modal-box h3 { font-family: var(--font-display); font-size: 26px; color: var(--dark-forest); letter-spacing: 1px; margin-bottom: 12px; }
.cert-modal-box p { font-size: 14px; color: var(--slate-blue); line-height: 1.7; }

/* ============================================
   ENHANCED ANIMATIONS
   ============================================ */
@keyframes slideInUp { from { transform:translateY(40px); opacity:0; } to { transform:translateY(0); opacity:1; } }
@keyframes slideInLeft { from { transform:translateX(-40px); opacity:0; } to { transform:translateX(0); opacity:1; } }
@keyframes slideInRight { from { transform:translateX(40px); opacity:0; } to { transform:translateX(0); opacity:1; } }
@keyframes scaleIn { from { transform:scale(0.8); opacity:0; } to { transform:scale(1); opacity:1; } }
@keyframes glowPulse { 0%,100%{ box-shadow:0 0 0 rgba(123,150,105,0); } 50%{ box-shadow:0 0 30px rgba(123,150,105,0.4); } }

.btn-white { background: var(--white) !important; color: var(--dark-forest) !important; border-color: var(--white) !important; }
.btn-white:hover { background: var(--light-gray) !important; transform: translateY(-2px); }

/* ============================================
   RESPONSIVE GALLERY
   ============================================ */
@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .certs-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-badge { display: none; }
  .code-content { font-size: 9px; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
  .lightbox-img-wrap img { max-width: 95vw; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .certs-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   REQUEST A QUOTE MODAL
   ============================================ */
.quote-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.quote-modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.quote-modal-box {
  background: #fff;
  border-radius: 20px;
  width: 100%;
  max-width: 620px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 30px 80px rgba(0,0,0,0.25);
  transform: scale(0.9) translateY(24px);
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
  scrollbar-width: thin;
}
.quote-modal-overlay.active .quote-modal-box {
  transform: scale(1) translateY(0);
}

/* Header */
.quote-modal-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 24px 18px;
  border-bottom: 1px solid #f0f0f0;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 2;
  border-radius: 20px 20px 0 0;
}
.quote-modal-icon {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--primary-green), #20bd5a);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  flex-shrink: 0;
}
.quote-modal-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-dark);
  margin: 0 0 2px;
  line-height: 1.2;
}
.quote-modal-sub {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.4;
}
.quote-modal-close {
  margin-left: auto;
  background: #f4f4f4;
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #666;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
}
.quote-modal-close:hover { background: #e0e0e0; color: #222; }

/* Form */
.quote-form {
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.qf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.qf-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.qf-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  font-family: var(--font-body);
}
.qf-group label span { color: #ef4444; }
.qf-group input,
.qf-group select,
.qf-group textarea {
  width: 100%;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  padding: 11px 14px;
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--text-dark);
  background: #fafafa;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  outline: none;
  box-sizing: border-box;
}
.qf-group input:focus,
.qf-group select:focus,
.qf-group textarea:focus {
  border-color: var(--primary-green);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(74,184,66,0.12);
}
.qf-group input.qf-error,
.qf-group textarea.qf-error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239,68,68,0.1);
}
.qf-group textarea { resize: vertical; min-height: 90px; }
.qf-group select { cursor: pointer; }

/* Budget pills */
.qf-budget-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.qf-pill {
  background: #f3f4f6;
  border: 1.5px solid #e5e7eb;
  border-radius: 50px;
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 600;
  color: #555;
  cursor: pointer;
  font-family: var(--font-body);
  transition: all 0.2s ease;
}
.qf-pill:hover { border-color: var(--primary-green); color: var(--primary-green); background: #f0faf0; }
.qf-pill.selected {
  background: var(--primary-green);
  border-color: var(--primary-green);
  color: #fff;
  box-shadow: 0 3px 10px rgba(74,184,66,0.35);
}

/* Feedback */
.qf-feedback {
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-body);
  line-height: 1.5;
}
.qf-feedback.success {
  background: #f0fdf4;
  border: 1.5px solid #86efac;
  color: #166534;
}
.qf-feedback.error {
  background: #fef2f2;
  border: 1.5px solid #fca5a5;
  color: #991b1b;
}

/* Submit button */
.qf-submit {
  background: linear-gradient(135deg, var(--primary-green) 0%, #20bd5a 100%);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 15px 28px;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-body);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s;
  box-shadow: 0 6px 22px rgba(74,184,66,0.4);
  width: 100%;
}
.qf-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(74,184,66,0.5);
}
.qf-submit:disabled { opacity: 0.65; cursor: not-allowed; transform: none; }

/* Responsive */
@media (max-width: 560px) {
  .quote-modal-box { border-radius: 16px; }
  .qf-row { grid-template-columns: 1fr; }
  .quote-modal-header { padding: 18px 18px 14px; }
  .quote-form { padding: 18px 18px 22px; }
  .quote-modal-title { font-size: 17px; }
}

/* ============================================
   WORLD-CLASS UPGRADES — BuntyTech 2.0
   ============================================ */

/* --- Hero Particle Canvas --- */
#hero-particles { position:absolute; inset:0; z-index:0; pointer-events:none; width:100%; height:100%; opacity:.8; }
.hero-shapes { position:relative; z-index:1; }
.hero-container { position:relative; z-index:2; }

/* --- Available for Hire Badge --- */
.available-badge {
  display:inline-flex; align-items:center; gap:8px;
  background:rgba(123,150,105,.12); border:1px solid rgba(123,150,105,.4);
  padding:7px 18px; border-radius:100px; font-size:13px; font-weight:600;
  color:var(--dark-forest); margin-bottom:14px;
  backdrop-filter:blur(8px); -webkit-backdrop-filter:blur(8px);
  animation:badgePop .7s cubic-bezier(.34,1.56,.64,1) both .15s;
}
.available-dot {
  width:8px; height:8px; background:#22c55e; border-radius:50%; flex-shrink:0;
  box-shadow:0 0 0 0 rgba(34,197,94,.6);
  animation:availPulse 2s ease-in-out infinite;
}
@keyframes availPulse {
  0%   { box-shadow:0 0 0 0 rgba(34,197,94,.6); }
  70%  { box-shadow:0 0 0 8px rgba(34,197,94,0); }
  100% { box-shadow:0 0 0 0 rgba(34,197,94,0); }
}
@keyframes badgePop {
  from { opacity:0; transform:scale(.8) translateY(10px); }
  to   { opacity:1; transform:scale(1)  translateY(0); }
}

/* ============================================
   HOW I WORK — PROCESS SECTION
   ============================================ */
.process-section {
  padding:120px 30px;
  background:linear-gradient(180deg,var(--white) 0%,var(--light-gray) 100%);
  position:relative; overflow:hidden;
}
.process-section::after {
  content:''; position:absolute; bottom:-100px; left:-100px;
  width:500px; height:500px; border-radius:50%;
  background:radial-gradient(circle, rgba(123,150,105,.05) 0%, transparent 70%);
  pointer-events:none;
}
.process-grid {
  display:grid; grid-template-columns:repeat(4,1fr); gap:0;
  max-width:1200px; margin:0 auto; position:relative;
}
.process-grid::before {
  content:''; position:absolute; top:70px;
  left:12.5%; width:75%; height:2px;
  background:linear-gradient(90deg, transparent, var(--sage-green) 20%, var(--sage-green) 80%, transparent);
  z-index:0;
}
.process-step {
  text-align:center; padding:30px 20px; position:relative; z-index:1;
  transition:transform .3s ease;
}
.process-step:hover { transform:translateY(-8px); }
.process-number {
  font-family:var(--font-display); font-size:80px; color:rgba(123,150,105,.07);
  line-height:1; position:absolute; top:-6px; left:50%; transform:translateX(-50%);
  z-index:0; letter-spacing:-4px; transition:color .3s;
  -webkit-user-select:none; user-select:none;
}
.process-step:hover .process-number { color:rgba(123,150,105,.14); }
.process-icon {
  width:70px; height:70px; background:var(--white);
  border:2px solid var(--sage-green); border-radius:20px;
  display:flex; align-items:center; justify-content:center;
  font-size:26px; color:var(--primary-green);
  margin:0 auto 20px; position:relative; z-index:2;
  transition:all .4s cubic-bezier(.34,1.56,.64,1);
  box-shadow:var(--shadow-sm);
}
.process-step:hover .process-icon {
  background:var(--primary-green); color:var(--white);
  transform:scale(1.15) rotate(-6deg);
  box-shadow:0 16px 36px rgba(123,150,105,.4);
  border-color:var(--primary-green);
}
.process-step h3 {
  font-family:var(--font-display); font-size:22px; color:var(--dark-forest);
  letter-spacing:1px; margin-bottom:12px; position:relative; z-index:2;
}
.process-step p {
  font-size:13.5px; color:#666; line-height:1.75;
  position:relative; z-index:2; max-width:200px; margin:0 auto;
}
@media(max-width:1024px) {
  .process-grid { grid-template-columns:repeat(2,1fr); gap:32px; }
  .process-grid::before { display:none; }
}
@media(max-width:560px) { .process-grid { grid-template-columns:1fr; } }

/* ============================================
   TRUSTED BY BRANDS
   ============================================ */
.trusted-section {
  padding:90px 0 100px; background:linear-gradient(180deg,#0d1a0e 0%,#111f12 100%); overflow:hidden; position:relative;
}
.trusted-section .section-header { padding:0 30px; }
.trusted-section .section-label  { color:#BAC8B1; border-color:rgba(186,200,177,0.3); }
.trusted-section .section-title  { color:#fff; }
.trusted-section .section-desc   { color:rgba(255,255,255,0.45); }

/* Marquee rows */
.cl-marquee-wrap {
  position:relative; overflow:hidden; margin-top:16px; padding:8px 0;
}
.cl-marquee-wrap::before,
.cl-marquee-wrap::after {
  content:''; position:absolute; top:0; bottom:0; width:180px; z-index:2; pointer-events:none;
}
.cl-marquee-wrap::before { left:0;  background:linear-gradient(90deg,#0d1a0e,transparent); }
.cl-marquee-wrap::after  { right:0; background:linear-gradient(-90deg,#0d1a0e,transparent); }

.cl-track {
  display:flex; align-items:center; gap:0; white-space:nowrap; width:max-content;
}
.cl-track-r2r { animation:clScrollL 38s linear infinite; }
.cl-track-r2l { animation:clScrollR 42s linear infinite; }
.cl-marquee-wrap:hover .cl-track { animation-play-state:paused; }

@keyframes clScrollL {
  from { transform:translateX(0); }
  to   { transform:translateX(-50%); }
}
@keyframes clScrollR {
  from { transform:translateX(-50%); }
  to   { transform:translateX(0); }
}

/* Client cards */
.cl-card {
  display:inline-flex; align-items:center; gap:12px;
  padding:14px 22px; margin:8px 10px;
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:14px; white-space:nowrap; cursor:default;
  transition:background .3s, border-color .3s, transform .3s, box-shadow .3s;
}
.cl-card:hover {
  background:rgba(78,204,163,0.08);
  border-color:rgba(78,204,163,0.35);
  transform:translateY(-3px);
  box-shadow:0 8px 28px rgba(78,204,163,0.12);
}
.cl-card-icon {
  width:36px; height:36px; border-radius:10px; flex-shrink:0;
  display:flex; align-items:center; justify-content:center; font-size:15px;
}
.cl-card-name {
  font-size:13.5px; font-weight:700; color:rgba(255,255,255,0.85); letter-spacing:0.2px;
}
.cl-card-tag {
  font-size:10px; font-weight:600; letter-spacing:1px; text-transform:uppercase;
  color:rgba(255,255,255,0.35); margin-top:1px;
}
.cl-divider {
  display:inline-block; width:4px; height:4px; border-radius:50%;
  background:rgba(78,204,163,0.3); margin:0 6px; flex-shrink:0;
}

.trust-stats-row {
  display:flex; flex-wrap:wrap; justify-content:center; gap:20px; margin-top:52px; padding:0 30px;
}
.trust-stat {
  text-align:center; padding:24px 40px;
  background:rgba(255,255,255,0.04);
  border-radius:16px; border:1px solid rgba(123,150,105,.2);
  transition:all .3s ease; min-width:160px;
}
.trust-stat:hover {
  background:rgba(78,204,163,0.06); border-color:rgba(78,204,163,0.35);
  transform:translateY(-3px);
}
.trust-stats-row {
  display:flex; flex-wrap:wrap; justify-content:center; gap:20px; margin-top:52px;
}
.trust-stat {
  text-align:center; padding:24px 40px; background:var(--light-gray);
  border-radius:16px; border:1px solid rgba(123,150,105,.15);
  transition:all .3s ease; min-width:160px;
}
.trust-stat:hover {
  background:var(--white); border-color:var(--primary-green);
  transform:translateY(-5px); box-shadow:var(--shadow-md);
}
.trust-stat-num {
  display:block; font-family:var(--font-display); font-size:42px;
  color:var(--primary-green); letter-spacing:1px; line-height:1; margin-bottom:8px;
}
.trust-stat p { font-size:13px; color:#666; font-weight:500; }

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-section {
  padding:100px 30px;
  background:linear-gradient(135deg,var(--light-gray) 0%,var(--white) 100%);
}
.faq-grid { max-width:860px; margin:0 auto; }
.faq-item {
  background:var(--white); border-radius:14px; margin-bottom:10px;
  border:1px solid rgba(123,150,105,.18); overflow:hidden;
  transition:box-shadow .3s ease, border-color .3s ease;
}
.faq-item.open {
  border-color:var(--primary-green);
  box-shadow:0 6px 24px rgba(123,150,105,.14);
}
.faq-question {
  width:100%; background:none; border:none; padding:20px 26px;
  display:flex; justify-content:space-between; align-items:center;
  font-size:15px; font-weight:600; color:var(--dark-forest);
  cursor:pointer; text-align:left; gap:16px; transition:color .3s;
  font-family:var(--font-body);
}
.faq-question:hover,
.faq-item.open .faq-question { color:var(--primary-green); }
.faq-icon {
  flex-shrink:0; width:28px; height:28px; background:rgba(123,150,105,.1);
  border-radius:50%; display:flex; align-items:center; justify-content:center;
  font-size:11px; color:var(--primary-green);
  transition:all .4s cubic-bezier(.34,1.56,.64,1);
}
.faq-item.open .faq-icon {
  background:var(--primary-green); color:var(--white); transform:rotate(45deg);
}
.faq-answer { max-height:0; overflow:hidden; transition:max-height .45s ease; }
.faq-answer-inner {
  padding:0 26px 22px; font-size:14px; color:#555; line-height:1.85;
  border-top:1px solid rgba(123,150,105,.12); padding-top:18px;
}
.faq-item.open .faq-answer { max-height:500px; }

/* ============================================
   SPOTLIGHT EFFECT (dark sections)
   ============================================ */
.spotlight-section { position:relative; isolation:isolate; }
.spotlight-glow {
  position:absolute; width:520px; height:520px; border-radius:50%;
  background:radial-gradient(circle, rgba(123,150,105,.18) 0%, transparent 70%);
  pointer-events:none; transform:translate(-50%,-50%);
  opacity:0; transition:opacity .4s ease; z-index:1;
}
.spotlight-section:hover .spotlight-glow { opacity:1; }
.spotlight-section > *:not(.spotlight-glow) { position:relative; z-index:2; }

/* ============================================
   SECTION TITLE SHIMMER ANIMATION
   ============================================ */
.section-title {
  background:linear-gradient(90deg, var(--dark-forest) 0%, var(--primary-green) 40%, var(--dark-forest) 80%);
  background-size:250% auto;
  -webkit-background-clip:text; -webkit-text-fill-color:transparent;
  background-clip:text;
  animation:shimmerMove 5s linear infinite;
}
@keyframes shimmerMove {
  0%   { background-position:200% center; }
  100% { background-position:-200% center; }
}

/* ============================================
   CARD INNER GLOW (CSS variable approach)
   ============================================ */
.service-card { transition:transform .3s ease, box-shadow .3s ease, background-image .05s; }

/* ============================================
   ENHANCED TECH ITEMS
   ============================================ */
.tech-item {
  transition:transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s ease, background .3s ease !important;
}
.tech-item:hover {
  transform:translateY(-8px) scale(1.08) !important;
  box-shadow:0 12px 30px rgba(123,150,105,.25) !important;
  background:var(--white) !important;
}
.tech-item:hover i { transform:scale(1.2); }
.tech-item i { transition:transform .3s ease; display:block; }

/* ============================================
   HERO GREETING ENHANCED
   ============================================ */
.hero-greeting {
  font-size:16px; letter-spacing:3px; text-transform:uppercase;
  color:var(--primary-green); font-weight:600; margin-bottom:4px !important;
}

/* ============================================
   PROCESS STEP LINE CONNECTOR (mobile)
   ============================================ */
@media(max-width:1024px) {
  .process-step:not(:last-child)::after {
    content:''; display:block; width:2px; height:30px;
    background:var(--sage-green); margin:16px auto 0;
    opacity:.4;
  }
}

/* ============================================
   BRAND LOGO STRIP PADDING FIX
   ============================================ */
.logos-strip-wrapper { padding:4px 0 4px; }

/* ============================================
   ARIA — 3D AI ROBOT GUIDE SECTION
   ============================================ */
.ai-guide-section {
  padding: 120px 30px;
  background: linear-gradient(135deg, #1a1f2e 0%, #1e2530 50%, #2a3040 100%);
  overflow: hidden; position: relative;
}
.ai-guide-section .section-label { color: var(--sage-green); }
.ai-guide-section .section-title {
  background: linear-gradient(90deg, var(--white) 0%, var(--sage-green) 40%, var(--white) 80%);
  background-size: 250% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; animation: shimmerMove 4s linear infinite;
}
.ai-guide-section .section-desc { color: rgba(186,200,177,0.7); }
.ai-guide-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(123,150,105,0.06) 0%, transparent 50%),
              radial-gradient(circle at 80% 50%, rgba(186,200,177,0.04) 0%, transparent 50%);
  pointer-events: none;
}

.ai-guide-container {
  max-width: 1000px; margin: 0 auto;
  display: flex; align-items: flex-start; gap: 60px;
  flex-wrap: wrap; justify-content: center;
  position: relative;
}

/* ============================
   ROBOT WRAPPER
   ============================ */
.aria-robot-wrap {
  display: flex; flex-direction: column; align-items: center; flex-shrink: 0;
  cursor: pointer; user-select: none;
}

/* ============================
   ROBOT BODY
   ============================ */
.aria-robot {
  position: relative; width: 140px;
  transform-style: preserve-3d; perspective: 600px;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
  transition: filter 0.3s ease;
}
.aria-robot-wrap:hover .aria-robot { filter: drop-shadow(0 24px 48px rgba(123,150,105,0.4)); }

/* ---- STATE ANIMATIONS ---- */
.aria-robot.state-idle    { animation: ariaIdle 3s ease-in-out infinite; }
.aria-robot.state-wave    { animation: ariaIdle 3s ease-in-out infinite; }
.aria-robot.state-walk    { animation: ariaWalk 0.7s linear infinite; }
.aria-robot.state-think   { animation: ariaThink 2s ease-in-out infinite; }
.aria-robot.state-excited { animation: ariaExcited 0.45s ease-in-out infinite alternate; }

@keyframes ariaIdle    { 0%,100%{transform:translateY(0) rotateY(-4deg)} 50%{transform:translateY(-10px) rotateY(4deg)} }
@keyframes ariaWalk    { 0%,100%{transform:translateX(-5px) rotateZ(-1.5deg)} 50%{transform:translateX(5px) rotateZ(1.5deg)} }
@keyframes ariaThink   { 0%,100%{transform:translateY(0) rotateY(-10deg) rotateZ(-1deg)} 50%{transform:translateY(-6px) rotateY(-14deg) rotateZ(-2deg)} }
@keyframes ariaExcited { from{transform:translateY(0) scale(1)} to{transform:translateY(-14px) scale(1.05)} }

/* ---- ANTENNA ---- */
.aria-antenna {
  position: absolute; top: -32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; z-index: 5;
}
.aria-antenna-stem {
  width: 3px; height: 22px;
  background: linear-gradient(to bottom, #5a6a8a, #2a3040); border-radius: 2px;
}
.aria-antenna-ball {
  width: 11px; height: 11px; background: var(--primary-green); border-radius: 50%;
  box-shadow: 0 0 10px var(--primary-green), 0 0 20px rgba(123,150,105,0.7);
  animation: antBall 1.6s ease-in-out infinite; margin-bottom: 2px;
}
@keyframes antBall { 0%,100%{box-shadow:0 0 10px #7B9669,0 0 20px rgba(123,150,105,.7);transform:scale(1)} 50%{box-shadow:0 0 18px #7B9669,0 0 36px rgba(123,150,105,.9);transform:scale(1.2)} }

/* ---- HEAD ---- */
.aria-head {
  width: 78px; height: 70px;
  background: linear-gradient(145deg, #3a4a5e 0%, #2a3040 55%, #1a2030 100%);
  border-radius: 18px; margin: 0 auto; position: relative;
  box-shadow: 0 4px 16px rgba(0,0,0,.4), inset 0 1px 1px rgba(255,255,255,.1), 0 0 0 1.5px rgba(100,130,160,.3);
}
.aria-ear {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 9px; height: 22px;
  background: linear-gradient(to right, #1e2530, #2e3e50); border-radius: 3px;
}
.aria-ear.aria-el { left: -7px; border-radius: 4px 0 0 4px; }
.aria-ear.aria-er { right: -7px; border-radius: 0 4px 4px 0; }

/* Ear detail light */
.aria-ear::after {
  content: ''; display: block; width: 3px; height: 8px;
  background: rgba(123,150,105,.5); border-radius: 2px;
  margin: 7px auto; box-shadow: 0 0 4px rgba(123,150,105,.4);
}

/* ---- FACE ---- */
.aria-face {
  padding: 14px 12px 10px; display: flex;
  flex-direction: column; align-items: center; gap: 7px;
}
.aria-eyes-row { display: flex; gap: 12px; }

/* ---- EYES ---- */
.aria-eye {
  width: 24px; height: 14px; background: #050c14;
  border-radius: 6px; overflow: hidden; position: relative;
  box-shadow: 0 0 8px rgba(123,150,105,.5), inset 0 0 4px rgba(0,0,0,.5);
  border: 1px solid rgba(123,150,105,.4);
}
.aria-pupil {
  width: 14px; height: 9px; margin: 2px auto;
  background: linear-gradient(135deg, var(--primary-green), var(--sage-green));
  border-radius: 4px; box-shadow: 0 0 7px rgba(123,150,105,.9);
  transition: all .3s ease;
  animation: eyeBlink 5s ease-in-out infinite;
}
@keyframes eyeBlink { 0%,88%,100%{transform:scaleY(1)} 92%{transform:scaleY(.08)} 96%{transform:scaleY(1)} }

.aria-robot.state-think  .aria-pupil { width: 9px; animation: pupilThink 2s ease-in-out infinite; }
.aria-robot.state-excited .aria-pupil { width: 17px; height: 11px; box-shadow: 0 0 12px rgba(123,150,105,1); }
@keyframes pupilThink { 0%,100%{transform:translateX(0)} 50%{transform:translateX(4px)} }

/* ---- MOUTH ---- */
.aria-mouth {
  width: 30px; height: 9px; background: #050c14;
  border-radius: 0 0 12px 12px; position: relative; overflow: hidden;
  border: 1px solid rgba(123,150,105,.3); transition: all .4s ease;
}
.aria-mouth::after {
  content: ''; position: absolute; bottom: 1px; left: 50%;
  transform: translateX(-50%); width: 22px; height: 4px;
  background: var(--primary-green); border-radius: 2px; opacity: .5;
  animation: mouthAnim .35s ease-in-out infinite alternate;
}
@keyframes mouthAnim { from{width:22px;opacity:.4} to{width:14px;opacity:.9} }
.aria-robot.state-think  .aria-mouth { border-radius: 0 0 4px 10px; width: 24px; }
.aria-robot.state-excited .aria-mouth { width: 36px; height: 13px; border-radius: 0 0 18px 18px; }
.aria-robot.state-walk   .aria-mouth { border-radius: 4px; }

/* ---- NECK ---- */
.aria-neck {
  width: 20px; height: 8px; margin: 0 auto;
  background: linear-gradient(to bottom, #2a3040, #1a2030);
  border-radius: 0 0 4px 4px;
}

/* ---- TORSO ---- */
.aria-torso {
  width: 98px; height: 88px; margin: 0 auto; position: relative;
  background: linear-gradient(145deg, #3a4a5e 0%, #2a3040 55%, #1a2030 100%);
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0,0,0,.4), inset 0 1px 1px rgba(255,255,255,.08), 0 0 0 1.5px rgba(100,130,160,.2);
}

/* ---- CHEST PANEL ---- */
.aria-chest {
  position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
  width: 58px; height: 52px; background: #08101a;
  border-radius: 8px; border: 1px solid rgba(123,150,105,.35);
  display: flex; flex-direction: column;
  align-items: center; justify-content: space-around; padding: 6px;
  box-shadow: inset 0 2px 4px rgba(0,0,0,.5), 0 0 12px rgba(123,150,105,.08);
}
.aria-lights-row { display: flex; gap: 5px; }
.aria-led {
  width: 8px; height: 8px; border-radius: 50%;
}
.aria-led.g { background:#22c55e; box-shadow:0 0 7px #22c55e; animation:ledBlink 1.3s ease-in-out infinite; }
.aria-led.y { background:#facc15; box-shadow:0 0 7px #facc15; animation:ledBlink 1.8s ease-in-out infinite .35s; }
.aria-led.p { background:var(--primary-green); box-shadow:0 0 7px var(--primary-green); animation:ledBlink 1.0s ease-in-out infinite .7s; }
@keyframes ledBlink { 0%,75%,100%{opacity:1} 85%{opacity:.15} }
.aria-display {
  font-family: var(--font-display); font-size: 13px;
  color: var(--sage-green); letter-spacing: 3px;
  text-shadow: 0 0 8px rgba(186,200,177,.7);
  animation: dispFlicker 4s ease-in-out infinite;
}
@keyframes dispFlicker { 0%,94%,100%{opacity:1} 96%{opacity:.6} }

/* ---- SHOULDERS ---- */
.aria-shoulder {
  position: absolute; top: 8px; width: 18px; height: 18px;
  background: radial-gradient(circle at 40% 30%, #4a5a70, #2a3040);
  border-radius: 50%; border: 1px solid rgba(100,130,160,.3);
}
.aria-shoulder.aria-sl { left: -16px; }
.aria-shoulder.aria-sr { right: -16px; }

/* ---- ARMS ---- */
.aria-arm {
  width: 15px; height: 40px;
  background: linear-gradient(to bottom, #344050, #1e2a38);
  border-radius: 8px; margin: 8px auto 0;
  transform-origin: top center; border: 1px solid rgba(100,130,160,.2);
}
.aria-arm.aria-al { animation: alSwing 3s ease-in-out infinite; }
.aria-arm.aria-ar { animation: arSwing 3s ease-in-out infinite; }
@keyframes alSwing { 0%,100%{transform:rotate(-8deg)} 50%{transform:rotate(6deg)} }
@keyframes arSwing { 0%,100%{transform:rotate(8deg)} 50%{transform:rotate(-6deg)} }

.aria-forearm {
  width: 13px; height: 28px;
  background: linear-gradient(to bottom, #2a3040, #1a2030);
  border-radius: 0 0 7px 7px; margin: 0 auto;
  transform-origin: top center;
}
.aria-forearm.aria-fal { animation: falSwing 3s ease-in-out infinite; }
.aria-forearm.aria-far { animation: farSwing 3s ease-in-out infinite; }
@keyframes falSwing { 0%,100%{transform:rotate(6deg)} 50%{transform:rotate(-8deg)} }
@keyframes farSwing { 0%,100%{transform:rotate(-6deg)} 50%{transform:rotate(8deg)} }

.aria-hand {
  width: 15px; height: 11px; margin: 0 auto;
  background: linear-gradient(to bottom, #344050, #2a3040);
  border-radius: 0 0 6px 6px;
}

/* ---- STATE: WAVE (left arm up) ---- */
.aria-robot.state-wave .aria-al     { animation: alWave .5s ease-in-out infinite alternate; }
.aria-robot.state-wave .aria-fal    { animation: falWave .5s ease-in-out infinite alternate .1s; }
@keyframes alWave  { from{transform:rotate(-80deg)} to{transform:rotate(-50deg)} }
@keyframes falWave { from{transform:rotate(-30deg)} to{transform:rotate(15deg)} }

/* ---- STATE: THINK (right arm raised to chin) ---- */
.aria-robot.state-think .aria-ar    { animation: arThink 2s ease-in-out infinite; }
.aria-robot.state-think .aria-far   { animation: farThink 2s ease-in-out infinite; }
.aria-robot.state-think .aria-head  { animation: headThink 2s ease-in-out infinite; }
@keyframes arThink  { 0%,100%{transform:rotate(-55deg)} 50%{transform:rotate(-60deg)} }
@keyframes farThink { 0%,100%{transform:rotate(-55deg)} 50%{transform:rotate(-50deg)} }
@keyframes headThink { 0%,100%{transform:rotateZ(-3deg) rotateY(-5deg)} 50%{transform:rotateZ(-5deg) rotateY(-8deg)} }

/* ---- STATE: EXCITED (both arms up) ---- */
.aria-robot.state-excited .aria-al  { animation: alExcited .4s ease-in-out infinite alternate; }
.aria-robot.state-excited .aria-ar  { animation: arExcited .4s ease-in-out infinite alternate; }
.aria-robot.state-excited .aria-fal { animation: falExcited .4s ease-in-out infinite alternate .1s; }
.aria-robot.state-excited .aria-far { animation: farExcited .4s ease-in-out infinite alternate .1s; }
@keyframes alExcited  { from{transform:rotate(-45deg)} to{transform:rotate(-70deg)} }
@keyframes arExcited  { from{transform:rotate(45deg)}  to{transform:rotate(70deg)} }
@keyframes falExcited { from{transform:rotate(-10deg)} to{transform:rotate(-30deg)} }
@keyframes farExcited { from{transform:rotate(10deg)}  to{transform:rotate(30deg)} }

/* ---- STATE: WALK (legs alternate) ---- */
.aria-robot.state-walk .aria-ul-l  { animation: ulWalkL .6s linear infinite; }
.aria-robot.state-walk .aria-ul-r  { animation: ulWalkR .6s linear infinite; }
.aria-robot.state-walk .aria-ll-l  { animation: llWalkL .6s linear infinite; }
.aria-robot.state-walk .aria-ll-r  { animation: llWalkR .6s linear infinite; }
@keyframes ulWalkL { 0%,100%{transform:rotate(-16deg)} 50%{transform:rotate(16deg)} }
@keyframes ulWalkR { 0%,100%{transform:rotate(16deg)}  50%{transform:rotate(-16deg)} }
@keyframes llWalkL { 0%,100%{transform:rotate(0deg)}  50%{transform:rotate(18deg)} }
@keyframes llWalkR { 0%,100%{transform:rotate(18deg)} 50%{transform:rotate(0deg)} }

/* ---- HIPS ---- */
.aria-hips {
  width: 78px; height: 18px; margin: 0 auto;
  background: linear-gradient(to bottom, #2a3040, #1a2030);
  border-radius: 6px; display: flex;
  justify-content: space-around; align-items: flex-end;
}

/* ---- LEGS ---- */
.aria-upper-leg {
  width: 22px; height: 46px;
  background: linear-gradient(to bottom, #2a3040, #1e2a38);
  border-radius: 8px 8px 0 0; transform-origin: top center;
  border: 1px solid rgba(100,130,160,.15);
}
.aria-ul-l { animation: ulIdleL 3s ease-in-out infinite; }
.aria-ul-r { animation: ulIdleR 3s ease-in-out infinite; }
@keyframes ulIdleL { 0%,100%{transform:rotate(-5deg)} 50%{transform:rotate(5deg)} }
@keyframes ulIdleR { 0%,100%{transform:rotate(5deg)} 50%{transform:rotate(-5deg)} }

.aria-lower-leg {
  width: 17px; height: 34px;
  background: linear-gradient(to bottom, #1e2a38, #131b28);
  border-radius: 0 0 4px 4px; margin: 0 auto;
  transform-origin: top center;
}
.aria-ll-l { animation: llIdleL 3s ease-in-out infinite; }
.aria-ll-r { animation: llIdleR 3s ease-in-out infinite; }
@keyframes llIdleL { 0%,100%{transform:rotate(0)} 50%{transform:rotate(8deg)} }
@keyframes llIdleR { 0%,100%{transform:rotate(8deg)} 50%{transform:rotate(0)} }

.aria-foot-b {
  width: 24px; height: 10px; margin-left: -3px;
  background: linear-gradient(to right, #3a4a5e, #2a3848);
  border-radius: 0 5px 5px 5px;
  border: 1px solid rgba(100,130,160,.2);
}

/* ---- ROBOT SHADOW ---- */
.aria-shadow {
  width: 110px; height: 14px; margin: 10px auto 0;
  background: radial-gradient(ellipse, rgba(123,150,105,.25) 0%, transparent 70%);
  border-radius: 50%;
  animation: shadowAnim 3s ease-in-out infinite;
}
@keyframes shadowAnim { 0%,100%{transform:scaleX(1);opacity:.7} 50%{transform:scaleX(.75);opacity:.3} }

/* ============================
   SPEECH BUBBLE & DIALOG
   ============================ */
.aria-dialog {
  flex: 1; min-width: 280px; max-width: 480px;
  display: flex; flex-direction: column; gap: 24px;
}
.aria-speech {
  background: rgba(255,255,255,.06);
  border: 1.5px solid rgba(123,150,105,.4);
  border-radius: 20px; padding: 28px 30px;
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  position: relative;
  box-shadow: 0 8px 32px rgba(0,0,0,.3), 0 0 0 1px rgba(123,150,105,.1);
  transition: border-color .3s ease;
  cursor: pointer;
}
.aria-speech:hover { border-color: rgba(186,200,177,.7); }
.aria-speech::before {
  content: '';
  position: absolute; left: -16px; top: 36px;
  width: 0; height: 0;
  border: 8px solid transparent;
  border-right-color: rgba(123,150,105,.4);
}
.aria-speech-header {
  display: flex; align-items: center; gap: 8px; margin-bottom: 14px;
}
.aria-name-tag {
  font-family: var(--font-display); font-size: 16px;
  color: var(--primary-green); letter-spacing: 2px;
}
.aria-online {
  width: 7px; height: 7px; background: #22c55e;
  border-radius: 50%; animation: availPulse 2s ease-in-out infinite;
}
.aria-role { font-size: 12px; color: rgba(186,200,177,.6); font-style: italic; }
.aria-speech-text {
  font-size: 17px; line-height: 1.75; color: rgba(255,255,255,.92);
  font-weight: 500; min-height: 80px;
}
.aria-caret {
  display: inline-block; width: 2px; height: 18px;
  background: var(--primary-green); vertical-align: middle;
  animation: caretBlink .7s step-end infinite; margin-left: 2px;
}
@keyframes caretBlink { 0%,100%{opacity:1} 50%{opacity:0} }

/* --- NAVIGATION --- */
.aria-step-nav {
  display: flex; align-items: center; justify-content: center; gap: 16px;
}
.aria-nav-btn {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(123,150,105,.15); border: 1.5px solid rgba(123,150,105,.4);
  color: var(--sage-green); font-size: 18px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .3s ease; flex-shrink: 0;
}
.aria-nav-btn:hover {
  background: var(--primary-green); color: var(--white);
  transform: scale(1.1); box-shadow: 0 4px 16px rgba(123,150,105,.4);
}
.aria-dots-wrap { display: flex; gap: 8px; }
.aria-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: rgba(123,150,105,.25);
  border: 1.5px solid rgba(123,150,105,.5);
  cursor: pointer; transition: all .3s ease; padding: 0;
}
.aria-dot.active {
  background: var(--primary-green); transform: scale(1.35);
  box-shadow: 0 0 10px rgba(123,150,105,.6);
}

/* Click hint */
.aria-click-hint {
  font-size: 12px; color: rgba(186,200,177,.45);
  text-align: center; margin-top: 8px;
  animation: hintFade 2s ease-in-out infinite;
}
@keyframes hintFade { 0%,100%{opacity:.5} 50%{opacity:1} }

/* Responsive */
@media (max-width: 720px) {
  .ai-guide-container { flex-direction: column; align-items: center; }
  .aria-speech::before { display: none; }
  .aria-robot-wrap { order: -1; }
  .aria-dialog { width: 100%; }
}

/* ====================================
   BUNTY REAL PHOTOS — About & Teaser
   ==================================== */

/* ---- ABOUT PAGE PHOTO FRAME ---- */
.bunty-photo-frame {
  position: relative !important;
  overflow: hidden !important;
  border-radius: 24px !important;
  height: 520px !important;
  min-height: unset !important;
  padding: 0 !important;
  display: block !important;
  box-shadow: 0 20px 60px rgba(0,0,0,.35), 0 0 0 1.5px rgba(123,150,105,.35) !important;
  background: #1a2030 !important;
}
/* remove default frame offset border */
.bunty-photo-frame::before {
  content: '' !important;
  border: none !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(to top, rgba(26,32,48,.7) 0%, transparent 50%) !important;
  border-radius: 24px !important;
  z-index: 2 !important;
  width: 100% !important; height: 100% !important;
  top: 0 !important; left: 0 !important;
}
.bunty-photo-frame::after { display: none !important; }

/* Main photo fills the entire frame */
.bunty-main-photo {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: unset !important;
  object-fit: cover !important;
  object-position: center 35% !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  filter: none !important;
  display: block !important;
  margin: 0 !important;
  z-index: 1 !important;
}

/* Badge repositioned inside frame */
.bunty-photo-frame .about-img-badge {
  position: absolute !important;
  bottom: 20px !important;
  right: 20px !important;
  z-index: 4 !important;
}

/* Floating mini photos */
.bunty-float-photo {
  position: absolute; overflow: hidden;
  border: 2.5px solid rgba(123,150,105,.7);
  box-shadow: 0 8px 24px rgba(0,0,0,.5); z-index: 5;
}
.bunty-float-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bunty-fp-1 {
  width: 80px; height: 80px; top: 18px; right: 18px;
  border-radius: 50% !important;
  animation: bfpFloat1 4s ease-in-out infinite;
}
.bunty-fp-1 img { border-radius: 50%; }
.bunty-fp-2 {
  width: 92px; height: 92px; bottom: 80px; left: 18px;
  border-radius: 14px;
  animation: bfpFloat2 5s ease-in-out infinite .8s;
}
@keyframes bfpFloat1 { 0%,100%{transform:translateY(0) rotate(-3deg)} 50%{transform:translateY(-9px) rotate(3deg)} }
@keyframes bfpFloat2 { 0%,100%{transform:translateY(0) rotate(2deg)} 50%{transform:translateY(-11px) rotate(-2deg)} }

/* Skill chips */
.bunty-skill-chip {
  position: absolute;
  background: var(--primary-green);
  color: var(--white); font-size: 11px; font-weight: 700;
  padding: 7px 13px; border-radius: 20px;
  display: flex; align-items: center; gap: 5px;
  z-index: 5; white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0,0,0,.4);
  backdrop-filter: blur(4px);
}
.bunty-chip-1 { bottom: 70px; left: 18px; animation: chipFlt 3s ease-in-out infinite; }
.bunty-chip-2 { top: 18px; left: 18px; animation: chipFlt 4s ease-in-out infinite 1.2s; }
@keyframes chipFlt { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-5px)} }

/* ---- INDEX TEASER PHOTO ---- */
.bunty-teaser-frame {
  position: relative !important;
  overflow: hidden !important;
  border-radius: 20px !important;
  height: 480px !important;
  min-height: unset !important;
  display: block !important;
  background: #1a2030 !important;
}
.bunty-teaser-frame::before {
  content: '' !important;
  position: absolute !important; inset: 0 !important;
  background: linear-gradient(to top, rgba(26,32,48,.6) 0%, transparent 55%) !important;
  border: none !important; border-radius: 20px !important;
  z-index: 2 !important;
  top: 0 !important; left: 0 !important; width: 100% !important; height: 100% !important;
}
.bunty-teaser-photo {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important; height: 100% !important;
  max-width: unset !important;
  object-fit: cover !important;
  object-position: center 35% !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  filter: none !important;
  z-index: 1 !important;
}
.bunty-teaser-accent { display: none; }

@media (max-width: 768px) {
  .bunty-chip-1, .bunty-chip-2 { font-size: 10px; padding: 5px 10px; }
  .bunty-fp-1, .bunty-fp-2 { width: 60px; height: 60px; }
  .bunty-photo-frame { height: 380px !important; }
  .bunty-teaser-frame { height: 340px !important; }
}

/* ─── Nav Dropdown Menu ─── */
.nav-dropdown { position: relative; }
.nav-submenu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid #e8f0e4;
  border-radius: 14px;
  padding: 10px 0;
  min-width: 210px;
  box-shadow: 0 12px 40px rgba(64,78,59,.15);
  z-index: 1000;
  list-style: none;
  margin: 0;
}
.nav-dropdown:hover .nav-submenu,
.nav-dropdown.open .nav-submenu { display: block; }
.nav-submenu li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 20px;
  color: #2c3a28;
  font-size: .88rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s, color .2s;
  white-space: nowrap;
}
.nav-submenu li a i { color: #7B9669; width: 16px; font-size: .85rem; }
.nav-submenu li a:hover { background: #f0f5ee; color: #7B9669; }
.nav-dropdown-toggle { cursor: pointer; display: flex; align-items: center; gap: 4px; }
@media (max-width: 992px) {
  .nav-submenu {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    border-left: 3px solid #7B9669;
    border-radius: 0;
    padding: 0 0 0 12px;
    margin: 4px 0 0 0;
    background: transparent;
    min-width: unset;
  }
  .nav-submenu li a { padding: 7px 10px; font-size: .85rem; }
}

/* ============================================================
   BUNTYTECH — COMPLETE RESPONSIVE OVERHAUL
   Mobile: ≤480px | Tablet: ≤768px | Small-desktop: ≤1024px
   ============================================================ */

/* ── Instagram Reels & Influencer Section ── */
.reels-video-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.influencer-offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.reels-section {
  padding: 120px 30px !important;
}

/* ── Section padding fix (all dark/light sections) ── */
.process-section,
.faq-section,
.ai-guide-section,
.trusted-section { padding-left: 20px; padding-right: 20px; }

/* ── Navbar fix ── */
.nav-menu li { list-style: none; }
.nav-actions { flex-shrink: 0; }

/* ── Scroll Progress & Cursor ── */
#scroll-progress { position:fixed; top:0; left:0; width:100%; height:3px; z-index:99998; background:rgba(0,0,0,0.05); }
#scroll-progress-bar { height:100%; background:var(--primary-green); width:0; transition:width 0.1s; }

/* ========================================
   ≤ 1024px  (Tablet / Small Laptop)
   ======================================== */
@media (max-width: 1024px) {
  .reels-video-grid { grid-template-columns: repeat(2, 1fr); }
  .influencer-offer-grid { grid-template-columns: repeat(2, 1fr); }
  .reels-section { padding: 80px 24px !important; }
  .ai-guide-section { padding: 80px 24px !important; }
  .faq-section { padding: 80px 24px !important; }
  .process-section { padding: 80px 24px !important; }
  .trusted-section { padding: 70px 0 80px !important; }
  .ai-guide-container { gap: 36px; }
}

/* ========================================
   ≤ 768px  (Tablet Portrait / Large Mobile)
   ======================================== */
@media (max-width: 768px) {
  /* General section spacing */
  section { padding-left: 16px !important; padding-right: 16px !important; }
  .section-header { padding: 0 4px; }
  .section-title { font-size: clamp(28px, 7vw, 42px); }
  .section-desc { font-size: 14px; }

  /* Reels section */
  .reels-video-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .influencer-offer-grid { grid-template-columns: 1fr; gap: 16px; }
  .reels-section { padding: 70px 18px !important; }

  /* Hero */
  .hero-container { padding: 100px 18px 50px; gap: 30px; }
  .hero-title { font-size: clamp(34px, 9vw, 56px) !important; }
  .hero-cta { flex-wrap: wrap; justify-content: center; gap: 12px; }
  .hero-cta .btn { width: auto; }
  .hero-stats { flex-wrap: wrap; gap: 16px 24px; justify-content: center; }
  .hero-social { justify-content: center; }

  /* About teaser */
  .about-teaser-grid { gap: 30px; }
  .bunty-teaser-frame { height: 300px !important; }

  /* Services */
  .services-grid { grid-template-columns: 1fr 1fr; gap: 16px; }

  /* Portfolio */
  .portfolio-grid { grid-template-columns: 1fr 1fr; gap: 16px; }

  /* Process */
  .process-section { padding: 70px 18px !important; }
  .process-grid { gap: 28px; }

  /* AI Robot section */
  .ai-guide-section { padding: 70px 18px !important; }
  .ai-guide-container { flex-direction: column; align-items: center; gap: 32px; }
  .aria-robot-wrap { order: -1; }
  .aria-dialog { width: 100%; max-width: 100%; }
  .aria-speech::before { display: none; }

  /* FAQ */
  .faq-section { padding: 70px 18px !important; }
  .faq-question { padding: 16px 18px; font-size: 14px; }
  .faq-answer-inner { padding: 0 18px 18px; padding-top: 14px; }

  /* Trusted brands */
  .trusted-section { padding: 60px 0 70px !important; }
  .trust-stat { padding: 18px 24px; min-width: 130px; }

  /* Blog */
  .blog-grid { gap: 16px; }

  /* Testimonials */
  .testimonials-grid { gap: 16px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 10px; }

  /* About page photo */
  .bunty-photo-frame { height: 320px !important; }
  .bunty-fp-1, .bunty-fp-2 { display: none; }
  .bunty-chip-1, .bunty-chip-2 { display: none; }

  /* Contact */
  .contact-container { gap: 28px; }

  /* Lightbox nav */
  .lightbox-prev { left: 6px; width: 38px; height: 38px; }
  .lightbox-next { right: 6px; width: 38px; height: 38px; }

  /* Nav dropdown inside mobile menu */
  .nav-dropdown .nav-submenu {
    position: static; transform: none; box-shadow: none;
    border: none; border-left: 3px solid var(--primary-green);
    border-radius: 0; background: transparent;
    padding: 0 0 0 14px; margin: 4px 0 0;
    display: none; min-width: unset;
  }
  .nav-dropdown.open .nav-submenu { display: block; }
  .nav-submenu li a { padding: 8px 12px; color: var(--dark-forest); }

  /* Music button */
  #music-btn { width: 40px; height: 40px; left: 14px; bottom: 20px; }
  #music-tip { left: 62px; bottom: 28px; font-size: 11px; }
}

/* ========================================
   ≤ 480px  (Mobile)
   ======================================== */
@media (max-width: 480px) {
  /* Reels — single column on small mobile */
  .reels-video-grid { grid-template-columns: 1fr; gap: 16px; }
  .influencer-offer-grid { grid-template-columns: 1fr; }
  .reels-section { padding: 60px 14px !important; }

  /* Hero */
  .hero-container { padding: 90px 14px 40px; }
  .hero-title { font-size: clamp(30px, 10vw, 44px) !important; }
  .hero-stats .stat-item { min-width: 100px; }
  .hero-social a { width: 38px; height: 38px; font-size: 14px; }
  .hero-cta .btn { padding: 13px 22px; font-size: 13px; }
  .available-badge { font-size: 11px; padding: 6px 14px; }

  /* Navbar */
  .nav-container { padding: 0 14px; }
  .btn-hire { display: none; }
  .nav-logo span { font-size: 16px; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; gap: 14px; }
  .service-card { padding: 24px 18px; }

  /* Portfolio */
  .portfolio-grid { grid-template-columns: 1fr; gap: 14px; }

  /* Blog */
  .blog-grid { grid-template-columns: 1fr; gap: 14px; }

  /* Section titles */
  .section-title { font-size: clamp(26px, 8vw, 36px); letter-spacing: 1px; }
  .section-label { font-size: 11px; letter-spacing: 2px; }

  /* Stats */
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-number { font-size: 36px; }

  /* About cards */
  .about-cards { grid-template-columns: 1fr 1fr; gap: 12px; }

  /* Process */
  .process-section { padding: 60px 14px !important; }
  .process-step { padding: 20px 12px; }
  .process-icon { width: 58px; height: 58px; font-size: 22px; }

  /* AI Robot */
  .ai-guide-section { padding: 60px 14px !important; }
  .aria-robot { transform: scale(0.85); }
  .aria-speech { padding: 20px 18px; }
  .aria-speech-text { font-size: 15px; }

  /* FAQ */
  .faq-section { padding: 60px 14px !important; }
  .faq-question { padding: 14px 16px; font-size: 13.5px; }

  /* Experience */
  .experience-item { padding-left: 40px; }
  .experience-content { padding: 20px; }

  /* Gallery */
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .gallery-item-img img { height: 160px; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; gap: 14px; }

  /* Footer */
  .footer-grid { gap: 22px; }
  .footer-logo span { font-size: 20px; }

  /* Trust stats */
  .trust-stats-row { gap: 12px; }
  .trust-stat { padding: 14px 18px; min-width: 120px; }
  .trust-stat-num { font-size: 32px; }

  /* Page hero */
  .page-hero-content h1 { font-size: clamp(32px, 9vw, 52px); }
  .page-hero-content { padding: 90px 18px 50px; }

  /* CTA buttons */
  .btn { padding: 12px 20px; font-size: 13px; }

  /* Music button */
  #music-btn { width: 38px; height: 38px; left: 12px; bottom: 16px; }
  #music-tip { display: none; }

  /* WhatsApp widget */
  .wa-widget { bottom: 16px; right: 14px; }
}

/* ========================================
   ≤ 380px  (Very small mobiles)
   ======================================== */
@media (max-width: 380px) {
  .hero-title { font-size: 28px !important; }
  .hero-devices-wrapper { max-width: 270px; }
  .hero-laptop-3d { max-width: 230px; }
  .hero-mobile-inner { width: 68px; height: 126px; }
  .about-cards { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .nav-logo img { width: 28px; height: 28px; }
}

/* ========================================
   Tablet Landscape specific fixes
   ======================================== */
@media (min-width: 769px) and (max-width: 1024px) {
  .reels-video-grid { grid-template-columns: repeat(2, 1fr); }
  .influencer-offer-grid { grid-template-columns: repeat(3, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-title { font-size: clamp(40px, 6vw, 64px) !important; }
}

/* ========================================
   Touch device fixes (hover states)
   ======================================== */
@media (hover: none) {
  .service-card:hover { transform: none; }
  .portfolio-item:hover { transform: none; }
  .tech-item:hover { transform: none !important; box-shadow: none !important; }
  .process-step:hover { transform: none; }
  .cert-card:hover { transform: none; }
}

/* ========================================
   Fix overflow on small screens
   ======================================== */
html, body { overflow-x: hidden; }
.hero-section, section { overflow-x: hidden; }

/* ========================================
   Image lazy load placeholder
   ======================================== */
img[loading="lazy"] { background: rgba(186,200,177,0.1); }
